content
stringlengths
6
1.03M
input_ids
sequencelengths
4
535k
ratio_char_token
float64
0.68
8.61
token_count
int64
4
535k
<reponame>yihong-zhang/YaoBlocks.jl export PutBlock, put """ PutBlock <: AbstractContainer Type for putting a block at given locations. """ struct PutBlock{N, C, GT <: AbstractBlock} <: AbstractContainer{GT, N} content::GT locs::NTuple{C, Int} function PutBlock{N}(block::GT, locs::NTuple{C, Int}) where {N, M, C, GT <: AbstractBlock{M}} @assert_locs_safe N locs @assert nqubits(block) == C "number of locations doesn't match the size of block" return new{N, C, GT}(block, locs) end end """ put(total::Int, pair) Create a [`PutBlock`](@ref) with total number of active qubits, and a pair of location and block to put on. # Example ```jldoctest julia> put(4, 1=>X) nqubits: 4 put on (1) └─ X gate ``` If you want to put a multi-qubit gate on specific locations, you need to write down all possible locations. ```jldoctest julia> put(4, (1, 3)=>kron(X, Y)) nqubits: 4 put on (1, 3) └─ kron ├─ 1=>X gate └─ 2=>Y gate ``` The outter locations creates a scope which make it seems to be a contiguous two qubits for the block inside `PutBlock`. !!! tips It is better to use [`concentrate`](@ref) instead of `put` for large blocks, since put will use the matrix of its contents directly instead of making use of what's in it. `put` is more efficient for small blocks. """ put(total::Int, pa::Pair{NTuple{M, Int}, <:AbstractBlock}) where M = PutBlock{total}(pa.second, pa.first) put(total::Int, pa::Pair{Int, <:AbstractBlock}) = PutBlock{total}(pa.second, (pa.first, )) put(total::Int, pa::Pair{<:Any, <:AbstractBlock}) = PutBlock{total}(pa.second, Tuple(pa.first)) """ put(pair) -> f(n) Lazy curried version of [`put`](@ref). # Example ```jldoctest julia> put(1=>X) (n -> put(n, 1 => X gate)) ``` """ put(pa::Pair) = @λ(n -> put(n, pa)) occupied_locs(x::PutBlock) = x.locs chsubblocks(x::PutBlock{N}, b::AbstractBlock) where N = PutBlock{N}(b, x.locs) PreserveStyle(::PutBlock) = PreserveAll() cache_key(pb::PutBlock) = cache_key(pb.content) mat(::Type{T}, pb::PutBlock{N, 1}) where {T, N} = u1mat(N, mat(T, pb.content), pb.locs...) mat(::Type{T}, pb::PutBlock{N, C}) where {T, N, C} = unmat(N, mat(T, pb.content), pb.locs) function apply!(r::ArrayReg{B, T}, pb::PutBlock{N}) where {B, T, N} _check_size(r, pb) instruct!(matvec(r.state), mat(T, pb.content), pb.locs) return r end # specialization for G in [:X, :Y, :Z, :T, :S, :Sdag, :Tdag] GT = Expr(:(.), :ConstGate, QuoteNode(Symbol(G, :Gate))) @eval function apply!(r::ArrayReg, pb::PutBlock{N, C, <:$GT}) where {N, C} _check_size(r, pb) instruct!(matvec(r.state), Val($(QuoteNode(G))), pb.locs) return r end end Base.adjoint(x::PutBlock{N}) where N = PutBlock{N}(adjoint(content(x)), x.locs) Base.copy(x::PutBlock{N}) where N = PutBlock{N}(x.content, x.locs) function Base.:(==)(lhs::PutBlock{N, C, GT}, rhs::PutBlock{N, C, GT}) where {N, C, GT} return (lhs.content == rhs.content) && (lhs.locs == rhs.locs) end function YaoBase.iscommute(x::PutBlock{N}, y::PutBlock{N}) where N if x.locs == y.locs return iscommute(x.content, y.content) else return iscommute_fallback(x, y) end end
[ 27, 7856, 261, 480, 29, 88, 4449, 506, 12, 23548, 648, 14, 56, 5488, 45356, 13, 20362, 198, 39344, 5930, 12235, 11, 1234, 198, 198, 37811, 198, 220, 220, 220, 5930, 12235, 1279, 25, 27741, 29869, 198, 198, 6030, 329, 5137, 257, 2512, 379, 1813, 7064, 13, 198, 37811, 198, 7249, 5930, 12235, 90, 45, 11, 327, 11, 7963, 1279, 25, 27741, 12235, 92, 1279, 25, 27741, 29869, 90, 19555, 11, 399, 92, 198, 220, 220, 220, 2695, 3712, 19555, 198, 220, 220, 220, 1179, 82, 3712, 11251, 29291, 90, 34, 11, 2558, 92, 628, 220, 220, 220, 2163, 5930, 12235, 90, 45, 92, 7, 9967, 3712, 19555, 11, 1179, 82, 3712, 11251, 29291, 90, 34, 11, 2558, 30072, 810, 1391, 45, 11, 337, 11, 327, 11, 7963, 1279, 25, 27741, 12235, 90, 44, 11709, 198, 220, 220, 220, 220, 220, 220, 220, 2488, 30493, 62, 17946, 82, 62, 21230, 399, 1179, 82, 198, 220, 220, 220, 220, 220, 220, 220, 2488, 30493, 299, 421, 9895, 7, 9967, 8, 6624, 327, 366, 17618, 286, 7064, 1595, 470, 2872, 262, 2546, 286, 2512, 1, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 649, 90, 45, 11, 327, 11, 7963, 92, 7, 9967, 11, 1179, 82, 8, 198, 220, 220, 220, 886, 198, 437, 198, 198, 37811, 198, 220, 220, 220, 1234, 7, 23350, 3712, 5317, 11, 5166, 8, 198, 198, 16447, 257, 685, 63, 11588, 12235, 63, 16151, 31, 5420, 8, 351, 2472, 1271, 286, 4075, 627, 9895, 11, 290, 257, 5166, 286, 198, 24886, 290, 2512, 284, 1234, 319, 13, 198, 198, 2, 17934, 198, 198, 15506, 63, 73, 335, 38441, 395, 198, 73, 43640, 29, 1234, 7, 19, 11, 352, 14804, 55, 8, 198, 77, 421, 9895, 25, 604, 198, 1996, 319, 357, 16, 8, 198, 6552, 242, 7280, 1395, 8946, 198, 15506, 63, 198, 198, 1532, 345, 765, 284, 1234, 257, 5021, 12, 421, 2545, 8946, 319, 2176, 7064, 11, 345, 761, 284, 3551, 866, 477, 1744, 7064, 13, 198, 198, 15506, 63, 73, 335, 38441, 395, 198, 73, 43640, 29, 1234, 7, 19, 11, 357, 16, 11, 513, 8, 14804, 74, 1313, 7, 55, 11, 575, 4008, 198, 77, 421, 9895, 25, 604, 198, 1996, 319, 357, 16, 11, 513, 8, 198, 6552, 242, 7280, 479, 1313, 198, 220, 220, 33468, 7280, 352, 14804, 55, 8946, 198, 220, 220, 13305, 242, 7280, 362, 14804, 56, 8946, 198, 15506, 63, 198, 198, 464, 503, 353, 7064, 8075, 257, 8354, 543, 787, 340, 2331, 284, 307, 257, 48627, 734, 627, 9895, 329, 262, 2512, 2641, 4600, 11588, 12235, 44646, 198, 198, 10185, 9040, 198, 220, 220, 220, 632, 318, 1365, 284, 779, 685, 63, 1102, 1087, 4873, 63, 16151, 31, 5420, 8, 2427, 286, 4600, 1996, 63, 329, 1588, 7021, 11, 1201, 1234, 481, 779, 262, 17593, 286, 663, 10154, 198, 220, 220, 220, 3264, 2427, 286, 1642, 779, 286, 644, 338, 287, 340, 13, 4600, 1996, 63, 318, 517, 6942, 329, 1402, 7021, 13, 198, 37811, 198, 1996, 7, 23350, 3712, 5317, 11, 14187, 3712, 47, 958, 90, 11251, 29291, 90, 44, 11, 2558, 5512, 1279, 25, 23839, 12235, 30072, 810, 337, 796, 198, 220, 220, 220, 5930, 12235, 90, 23350, 92, 7, 8957, 13, 12227, 11, 14187, 13, 11085, 8, 198, 1996, 7, 23350, 3712, 5317, 11, 14187, 3712, 47, 958, 90, 5317, 11, 1279, 25, 23839, 12235, 30072, 796, 5930, 12235, 90, 23350, 92, 7, 8957, 13, 12227, 11, 357, 8957, 13, 11085, 11, 15306, 198, 1996, 7, 23350, 3712, 5317, 11, 14187, 3712, 47, 958, 90, 27, 25, 7149, 11, 1279, 25, 23839, 12235, 30072, 796, 5930, 12235, 90, 23350, 92, 7, 8957, 13, 12227, 11, 309, 29291, 7, 8957, 13, 11085, 4008, 198, 198, 37811, 198, 220, 220, 220, 1234, 7, 24874, 8, 4613, 277, 7, 77, 8, 198, 198, 43, 12582, 1090, 2228, 2196, 286, 685, 63, 1996, 63, 16151, 31, 5420, 737, 198, 198, 2, 17934, 198, 198, 15506, 63, 73, 335, 38441, 395, 198, 73, 43640, 29, 1234, 7, 16, 14804, 55, 8, 198, 7, 77, 4613, 1234, 7, 77, 11, 352, 5218, 1395, 8946, 4008, 198, 15506, 63, 198, 37811, 198, 1996, 7, 8957, 3712, 47, 958, 8, 796, 2488, 39377, 7, 77, 4613, 1234, 7, 77, 11, 14187, 4008, 198, 198, 28756, 62, 17946, 82, 7, 87, 3712, 11588, 12235, 8, 796, 2124, 13, 17946, 82, 198, 354, 7266, 27372, 7, 87, 3712, 11588, 12235, 90, 45, 5512, 275, 3712, 23839, 12235, 8, 810, 399, 796, 5930, 12235, 90, 45, 92, 7, 65, 11, 2124, 13, 17946, 82, 8, 198, 25460, 3760, 21466, 7, 3712, 11588, 12235, 8, 796, 1763, 3760, 3237, 3419, 198, 23870, 62, 2539, 7, 40842, 3712, 11588, 12235, 8, 796, 12940, 62, 2539, 7, 40842, 13, 11299, 8, 198, 198, 6759, 7, 3712, 6030, 90, 51, 5512, 279, 65, 3712, 11588, 12235, 90, 45, 11, 352, 30072, 810, 1391, 51, 11, 399, 92, 796, 334, 16, 6759, 7, 45, 11, 2603, 7, 51, 11, 279, 65, 13, 11299, 828, 279, 65, 13, 17946, 82, 23029, 198, 6759, 7, 3712, 6030, 90, 51, 5512, 279, 65, 3712, 11588, 12235, 90, 45, 11, 327, 30072, 810, 1391, 51, 11, 399, 11, 327, 92, 796, 555, 6759, 7, 45, 11, 2603, 7, 51, 11, 279, 65, 13, 11299, 828, 279, 65, 13, 17946, 82, 8, 198, 198, 8818, 4174, 0, 7, 81, 3712, 19182, 8081, 90, 33, 11, 309, 5512, 279, 65, 3712, 11588, 12235, 90, 45, 30072, 810, 1391, 33, 11, 309, 11, 399, 92, 198, 220, 220, 220, 4808, 9122, 62, 7857, 7, 81, 11, 279, 65, 8, 198, 220, 220, 220, 5048, 0, 7, 6759, 35138, 7, 81, 13, 5219, 828, 2603, 7, 51, 11, 279, 65, 13, 11299, 828, 279, 65, 13, 17946, 82, 8, 198, 220, 220, 220, 1441, 374, 198, 437, 198, 198, 2, 43135, 198, 1640, 402, 287, 685, 25, 55, 11, 1058, 56, 11, 1058, 57, 11, 1058, 51, 11, 1058, 50, 11, 1058, 50, 67, 363, 11, 1058, 51, 67, 363, 60, 198, 220, 220, 220, 7963, 796, 1475, 1050, 7, 37498, 12179, 1058, 34184, 22628, 11, 19879, 19667, 7, 13940, 23650, 7, 38, 11, 1058, 22628, 22305, 198, 220, 220, 220, 2488, 18206, 2163, 4174, 0, 7, 81, 3712, 19182, 8081, 11, 279, 65, 3712, 11588, 12235, 90, 45, 11, 327, 11, 1279, 25, 3, 19555, 30072, 810, 1391, 45, 11, 327, 92, 198, 220, 220, 220, 220, 220, 220, 220, 4808, 9122, 62, 7857, 7, 81, 11, 279, 65, 8, 198, 220, 220, 220, 220, 220, 220, 220, 5048, 0, 7, 6759, 35138, 7, 81, 13, 5219, 828, 3254, 16763, 7, 25178, 19667, 7, 38, 4008, 828, 279, 65, 13, 17946, 82, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 374, 198, 220, 220, 220, 886, 198, 437, 198, 198, 14881, 13, 41255, 1563, 7, 87, 3712, 11588, 12235, 90, 45, 30072, 810, 399, 796, 5930, 12235, 90, 45, 92, 7, 41255, 1563, 7, 11299, 7, 87, 36911, 2124, 13, 17946, 82, 8, 198, 14881, 13, 30073, 7, 87, 3712, 11588, 12235, 90, 45, 30072, 810, 399, 796, 5930, 12235, 90, 45, 92, 7, 87, 13, 11299, 11, 2124, 13, 17946, 82, 8, 198, 8818, 7308, 11207, 7, 855, 5769, 75, 11994, 3712, 11588, 12235, 90, 45, 11, 327, 11, 7963, 5512, 9529, 82, 3712, 11588, 12235, 90, 45, 11, 327, 11, 7963, 30072, 810, 1391, 45, 11, 327, 11, 7963, 92, 198, 220, 220, 220, 1441, 357, 75, 11994, 13, 11299, 6624, 9529, 82, 13, 11299, 8, 11405, 357, 75, 11994, 13, 17946, 82, 6624, 9529, 82, 13, 17946, 82, 8, 198, 437, 198, 198, 8818, 37826, 14881, 13, 271, 9503, 1133, 7, 87, 3712, 11588, 12235, 90, 45, 5512, 331, 3712, 11588, 12235, 90, 45, 30072, 810, 399, 198, 220, 220, 220, 611, 2124, 13, 17946, 82, 6624, 331, 13, 17946, 82, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 318, 9503, 1133, 7, 87, 13, 11299, 11, 331, 13, 11299, 8, 198, 220, 220, 220, 2073, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 318, 9503, 1133, 62, 7207, 1891, 7, 87, 11, 331, 8, 198, 220, 220, 220, 886, 198, 437, 198 ]
2.346774
1,364
<gh_stars>1-10 struct WeightedLeastSquares estimate::Array{Float64,1} rmse::Float64 mae::Float64 wrss::Float64 end struct ErrorMetric rmse::Float64 mae::Float64 wrss::Float64 end struct ErrorMetricWiden rmse::Float64 mae::Float64 wrss::Float64 rmseGBPWLS::Float64 maeGBPWLS::Float64 end ########## Compute the GBP error metrics ########## function errorMetric(gbp::Union{ContinuousModel, ContinuousTreeModel}) observationGBP = gbp.system.jacobian * gbp.inference.mean NactiveRows = activeRows(gbp) rmse = 0.0; mae = 0.0; wrss = 0.0 @inbounds for i = 1:length(gbp.system.observation) rmse += (gbp.system.observation[i] - observationGBP[i])^2 mae += abs(gbp.system.observation[i] - observationGBP[i]) wrss += (gbp.system.observation[i] - observationGBP[i]) / gbp.system.variance[i] end rmse = (rmse / NactiveRows)^(1/2) mae = mae / NactiveRows return ErrorMetric(rmse, mae, wrss) end ########## Compute the GBP error metrics and error according to the WLS ########## @inline function errorMetric(gbp::Union{ContinuousModel, ContinuousTreeModel}, wls::WeightedLeastSquares) observationGBP = gbp.system.jacobian * gbp.inference.mean NactiveRows = activeRows(gbp) rmse = 0.0; mae = 0.0; wrss = 0.0 @inbounds for i = 1:length(gbp.system.observation) rmse += (gbp.system.observation[i] - observationGBP[i])^2 mae += abs(gbp.system.observation[i] - observationGBP[i]) wrss += (gbp.system.observation[i] - observationGBP[i]) / gbp.system.variance[i] end rmse = (rmse / NactiveRows)^(1/2) mae = mae / NactiveRows rmseGBPWLS = 0.0; maeGBPWLS = 0.0 @inbounds for i = 1:gbp.graph.Nvariable rmseGBPWLS += (wls.estimate[i] - gbp.inference.mean[i])^2 maeGBPWLS += abs(wls.estimate[i] - gbp.inference.mean[i]) end rmseGBPWLS = (rmseGBPWLS / gbp.graph.Nvariable)^(1/2) maeGBPWLS = maeGBPWLS / gbp.graph.Nvariable return ErrorMetricWiden(rmse, mae, wrss, rmseGBPWLS, maeGBPWLS) end ########## Compute WLS solution and error metrics ########## function wls(gbp::Union{ContinuousModel, ContinuousTreeModel}) W = spdiagm(0 => @. 1.0 / sqrt(gbp.system.variance)) A = W * gbp.system.jacobian G = A' * A b = A' * W * gbp.system.observation x = G \ b observationWLS = gbp.system.jacobian * x NactiveRows = activeRows(gbp) rmse = 0.0; mae = 0.0; wrss = 0.0 @inbounds for i = 1:length(gbp.system.observation) rmse += (gbp.system.observation[i] - observationWLS[i])^2 mae += abs(gbp.system.observation[i] - observationWLS[i]) wrss += (gbp.system.observation[i] - observationWLS[i]) / gbp.system.variance[i] end rmse = (rmse / NactiveRows)^(1/2) mae = mae / NactiveRows return WeightedLeastSquares(x, rmse, mae, wrss) end ########## Display: GBP and WLS ########## function displayData(args...) gbpIdx = 0; wlsIdx = 0; errorIdx = 0; widenIdx = 0 @inbounds for (k, i) in enumerate(args) T = split.(string(typeof(i)), ".")[end] if T == "ContinuousModel" || T == "ContinuousTreeModel" gbpIdx = k end if T == "WeightedLeastSquares" wlsIdx = k end if T == "ErrorMetric" || T == "ErrorMetricWiden" errorIdx = k end end if gbpIdx == 0 error("FactorGraph model is missing.") end if errorIdx != 0 && wlsIdx == 0 data = ["" "" "" "Error Metrics" "" "" "Root mean square error of the Gaussian belief propagation" "."^10 getfield(args[errorIdx], :rmse); "Mean absolute error of the Gaussian belief propagation" "."^10 getfield(args[errorIdx], :mae); "Weighted residual sum of squares error of the Gaussian belief propagation" "."^10 getfield(args[errorIdx], :wrss)] pretty_table(data, tf = tf_borderless, columns_width = [75, 11, 14], noheader = true, alignment = [:l, :l, :r], formatters = ft_printf("%1.4e", 3), highlighters = (hl_cell( [(2,1)], crayon"bold"), hl_col(2, crayon"dark_gray")), body_hlines = [2], body_hlines_format = Tuple('─' for _ = 1:4)) end if errorIdx != 0 && wlsIdx != 0 data = ["" "" "" "Error Metrics" "" "" "Root mean square error of the Gaussian belief propagation" "."^10 getfield(args[errorIdx], :rmse); "Root mean square error of the weighted least-squares method" "."^10 getfield(args[wlsIdx], :rmse); "Root mean square error ratio" "."^10 getfield(args[errorIdx], :rmse) / getfield(args[wlsIdx], :rmse); "" "" ""; "Mean absolute error of the Gaussian belief propagation" "."^10 getfield(args[errorIdx], :mae); "Mean absolute error of the weighted least-squares method" "."^10 getfield(args[wlsIdx], :mae); "Mean absolute error ratio" "."^10 getfield(args[errorIdx], :mae) / getfield(args[wlsIdx], :mae); "" "" ""; "Weighted residual sum of squares of the belief propagation" "."^10 getfield(args[errorIdx], :wrss); "Weighted residual sum of squares of the weighted least-squares method" "."^10 getfield(args[wlsIdx], :wrss); "Weighted residual sum of squares ratio" "."^10 getfield(args[errorIdx], :wrss) / getfield(args[wlsIdx], :wrss)] high = Highlighter((data,i,j) -> i == 5 && j == 3 && data[5,3] > 1.1, Crayon(bold = true, background = :red)) pretty_table(data, tf = tf_borderless, columns_width = [75, 11, 14], noheader = true, alignment = [:l, :l, :r], formatters = ft_printf("%1.4e", 3), highlighters = (high, hl_cell([(2,1), (8,3), (5,3)], crayon"bold"), hl_col(2, crayon"dark_gray")), body_hlines = [2], body_hlines_format = Tuple('─' for _ = 1:4)) end if wlsIdx == 0 println("\n State Variables Display") pretty_table([collect(1:getfield(args[gbpIdx].graph, :Nvariable)) getfield(args[gbpIdx].inference, :mean)], header = ["State Variable", "Estimate"], alignment=[:r, :r], formatters = ft_printf(["%3.0f", "%3.6f"], [1, 2])) end if wlsIdx != 0 A = [collect(1:getfield(args[gbpIdx].graph, :Nvariable)) getfield(args[gbpIdx].inference, :mean) getfield(args[wlsIdx], :estimate) getfield(args[gbpIdx].inference, :mean) ./ getfield(args[wlsIdx], :estimate)] A = A[reverse(sortperm(A[:, 4])), :] println("\n State Variables Display") pretty_table(A, header = ["State Variable", "Belief Propagation Estimate", "Weighted Least-squares Estimate", "Estimates Ratio"], columns_width = [15, 28, 32, 20], alignment=[:r, :r, :r, :r], formatters = ft_printf(["%3.0f", "%3.6f", "%3.6f", "%3.6e"], [1, 2, 3, 4])) end end ########## Find number of nonzeros rows ########## @inline function activeRows(gbp) NactiveRows = length(gbp.system.observation) @inbounds for (k, i) in enumerate(gbp.system.observation) if i == 0.0 if all(gbp.system.jacobianTranspose[:, k] .== 0.0) NactiveRows -= 1 end end end return NactiveRows end ########## Start row in xlsx-file ########## function startxlsx(xf) start = 1 @inbounds for r in XLSX.eachrow(xf) if !isa(r[1], String) start = XLSX.row_number(r) break end end return start end ########## Check data for import ########## function checkImportFile(args) #### Check the package is installed pathtoFactorGraph = Base.find_package("FactorGraph") if isnothing(pathtoFactorGraph) throw(ErrorException("FactorGraph not found in install packages")) end packagepath = abspath(joinpath(dirname(pathtoFactorGraph), "..")) extension = ".h5"; path = ""; dataname = ""; fullpath = "" @inbounds for i = 1:length(args) try extension = string(match(r"\.[A-Za-z0-9]+$", args[i]).match) catch extension = "" end if extension == ".h5" || extension == ".xlsx" fullpath = args[i] path = dirname(args[i]) dataname = basename(args[i]) break end end if isempty(extension) throw(ErrorException("the input DATA extension is not found")) elseif extension != ".h5" && extension != ".xlsx" throw(DomainError(extension, "the input DATA extension is not supported")) end if path == "" path = joinpath(packagepath, "src/example/") fullpath = joinpath(packagepath, "src/example/", dataname) end if !(dataname in cd(readdir, path)) throw(DomainError(dataname, "the input DATA is not found")) end return fullpath, extension, dataname end ########## Check keyword arguments ########## function checkKeywords(prob, alpha, variance) #### Check convergence parameters if prob <= 0.0 || prob >= 1.0 error("Invalid prob value.") end if alpha <= 0.0 || alpha >= 1.0 error("Invalid alpha value.") end #### Check initial variance if variance < 0.0 error("Invalid variance value.") end end ########## Type of the system data ########## function checkFileOrArguments(args) fromfile = false @inbounds for i in args if typeof(i) == String fromfile = true break end end return fromfile end
[ 27, 456, 62, 30783, 29, 16, 12, 940, 198, 7249, 14331, 276, 3123, 459, 22266, 3565, 198, 220, 220, 220, 8636, 3712, 19182, 90, 43879, 2414, 11, 16, 92, 198, 220, 220, 220, 42721, 325, 3712, 43879, 2414, 198, 220, 220, 220, 285, 3609, 3712, 43879, 2414, 198, 220, 220, 220, 1319, 824, 3712, 43879, 2414, 198, 437, 198, 198, 7249, 13047, 9171, 1173, 198, 220, 220, 220, 42721, 325, 3712, 43879, 2414, 198, 220, 220, 220, 285, 3609, 3712, 43879, 2414, 198, 220, 220, 220, 1319, 824, 3712, 43879, 2414, 198, 437, 198, 198, 7249, 13047, 9171, 1173, 54, 14029, 198, 220, 220, 220, 42721, 325, 3712, 43879, 2414, 198, 220, 220, 220, 285, 3609, 3712, 43879, 2414, 198, 220, 220, 220, 1319, 824, 3712, 43879, 2414, 198, 220, 220, 220, 42721, 325, 4579, 47, 54, 6561, 3712, 43879, 2414, 198, 220, 220, 220, 285, 3609, 4579, 47, 54, 6561, 3712, 43879, 2414, 198, 437, 198, 198, 7804, 2235, 3082, 1133, 262, 13124, 47, 4049, 20731, 1303, 7804, 2, 198, 8818, 4049, 9171, 1173, 7, 22296, 79, 3712, 38176, 90, 17875, 5623, 17633, 11, 45012, 27660, 17633, 30072, 198, 220, 220, 220, 13432, 4579, 47, 796, 308, 46583, 13, 10057, 13, 30482, 672, 666, 1635, 308, 46583, 13, 259, 4288, 13, 32604, 198, 220, 220, 220, 399, 5275, 49, 1666, 796, 4075, 49, 1666, 7, 22296, 79, 8, 628, 220, 220, 220, 42721, 325, 796, 657, 13, 15, 26, 285, 3609, 796, 657, 13, 15, 26, 1319, 824, 796, 657, 13, 15, 198, 220, 220, 220, 2488, 259, 65, 3733, 329, 1312, 796, 352, 25, 13664, 7, 22296, 79, 13, 10057, 13, 672, 3168, 341, 8, 198, 220, 220, 220, 220, 220, 220, 220, 42721, 325, 15853, 357, 22296, 79, 13, 10057, 13, 672, 3168, 341, 58, 72, 60, 532, 13432, 4579, 47, 58, 72, 12962, 61, 17, 198, 220, 220, 220, 220, 220, 220, 220, 285, 3609, 15853, 2352, 7, 22296, 79, 13, 10057, 13, 672, 3168, 341, 58, 72, 60, 532, 13432, 4579, 47, 58, 72, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 1319, 824, 15853, 357, 22296, 79, 13, 10057, 13, 672, 3168, 341, 58, 72, 60, 532, 13432, 4579, 47, 58, 72, 12962, 1220, 308, 46583, 13, 10057, 13, 25641, 590, 58, 72, 60, 198, 220, 220, 220, 886, 198, 220, 220, 220, 42721, 325, 796, 357, 26224, 325, 1220, 399, 5275, 49, 1666, 8, 61, 7, 16, 14, 17, 8, 198, 220, 220, 220, 285, 3609, 796, 285, 3609, 1220, 399, 5275, 49, 1666, 628, 220, 220, 220, 1441, 13047, 9171, 1173, 7, 26224, 325, 11, 285, 3609, 11, 1319, 824, 8, 198, 437, 198, 198, 7804, 2235, 3082, 1133, 262, 13124, 47, 4049, 20731, 290, 4049, 1864, 284, 262, 370, 6561, 1303, 7804, 2, 198, 31, 45145, 2163, 4049, 9171, 1173, 7, 22296, 79, 3712, 38176, 90, 17875, 5623, 17633, 11, 45012, 27660, 17633, 5512, 266, 7278, 3712, 25844, 276, 3123, 459, 22266, 3565, 8, 198, 220, 220, 220, 13432, 4579, 47, 796, 308, 46583, 13, 10057, 13, 30482, 672, 666, 1635, 308, 46583, 13, 259, 4288, 13, 32604, 198, 220, 220, 220, 399, 5275, 49, 1666, 796, 4075, 49, 1666, 7, 22296, 79, 8, 628, 220, 220, 220, 42721, 325, 796, 657, 13, 15, 26, 285, 3609, 796, 657, 13, 15, 26, 1319, 824, 796, 657, 13, 15, 198, 220, 220, 220, 2488, 259, 65, 3733, 329, 1312, 796, 352, 25, 13664, 7, 22296, 79, 13, 10057, 13, 672, 3168, 341, 8, 198, 220, 220, 220, 220, 220, 220, 220, 42721, 325, 15853, 357, 22296, 79, 13, 10057, 13, 672, 3168, 341, 58, 72, 60, 532, 13432, 4579, 47, 58, 72, 12962, 61, 17, 198, 220, 220, 220, 220, 220, 220, 220, 285, 3609, 15853, 2352, 7, 22296, 79, 13, 10057, 13, 672, 3168, 341, 58, 72, 60, 532, 13432, 4579, 47, 58, 72, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 1319, 824, 15853, 357, 22296, 79, 13, 10057, 13, 672, 3168, 341, 58, 72, 60, 532, 13432, 4579, 47, 58, 72, 12962, 1220, 308, 46583, 13, 10057, 13, 25641, 590, 58, 72, 60, 198, 220, 220, 220, 886, 198, 220, 220, 220, 42721, 325, 796, 357, 26224, 325, 1220, 399, 5275, 49, 1666, 8, 61, 7, 16, 14, 17, 8, 198, 220, 220, 220, 285, 3609, 796, 285, 3609, 1220, 399, 5275, 49, 1666, 628, 220, 220, 220, 42721, 325, 4579, 47, 54, 6561, 796, 657, 13, 15, 26, 285, 3609, 4579, 47, 54, 6561, 796, 657, 13, 15, 198, 220, 220, 220, 2488, 259, 65, 3733, 329, 1312, 796, 352, 25, 22296, 79, 13, 34960, 13, 45, 45286, 198, 220, 220, 220, 220, 220, 220, 220, 42721, 325, 4579, 47, 54, 6561, 15853, 357, 86, 7278, 13, 395, 1920, 58, 72, 60, 532, 308, 46583, 13, 259, 4288, 13, 32604, 58, 72, 12962, 61, 17, 198, 220, 220, 220, 220, 220, 220, 220, 285, 3609, 4579, 47, 54, 6561, 15853, 2352, 7, 86, 7278, 13, 395, 1920, 58, 72, 60, 532, 308, 46583, 13, 259, 4288, 13, 32604, 58, 72, 12962, 198, 220, 220, 220, 886, 198, 220, 220, 220, 42721, 325, 4579, 47, 54, 6561, 796, 357, 26224, 325, 4579, 47, 54, 6561, 1220, 308, 46583, 13, 34960, 13, 45, 45286, 8, 61, 7, 16, 14, 17, 8, 198, 220, 220, 220, 285, 3609, 4579, 47, 54, 6561, 796, 285, 3609, 4579, 47, 54, 6561, 1220, 308, 46583, 13, 34960, 13, 45, 45286, 628, 220, 220, 220, 1441, 13047, 9171, 1173, 54, 14029, 7, 26224, 325, 11, 285, 3609, 11, 1319, 824, 11, 42721, 325, 4579, 47, 54, 6561, 11, 285, 3609, 4579, 47, 54, 6561, 8, 198, 437, 198, 198, 7804, 2235, 3082, 1133, 370, 6561, 4610, 290, 4049, 20731, 1303, 7804, 2, 198, 8818, 266, 7278, 7, 22296, 79, 3712, 38176, 90, 17875, 5623, 17633, 11, 45012, 27660, 17633, 30072, 198, 220, 220, 220, 370, 796, 599, 10989, 363, 76, 7, 15, 5218, 220, 2488, 13, 352, 13, 15, 1220, 19862, 17034, 7, 22296, 79, 13, 10057, 13, 25641, 590, 4008, 198, 220, 220, 220, 317, 796, 370, 1635, 308, 46583, 13, 10057, 13, 30482, 672, 666, 198, 220, 220, 220, 402, 796, 317, 6, 1635, 317, 198, 220, 220, 220, 275, 796, 317, 6, 1635, 370, 1635, 308, 46583, 13, 10057, 13, 672, 3168, 341, 198, 220, 220, 220, 2124, 796, 402, 3467, 275, 628, 220, 220, 220, 13432, 54, 6561, 796, 308, 46583, 13, 10057, 13, 30482, 672, 666, 1635, 2124, 198, 220, 220, 220, 399, 5275, 49, 1666, 796, 4075, 49, 1666, 7, 22296, 79, 8, 628, 220, 220, 220, 42721, 325, 796, 657, 13, 15, 26, 285, 3609, 796, 657, 13, 15, 26, 1319, 824, 796, 657, 13, 15, 198, 220, 220, 220, 2488, 259, 65, 3733, 329, 1312, 796, 352, 25, 13664, 7, 22296, 79, 13, 10057, 13, 672, 3168, 341, 8, 198, 220, 220, 220, 220, 220, 220, 220, 42721, 325, 15853, 357, 22296, 79, 13, 10057, 13, 672, 3168, 341, 58, 72, 60, 532, 13432, 54, 6561, 58, 72, 12962, 61, 17, 198, 220, 220, 220, 220, 220, 220, 220, 285, 3609, 15853, 2352, 7, 22296, 79, 13, 10057, 13, 672, 3168, 341, 58, 72, 60, 532, 13432, 54, 6561, 58, 72, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 1319, 824, 15853, 357, 22296, 79, 13, 10057, 13, 672, 3168, 341, 58, 72, 60, 532, 13432, 54, 6561, 58, 72, 12962, 1220, 308, 46583, 13, 10057, 13, 25641, 590, 58, 72, 60, 198, 220, 220, 220, 886, 198, 220, 220, 220, 42721, 325, 796, 357, 26224, 325, 1220, 399, 5275, 49, 1666, 8, 61, 7, 16, 14, 17, 8, 198, 220, 220, 220, 285, 3609, 796, 285, 3609, 1220, 399, 5275, 49, 1666, 628, 220, 220, 220, 1441, 14331, 276, 3123, 459, 22266, 3565, 7, 87, 11, 42721, 325, 11, 285, 3609, 11, 1319, 824, 8, 198, 437, 198, 198, 7804, 2235, 16531, 25, 13124, 47, 290, 370, 6561, 1303, 7804, 2, 198, 8818, 3359, 6601, 7, 22046, 23029, 198, 220, 220, 220, 308, 46583, 7390, 87, 796, 657, 26, 266, 7278, 7390, 87, 796, 657, 26, 4049, 7390, 87, 796, 657, 26, 45676, 7390, 87, 796, 657, 198, 220, 220, 220, 2488, 259, 65, 3733, 329, 357, 74, 11, 1312, 8, 287, 27056, 378, 7, 22046, 8, 198, 220, 220, 220, 220, 220, 220, 220, 309, 796, 6626, 12195, 8841, 7, 4906, 1659, 7, 72, 36911, 366, 19570, 58, 437, 60, 198, 220, 220, 220, 220, 220, 220, 220, 611, 309, 6624, 366, 17875, 5623, 17633, 1, 8614, 309, 6624, 366, 17875, 5623, 27660, 17633, 1, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 308, 46583, 7390, 87, 796, 479, 198, 220, 220, 220, 220, 220, 220, 220, 886, 198, 220, 220, 220, 220, 220, 220, 220, 611, 309, 6624, 366, 25844, 276, 3123, 459, 22266, 3565, 1, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 266, 7278, 7390, 87, 796, 479, 198, 220, 220, 220, 220, 220, 220, 220, 886, 198, 220, 220, 220, 220, 220, 220, 220, 611, 309, 6624, 366, 12331, 9171, 1173, 1, 8614, 309, 6624, 366, 12331, 9171, 1173, 54, 14029, 1, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4049, 7390, 87, 796, 479, 198, 220, 220, 220, 220, 220, 220, 220, 886, 198, 220, 220, 220, 886, 198, 220, 220, 220, 611, 308, 46583, 7390, 87, 6624, 657, 198, 220, 220, 220, 220, 220, 220, 4049, 7203, 41384, 37065, 2746, 318, 4814, 19570, 198, 220, 220, 220, 886, 628, 220, 220, 220, 611, 4049, 7390, 87, 14512, 657, 11405, 266, 7278, 7390, 87, 6624, 657, 198, 220, 220, 220, 220, 220, 220, 220, 1366, 796, 14631, 1, 13538, 13538, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 12331, 3395, 10466, 1, 13538, 13538, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 30016, 1612, 6616, 4049, 286, 262, 12822, 31562, 4901, 43594, 1, 366, 526, 61, 940, 651, 3245, 7, 22046, 58, 18224, 7390, 87, 4357, 1058, 26224, 325, 1776, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 5308, 272, 4112, 4049, 286, 262, 12822, 31562, 4901, 43594, 1, 366, 526, 61, 940, 651, 3245, 7, 22046, 58, 18224, 7390, 87, 4357, 1058, 2611, 68, 1776, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 25844, 276, 29598, 2160, 286, 24438, 4049, 286, 262, 12822, 31562, 4901, 43594, 1, 366, 526, 61, 940, 651, 3245, 7, 22046, 58, 18224, 7390, 87, 4357, 1058, 18351, 824, 15437, 628, 220, 220, 220, 220, 220, 220, 220, 2495, 62, 11487, 7, 7890, 11, 48700, 796, 48700, 62, 20192, 1203, 11, 15180, 62, 10394, 796, 685, 2425, 11, 1367, 11, 1478, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 645, 25677, 796, 2081, 11, 19114, 796, 685, 25, 75, 11, 1058, 75, 11, 1058, 81, 4357, 5794, 1010, 796, 10117, 62, 37435, 7203, 4, 16, 13, 19, 68, 1600, 513, 828, 198, 220, 220, 220, 220, 220, 220, 220, 1029, 75, 6261, 796, 357, 18519, 62, 3846, 7, 47527, 17, 11, 16, 8, 4357, 1067, 323, 261, 1, 36575, 12340, 289, 75, 62, 4033, 7, 17, 11, 1067, 323, 261, 1, 21953, 62, 44605, 4943, 828, 198, 220, 220, 220, 220, 220, 220, 220, 1767, 62, 71, 6615, 796, 685, 17, 4357, 1767, 62, 71, 6615, 62, 18982, 796, 309, 29291, 10786, 7280, 6, 329, 4808, 796, 352, 25, 19, 4008, 198, 220, 220, 220, 886, 628, 220, 220, 220, 611, 4049, 7390, 87, 14512, 657, 11405, 266, 7278, 7390, 87, 14512, 657, 198, 220, 220, 220, 220, 220, 220, 220, 1366, 796, 14631, 1, 13538, 13538, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 12331, 3395, 10466, 1, 13538, 13538, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 30016, 1612, 6616, 4049, 286, 262, 12822, 31562, 4901, 43594, 1, 366, 526, 61, 940, 651, 3245, 7, 22046, 58, 18224, 7390, 87, 4357, 1058, 26224, 325, 1776, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 30016, 1612, 6616, 4049, 286, 262, 26356, 1551, 12, 16485, 3565, 2446, 1, 366, 526, 61, 940, 220, 651, 3245, 7, 22046, 58, 86, 7278, 7390, 87, 4357, 1058, 26224, 325, 1776, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 30016, 1612, 6616, 4049, 8064, 1, 366, 526, 61, 940, 651, 3245, 7, 22046, 58, 18224, 7390, 87, 4357, 1058, 26224, 325, 8, 1220, 651, 3245, 7, 22046, 58, 86, 7278, 7390, 87, 4357, 1058, 26224, 325, 1776, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 13538, 13538, 366, 8172, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 5308, 272, 4112, 4049, 286, 262, 12822, 31562, 4901, 43594, 1, 366, 526, 61, 940, 651, 3245, 7, 22046, 58, 18224, 7390, 87, 4357, 1058, 2611, 68, 1776, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 5308, 272, 4112, 4049, 286, 262, 26356, 1551, 12, 16485, 3565, 2446, 1, 366, 526, 61, 940, 651, 3245, 7, 22046, 58, 86, 7278, 7390, 87, 4357, 1058, 2611, 68, 1776, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 5308, 272, 4112, 4049, 8064, 1, 366, 526, 61, 940, 651, 3245, 7, 22046, 58, 18224, 7390, 87, 4357, 1058, 2611, 68, 8, 1220, 651, 3245, 7, 22046, 58, 86, 7278, 7390, 87, 4357, 1058, 2611, 68, 1776, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 13538, 13538, 366, 8172, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 25844, 276, 29598, 2160, 286, 24438, 286, 262, 4901, 43594, 1, 366, 526, 61, 940, 651, 3245, 7, 22046, 58, 18224, 7390, 87, 4357, 1058, 18351, 824, 1776, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 25844, 276, 29598, 2160, 286, 24438, 286, 262, 26356, 1551, 12, 16485, 3565, 2446, 1, 366, 526, 61, 940, 651, 3245, 7, 22046, 58, 86, 7278, 7390, 87, 4357, 1058, 18351, 824, 1776, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 25844, 276, 29598, 2160, 286, 24438, 8064, 1, 366, 526, 61, 940, 651, 3245, 7, 22046, 58, 18224, 7390, 87, 4357, 1058, 18351, 824, 8, 1220, 651, 3245, 7, 22046, 58, 86, 7278, 7390, 87, 4357, 1058, 18351, 824, 15437, 628, 220, 220, 220, 220, 220, 220, 220, 1029, 796, 3334, 75, 4799, 19510, 7890, 11, 72, 11, 73, 8, 4613, 1312, 6624, 642, 11405, 474, 6624, 513, 11405, 1366, 58, 20, 11, 18, 60, 1875, 352, 13, 16, 11, 327, 2433, 261, 7, 36575, 796, 2081, 11, 4469, 796, 1058, 445, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 2495, 62, 11487, 7, 7890, 11, 48700, 796, 48700, 62, 20192, 1203, 11, 15180, 62, 10394, 796, 685, 2425, 11, 1367, 11, 1478, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 645, 25677, 796, 2081, 11, 19114, 796, 685, 25, 75, 11, 1058, 75, 11, 1058, 81, 4357, 5794, 1010, 796, 10117, 62, 37435, 7203, 4, 16, 13, 19, 68, 1600, 513, 828, 198, 220, 220, 220, 220, 220, 220, 220, 1029, 75, 6261, 796, 357, 8929, 11, 289, 75, 62, 3846, 26933, 7, 17, 11, 16, 828, 357, 23, 11, 18, 828, 357, 20, 11, 18, 8, 4357, 1067, 323, 261, 1, 36575, 12340, 289, 75, 62, 4033, 7, 17, 11, 1067, 323, 261, 1, 21953, 62, 44605, 4943, 828, 198, 220, 220, 220, 220, 220, 220, 220, 1767, 62, 71, 6615, 796, 685, 17, 4357, 1767, 62, 71, 6615, 62, 18982, 796, 309, 29291, 10786, 7280, 6, 329, 4808, 796, 352, 25, 19, 4008, 198, 220, 220, 220, 886, 628, 220, 220, 220, 611, 266, 7278, 7390, 87, 6624, 657, 198, 220, 220, 220, 220, 220, 220, 220, 44872, 7203, 59, 77, 1812, 15965, 2977, 16531, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 2495, 62, 11487, 26933, 33327, 7, 16, 25, 1136, 3245, 7, 22046, 58, 22296, 79, 7390, 87, 4083, 34960, 11, 1058, 45, 45286, 4008, 651, 3245, 7, 22046, 58, 22296, 79, 7390, 87, 4083, 259, 4288, 11, 1058, 32604, 8, 4357, 13639, 796, 14631, 9012, 35748, 1600, 366, 22362, 1920, 33116, 198, 220, 220, 220, 220, 220, 220, 220, 19114, 41888, 25, 81, 11, 1058, 81, 4357, 5794, 1010, 796, 10117, 62, 37435, 7, 14692, 4, 18, 13, 15, 69, 1600, 36521, 18, 13, 21, 69, 33116, 685, 16, 11, 362, 60, 4008, 198, 220, 220, 220, 886, 628, 220, 220, 220, 611, 266, 7278, 7390, 87, 14512, 657, 198, 220, 220, 220, 220, 220, 220, 220, 317, 796, 685, 33327, 7, 16, 25, 1136, 3245, 7, 22046, 58, 22296, 79, 7390, 87, 4083, 34960, 11, 1058, 45, 45286, 4008, 651, 3245, 7, 22046, 58, 22296, 79, 7390, 87, 4083, 259, 4288, 11, 1058, 32604, 8, 651, 3245, 7, 22046, 58, 86, 7278, 7390, 87, 4357, 1058, 395, 1920, 8, 651, 3245, 7, 22046, 58, 22296, 79, 7390, 87, 4083, 259, 4288, 11, 1058, 32604, 8, 24457, 651, 3245, 7, 22046, 58, 86, 7278, 7390, 87, 4357, 1058, 395, 1920, 15437, 198, 220, 220, 220, 220, 220, 220, 220, 317, 796, 317, 58, 50188, 7, 30619, 16321, 7, 32, 58, 45299, 604, 12962, 828, 220, 1058, 60, 628, 220, 220, 220, 220, 220, 220, 220, 44872, 7203, 59, 77, 1812, 15965, 2977, 16531, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 2495, 62, 11487, 7, 32, 11, 13639, 796, 14631, 9012, 35748, 1600, 366, 12193, 2086, 8772, 363, 341, 10062, 1920, 1600, 366, 25844, 276, 1004, 459, 12, 16485, 3565, 10062, 1920, 1600, 366, 22362, 26748, 33956, 33116, 198, 220, 220, 220, 220, 220, 220, 220, 15180, 62, 10394, 796, 685, 1314, 11, 2579, 11, 3933, 11, 1160, 4357, 19114, 41888, 25, 81, 11, 1058, 81, 11, 1058, 81, 11, 1058, 81, 4357, 5794, 1010, 796, 10117, 62, 37435, 7, 14692, 4, 18, 13, 15, 69, 1600, 36521, 18, 13, 21, 69, 1600, 36521, 18, 13, 21, 69, 1600, 36521, 18, 13, 21, 68, 33116, 685, 16, 11, 362, 11, 513, 11, 604, 60, 4008, 198, 220, 220, 220, 886, 198, 437, 198, 198, 7804, 2235, 9938, 1271, 286, 1729, 9107, 418, 15274, 1303, 7804, 2, 198, 31, 45145, 2163, 4075, 49, 1666, 7, 22296, 79, 8, 198, 220, 220, 220, 399, 5275, 49, 1666, 796, 4129, 7, 22296, 79, 13, 10057, 13, 672, 3168, 341, 8, 198, 220, 220, 220, 2488, 259, 65, 3733, 329, 357, 74, 11, 1312, 8, 287, 27056, 378, 7, 22296, 79, 13, 10057, 13, 672, 3168, 341, 8, 198, 220, 220, 220, 220, 220, 220, 220, 611, 1312, 6624, 657, 13, 15, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 477, 7, 22296, 79, 13, 10057, 13, 30482, 672, 666, 8291, 3455, 58, 45299, 479, 60, 764, 855, 657, 13, 15, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 399, 5275, 49, 1666, 48185, 352, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 886, 198, 220, 220, 220, 220, 220, 220, 220, 886, 198, 220, 220, 220, 886, 628, 220, 220, 220, 1441, 399, 5275, 49, 1666, 198, 437, 198, 198, 7804, 2235, 7253, 5752, 287, 2124, 7278, 87, 12, 7753, 1303, 7804, 2, 198, 8818, 923, 87, 7278, 87, 7, 26152, 8, 198, 220, 220, 220, 923, 796, 352, 198, 220, 220, 220, 2488, 259, 65, 3733, 329, 374, 287, 1395, 6561, 55, 13, 27379, 808, 7, 26152, 8, 198, 220, 220, 220, 220, 220, 220, 220, 611, 5145, 9160, 7, 81, 58, 16, 4357, 10903, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 923, 796, 1395, 6561, 55, 13, 808, 62, 17618, 7, 81, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2270, 198, 220, 220, 220, 220, 220, 220, 220, 886, 198, 220, 220, 220, 886, 198, 220, 220, 220, 1441, 923, 198, 437, 198, 198, 7804, 2235, 6822, 1366, 329, 1330, 1303, 7804, 2, 198, 8818, 2198, 20939, 8979, 7, 22046, 8, 198, 220, 220, 220, 1303, 21017, 6822, 262, 5301, 318, 6589, 198, 220, 220, 220, 3108, 1462, 41384, 37065, 796, 7308, 13, 19796, 62, 26495, 7203, 41384, 37065, 4943, 198, 220, 220, 220, 611, 318, 22366, 7, 6978, 1462, 41384, 37065, 8, 198, 220, 220, 220, 220, 220, 220, 220, 3714, 7, 12331, 16922, 7203, 41384, 37065, 407, 1043, 287, 2721, 10392, 48774, 198, 220, 220, 220, 886, 198, 220, 220, 220, 5301, 6978, 796, 2352, 6978, 7, 22179, 6978, 7, 15908, 3672, 7, 6978, 1462, 41384, 37065, 828, 366, 492, 48774, 628, 220, 220, 220, 7552, 796, 27071, 71, 20, 8172, 3108, 796, 366, 8172, 4818, 272, 480, 796, 366, 8172, 1336, 6978, 796, 13538, 628, 220, 220, 220, 2488, 259, 65, 3733, 329, 1312, 796, 352, 25, 13664, 7, 22046, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1949, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7552, 796, 4731, 7, 15699, 7, 81, 1, 59, 3693, 32, 12, 57, 64, 12, 89, 15, 12, 24, 48688, 3, 1600, 26498, 58, 72, 35944, 15699, 8, 198, 220, 220, 220, 220, 220, 220, 220, 4929, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7552, 796, 13538, 198, 220, 220, 220, 220, 220, 220, 220, 886, 198, 220, 220, 220, 220, 220, 220, 220, 611, 7552, 6624, 27071, 71, 20, 1, 8614, 7552, 6624, 27071, 87, 7278, 87, 1, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1336, 6978, 796, 26498, 58, 72, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 796, 26672, 3672, 7, 22046, 58, 72, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4818, 272, 480, 796, 1615, 12453, 7, 22046, 58, 72, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2270, 198, 220, 220, 220, 220, 220, 220, 220, 886, 198, 220, 220, 220, 886, 628, 220, 220, 220, 611, 318, 28920, 7, 2302, 3004, 8, 198, 220, 220, 220, 220, 220, 220, 220, 3714, 7, 12331, 16922, 7203, 1169, 5128, 42865, 7552, 318, 407, 1043, 48774, 198, 220, 220, 220, 2073, 361, 7552, 14512, 27071, 71, 20, 1, 11405, 7552, 14512, 27071, 87, 7278, 87, 1, 198, 220, 220, 220, 220, 220, 220, 220, 3714, 7, 43961, 12331, 7, 2302, 3004, 11, 366, 1169, 5128, 42865, 7552, 318, 407, 4855, 48774, 198, 220, 220, 220, 886, 628, 220, 220, 220, 611, 3108, 6624, 13538, 198, 220, 220, 220, 220, 220, 220, 220, 3108, 796, 4654, 6978, 7, 26495, 6978, 11, 366, 10677, 14, 20688, 14, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 1336, 6978, 796, 4654, 6978, 7, 26495, 6978, 11, 366, 10677, 14, 20688, 14, 1600, 4818, 272, 480, 8, 198, 220, 220, 220, 886, 628, 220, 220, 220, 611, 5145, 7, 19608, 272, 480, 287, 22927, 7, 961, 15908, 11, 3108, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 3714, 7, 43961, 12331, 7, 19608, 272, 480, 11, 366, 1169, 5128, 42865, 318, 407, 1043, 48774, 198, 220, 220, 220, 886, 628, 220, 220, 220, 1441, 1336, 6978, 11, 7552, 11, 4818, 272, 480, 198, 437, 198, 198, 7804, 2235, 6822, 21179, 7159, 1303, 7804, 2, 198, 8818, 2198, 9218, 10879, 7, 1676, 65, 11, 17130, 11, 24198, 8, 198, 220, 220, 220, 1303, 21017, 6822, 40826, 10007, 198, 220, 220, 220, 611, 1861, 19841, 657, 13, 15, 8614, 1861, 18189, 352, 13, 15, 198, 220, 220, 220, 220, 220, 220, 220, 4049, 7203, 44651, 1861, 1988, 19570, 198, 220, 220, 220, 886, 198, 220, 220, 220, 611, 17130, 19841, 657, 13, 15, 8614, 17130, 18189, 352, 13, 15, 198, 220, 220, 220, 220, 220, 220, 220, 4049, 7203, 44651, 17130, 1988, 19570, 198, 220, 220, 220, 886, 628, 220, 220, 220, 1303, 21017, 6822, 4238, 24198, 198, 220, 220, 220, 611, 24198, 1279, 657, 13, 15, 198, 220, 220, 220, 220, 220, 220, 220, 4049, 7203, 44651, 24198, 1988, 19570, 198, 220, 220, 220, 886, 198, 437, 198, 198, 7804, 2235, 5994, 286, 262, 1080, 1366, 1303, 7804, 2, 198, 8818, 2198, 8979, 5574, 28100, 2886, 7, 22046, 8, 198, 220, 220, 220, 422, 7753, 796, 3991, 198, 220, 220, 220, 2488, 259, 65, 3733, 329, 1312, 287, 26498, 198, 220, 220, 220, 220, 220, 220, 220, 611, 2099, 1659, 7, 72, 8, 6624, 10903, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 422, 7753, 796, 2081, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2270, 198, 220, 220, 220, 220, 220, 220, 220, 886, 198, 220, 220, 220, 886, 628, 220, 220, 220, 1441, 422, 7753, 198, 437 ]
2.243326
4,233
<filename>src/scripts/p10.jl # p10.jl - polynomials and corresponding equipotential curves N = 16; clf(); xx = -1.01:.005:1.01; for i = 1:2 i==1 && ( (s,x) = ("equispaced points", -1 + 2*(0:N)/N) ); i==2 && ( (s,x) = ("Chebyshev points", cos.(pi*(0:N)/N)) ); p = poly(x); # Plot p(x) over [-1,1]: xx = -1:.005:1; pp = p(xx); subplot(2,2,2*i-1); plot(x,0*x,"k.",markersize=6); plot(xx,pp); grid(true); xticks(-1:.5:1); title(s); # Plot equipotential curves: subplot(2,2,2*i) plot(real(x),imag(x),".",markersize=6); axis([-1.4,1.4,-1.12,1.12]); xx = -1.4:.02:1.4; yy = -1.12:.02:1.12; zz = xx' .+ 1im*yy; pp = p(zz); levels = 10.0.^(-4:0); contour(xx,yy,abs.(pp),levels,colors="k"); title(s); end
[ 27, 34345, 29, 10677, 14, 46521, 14, 79, 940, 13, 20362, 198, 2, 279, 940, 13, 20362, 532, 745, 6213, 296, 8231, 290, 11188, 25725, 313, 1843, 23759, 198, 198, 45, 796, 1467, 26, 537, 69, 9783, 198, 5324, 796, 532, 16, 13, 486, 25, 13, 22544, 25, 16, 13, 486, 26, 198, 1640, 1312, 796, 352, 25, 17, 198, 220, 220, 220, 1312, 855, 16, 11405, 357, 357, 82, 11, 87, 8, 796, 5855, 4853, 8802, 2286, 2173, 1600, 532, 16, 1343, 362, 9, 7, 15, 25, 45, 20679, 45, 8, 5619, 198, 220, 220, 220, 1312, 855, 17, 11405, 357, 357, 82, 11, 87, 8, 796, 5855, 7376, 48209, 258, 85, 2173, 1600, 8615, 12195, 14415, 9, 7, 15, 25, 45, 20679, 45, 4008, 5619, 198, 220, 220, 220, 279, 796, 7514, 7, 87, 1776, 628, 220, 220, 220, 1303, 28114, 279, 7, 87, 8, 625, 25915, 16, 11, 16, 5974, 198, 220, 220, 220, 31383, 796, 532, 16, 25, 13, 22544, 25, 16, 26, 9788, 796, 279, 7, 5324, 1776, 198, 220, 220, 220, 850, 29487, 7, 17, 11, 17, 11, 17, 9, 72, 12, 16, 1776, 198, 220, 220, 220, 7110, 7, 87, 11, 15, 9, 87, 553, 74, 33283, 4102, 364, 1096, 28, 21, 1776, 198, 220, 220, 220, 7110, 7, 5324, 11, 381, 1776, 220, 10706, 7, 7942, 1776, 198, 220, 220, 220, 220, 742, 3378, 32590, 16, 25, 13, 20, 25, 16, 1776, 220, 3670, 7, 82, 1776, 628, 220, 220, 220, 1303, 28114, 25725, 313, 1843, 23759, 25, 198, 220, 220, 220, 850, 29487, 7, 17, 11, 17, 11, 17, 9, 72, 8, 198, 220, 220, 220, 7110, 7, 5305, 7, 87, 828, 48466, 7, 87, 27267, 33283, 4102, 364, 1096, 28, 21, 1776, 198, 220, 220, 220, 16488, 26933, 12, 16, 13, 19, 11, 16, 13, 19, 12095, 16, 13, 1065, 11, 16, 13, 1065, 36563, 198, 220, 220, 220, 31383, 796, 532, 16, 13, 19, 25, 13, 2999, 25, 16, 13, 19, 26, 331, 88, 796, 532, 16, 13, 1065, 25, 13, 2999, 25, 16, 13, 1065, 26, 198, 220, 220, 220, 1976, 89, 796, 31383, 6, 764, 10, 352, 320, 9, 22556, 26, 198, 220, 220, 220, 9788, 796, 279, 7, 3019, 1776, 2974, 796, 838, 13, 15, 13, 61, 32590, 19, 25, 15, 1776, 198, 220, 220, 220, 542, 454, 7, 5324, 11, 22556, 11, 8937, 12195, 381, 828, 46170, 11, 4033, 669, 2625, 74, 15341, 3670, 7, 82, 1776, 198, 437, 198 ]
1.850602
415
<reponame>mortenpi/PSSFSS.jl<gh_stars>1-10 using Test using SafeTestsets @safetestset "Rings Tests" begin include("Rings_test.jl") end @safetestset "RWGSheet Tests" begin include("RWGSheet_test.jl") end @safetestset "Elements Tests" begin include("Elements_test.jl") end @safetestset "RWGData Tests" begin include("RWGData_test.jl") end @safetestset "PGF Tests" begin include("PGF_test.jl") end @safetestset "Zint Tests" begin include("Zint_test.jl") end @safetestset "GSMs Tests" begin include("GSMs_test.jl") end @safetestset "Modes Tests" begin include("Modes_test.jl") end @safetestset "FillZY Tests" begin include("FillZY_test.jl") end @safetestset "SymStripFull Tests" begin include("full_test.jl") end
[ 27, 7856, 261, 480, 29, 30171, 268, 14415, 14, 3705, 20802, 5432, 13, 20362, 27, 456, 62, 30783, 29, 16, 12, 940, 198, 3500, 6208, 198, 3500, 19978, 51, 3558, 1039, 198, 198, 31, 49585, 316, 395, 2617, 366, 49, 654, 30307, 1, 2221, 2291, 7203, 49, 654, 62, 9288, 13, 20362, 4943, 886, 198, 31, 49585, 316, 395, 2617, 366, 46747, 38, 3347, 316, 30307, 1, 2221, 2291, 7203, 46747, 38, 3347, 316, 62, 9288, 13, 20362, 4943, 886, 198, 31, 49585, 316, 395, 2617, 366, 36, 3639, 30307, 1, 2221, 2291, 7203, 36, 3639, 62, 9288, 13, 20362, 4943, 886, 198, 31, 49585, 316, 395, 2617, 366, 46747, 38, 6601, 30307, 1, 2221, 2291, 7203, 46747, 38, 6601, 62, 9288, 13, 20362, 4943, 886, 198, 31, 49585, 316, 395, 2617, 366, 6968, 37, 30307, 1, 2221, 2291, 7203, 6968, 37, 62, 9288, 13, 20362, 4943, 886, 198, 31, 49585, 316, 395, 2617, 366, 57, 600, 30307, 1, 2221, 2291, 7203, 57, 600, 62, 9288, 13, 20362, 4943, 886, 198, 31, 49585, 316, 395, 2617, 366, 14313, 10128, 30307, 1, 2221, 2291, 7203, 14313, 10128, 62, 9288, 13, 20362, 4943, 886, 198, 31, 49585, 316, 395, 2617, 366, 44, 4147, 30307, 1, 2221, 2291, 7203, 44, 4147, 62, 9288, 13, 20362, 4943, 886, 198, 31, 49585, 316, 395, 2617, 366, 33762, 57, 56, 30307, 1, 2221, 2291, 7203, 33762, 57, 56, 62, 9288, 13, 20362, 4943, 886, 198, 31, 49585, 316, 395, 2617, 366, 43094, 1273, 5528, 13295, 30307, 1, 2221, 2291, 7203, 12853, 62, 9288, 13, 20362, 4943, 886, 198 ]
2.709924
262
<reponame>airicbear/PHYS2502 ### A Pluto.jl notebook ### # v0.18.4 using Markdown using InteractiveUtils # ╔═╡ 1eb34f10-b4b3-11ec-19f5-c7f26108d374 begin using LinearAlgebra using StatsPlots md""" # HW 11 <NAME> """ end # ╔═╡ 6c4b3bf7-26e9-4d6f-9305-65fbc851818f let md""" ### Problem 1 Use the properties of determinants to prove that ``\underline{\underline{A}} \,\underline{\underline{B}} = \underline{\underline{0}}`` implies that either ``|\underline{\underline{A}}| = 0`` or ``|\underline{\underline{B}}| = 0``, or both, where ``\underline{\underline{0}}`` is the matrix of all zeros. Demonstrate this with the matrices $\underline{\underline{A}} = \begin{bmatrix} 1 & 1 \\ 2 & 2 \end{bmatrix} \qquad\text{and}\qquad \underline{\underline{B}} = \begin{bmatrix} a & b \\ -a & -b \end{bmatrix}$ where ``a`` and ``b`` can be any complex numbers. Which matrix has zero determinant? """ let A = [1 1; 2 2] a = rand(Complex{Float64}) b = rand(Complex{Float64}) B = [a b; -a -b] det(A), det(B), eigvals(A), eigvals(B) end md""" ### Problem 1 Given that ``|\underline{\underline{A}} \,\underline{\underline{B}}| = 0`` and using the sixth property of determinants as listed in the course notes, ``|\underline{\underline{A}} \,\underline{\underline{B}}| = |\underline{\underline{A}}| |\underline{\underline{B}}|``, we get $|\underline{\underline{A}} \,\underline{\underline{B}}| = |\underline{\underline{A}}| |\underline{\underline{B}}| = 0$ which implies that at least ``|\underline{\underline{A}}| = 0`` or ``|\underline{\underline{B}}| = 0``. The determinant ``|\underline{\underline{A}}|`` is $|\underline{\underline{A}}| = (1)(2) - (1)(2) = 2 - 2 = 0$ so ``\underline{\underline{A}}`` is the matrix with the zero determinant. """ end # ╔═╡ 2743185f-b0d7-4195-8e8e-a1bfcf132934 let md""" ### Problem 2 Follow the procedure we went through in class to find the symmetry axes of the conic section ``6x^2 + 12xy + y^2 = 16``, and find the angle they make with the ``x,y`` axes. What kind of curve is this? A plot would be helpful. You can do this with MATHEMATICA if you want, but the necessary algebra is rather simple. """ md""" ### Problem 2 $\underline{\underline{A}} = \begin{bmatrix} 6 & 6 \\ 6 & 1 \end{bmatrix} \implies \underline{\underline{R}} = \frac{1}{\sqrt{13}} \begin{bmatrix} -2 & 3 \\ 3 & 2 \end{bmatrix} \implies \underline{\underline{R}}^T \underline{\underline{A}} \,\underline{\underline{R}} = \begin{bmatrix} -3 & 0 \\ 0 & 10 \end{bmatrix}$ """ end # ╔═╡ 982fab25-1414-4789-bc16-343ab29b4514 let A = [6 6; 6 1] v1 = eigvecs(A)[:,1] v2 = eigvecs(A)[:,2] R = [v1 v2] R' * A * R end # ╔═╡ 7e53c83c-ead7-484f-8762-4a0956ba7210 md""" This produces the curve $-3x^2 + 10y^2 = 16$ which is a hyperbola """ # ╔═╡ c8977146-1409-4eb1-bede-13436fd7214b let plot(x -> sqrt(16 + 3x^2) / 10, color=:black, legend=false) plot!(x -> -sqrt(16 + 3x^2) / 10, color=:black, legend=false) end # ╔═╡ 201fb421-39b1-47db-8dec-609706461dca let md""" ### Problem 3 Find the eigenvalues and eigenvectors for the matrix $\underline{\underline{\sigma}}_y = \begin{bmatrix} 0 & -1 \\ i & 0 \end{bmatrix}$ one of the three **Pauli matrices**. Do this by hand, not with MATHEMATICA. Normalize the eigenvectors and show that they are orthogonal. """ md""" ### Problem 3 First, we find the characteristic polynomial. $\det(\underline{\underline{\sigma}}_y - \lambda \,\underline{\underline{I}}) = \begin{vmatrix} -\lambda & -i \\ i & -\lambda \end{vmatrix} = \lambda^2 + i^2 = 0 \implies \lambda = ±1$ The eigenvalues are $\lambda^{(1)} = -1 \qquad \lambda^{(2)} = 1$ For ``\lambda^{(1)} = -1`` we have $\begin{align*} -v_1 - i v_2 &= 0 \\ i v_1 - v_2 &= 0 \end{align*}$ $\implies v_1 = 1, \, v_2 = i$ giving the normalized eigenvector $\underline{v} = \frac{1}{\sqrt{2}} \begin{bmatrix} 1 \\ i \end{bmatrix}$ For ``\lambda^{(2)} = 1`` we have $\begin{align*} u_1 - i u_2 &= 0 \\ i u_1 - u_2 &= 0 \end{align*}$ $\implies u_1 = 1, \, u_2 = i$ giving the normalized eigenvector $\underline{u} = \frac{1}{\sqrt{2}} \begin{bmatrix} 1 \\ -i \end{bmatrix}$ We can show that the eigenvectors are orthogonal: $⟨v \vert u⟩ = v_i u_i^* = \left(\frac{1}{\sqrt{2}}\right)^2 + \left(\frac{i}{\sqrt{2}}\right)^2 = \frac{1}{\sqrt{2}} - \frac{1}{\sqrt{2}} = 0$ """ end # ╔═╡ e12e34c7-90db-4f31-8792-ce2a39acc435 let md""" ### Problem 4 Find the eigenvalues, two of which equal each other, of the real symmetric matrix $\underline{\underline{A}} = \begin{bmatrix} 13 & 4 & -2 \\ 4 & 13 & -2 \\ -2 & -2 & 10 \end{bmatrix}$ Construct the three eigenvectors by hand, not with MATHEMATICA. You will have more freedom than you would have thought. Do you see how to use this freedom to make all three eigenvectors mutually orthogonal? """ md""" ### Problem 4 We first calculate the characteristic equation $\det(\underline{\underline{A}} - \lambda \, \underline{\underline{I}}) = \begin{vmatrix} 13 - \lambda & 4 & -2 \\ 4 & 13 - \lambda & -2 \\ -2 & -2 & 10 - \lambda \end{vmatrix} = -(\lambda - 18)(\lambda - 9)^2$ So the eigenvalues are $\lambda^{(1)} = 9 \qquad \lambda^{(2)} = 18$ For ``\lambda^{(1)} = 9`` we have $\begin{align*} 4v_1 + 4v_2 - 2v_3 &= 0 \\ 4v_1 + 4v_2 - 2v_3 &= 0 \\ -2v_1 - 2v_2 + v_3 &= 0 \end{align*}$ $\implies v_1 = 1, v_2 = 0, v_3 = 2 \qquad \text{or} \qquad v_1 = -1, v_2 = 1, v_3 = 0$ which gives the normalized eigenvectors $\underline{v} = \frac{1}{\sqrt{5}} \begin{bmatrix} 1 \\ 0 \\ 2 \end{bmatrix} \qquad \underline{u} = \frac{1}{\sqrt{2}} \begin{bmatrix} -1 \\ 1 \\ 0 \end{bmatrix}$ For ``\lambda^{(2)} = 18`` we have $\begin{align*} -5w_1 + 4w_2 - 2w_3 &= 0 \\ 4w_1 - 5w_2 - 2w_3 &= 0 \\ -2w_1 - 2w_2 - 8w_3 &= 0 \end{align*}$ $\implies w_1 = -2, w_2 = -2, w_3 = 1$ which gives the normalized eigenvector $\underline{w} = \frac{1}{3} \begin{bmatrix} -2 \\ -2 \\ 1 \end{bmatrix}$ """ end # ╔═╡ 1aaa8364-b72e-4128-b26a-82d4d4601634 let md""" ### Problem 5 Find the eigenfrequencies and eigenmodes for the mechanical system `|~~~k~~~[ m ]~~~k~~~[ m ]~~~k~~~[ m ]~~~k~~~|` Make a plot that shows the motions of each of the three masses, for the three sets of initial conditions where the masses start at rest with position given by each of the three eigenvectors. Briefly describe the motions of the three masses, for each of the eigenmodes. """ md""" ### Problem 5 The coupled differential equations can be written as $\begin{align*} mẍ_1 &= -kx_1 + k(x_2 - x_1) = -2kx_1 + kx_2 \\ mẍ_2 &= -k(x_2 - x_1) + k(x_3 - x_2) = kx_1 - 2kx_2 + kx_3 \\ mẍ_3 &= -k(x_3 - x_2) + k(-x_3) = kx_2 - 2kx_3 \end{align*}$ We can rewrite them using ``\omega_0 = \sqrt{k / m}``, $\begin{align*} ẍ_1 &= -2{\omega_0}^2 x_1 + {\omega_0}^2 x_2 \\ ẍ_2 &= {\omega_0}^2 x_1 - 2{\omega_0}^2 x_2 + {\omega_0}^2 x_3 \\ ẍ_3 &= {\omega_0}^2 x_2 - 2{\omega_0}^2 x_3 \end{align*}$ In terms of vectors and matrices, we can write this as $\underline{ẍ}(t) = -{\omega_0}^2 \underline{\underline{Ω}} \,\underline{x}(t)$ where $\underline{x} = \begin{bmatrix} x_1 \\ x_2 \\ x_3 \end{bmatrix} \qquad Ω = \begin{bmatrix} -2 & 1 & 0 \\ 1 & -2 & 1 \\ 0 & 1 & -2 \end{bmatrix}$ with the help of MATHEMATICA, we find the eigenfrequencies to be $\omega_1 = \sqrt{(2 - \sqrt{2}) \omega_0}, \, \omega_2 = \sqrt{2\omega_0}, \, \omega_3 = \sqrt{(2 + \sqrt{2}) \omega_0}$ and the normalized eigenmodes to be $\underline{a}^{(1)} = \frac{1}{2} \begin{bmatrix} 1 \\ -\sqrt{2} \\ 1 \end{bmatrix} \qquad \underline{a}^{(2)} = \frac{1}{\sqrt{2}} \begin{bmatrix} -1 \\ 0 \\ 1 \end{bmatrix} \qquad \underline{a}^{(3)} = \frac{1}{2} \begin{bmatrix} 1 \\ \sqrt{2} \\ 1 \end{bmatrix}$ """ end # ╔═╡ 7387c353-51b7-402b-a500-adec0a34b059 let Ω = [-2 1 0; 1 -2 1; 0 1 -2] eigen(Ω) end # ╔═╡ b40838d0-8391-4f1e-a3fc-a4be028b7bc7 (2 - sqrt(2)) # ╔═╡ ec26fefb-18d1-4ac7-b0c1-0d3c71ae1305 begin ω₁ = sqrt(2 - sqrt(2)) ω₂ = sqrt(2) ω₃ = sqrt(2 + sqrt(2)) a1 = (1/2) .* [1; -sqrt(2); 1] a2 = (1/sqrt(2)) .* [-1; 0; 1] a3 = (1/2) .* [1; sqrt(2); 1] s1(t, A, ϕ) = A .* a1 .* cos(ω₁ * t + ϕ) s2(t, A, ϕ) = A .* a2 .* cos(ω₂ * t + ϕ) s3(t, A, ϕ) = A .* a3 .* cos(ω₃ * t + ϕ) end; # ╔═╡ 355540ec-db9b-4ce5-a5d2-0c10497da934 let x1(t) = s1(t, 1, 0)[1] x2(t) = s1(t, 1, 0)[2] x3(t) = s1(t, 1, 0)[3] plot(x1, label="x₁") plot!(x2, label="x₂") plot!(x3, label="x₃") title!("Eigenmode 1") end # ╔═╡ de44b0c7-eee4-49ed-9264-40a5339e7d6c md""" Eigenmode 1: x1 and x3 oscillate with each other, opposite to x2 """ # ╔═╡ 6f073f29-39b5-496e-b644-45051c81ab54 let x1(t) = s2(t, 1, 0)[1] x2(t) = s2(t, 1, 0)[2] x3(t) = s2(t, 1, 0)[3] plot(x1, label="x₁") plot!(x2, label="x₂") plot!(x3, label="x₃") title!("Eigenmode 2") end # ╔═╡ 5500a012-48fd-4227-a70f-515425c5122a md""" Eigenmode 2: x1 and x3 oscillate against each other while x2 remains in place """ # ╔═╡ e0a8d8ea-e5bd-48ca-b44f-4b6625181a17 let x1(t) = s3(t, 1, 0)[1] x2(t) = s3(t, 1, 0)[2] x3(t) = s3(t, 1, 0)[3] plot(x1, label="x₁") plot!(x2, label="x₂") plot!(x3, label="x₃") title!("Eigenmode 3") end # ╔═╡ cc32c2a5-d377-4a77-8477-b3acc63cca3b md""" Eigenmode 3: x1, x2, and x3 all oscillate with each other, however x2 oscillation is amplified """ # ╔═╡ 00000000-0000-0000-0000-000000000001 PLUTO_PROJECT_TOML_CONTENTS = """ [deps] LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e" StatsPlots = "f3b207a7-027a-5e70-b257-86293d7955fd" [compat] StatsPlots = "~0.14.33" """ # ╔═╡ 00000000-0000-0000-0000-000000000002 PLUTO_MANIFEST_TOML_CONTENTS = """ # This file is machine-generated - editing it directly is not advised julia_version = "1.8.0-beta1" manifest_format = "2.0" project_hash = "94b1ff0197986fb39c41ec4fbe1e3c63bdbc66ff" [[deps.AbstractFFTs]] deps = ["ChainRulesCore", "LinearAlgebra"] git-tree-sha1 = "6f1d9bc1c08f9f4a8fa92e3ea3cb50153a1b40d4" uuid = "621f4979-c628-5d54-868e-fcf4e3e8185c" version = "1.1.0" [[deps.Adapt]] deps = ["LinearAlgebra"] git-tree-sha1 = "af92965fb30777147966f58acb05da51c5616b5f" uuid = "79e6a3ab-5dfb-504d-930d-738a2a938a0e" version = "3.3.3" [[deps.ArgTools]] uuid = "0dad84c5-d112-42e6-8d28-ef12dabb789f" version = "1.1.1" [[deps.Arpack]] deps = ["Arpack_jll", "Libdl", "LinearAlgebra", "Logging"] git-tree-sha1 = "91ca22c4b8437da89b030f08d71db55a379ce958" uuid = "7d9fca2a-8960-54d3-9f78-7d1dccf2cb97" version = "0.5.3" [[deps.Arpack_jll]] deps = ["Artifacts", "CompilerSupportLibraries_jll", "JLLWrappers", "Libdl", "OpenBLAS_jll", "Pkg"] git-tree-sha1 = "5ba6c757e8feccf03a1554dfaf3e26b3cfc7fd5e" uuid = "68821587-b530-5797-8361-c406ea357684" version = "3.5.1+1" [[deps.Artifacts]] uuid = "56f22d72-fd6d-98f1-02f0-08ddc0907c33" [[deps.AxisAlgorithms]] deps = ["LinearAlgebra", "Random", "SparseArrays", "WoodburyMatrices"] git-tree-sha1 = "66771c8d21c8ff5e3a93379480a2307ac36863f7" uuid = "13072b0f-2c55-5437-9ae7-d433b7a33950" version = "1.0.1" [[deps.Base64]] uuid = "2a0f44e3-6c83-55bd-87e4-b1978d98bd5f" [[deps.Bzip2_jll]] deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg"] git-tree-sha1 = "19a35467a82e236ff51bc17a3a44b69ef35185a2" uuid = "6e34b625-4abd-537c-b88f-471c36dfa7a0" version = "1.0.8+0" [[deps.Cairo_jll]] deps = ["Artifacts", "Bzip2_jll", "Fontconfig_jll", "FreeType2_jll", "Glib_jll", "JLLWrappers", "LZO_jll", "Libdl", "Pixman_jll", "Pkg", "Xorg_libXext_jll", "Xorg_libXrender_jll", "Zlib_jll", "libpng_jll"] git-tree-sha1 = "4b859a208b2397a7a623a03449e4636bdb17bcf2" uuid = "83423d85-b0ee-5818-9007-b63ccbeb887a" version = "1.16.1+1" [[deps.Calculus]] deps = ["LinearAlgebra"] git-tree-sha1 = "f641eb0a4f00c343bbc32346e1217b86f3ce9dad" uuid = "49dc2e85-a5d0-5ad3-a950-438e2897f1b9" version = "0.5.1" [[deps.ChainRulesCore]] deps = ["Compat", "LinearAlgebra", "SparseArrays"] git-tree-sha1 = "9950387274246d08af38f6eef8cb5480862a435f" uuid = "d360d2e6-b24c-11e9-a2a3-2a2ae2dbcce4" version = "1.14.0" [[deps.ChangesOfVariables]] deps = ["ChainRulesCore", "LinearAlgebra", "Test"] git-tree-sha1 = "bf98fa45a0a4cee295de98d4c1462be26345b9a1" uuid = "9e997f8a-9a97-42d5-a9f1-ce6bfc15e2c0" version = "0.1.2" [[deps.Clustering]] deps = ["Distances", "LinearAlgebra", "NearestNeighbors", "Printf", "SparseArrays", "Statistics", "StatsBase"] git-tree-sha1 = "75479b7df4167267d75294d14b58244695beb2ac" uuid = "aaaa29a8-35af-508c-8bc3-b662a17a0fe5" version = "0.14.2" [[deps.ColorSchemes]] deps = ["ColorTypes", "Colors", "FixedPointNumbers", "Random"] git-tree-sha1 = "12fc73e5e0af68ad3137b886e3f7c1eacfca2640" uuid = "35d6a980-a343-548e-a6ea-1d62b119f2f4" version = "3.17.1" [[deps.ColorTypes]] deps = ["FixedPointNumbers", "Random"] git-tree-sha1 = "024fe24d83e4a5bf5fc80501a314ce0d1aa35597" uuid = "3da002f7-5984-5a60-b8a6-cbb66c0b333f" version = "0.11.0" [[deps.Colors]] deps = ["ColorTypes", "FixedPointNumbers", "Reexport"] git-tree-sha1 = "417b0ed7b8b838aa6ca0a87aadf1bb9eb111ce40" uuid = "5ae59095-9a9b-59fe-a467-6f913c188581" version = "0.12.8" [[deps.Compat]] deps = ["Base64", "Dates", "DelimitedFiles", "Distributed", "InteractiveUtils", "LibGit2", "Libdl", "LinearAlgebra", "Markdown", "Mmap", "Pkg", "Printf", "REPL", "Random", "SHA", "Serialization", "SharedArrays", "Sockets", "SparseArrays", "Statistics", "Test", "UUIDs", "Unicode"] git-tree-sha1 = "96b0bc6c52df76506efc8a441c6cf1adcb1babc4" uuid = "34da2185-b29b-5c13-b0c7-acf172513d20" version = "3.42.0" [[deps.CompilerSupportLibraries_jll]] deps = ["Artifacts", "Libdl"] uuid = "e66e0078-7015-5450-92f7-15fbd957f2ae" version = "0.5.0+0" [[deps.Contour]] deps = ["StaticArrays"] git-tree-sha1 = "9f02045d934dc030edad45944ea80dbd1f0ebea7" uuid = "d38c429a-6771-53c6-b99e-75d170b6e991" version = "0.5.7" [[deps.DataAPI]] git-tree-sha1 = "cc70b17275652eb47bc9e5f81635981f13cea5c8" uuid = "9a962f9c-6df0-11e9-0e5d-c546b8b5ee8a" version = "1.9.0" [[deps.DataStructures]] deps = ["Compat", "InteractiveUtils", "OrderedCollections"] git-tree-sha1 = "3daef5523dd2e769dad2365274f760ff5f282c7d" uuid = "864edb3b-99cc-5e75-8d2d-829cb0a9cfe8" version = "0.18.11" [[deps.DataValueInterfaces]] git-tree-sha1 = "bfc1187b79289637fa0ef6d4436ebdfe6905cbd6" uuid = "e2d170a0-9d28-54be-80f0-106bbe20a464" version = "1.0.0" [[deps.DataValues]] deps = ["DataValueInterfaces", "Dates"] git-tree-sha1 = "d88a19299eba280a6d062e135a43f00323ae70bf" uuid = "e7dc6d0d-1eca-5fa6-8ad6-5aecde8b7ea5" version = "0.4.13" [[deps.Dates]] deps = ["Printf"] uuid = "ade2ca70-3891-5945-98fb-dc099432e06a" [[deps.DelimitedFiles]] deps = ["Mmap"] uuid = "8bb1440f-4735-579b-a4ab-409b98df4dab" [[deps.DensityInterface]] deps = ["InverseFunctions", "Test"] git-tree-sha1 = "80c3e8639e3353e5d2912fb3a1916b8455e2494b" uuid = "b429d917-457f-4dbc-8f4c-0cc954292b1d" version = "0.4.0" [[deps.Distances]] deps = ["LinearAlgebra", "SparseArrays", "Statistics", "StatsAPI"] git-tree-sha1 = "3258d0659f812acde79e8a74b11f17ac06d0ca04" uuid = "b4f34e82-e78d-54a5-968a-f98e89d6e8f7" version = "0.10.7" [[deps.Distributed]] deps = ["Random", "Serialization", "Sockets"] uuid = "8ba89e20-285c-5b6f-9357-94700520ee1b" [[deps.Distributions]] deps = ["ChainRulesCore", "DensityInterface", "FillArrays", "LinearAlgebra", "PDMats", "Printf", "QuadGK", "Random", "SparseArrays", "SpecialFunctions", "Statistics", "StatsBase", "StatsFuns", "Test"] git-tree-sha1 = "5a4168170ede913a2cd679e53c2123cb4b889795" uuid = "31c24e10-a181-5473-b8eb-7969acd0382f" version = "0.25.53" [[deps.DocStringExtensions]] deps = ["LibGit2"] git-tree-sha1 = "b19534d1895d702889b219c382a6e18010797f0b" uuid = "ffbed154-4ef7-542d-bbb7-c09d3a79fcae" version = "0.8.6" [[deps.Downloads]] deps = ["ArgTools", "FileWatching", "LibCURL", "NetworkOptions"] uuid = "f43a241f-c20a-4ad4-852c-f6b1247861c6" version = "1.6.0" [[deps.DualNumbers]] deps = ["Calculus", "NaNMath", "SpecialFunctions"] git-tree-sha1 = "5837a837389fccf076445fce071c8ddaea35a566" uuid = "fa6b7ba4-c1ee-5f82-b5fc-ecf0adba8f74" version = "0.6.8" [[deps.EarCut_jll]] deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg"] git-tree-sha1 = "3f3a2501fa7236e9b911e0f7a588c657e822bb6d" uuid = "5ae413db-bbd1-5e63-b57d-d24a61df00f5" version = "2.2.3+0" [[deps.Expat_jll]] deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg"] git-tree-sha1 = "bad72f730e9e91c08d9427d5e8db95478a3c323d" uuid = "2e619515-83b5-522b-bb60-26c02a35a201" version = "2.4.8+0" [[deps.FFMPEG]] deps = ["FFMPEG_jll"] git-tree-sha1 = "b57e3acbe22f8484b4b5ff66a7499717fe1a9cc8" uuid = "c87230d0-a227-11e9-1b43-d7ebe4e7570a" version = "0.4.1" [[deps.FFMPEG_jll]] deps = ["Artifacts", "Bzip2_jll", "FreeType2_jll", "FriBidi_jll", "JLLWrappers", "LAME_jll", "Libdl", "Ogg_jll", "OpenSSL_jll", "Opus_jll", "Pkg", "Zlib_jll", "libass_jll", "libfdk_aac_jll", "libvorbis_jll", "x264_jll", "x265_jll"] git-tree-sha1 = "d8a578692e3077ac998b50c0217dfd67f21d1e5f" uuid = "b22a6f82-2f65-5046-a5b2-351ab43fb4e5" version = "4.4.0+0" [[deps.FFTW]] deps = ["AbstractFFTs", "FFTW_jll", "LinearAlgebra", "MKL_jll", "Preferences", "Reexport"] git-tree-sha1 = "505876577b5481e50d089c1c68899dfb6faebc62" uuid = "7a1cc6ca-52ef-59f5-83cd-3a7055c09341" version = "1.4.6" [[deps.FFTW_jll]] deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg"] git-tree-sha1 = "c6033cc3892d0ef5bb9cd29b7f2f0331ea5184ea" uuid = "f5851436-0d7a-5f13-b9de-f02708fd171a" version = "3.3.10+0" [[deps.FileWatching]] uuid = "7b1f6079-737a-58dc-b8bc-7a2ca5c1b5ee" [[deps.FillArrays]] deps = ["LinearAlgebra", "Random", "SparseArrays", "Statistics"] git-tree-sha1 = "246621d23d1f43e3b9c368bf3b72b2331a27c286" uuid = "1a297f60-69ca-5386-bcde-b61e274b549b" version = "0.13.2" [[deps.FixedPointNumbers]] deps = ["Statistics"] git-tree-sha1 = "335bfdceacc84c5cdf16aadc768aa5ddfc5383cc" uuid = "53c48c17-4a7d-5ca2-90c5-79b7896eea93" version = "0.8.4" [[deps.Fontconfig_jll]] deps = ["Artifacts", "Bzip2_jll", "Expat_jll", "FreeType2_jll", "JLLWrappers", "Libdl", "Libuuid_jll", "Pkg", "Zlib_jll"] git-tree-sha1 = "21efd19106a55620a188615da6d3d06cd7f6ee03" uuid = "a3f928ae-7b40-5064-980b-68af3947d34b" version = "2.13.93+0" [[deps.Formatting]] deps = ["Printf"] git-tree-sha1 = "8339d61043228fdd3eb658d86c926cb282ae72a8" uuid = "59287772-0a20-5a39-b81b-1366585eb4c0" version = "0.4.2" [[deps.FreeType2_jll]] deps = ["Artifacts", "Bzip2_jll", "JLLWrappers", "Libdl", "Pkg", "Zlib_jll"] git-tree-sha1 = "87eb71354d8ec1a96d4a7636bd57a7347dde3ef9" uuid = "d7e528f0-a631-5988-bf34-fe36492bcfd7" version = "2.10.4+0" [[deps.FriBidi_jll]] deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg"] git-tree-sha1 = "aa31987c2ba8704e23c6c8ba8a4f769d5d7e4f91" uuid = "559328eb-81f9-559d-9380-de523a88c83c" version = "1.0.10+0" [[deps.GLFW_jll]] deps = ["Artifacts", "JLLWrappers", "Libdl", "Libglvnd_jll", "Pkg", "Xorg_libXcursor_jll", "Xorg_libXi_jll", "Xorg_libXinerama_jll", "Xorg_libXrandr_jll"] git-tree-sha1 = "51d2dfe8e590fbd74e7a842cf6d13d8a2f45dc01" uuid = "0656b61e-2033-5cc2-a64a-77c0f6c09b89" version = "3.3.6+0" [[deps.GR]] deps = ["Base64", "DelimitedFiles", "GR_jll", "HTTP", "JSON", "Libdl", "LinearAlgebra", "Pkg", "Printf", "Random", "RelocatableFolders", "Serialization", "Sockets", "Test", "UUIDs"] git-tree-sha1 = "af237c08bda486b74318c8070adb96efa6952530" uuid = "28b8d3ca-fb5f-59d9-8090-bfdbd6d07a71" version = "0.64.2" [[deps.GR_jll]] deps = ["Artifacts", "Bzip2_jll", "Cairo_jll", "FFMPEG_jll", "Fontconfig_jll", "GLFW_jll", "JLLWrappers", "JpegTurbo_jll", "Libdl", "Libtiff_jll", "Pixman_jll", "Pkg", "Qt5Base_jll", "Zlib_jll", "libpng_jll"] git-tree-sha1 = "cd6efcf9dc746b06709df14e462f0a3fe0786b1e" uuid = "d2c73de3-f751-5644-a686-071e5b155ba9" version = "0.64.2+0" [[deps.GeometryBasics]] deps = ["EarCut_jll", "IterTools", "LinearAlgebra", "StaticArrays", "StructArrays", "Tables"] git-tree-sha1 = "83ea630384a13fc4f002b77690bc0afeb4255ac9" uuid = "5c1252a2-5f33-56bf-86c9-59e7332b4326" version = "0.4.2" [[deps.Gettext_jll]] deps = ["Artifacts", "CompilerSupportLibraries_jll", "JLLWrappers", "Libdl", "Libiconv_jll", "Pkg", "XML2_jll"] git-tree-sha1 = "9b02998aba7bf074d14de89f9d37ca24a1a0b046" uuid = "78b55507-aeef-58d4-861c-77aaff3498b1" version = "0.21.0+0" [[deps.Glib_jll]] deps = ["Artifacts", "Gettext_jll", "JLLWrappers", "Libdl", "Libffi_jll", "Libiconv_jll", "Libmount_jll", "PCRE_jll", "Pkg", "Zlib_jll"] git-tree-sha1 = "a32d672ac2c967f3deb8a81d828afc739c838a06" uuid = "7746bdde-850d-59dc-9ae8-88ece973131d" version = "2.68.3+2" [[deps.Graphite2_jll]] deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg"] git-tree-sha1 = "344bf40dcab1073aca04aa0df4fb092f920e4011" uuid = "3b182d85-2403-5c21-9c21-1e1f0cc25472" version = "1.3.14+0" [[deps.Grisu]] git-tree-sha1 = "53bb909d1151e57e2484c3d1b53e19552b887fb2" uuid = "42e2da0e-8278-4e71-bc24-59509adca0fe" version = "1.0.2" [[deps.HTTP]] deps = ["Base64", "Dates", "IniFile", "Logging", "MbedTLS", "NetworkOptions", "Sockets", "URIs"] git-tree-sha1 = "0fa77022fe4b511826b39c894c90daf5fce3334a" uuid = "cd3eb016-35fb-5094-929b-558a96fad6f3" version = "0.9.17" [[deps.HarfBuzz_jll]] deps = ["Artifacts", "Cairo_jll", "Fontconfig_jll", "FreeType2_jll", "Glib_jll", "Graphite2_jll", "JLLWrappers", "Libdl", "Libffi_jll", "Pkg"] git-tree-sha1 = "129acf094d168394e80ee1dc4bc06ec835e510a3" uuid = "2e76f6c2-a576-52d4-95c1-20adfe4de566" version = "2.8.1+1" [[deps.HypergeometricFunctions]] deps = ["DualNumbers", "LinearAlgebra", "SpecialFunctions", "Test"] git-tree-sha1 = "65e4589030ef3c44d3b90bdc5aac462b4bb05567" uuid = "34004b35-14d8-5ef3-9330-4cdb6864b03a" version = "0.3.8" [[deps.IniFile]] git-tree-sha1 = "f550e6e32074c939295eb5ea6de31849ac2c9625" uuid = "83e8ac13-25f8-5344-8a64-a9f2b223428f" version = "0.5.1" [[deps.IntelOpenMP_jll]] deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg"] git-tree-sha1 = "d979e54b71da82f3a65b62553da4fc3d18c9004c" uuid = "1d5cc7b8-4909-519e-a0f8-d0f5ad9712d0" version = "2018.0.3+2" [[deps.InteractiveUtils]] deps = ["Markdown"] uuid = "b77e0a4c-d291-57a0-90e8-8db25a27a240" [[deps.Interpolations]] deps = ["AxisAlgorithms", "ChainRulesCore", "LinearAlgebra", "OffsetArrays", "Random", "Ratios", "Requires", "SharedArrays", "SparseArrays", "StaticArrays", "WoodburyMatrices"] git-tree-sha1 = "b15fc0a95c564ca2e0a7ae12c1f095ca848ceb31" uuid = "a98d9a8b-a2ab-59e6-89dd-64a1c18fca59" version = "0.13.5" [[deps.InverseFunctions]] deps = ["Test"] git-tree-sha1 = "91b5dcf362c5add98049e6c29ee756910b03051d" uuid = "3587e190-3f89-42d0-90ee-14403ec27112" version = "0.1.3" [[deps.IrrationalConstants]] git-tree-sha1 = "7fd44fd4ff43fc60815f8e764c0f352b83c49151" uuid = "92d709cd-6900-40b7-9082-c6be49f344b6" version = "0.1.1" [[deps.IterTools]] git-tree-sha1 = "fa6287a4469f5e048d763df38279ee729fbd44e5" uuid = "c8e1da08-722c-5040-9ed9-7db0dc04731e" version = "1.4.0" [[deps.IteratorInterfaceExtensions]] git-tree-sha1 = "a3f24677c21f5bbe9d2a714f95dcd58337fb2856" uuid = "82899510-4779-5014-852e-03e436cf321d" version = "1.0.0" [[deps.JLLWrappers]] deps = ["Preferences"] git-tree-sha1 = "abc9885a7ca2052a736a600f7fa66209f96506e1" uuid = "692b3bcd-3c85-4b1f-b108-f13ce0eb3210" version = "1.4.1" [[deps.JSON]] deps = ["Dates", "Mmap", "Parsers", "Unicode"] git-tree-sha1 = "3c837543ddb02250ef42f4738347454f95079d4e" uuid = "682c06a0-de6a-54ab-a142-c8b1cf79cde6" version = "0.21.3" [[deps.JpegTurbo_jll]] deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg"] git-tree-sha1 = "b53380851c6e6664204efb2e62cd24fa5c47e4ba" uuid = "aacddb02-875f-59d6-b918-886e6ef4fbf8" version = "2.1.2+0" [[deps.KernelDensity]] deps = ["Distributions", "DocStringExtensions", "FFTW", "Interpolations", "StatsBase"] git-tree-sha1 = "591e8dc09ad18386189610acafb970032c519707" uuid = "5ab0869b-81aa-558d-bb23-cbf5423bbe9b" version = "0.6.3" [[deps.LAME_jll]] deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg"] git-tree-sha1 = "f6250b16881adf048549549fba48b1161acdac8c" uuid = "c1c5ebd0-6772-5130-a774-d5fcae4a789d" version = "3.100.1+0" [[deps.LERC_jll]] deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg"] git-tree-sha1 = "bf36f528eec6634efc60d7ec062008f171071434" uuid = "88015f11-f218-50d7-93a8-a6af411a945d" version = "3.0.0+1" [[deps.LZO_jll]] deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg"] git-tree-sha1 = "e5b909bcf985c5e2605737d2ce278ed791b89be6" uuid = "dd4b983a-f0e5-5f8d-a1b7-129d4a5fb1ac" version = "2.10.1+0" [[deps.LaTeXStrings]] git-tree-sha1 = "f2355693d6778a178ade15952b7ac47a4ff97996" uuid = "b964fa9f-0449-5b57-a5c2-d3ea65f4040f" version = "1.3.0" [[deps.Latexify]] deps = ["Formatting", "InteractiveUtils", "LaTeXStrings", "MacroTools", "Markdown", "Printf", "Requires"] git-tree-sha1 = "6f14549f7760d84b2db7a9b10b88cd3cc3025730" uuid = "23fbe1c1-3f47-55db-b15f-69d7ec21a316" version = "0.15.14" [[deps.LazyArtifacts]] deps = ["Artifacts", "Pkg"] uuid = "4af54fe1-eca0-43a8-85a7-787d91b784e3" [[deps.LibCURL]] deps = ["LibCURL_jll", "MozillaCACerts_jll"] uuid = "b27032c2-a3e7-50c8-80cd-2d36dbcbfd21" version = "0.6.3" [[deps.LibCURL_jll]] deps = ["Artifacts", "LibSSH2_jll", "Libdl", "MbedTLS_jll", "Zlib_jll", "nghttp2_jll"] uuid = "deac9b47-8bc7-5906-a0fe-35ac56dc84c0" version = "7.81.0+0" [[deps.LibGit2]] deps = ["Base64", "NetworkOptions", "Printf", "SHA"] uuid = "76f85450-5226-5b5a-8eaa-529ad045b433" [[deps.LibSSH2_jll]] deps = ["Artifacts", "Libdl", "MbedTLS_jll"] uuid = "29816b5a-b9ab-546f-933c-edad1886dfa8" version = "1.10.2+0" [[deps.Libdl]] uuid = "8f399da3-3557-5675-b5ff-fb832c97cbdb" [[deps.Libffi_jll]] deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg"] git-tree-sha1 = "0b4a5d71f3e5200a7dff793393e09dfc2d874290" uuid = "e9f186c6-92d2-5b65-8a66-fee21dc1b490" version = "3.2.2+1" [[deps.Libgcrypt_jll]] deps = ["Artifacts", "JLLWrappers", "Libdl", "Libgpg_error_jll", "Pkg"] git-tree-sha1 = "64613c82a59c120435c067c2b809fc61cf5166ae" uuid = "d4300ac3-e22c-5743-9152-c294e39db1e4" version = "1.8.7+0" [[deps.Libglvnd_jll]] deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg", "Xorg_libX11_jll", "Xorg_libXext_jll"] git-tree-sha1 = "7739f837d6447403596a75d19ed01fd08d6f56bf" uuid = "7e76a0d4-f3c7-5321-8279-8d96eeed0f29" version = "1.3.0+3" [[deps.Libgpg_error_jll]] deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg"] git-tree-sha1 = "c333716e46366857753e273ce6a69ee0945a6db9" uuid = "7add5ba3-2f88-524e-9cd5-f83b8a55f7b8" version = "1.42.0+0" [[deps.Libiconv_jll]] deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg"] git-tree-sha1 = "42b62845d70a619f063a7da093d995ec8e15e778" uuid = "94ce4f54-9a6c-5748-9c1c-f9c7231a4531" version = "1.16.1+1" [[deps.Libmount_jll]] deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg"] git-tree-sha1 = "9c30530bf0effd46e15e0fdcf2b8636e78cbbd73" uuid = "4b2f31a3-9ecc-558c-b454-b3730dcb73e9" version = "2.35.0+0" [[deps.Libtiff_jll]] deps = ["Artifacts", "JLLWrappers", "JpegTurbo_jll", "LERC_jll", "Libdl", "Pkg", "Zlib_jll", "Zstd_jll"] git-tree-sha1 = "c9551dd26e31ab17b86cbd00c2ede019c08758eb" uuid = "89763e89-9b03-5906-acba-b20f662cd828" version = "4.3.0+1" [[deps.Libuuid_jll]] deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg"] git-tree-sha1 = "7f3efec06033682db852f8b3bc3c1d2b0a0ab066" uuid = "38a345b3-de98-5d2b-a5d3-14cd9215e700" version = "2.36.0+0" [[deps.LinearAlgebra]] deps = ["Libdl", "libblastrampoline_jll"] uuid = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e" [[deps.LogExpFunctions]] deps = ["ChainRulesCore", "ChangesOfVariables", "DocStringExtensions", "InverseFunctions", "IrrationalConstants", "LinearAlgebra"] git-tree-sha1 = "58f25e56b706f95125dcb796f39e1fb01d913a71" uuid = "2ab3a3ac-af41-5b50-aa03-7779005ae688" version = "0.3.10" [[deps.Logging]] uuid = "56ddb016-857b-54e1-b83d-db4d58db5568" [[deps.MKL_jll]] deps = ["Artifacts", "IntelOpenMP_jll", "JLLWrappers", "LazyArtifacts", "Libdl", "Pkg"] git-tree-sha1 = "e595b205efd49508358f7dc670a940c790204629" uuid = "856f044c-d86e-5d09-b602-aeab76dc8ba7" version = "2022.0.0+0" [[deps.MacroTools]] deps = ["Markdown", "Random"] git-tree-sha1 = "3d3e902b31198a27340d0bf00d6ac452866021cf" uuid = "1914dd2f-81c6-5fcd-8719-6d5c9610ff09" version = "0.5.9" [[deps.Markdown]] deps = ["Base64"] uuid = "d6f4376e-aef5-505a-96c1-9c027394607a" [[deps.MbedTLS]] deps = ["Dates", "MbedTLS_jll", "Random", "Sockets"] git-tree-sha1 = "1c38e51c3d08ef2278062ebceade0e46cefc96fe" uuid = "739be429-bea8-5141-9913-cc70e7f3736d" version = "1.0.3" [[deps.MbedTLS_jll]] deps = ["Artifacts", "Libdl"] uuid = "c8ffd9c3-330d-5841-b78e-0817d7145fa1" version = "2.28.0+0" [[deps.Measures]] git-tree-sha1 = "e498ddeee6f9fdb4551ce855a46f54dbd900245f" uuid = "442fdcdd-2543-5da2-b0f3-8c86c306513e" version = "0.3.1" [[deps.Missings]] deps = ["DataAPI"] git-tree-sha1 = "bf210ce90b6c9eed32d25dbcae1ebc565df2687f" uuid = "e1d29d7a-bbdc-5cf2-9ac0-f12de2c33e28" version = "1.0.2" [[deps.Mmap]] uuid = "a63ad114-7e13-5084-954f-fe012c677804" [[deps.MozillaCACerts_jll]] uuid = "14a3606d-f60d-562e-9121-12d972cd8159" version = "2022.2.1" [[deps.MultivariateStats]] deps = ["Arpack", "LinearAlgebra", "SparseArrays", "Statistics", "StatsAPI", "StatsBase"] git-tree-sha1 = "7008a3412d823e29d370ddc77411d593bd8a3d03" uuid = "6f286f6a-111f-5878-ab1e-185364afe411" version = "0.9.1" [[deps.NaNMath]] git-tree-sha1 = "737a5957f387b17e74d4ad2f440eb330b39a62c5" uuid = "77ba4419-2d1f-58cd-9bb1-8ffee604a2e3" version = "1.0.0" [[deps.NearestNeighbors]] deps = ["Distances", "StaticArrays"] git-tree-sha1 = "ded92de95031d4a8c61dfb6ba9adb6f1d8016ddd" uuid = "b8a86587-4115-5ab1-83bc-aa920d37bbce" version = "0.4.10" [[deps.NetworkOptions]] uuid = "ca575930-c2e3-43a9-ace4-1e988b2c1908" version = "1.2.0" [[deps.Observables]] git-tree-sha1 = "fe29afdef3d0c4a8286128d4e45cc50621b1e43d" uuid = "510215fc-4207-5dde-b226-833fc4488ee2" version = "0.4.0" [[deps.OffsetArrays]] deps = ["Adapt"] git-tree-sha1 = "043017e0bdeff61cfbb7afeb558ab29536bbb5ed" uuid = "6fe1bfb0-de20-5000-8ca7-80f57d26f881" version = "1.10.8" [[deps.Ogg_jll]] deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg"] git-tree-sha1 = "887579a3eb005446d514ab7aeac5d1d027658b8f" uuid = "e7412a2a-1a6e-54c0-be00-318e2571c051" version = "1.3.5+1" [[deps.OpenBLAS_jll]] deps = ["Artifacts", "CompilerSupportLibraries_jll", "Libdl"] uuid = "4536629a-c528-5b80-bd46-f80d51c5b363" version = "0.3.17+2" [[deps.OpenLibm_jll]] deps = ["Artifacts", "Libdl"] uuid = "05823500-19ac-5b8b-9628-191a04bc5112" version = "0.8.1+0" [[deps.OpenSSL_jll]] deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg"] git-tree-sha1 = "ab05aa4cc89736e95915b01e7279e61b1bfe33b8" uuid = "458c3c95-2e84-50aa-8efc-19380b2a3a95" version = "1.1.14+0" [[deps.OpenSpecFun_jll]] deps = ["Artifacts", "CompilerSupportLibraries_jll", "JLLWrappers", "Libdl", "Pkg"] git-tree-sha1 = "13652491f6856acfd2db29360e1bbcd4565d04f1" uuid = "efe28fd5-8261-553b-a9e1-b2916fc3738e" version = "0.5.5+0" [[deps.Opus_jll]] deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg"] git-tree-sha1 = "51a08fb14ec28da2ec7a927c4337e4332c2a4720" uuid = "91d4177d-7536-5919-b921-800302f37372" version = "1.3.2+0" [[deps.OrderedCollections]] git-tree-sha1 = "85f8e6578bf1f9ee0d11e7bb1b1456435479d47c" uuid = "bac558e1-5e72-5ebc-8fee-abe8a469f55d" version = "1.4.1" [[deps.PCRE_jll]] deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg"] git-tree-sha1 = "b2a7af664e098055a7529ad1a900ded962bca488" uuid = "2f80f16e-611a-54ab-bc61-aa92de5b98fc" version = "8.44.0+0" [[deps.PDMats]] deps = ["LinearAlgebra", "SparseArrays", "SuiteSparse"] git-tree-sha1 = "e8185b83b9fc56eb6456200e873ce598ebc7f262" uuid = "90014a1f-27ba-587c-ab20-58faa44d9150" version = "0.11.7" [[deps.Parsers]] deps = ["Dates"] git-tree-sha1 = "621f4f3b4977325b9128d5fae7a8b4829a0c2222" uuid = "69de0a69-1ddd-5017-9359-2bf0b02dc9f0" version = "2.2.4" [[deps.Pixman_jll]] deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg"] git-tree-sha1 = "b4f5d02549a10e20780a24fce72bea96b6329e29" uuid = "30392449-352a-5448-841d-b1acce4e97dc" version = "0.40.1+0" [[deps.Pkg]] deps = ["Artifacts", "Dates", "Downloads", "LibGit2", "Libdl", "Logging", "Markdown", "Printf", "REPL", "Random", "SHA", "Serialization", "TOML", "Tar", "UUIDs", "p7zip_jll"] uuid = "44cfe95a-1eb2-52ea-b672-e2afdf69b78f" version = "1.8.0" [[deps.PlotThemes]] deps = ["PlotUtils", "Requires", "Statistics"] git-tree-sha1 = "a3a964ce9dc7898193536002a6dd892b1b5a6f1d" uuid = "ccf2f8ad-2431-5c83-bf29-c5338b663b6a" version = "2.0.1" [[deps.PlotUtils]] deps = ["ColorSchemes", "Colors", "Dates", "Printf", "Random", "Reexport", "Statistics"] git-tree-sha1 = "bb16469fd5224100e422f0b027d26c5a25de1200" uuid = "995b91a9-d308-5afd-9ec6-746e21dbc043" version = "1.2.0" [[deps.Plots]] deps = ["Base64", "Contour", "Dates", "Downloads", "FFMPEG", "FixedPointNumbers", "GR", "GeometryBasics", "JSON", "Latexify", "LinearAlgebra", "Measures", "NaNMath", "Pkg", "PlotThemes", "PlotUtils", "Printf", "REPL", "Random", "RecipesBase", "RecipesPipeline", "Reexport", "Requires", "Scratch", "Showoff", "SparseArrays", "Statistics", "StatsBase", "UUIDs", "UnicodeFun", "Unzip"] git-tree-sha1 = "edec0846433f1c1941032385588fd57380b62b59" uuid = "91a5bcdd-55d7-5caf-9e0b-520d859cae80" version = "1.27.4" [[deps.Preferences]] deps = ["TOML"] git-tree-sha1 = "d3538e7f8a790dc8903519090857ef8e1283eecd" uuid = "21216c6a-2e73-6563-6e65-726566657250" version = "1.2.5" [[deps.Printf]] deps = ["Unicode"] uuid = "de0858da-6303-5e67-8744-51eddeeeb8d7" [[deps.Qt5Base_jll]] deps = ["Artifacts", "CompilerSupportLibraries_jll", "Fontconfig_jll", "Glib_jll", "JLLWrappers", "Libdl", "Libglvnd_jll", "OpenSSL_jll", "Pkg", "Xorg_libXext_jll", "Xorg_libxcb_jll", "Xorg_xcb_util_image_jll", "Xorg_xcb_util_keysyms_jll", "Xorg_xcb_util_renderutil_jll", "Xorg_xcb_util_wm_jll", "Zlib_jll", "xkbcommon_jll"] git-tree-sha1 = "ad368663a5e20dbb8d6dc2fddeefe4dae0781ae8" uuid = "ea2cea3b-5b76-57ae-a6ef-0a8af62496e1" version = "5.15.3+0" [[deps.QuadGK]] deps = ["DataStructures", "LinearAlgebra"] git-tree-sha1 = "78aadffb3efd2155af139781b8a8df1ef279ea39" uuid = "1fd47b50-473d-5c70-9696-f719f8f3bcdc" version = "2.4.2" [[deps.REPL]] deps = ["InteractiveUtils", "Markdown", "Sockets", "Unicode"] uuid = "3fa0cd96-eef1-5676-8a61-b3b8758bbffb" [[deps.Random]] deps = ["SHA", "Serialization"] uuid = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c" [[deps.Ratios]] deps = ["Requires"] git-tree-sha1 = "dc84268fe0e3335a62e315a3a7cf2afa7178a734" uuid = "c84ed2f1-dad5-54f0-aa8e-dbefe2724439" version = "0.4.3" [[deps.RecipesBase]] git-tree-sha1 = "6bf3f380ff52ce0832ddd3a2a7b9538ed1bcca7d" uuid = "3cdcf5f2-1ef4-517c-9805-6587b60abb01" version = "1.2.1" [[deps.RecipesPipeline]] deps = ["Dates", "NaNMath", "PlotUtils", "RecipesBase"] git-tree-sha1 = "dc1e451e15d90347a7decc4221842a022b011714" uuid = "01d81517-befc-4cb6-b9ec-a95719d0359c" version = "0.5.2" [[deps.Reexport]] git-tree-sha1 = "45e428421666073eab6f2da5c9d310d99bb12f9b" uuid = "189a3867-3050-52da-a836-e630ba90ab69" version = "1.2.2" [[deps.RelocatableFolders]] deps = ["SHA", "Scratch"] git-tree-sha1 = "cdbd3b1338c72ce29d9584fdbe9e9b70eeb5adca" uuid = "05181044-ff0b-4ac5-8273-598c1e38db00" version = "0.1.3" [[deps.Requires]] deps = ["UUIDs"] git-tree-sha1 = "838a3a4188e2ded87a4f9f184b4b0d78a1e91cb7" uuid = "ae029012-a4dd-5104-9daa-d747884805df" version = "1.3.0" [[deps.Rmath]] deps = ["Random", "Rmath_jll"] git-tree-sha1 = "bf3188feca147ce108c76ad82c2792c57abe7b1f" uuid = "79098fc4-a85e-5d69-aa6a-4863f24498fa" version = "0.7.0" [[deps.Rmath_jll]] deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg"] git-tree-sha1 = "68db32dff12bb6127bac73c209881191bf0efbb7" uuid = "f50d1b31-88e8-58de-be2c-1cc44531875f" version = "0.3.0+0" [[deps.SHA]] uuid = "ea8e919c-243c-51af-8825-aaa63cd721ce" version = "0.7.0" [[deps.Scratch]] deps = ["Dates"] git-tree-sha1 = "0b4b7f1393cff97c33891da2a0bf69c6ed241fda" uuid = "6c6a2e73-6563-6170-7368-637461726353" version = "1.1.0" [[deps.SentinelArrays]] deps = ["Dates", "Random"] git-tree-sha1 = "6a2f7d70512d205ca8c7ee31bfa9f142fe74310c" uuid = "91c51154-3ec4-41a3-a24f-3f23e20d615c" version = "1.3.12" [[deps.Serialization]] uuid = "9e88b42a-f829-5b0c-bbe9-9e923198166b" [[deps.SharedArrays]] deps = ["Distributed", "Mmap", "Random", "Serialization"] uuid = "1a1011a3-84de-559e-8e89-a11a2f7dc383" [[deps.Showoff]] deps = ["Dates", "Grisu"] git-tree-sha1 = "91eddf657aca81df9ae6ceb20b959ae5653ad1de" uuid = "992d4aef-0814-514b-bc4d-f2e9a6c4116f" version = "1.0.3" [[deps.Sockets]] uuid = "6462fe0b-24de-5631-8697-dd941f90decc" [[deps.SortingAlgorithms]] deps = ["DataStructures"] git-tree-sha1 = "b3363d7460f7d098ca0912c69b082f75625d7508" uuid = "a2af1166-a08f-5f64-846c-94a0d3cef48c" version = "1.0.1" [[deps.SparseArrays]] deps = ["LinearAlgebra", "Random"] uuid = "2f01184e-e22b-5df5-ae63-d93ebab69eaf" [[deps.SpecialFunctions]] deps = ["ChainRulesCore", "IrrationalConstants", "LogExpFunctions", "OpenLibm_jll", "OpenSpecFun_jll"] git-tree-sha1 = "5ba658aeecaaf96923dce0da9e703bd1fe7666f9" uuid = "276daf66-3868-5448-9aa4-cd146d93841b" version = "2.1.4" [[deps.StaticArrays]] deps = ["LinearAlgebra", "Random", "Statistics"] git-tree-sha1 = "4f6ec5d99a28e1a749559ef7dd518663c5eca3d5" uuid = "90137ffa-7385-5640-81b9-e52037218182" version = "1.4.3" [[deps.Statistics]] deps = ["LinearAlgebra", "SparseArrays"] uuid = "10745b16-79ce-11e8-11f9-7d13ad32a3b2" [[deps.StatsAPI]] deps = ["LinearAlgebra"] git-tree-sha1 = "c3d8ba7f3fa0625b062b82853a7d5229cb728b6b" uuid = "82ae8749-77ed-4fe6-ae5f-f523153014b0" version = "1.2.1" [[deps.StatsBase]] deps = ["DataAPI", "DataStructures", "LinearAlgebra", "LogExpFunctions", "Missings", "Printf", "Random", "SortingAlgorithms", "SparseArrays", "Statistics", "StatsAPI"] git-tree-sha1 = "8977b17906b0a1cc74ab2e3a05faa16cf08a8291" uuid = "2913bbd2-ae8a-5f71-8c99-4fb6c76f3a91" version = "0.33.16" [[deps.StatsFuns]] deps = ["ChainRulesCore", "HypergeometricFunctions", "InverseFunctions", "IrrationalConstants", "LogExpFunctions", "Reexport", "Rmath", "SpecialFunctions"] git-tree-sha1 = "72e6abd6fc9ef0fa62a159713c83b7637a14b2b8" uuid = "4c63d2b9-4356-54db-8cca-17b64c39e42c" version = "0.9.17" [[deps.StatsPlots]] deps = ["AbstractFFTs", "Clustering", "DataStructures", "DataValues", "Distributions", "Interpolations", "KernelDensity", "LinearAlgebra", "MultivariateStats", "Observables", "Plots", "RecipesBase", "RecipesPipeline", "Reexport", "StatsBase", "TableOperations", "Tables", "Widgets"] git-tree-sha1 = "4d9c69d65f1b270ad092de0abe13e859b8c55cad" uuid = "f3b207a7-027a-5e70-b257-86293d7955fd" version = "0.14.33" [[deps.StructArrays]] deps = ["Adapt", "DataAPI", "StaticArrays", "Tables"] git-tree-sha1 = "57617b34fa34f91d536eb265df67c2d4519b8b98" uuid = "09ab397b-f2b6-538f-b94a-2f83cf4a842a" version = "0.6.5" [[deps.SuiteSparse]] deps = ["Libdl", "LinearAlgebra", "Serialization", "SparseArrays"] uuid = "4607b0f0-06f3-5cda-b6b1-a6196a1729e9" [[deps.TOML]] deps = ["Dates"] uuid = "fa267f1f-6049-4f14-aa54-33bafae1ed76" version = "1.0.0" [[deps.TableOperations]] deps = ["SentinelArrays", "Tables", "Test"] git-tree-sha1 = "e383c87cf2a1dc41fa30c093b2a19877c83e1bc1" uuid = "ab02a1b2-a7df-11e8-156e-fb1833f50b87" version = "1.2.0" [[deps.TableTraits]] deps = ["IteratorInterfaceExtensions"] git-tree-sha1 = "c06b2f539df1c6efa794486abfb6ed2022561a39" uuid = "3783bdb8-4a98-5b6b-af9a-565f29a5fe9c" version = "1.0.1" [[deps.Tables]] deps = ["DataAPI", "DataValueInterfaces", "IteratorInterfaceExtensions", "LinearAlgebra", "OrderedCollections", "TableTraits", "Test"] git-tree-sha1 = "5ce79ce186cc678bbb5c5681ca3379d1ddae11a1" uuid = "bd369af6-aec1-5ad0-b16a-f7cc5008161c" version = "1.7.0" [[deps.Tar]] deps = ["ArgTools", "SHA"] uuid = "a4e569a6-e804-4fa4-b0f3-eef7a1d5b13e" version = "1.10.0" [[deps.Test]] deps = ["InteractiveUtils", "Logging", "Random", "Serialization"] uuid = "8dfed614-e22c-5e08-85e1-65c5234f0b40" [[deps.URIs]] git-tree-sha1 = "97bbe755a53fe859669cd907f2d96aee8d2c1355" uuid = "5c2747f8-b7ea-4ff2-ba2e-563bfd36b1d4" version = "1.3.0" [[deps.UUIDs]] deps = ["Random", "SHA"] uuid = "cf7118a7-6976-5b1a-9a39-7adc72f591a4" [[deps.Unicode]] uuid = "4ec0a83e-493e-50e2-b9ac-8f72acf5a8f5" [[deps.UnicodeFun]] deps = ["REPL"] git-tree-sha1 = "53915e50200959667e78a92a418594b428dffddf" uuid = "1cfade01-22cf-5700-b092-accc4b62d6e1" version = "0.4.1" [[deps.Unzip]] git-tree-sha1 = "34db80951901073501137bdbc3d5a8e7bbd06670" uuid = "41fe7b60-77ed-43a1-b4f0-825fd5a5650d" version = "0.1.2" [[deps.Wayland_jll]] deps = ["Artifacts", "Expat_jll", "JLLWrappers", "Libdl", "Libffi_jll", "Pkg", "XML2_jll"] git-tree-sha1 = "3e61f0b86f90dacb0bc0e73a0c5a83f6a8636e23" uuid = "a2964d1f-97da-50d4-b82a-358c7fce9d89" version = "1.19.0+0" [[deps.Wayland_protocols_jll]] deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg"] git-tree-sha1 = "4528479aa01ee1b3b4cd0e6faef0e04cf16466da" uuid = "2381bf8a-dfd0-557d-9999-79630e7b1b91" version = "1.25.0+0" [[deps.Widgets]] deps = ["Colors", "Dates", "Observables", "OrderedCollections"] git-tree-sha1 = "505c31f585405fc375d99d02588f6ceaba791241" uuid = "cc8bc4a8-27d6-5769-a93b-9d913e69aa62" version = "0.6.5" [[deps.WoodburyMatrices]] deps = ["LinearAlgebra", "SparseArrays"] git-tree-sha1 = "de67fa59e33ad156a590055375a30b23c40299d3" uuid = "efce3f68-66dc-5838-9240-27a6d6f5f9b6" version = "0.5.5" [[deps.XML2_jll]] deps = ["Artifacts", "JLLWrappers", "Libdl", "Libiconv_jll", "Pkg", "Zlib_jll"] git-tree-sha1 = "1acf5bdf07aa0907e0a37d3718bb88d4b687b74a" uuid = "02c8fc9c-b97f-50b9-bbe4-9be30ff0a78a" version = "2.9.12+0" [[deps.XSLT_jll]] deps = ["Artifacts", "JLLWrappers", "Libdl", "Libgcrypt_jll", "Libgpg_error_jll", "Libiconv_jll", "Pkg", "XML2_jll", "Zlib_jll"] git-tree-sha1 = "91844873c4085240b95e795f692c4cec4d805f8a" uuid = "aed1982a-8fda-507f-9586-7b0439959a61" version = "1.1.34+0" [[deps.Xorg_libX11_jll]] deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg", "Xorg_libxcb_jll", "Xorg_xtrans_jll"] git-tree-sha1 = "5be649d550f3f4b95308bf0183b82e2582876527" uuid = "4f6342f7-b3d2-589e-9d20-edeb45f2b2bc" version = "1.6.9+4" [[deps.Xorg_libXau_jll]] deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg"] git-tree-sha1 = "4e490d5c960c314f33885790ed410ff3a94ce67e" uuid = "0c0b7dd1-d40b-584c-a123-a41640f87eec" version = "1.0.9+4" [[deps.Xorg_libXcursor_jll]] deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg", "Xorg_libXfixes_jll", "Xorg_libXrender_jll"] git-tree-sha1 = "12e0eb3bc634fa2080c1c37fccf56f7c22989afd" uuid = "935fb764-8cf2-53bf-bb30-45bb1f8bf724" version = "1.2.0+4" [[deps.Xorg_libXdmcp_jll]] deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg"] git-tree-sha1 = "4fe47bd2247248125c428978740e18a681372dd4" uuid = "a3789734-cfe1-5b06-b2d0-1dd0d9d62d05" version = "1.1.3+4" [[deps.Xorg_libXext_jll]] deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg", "Xorg_libX11_jll"] git-tree-sha1 = "b7c0aa8c376b31e4852b360222848637f481f8c3" uuid = "1082639a-0dae-5f34-9b06-72781eeb8cb3" version = "1.3.4+4" [[deps.Xorg_libXfixes_jll]] deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg", "Xorg_libX11_jll"] git-tree-sha1 = "0e0dc7431e7a0587559f9294aeec269471c991a4" uuid = "d091e8ba-531a-589c-9de9-94069b037ed8" version = "5.0.3+4" [[deps.Xorg_libXi_jll]] deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg", "Xorg_libXext_jll", "Xorg_libXfixes_jll"] git-tree-sha1 = "89b52bc2160aadc84d707093930ef0bffa641246" uuid = "a51aa0fd-4e3c-5386-b890-e753decda492" version = "1.7.10+4" [[deps.Xorg_libXinerama_jll]] deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg", "Xorg_libXext_jll"] git-tree-sha1 = "26be8b1c342929259317d8b9f7b53bf2bb73b123" uuid = "d1454406-59df-5ea1-beac-c340f2130bc3" version = "1.1.4+4" [[deps.Xorg_libXrandr_jll]] deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg", "Xorg_libXext_jll", "Xorg_libXrender_jll"] git-tree-sha1 = "34cea83cb726fb58f325887bf0612c6b3fb17631" uuid = "ec84b674-ba8e-5d96-8ba1-2a689ba10484" version = "1.5.2+4" [[deps.Xorg_libXrender_jll]] deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg", "Xorg_libX11_jll"] git-tree-sha1 = "19560f30fd49f4d4efbe7002a1037f8c43d43b96" uuid = "ea2f1a96-1ddc-540d-b46f-429655e07cfa" version = "0.9.10+4" [[deps.Xorg_libpthread_stubs_jll]] deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg"] git-tree-sha1 = "6783737e45d3c59a4a4c4091f5f88cdcf0908cbb" uuid = "14d82f49-176c-5ed1-bb49-ad3f5cbd8c74" version = "0.1.0+3" [[deps.Xorg_libxcb_jll]] deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg", "XSLT_jll", "Xorg_libXau_jll", "Xorg_libXdmcp_jll", "Xorg_libpthread_stubs_jll"] git-tree-sha1 = "daf17f441228e7a3833846cd048892861cff16d6" uuid = "c7cfdc94-dc32-55de-ac96-5a1b8d977c5b" version = "1.13.0+3" [[deps.Xorg_libxkbfile_jll]] deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg", "Xorg_libX11_jll"] git-tree-sha1 = "926af861744212db0eb001d9e40b5d16292080b2" uuid = "cc61e674-0454-545c-8b26-ed2c68acab7a" version = "1.1.0+4" [[deps.Xorg_xcb_util_image_jll]] deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg", "Xorg_xcb_util_jll"] git-tree-sha1 = "0fab0a40349ba1cba2c1da699243396ff8e94b97" uuid = "12413925-8142-5f55-bb0e-6d7ca50bb09b" version = "0.4.0+1" [[deps.Xorg_xcb_util_jll]] deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg", "Xorg_libxcb_jll"] git-tree-sha1 = "e7fd7b2881fa2eaa72717420894d3938177862d1" uuid = "2def613f-5ad1-5310-b15b-b15d46f528f5" version = "0.4.0+1" [[deps.Xorg_xcb_util_keysyms_jll]] deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg", "Xorg_xcb_util_jll"] git-tree-sha1 = "d1151e2c45a544f32441a567d1690e701ec89b00" uuid = "975044d2-76e6-5fbe-bf08-97ce7c6574c7" version = "0.4.0+1" [[deps.Xorg_xcb_util_renderutil_jll]] deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg", "Xorg_xcb_util_jll"] git-tree-sha1 = "dfd7a8f38d4613b6a575253b3174dd991ca6183e" uuid = "0d47668e-0667-5a69-a72c-f761630bfb7e" version = "0.3.9+1" [[deps.Xorg_xcb_util_wm_jll]] deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg", "Xorg_xcb_util_jll"] git-tree-sha1 = "e78d10aab01a4a154142c5006ed44fd9e8e31b67" uuid = "c22f9ab0-d5fe-5066-847c-f4bb1cd4e361" version = "0.4.1+1" [[deps.Xorg_xkbcomp_jll]] deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg", "Xorg_libxkbfile_jll"] git-tree-sha1 = "4bcbf660f6c2e714f87e960a171b119d06ee163b" uuid = "35661453-b289-5fab-8a00-3d9160c6a3a4" version = "1.4.2+4" [[deps.Xorg_xkeyboard_config_jll]] deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg", "Xorg_xkbcomp_jll"] git-tree-sha1 = "5c8424f8a67c3f2209646d4425f3d415fee5931d" uuid = "33bec58e-1273-512f-9401-5d533626f822" version = "2.27.0+4" [[deps.Xorg_xtrans_jll]] deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg"] git-tree-sha1 = "79c31e7844f6ecf779705fbc12146eb190b7d845" uuid = "c5fb5394-a638-5e4d-96e5-b29de1b5cf10" version = "1.4.0+3" [[deps.Zlib_jll]] deps = ["Libdl"] uuid = "83775a58-1f1d-513f-b197-d71354ab007a" version = "1.2.12+1" [[deps.Zstd_jll]] deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg"] git-tree-sha1 = "e45044cd873ded54b6a5bac0eb5c971392cf1927" uuid = "3161d3a3-bdf6-5164-811a-617609db77b4" version = "1.5.2+0" [[deps.libass_jll]] deps = ["Artifacts", "Bzip2_jll", "FreeType2_jll", "FriBidi_jll", "HarfBuzz_jll", "JLLWrappers", "Libdl", "Pkg", "Zlib_jll"] git-tree-sha1 = "5982a94fcba20f02f42ace44b9894ee2b140fe47" uuid = "0ac62f75-1d6f-5e53-bd7c-93b484bb37c0" version = "0.15.1+0" [[deps.libblastrampoline_jll]] deps = ["Artifacts", "Libdl", "OpenBLAS_jll"] uuid = "8e850b90-86db-534c-a0d3-1478176c7d93" version = "5.0.1+0" [[deps.libfdk_aac_jll]] deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg"] git-tree-sha1 = "daacc84a041563f965be61859a36e17c4e4fcd55" uuid = "f638f0a6-7fb0-5443-88ba-1cc74229b280" version = "2.0.2+0" [[deps.libpng_jll]] deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg", "Zlib_jll"] git-tree-sha1 = "94d180a6d2b5e55e447e2d27a29ed04fe79eb30c" uuid = "b53b4c65-9356-5827-b1ea-8c7a1a84506f" version = "1.6.38+0" [[deps.libvorbis_jll]] deps = ["Artifacts", "JLLWrappers", "Libdl", "Ogg_jll", "Pkg"] git-tree-sha1 = "b910cb81ef3fe6e78bf6acee440bda86fd6ae00c" uuid = "f27f6e37-5d2b-51aa-960f-b287f2bc3b7a" version = "1.3.7+1" [[deps.nghttp2_jll]] deps = ["Artifacts", "Libdl"] uuid = "8e850ede-7688-5339-a07c-302acd2aaf8d" version = "1.41.0+1" [[deps.p7zip_jll]] deps = ["Artifacts", "Libdl"] uuid = "3f19e933-33d8-53b3-aaab-bd5110c3b7a0" version = "16.2.1+1" [[deps.x264_jll]] deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg"] git-tree-sha1 = "4fea590b89e6ec504593146bf8b988b2c00922b2" uuid = "1270edf5-f2f9-52d2-97e9-ab00b5d0237a" version = "2021.5.5+0" [[deps.x265_jll]] deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg"] git-tree-sha1 = "ee567a171cce03570d77ad3a43e90218e38937a9" uuid = "dfaa095f-4041-5dcd-9319-2fabd8486b76" version = "3.5.0+0" [[deps.xkbcommon_jll]] deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg", "Wayland_jll", "Wayland_protocols_jll", "Xorg_libxcb_jll", "Xorg_xkeyboard_config_jll"] git-tree-sha1 = "ece2350174195bb31de1a63bea3a41ae1aa593b6" uuid = "d8fb68d0-12a3-5cfd-a85a-d49703b185fd" version = "0.9.1+5" """ # ╔═╡ Cell order: # ╟─1eb34f10-b4b3-11ec-19f5-c7f26108d374 # ╟─6c4b3bf7-26e9-4d6f-9305-65fbc851818f # ╟─2743185f-b0d7-4195-8e8e-a1bfcf132934 # ╠═982fab25-1414-4789-bc16-343ab29b4514 # ╟─7e53c83c-ead7-484f-8762-4a0956ba7210 # ╟─c8977146-1409-4eb1-bede-13436fd7214b # ╟─201fb421-39b1-47db-8dec-609706461dca # ╟─e12e34c7-90db-4f31-8792-ce2a39acc435 # ╟─1aaa8364-b72e-4128-b26a-82d4d4601634 # ╠═7387c353-51b7-402b-a500-adec0a34b059 # ╠═b40838d0-8391-4f1e-a3fc-a4be028b7bc7 # ╟─ec26fefb-18d1-4ac7-b0c1-0d3c71ae1305 # ╟─355540ec-db9b-4ce5-a5d2-0c10497da934 # ╟─de44b0c7-eee4-49ed-9264-40a5339e7d6c # ╟─6f073f29-39b5-496e-b644-45051c81ab54 # ╟─5500a012-48fd-4227-a70f-515425c5122a # ╟─e0a8d8ea-e5bd-48ca-b44f-4b6625181a17 # ╟─cc32c2a5-d377-4a77-8477-b3acc63cca3b # ╟─00000000-0000-0000-0000-000000000001 # ╟─00000000-0000-0000-0000-000000000002
[ 27, 7856, 261, 480, 29, 958, 291, 33227, 14, 11909, 16309, 9031, 17, 198, 21017, 317, 32217, 13, 20362, 20922, 44386, 198, 2, 410, 15, 13, 1507, 13, 19, 198, 198, 3500, 2940, 2902, 198, 3500, 21365, 18274, 4487, 198, 198, 2, 2343, 243, 242, 28670, 22880, 94, 352, 1765, 2682, 69, 940, 12, 65, 19, 65, 18, 12, 1157, 721, 12, 1129, 69, 20, 12, 66, 22, 69, 2075, 15711, 67, 31020, 198, 27471, 198, 197, 3500, 44800, 2348, 29230, 198, 197, 3500, 20595, 3646, 1747, 198, 9132, 37811, 198, 2, 44884, 1367, 198, 198, 27, 20608, 29, 198, 37811, 198, 437, 198, 198, 2, 2343, 243, 242, 28670, 22880, 94, 718, 66, 19, 65, 18, 19881, 22, 12, 2075, 68, 24, 12, 19, 67, 21, 69, 12, 24, 22515, 12, 2996, 69, 15630, 5332, 1507, 1507, 69, 198, 1616, 198, 9132, 37811, 198, 21017, 20647, 352, 198, 198, 11041, 262, 6608, 286, 3416, 1187, 284, 5879, 326, 7559, 59, 4625, 1370, 31478, 4625, 1370, 90, 32, 11709, 3467, 11, 59, 4625, 1370, 31478, 4625, 1370, 90, 33, 11709, 796, 3467, 4625, 1370, 31478, 4625, 1370, 90, 15, 11709, 15506, 15565, 326, 2035, 7559, 91, 59, 4625, 1370, 31478, 4625, 1370, 90, 32, 11709, 91, 796, 657, 15506, 393, 7559, 91, 59, 4625, 1370, 31478, 4625, 1370, 90, 33, 11709, 91, 796, 657, 15506, 11, 393, 1111, 11, 810, 7559, 59, 4625, 1370, 31478, 4625, 1370, 90, 15, 11709, 15506, 318, 262, 17593, 286, 477, 1976, 27498, 13, 198, 35477, 23104, 428, 351, 262, 2603, 45977, 198, 198, 3, 59, 4625, 1370, 31478, 4625, 1370, 90, 32, 11709, 796, 3467, 27471, 90, 65, 6759, 8609, 92, 352, 1222, 352, 26867, 362, 1222, 362, 3467, 437, 90, 65, 6759, 8609, 92, 3467, 80, 47003, 59, 5239, 90, 392, 32239, 80, 47003, 3467, 4625, 1370, 31478, 4625, 1370, 90, 33, 11709, 796, 3467, 27471, 90, 65, 6759, 8609, 92, 257, 1222, 275, 26867, 532, 64, 1222, 532, 65, 3467, 437, 90, 65, 6759, 8609, 92, 3, 198, 198, 3003, 7559, 64, 15506, 290, 7559, 65, 15506, 460, 307, 597, 3716, 3146, 13, 198, 13828, 17593, 468, 6632, 3416, 415, 30, 198, 37811, 198, 1616, 198, 197, 32, 796, 685, 16, 352, 26, 362, 362, 60, 198, 197, 64, 796, 43720, 7, 5377, 11141, 90, 43879, 2414, 30072, 198, 197, 65, 796, 43720, 7, 5377, 11141, 90, 43879, 2414, 30072, 628, 197, 33, 796, 685, 64, 275, 26, 532, 64, 532, 65, 60, 198, 197, 15255, 7, 32, 828, 1062, 7, 33, 828, 304, 328, 12786, 7, 32, 828, 304, 328, 12786, 7, 33, 8, 198, 437, 198, 9132, 37811, 198, 21017, 20647, 352, 198, 198, 15056, 326, 7559, 91, 59, 4625, 1370, 31478, 4625, 1370, 90, 32, 11709, 3467, 11, 59, 4625, 1370, 31478, 4625, 1370, 90, 33, 11709, 91, 796, 657, 15506, 290, 1262, 262, 11695, 3119, 286, 3416, 1187, 355, 5610, 287, 262, 1781, 4710, 11, 7559, 91, 59, 4625, 1370, 31478, 4625, 1370, 90, 32, 11709, 3467, 11, 59, 4625, 1370, 31478, 4625, 1370, 90, 33, 11709, 91, 796, 930, 59, 4625, 1370, 31478, 4625, 1370, 90, 32, 11709, 91, 930, 59, 4625, 1370, 31478, 4625, 1370, 90, 33, 11709, 91, 15506, 11, 356, 651, 198, 198, 3, 91, 59, 4625, 1370, 31478, 4625, 1370, 90, 32, 11709, 3467, 11, 59, 4625, 1370, 31478, 4625, 1370, 90, 33, 11709, 91, 796, 930, 59, 4625, 1370, 31478, 4625, 1370, 90, 32, 11709, 91, 930, 59, 4625, 1370, 31478, 4625, 1370, 90, 33, 11709, 91, 796, 657, 3, 198, 198, 4758, 15565, 326, 379, 1551, 7559, 91, 59, 4625, 1370, 31478, 4625, 1370, 90, 32, 11709, 91, 796, 657, 15506, 393, 7559, 91, 59, 4625, 1370, 31478, 4625, 1370, 90, 33, 11709, 91, 796, 657, 15506, 13, 198, 464, 3416, 415, 7559, 91, 59, 4625, 1370, 31478, 4625, 1370, 90, 32, 11709, 91, 15506, 318, 198, 198, 3, 91, 59, 4625, 1370, 31478, 4625, 1370, 90, 32, 11709, 91, 796, 357, 16, 5769, 17, 8, 532, 357, 16, 5769, 17, 8, 796, 362, 532, 362, 796, 657, 3, 198, 198, 568, 7559, 59, 4625, 1370, 31478, 4625, 1370, 90, 32, 11709, 15506, 318, 262, 17593, 351, 262, 6632, 3416, 415, 13, 198, 37811, 198, 437, 198, 198, 2, 2343, 243, 242, 28670, 22880, 94, 2681, 3559, 21652, 69, 12, 65, 15, 67, 22, 12, 19, 22186, 12, 23, 68, 23, 68, 12, 64, 16, 19881, 12993, 1485, 1959, 2682, 198, 1616, 198, 9132, 37811, 198, 21017, 20647, 362, 198, 198, 7155, 262, 8771, 356, 1816, 832, 287, 1398, 284, 1064, 262, 40686, 34197, 286, 262, 369, 291, 2665, 7559, 21, 87, 61, 17, 1343, 1105, 5431, 1343, 331, 61, 17, 796, 1467, 15506, 11, 290, 1064, 262, 9848, 484, 787, 351, 262, 7559, 87, 11, 88, 15506, 34197, 13, 198, 2061, 1611, 286, 12133, 318, 428, 30, 198, 32, 7110, 561, 307, 7613, 13, 198, 1639, 460, 466, 428, 351, 337, 12599, 3620, 1404, 25241, 611, 345, 765, 11, 475, 262, 3306, 37139, 318, 2138, 2829, 13, 198, 37811, 198, 9132, 37811, 198, 21017, 20647, 362, 198, 198, 3, 59, 4625, 1370, 31478, 4625, 1370, 90, 32, 11709, 796, 3467, 27471, 90, 65, 6759, 8609, 92, 718, 1222, 718, 26867, 718, 1222, 352, 3467, 437, 90, 65, 6759, 8609, 92, 3467, 23928, 444, 3467, 4625, 1370, 31478, 4625, 1370, 90, 49, 11709, 796, 3467, 31944, 90, 16, 18477, 59, 31166, 17034, 90, 1485, 11709, 3467, 27471, 90, 65, 6759, 8609, 92, 532, 17, 1222, 513, 26867, 513, 1222, 362, 3467, 437, 90, 65, 6759, 8609, 92, 3467, 23928, 444, 3467, 4625, 1370, 31478, 4625, 1370, 90, 49, 11709, 61, 51, 3467, 4625, 1370, 31478, 4625, 1370, 90, 32, 11709, 3467, 11, 59, 4625, 1370, 31478, 4625, 1370, 90, 49, 11709, 796, 3467, 27471, 90, 65, 6759, 8609, 92, 532, 18, 1222, 657, 26867, 657, 1222, 838, 3467, 437, 90, 65, 6759, 8609, 92, 3, 198, 37811, 198, 437, 198, 198, 2, 2343, 243, 242, 28670, 22880, 94, 860, 6469, 36434, 1495, 12, 1415, 1415, 12, 2857, 4531, 12, 15630, 1433, 12, 32118, 397, 1959, 65, 2231, 1415, 198, 1616, 198, 197, 32, 796, 685, 21, 718, 26, 718, 352, 60, 198, 197, 85, 16, 796, 304, 328, 303, 6359, 7, 32, 38381, 45299, 16, 60, 198, 197, 85, 17, 796, 304, 328, 303, 6359, 7, 32, 38381, 45299, 17, 60, 198, 197, 49, 796, 685, 85, 16, 410, 17, 60, 198, 197, 49, 6, 1635, 317, 1635, 371, 198, 437, 198, 198, 2, 2343, 243, 242, 28670, 22880, 94, 767, 68, 4310, 66, 5999, 66, 12, 1329, 22, 12, 34137, 69, 12, 23, 48194, 12, 19, 64, 2931, 3980, 7012, 4761, 940, 198, 9132, 37811, 198, 1212, 11073, 262, 12133, 198, 198, 3, 12, 18, 87, 61, 17, 1343, 838, 88, 61, 17, 796, 1467, 3, 198, 198, 4758, 318, 257, 8718, 65, 5708, 198, 37811, 198, 198, 2, 2343, 243, 242, 28670, 22880, 94, 269, 4531, 3324, 20964, 12, 1415, 2931, 12, 19, 1765, 16, 12, 3077, 68, 12, 19880, 2623, 16344, 4761, 1415, 65, 198, 1616, 198, 197, 29487, 7, 87, 4613, 19862, 17034, 7, 1433, 1343, 513, 87, 61, 17, 8, 1220, 838, 11, 3124, 28, 25, 13424, 11, 8177, 28, 9562, 8, 198, 197, 29487, 0, 7, 87, 4613, 532, 31166, 17034, 7, 1433, 1343, 513, 87, 61, 17, 8, 1220, 838, 11, 3124, 28, 25, 13424, 11, 8177, 28, 9562, 8, 198, 437, 198, 198, 2, 2343, 243, 242, 28670, 22880, 94, 580, 21855, 46636, 12, 2670, 65, 16, 12, 2857, 9945, 12, 23, 12501, 12, 31751, 2154, 2414, 5333, 67, 6888, 198, 1616, 198, 9132, 37811, 198, 21017, 20647, 513, 198, 198, 16742, 262, 304, 9324, 27160, 290, 304, 9324, 303, 5217, 329, 262, 17593, 198, 198, 3, 59, 4625, 1370, 31478, 4625, 1370, 31478, 82, 13495, 11709, 62, 88, 796, 3467, 27471, 90, 65, 6759, 8609, 92, 657, 1222, 532, 16, 26867, 1312, 1222, 657, 3467, 437, 90, 65, 6759, 8609, 92, 3, 198, 198, 505, 286, 262, 1115, 12429, 12041, 72, 2603, 45977, 1174, 13, 198, 5211, 428, 416, 1021, 11, 407, 351, 337, 12599, 3620, 1404, 25241, 13, 198, 26447, 1096, 262, 304, 9324, 303, 5217, 290, 905, 326, 484, 389, 29617, 519, 20996, 13, 198, 37811, 198, 9132, 37811, 198, 21017, 20647, 513, 198, 198, 5962, 11, 356, 1064, 262, 16704, 745, 6213, 49070, 13, 198, 198, 3, 59, 15255, 38016, 4625, 1370, 31478, 4625, 1370, 31478, 82, 13495, 11709, 62, 88, 532, 3467, 50033, 3467, 11, 59, 4625, 1370, 31478, 4625, 1370, 90, 40, 11709, 8, 796, 3467, 27471, 90, 85, 6759, 8609, 92, 532, 59, 50033, 1222, 532, 72, 26867, 1312, 1222, 532, 59, 50033, 3467, 437, 90, 85, 6759, 8609, 92, 796, 3467, 50033, 61, 17, 1343, 1312, 61, 17, 796, 657, 3467, 23928, 444, 3467, 50033, 796, 6354, 16, 3, 198, 198, 464, 304, 9324, 27160, 389, 198, 198, 3, 59, 50033, 36796, 7, 16, 38165, 796, 532, 16, 3467, 80, 47003, 3467, 50033, 36796, 7, 17, 38165, 796, 352, 3, 198, 198, 1890, 7559, 59, 50033, 36796, 7, 16, 38165, 796, 532, 16, 15506, 356, 423, 198, 198, 3, 59, 27471, 90, 31494, 9, 92, 198, 12, 85, 62, 16, 532, 1312, 410, 62, 17, 1222, 28, 657, 26867, 198, 72, 410, 62, 16, 532, 410, 62, 17, 1222, 28, 657, 198, 59, 437, 90, 31494, 9, 92, 3, 198, 198, 3, 59, 23928, 444, 410, 62, 16, 796, 352, 11, 3467, 11, 410, 62, 17, 796, 1312, 3, 198, 198, 13992, 262, 39279, 304, 9324, 31364, 198, 198, 3, 59, 4625, 1370, 90, 85, 92, 796, 3467, 31944, 90, 16, 18477, 59, 31166, 17034, 90, 17, 11709, 3467, 27471, 90, 65, 6759, 8609, 92, 352, 26867, 1312, 3467, 437, 90, 65, 6759, 8609, 92, 3, 198, 198, 1890, 7559, 59, 50033, 36796, 7, 17, 38165, 796, 352, 15506, 356, 423, 198, 198, 3, 59, 27471, 90, 31494, 9, 92, 198, 84, 62, 16, 532, 1312, 334, 62, 17, 1222, 28, 657, 26867, 198, 72, 334, 62, 16, 532, 334, 62, 17, 1222, 28, 657, 198, 59, 437, 90, 31494, 9, 92, 3, 198, 198, 3, 59, 23928, 444, 334, 62, 16, 796, 352, 11, 3467, 11, 334, 62, 17, 796, 1312, 3, 198, 198, 13992, 262, 39279, 304, 9324, 31364, 198, 198, 3, 59, 4625, 1370, 90, 84, 92, 796, 3467, 31944, 90, 16, 18477, 59, 31166, 17034, 90, 17, 11709, 3467, 27471, 90, 65, 6759, 8609, 92, 352, 26867, 532, 72, 3467, 437, 90, 65, 6759, 8609, 92, 3, 198, 198, 1135, 460, 905, 326, 262, 304, 9324, 303, 5217, 389, 29617, 519, 20996, 25, 198, 198, 3, 158, 253, 101, 85, 3467, 1851, 334, 158, 253, 102, 796, 410, 62, 72, 334, 62, 72, 61, 9, 796, 3467, 9464, 38016, 31944, 90, 16, 18477, 59, 31166, 17034, 90, 17, 11709, 59, 3506, 8, 61, 17, 1343, 3467, 9464, 38016, 31944, 90, 72, 18477, 59, 31166, 17034, 90, 17, 11709, 59, 3506, 8, 61, 17, 796, 3467, 31944, 90, 16, 18477, 59, 31166, 17034, 90, 17, 11709, 532, 3467, 31944, 90, 16, 18477, 59, 31166, 17034, 90, 17, 11709, 796, 657, 3, 198, 37811, 198, 437, 198, 198, 2, 2343, 243, 242, 28670, 22880, 94, 304, 1065, 68, 2682, 66, 22, 12, 3829, 9945, 12, 19, 69, 3132, 12, 23, 48156, 12, 344, 17, 64, 2670, 4134, 40064, 198, 1616, 198, 9132, 37811, 198, 21017, 20647, 604, 198, 198, 16742, 262, 304, 9324, 27160, 11, 734, 286, 543, 4961, 1123, 584, 11, 286, 262, 1103, 23606, 19482, 17593, 198, 198, 3, 59, 4625, 1370, 31478, 4625, 1370, 90, 32, 11709, 796, 3467, 27471, 90, 65, 6759, 8609, 92, 1511, 1222, 604, 1222, 532, 17, 26867, 604, 1222, 1511, 1222, 532, 17, 26867, 532, 17, 1222, 532, 17, 1222, 838, 3467, 437, 90, 65, 6759, 8609, 92, 3, 198, 198, 42316, 262, 1115, 304, 9324, 303, 5217, 416, 1021, 11, 407, 351, 337, 12599, 3620, 1404, 25241, 13, 198, 1639, 481, 423, 517, 4925, 621, 345, 561, 423, 1807, 13, 198, 5211, 345, 766, 703, 284, 779, 428, 4925, 284, 787, 477, 1115, 304, 9324, 303, 5217, 26519, 29617, 519, 20996, 30, 198, 37811, 198, 9132, 37811, 198, 21017, 20647, 604, 198, 198, 1135, 717, 15284, 262, 16704, 16022, 198, 198, 3, 59, 15255, 38016, 4625, 1370, 31478, 4625, 1370, 90, 32, 11709, 532, 3467, 50033, 3467, 11, 3467, 4625, 1370, 31478, 4625, 1370, 90, 40, 11709, 8, 796, 3467, 27471, 90, 85, 6759, 8609, 92, 1511, 532, 3467, 50033, 1222, 604, 1222, 532, 17, 26867, 604, 1222, 1511, 532, 3467, 50033, 1222, 532, 17, 26867, 532, 17, 1222, 532, 17, 1222, 838, 532, 3467, 50033, 3467, 437, 90, 85, 6759, 8609, 92, 796, 532, 38016, 50033, 532, 1248, 5769, 59, 50033, 532, 860, 8, 61, 17, 3, 198, 198, 2396, 262, 304, 9324, 27160, 389, 198, 198, 3, 59, 50033, 36796, 7, 16, 38165, 796, 860, 3467, 80, 47003, 3467, 50033, 36796, 7, 17, 38165, 796, 1248, 3, 198, 198, 1890, 7559, 59, 50033, 36796, 7, 16, 38165, 796, 860, 15506, 356, 423, 198, 198, 3, 59, 27471, 90, 31494, 9, 92, 198, 19, 85, 62, 16, 1343, 604, 85, 62, 17, 532, 362, 85, 62, 18, 1222, 28, 657, 26867, 198, 19, 85, 62, 16, 1343, 604, 85, 62, 17, 532, 362, 85, 62, 18, 1222, 28, 657, 26867, 198, 12, 17, 85, 62, 16, 532, 362, 85, 62, 17, 1343, 410, 62, 18, 1222, 28, 657, 198, 59, 437, 90, 31494, 9, 92, 3, 198, 198, 3, 59, 23928, 444, 410, 62, 16, 796, 352, 11, 410, 62, 17, 796, 657, 11, 410, 62, 18, 796, 362, 3467, 80, 47003, 3467, 5239, 90, 273, 92, 3467, 80, 47003, 410, 62, 16, 796, 532, 16, 11, 410, 62, 17, 796, 352, 11, 410, 62, 18, 796, 657, 3, 198, 198, 4758, 3607, 262, 39279, 304, 9324, 303, 5217, 198, 198, 3, 59, 4625, 1370, 90, 85, 92, 796, 3467, 31944, 90, 16, 18477, 59, 31166, 17034, 90, 20, 11709, 3467, 27471, 90, 65, 6759, 8609, 92, 352, 26867, 657, 26867, 362, 3467, 437, 90, 65, 6759, 8609, 92, 3467, 80, 47003, 3467, 4625, 1370, 90, 84, 92, 796, 3467, 31944, 90, 16, 18477, 59, 31166, 17034, 90, 17, 11709, 3467, 27471, 90, 65, 6759, 8609, 92, 532, 16, 26867, 352, 26867, 657, 3467, 437, 90, 65, 6759, 8609, 92, 3, 198, 198, 1890, 7559, 59, 50033, 36796, 7, 17, 38165, 796, 1248, 15506, 356, 423, 198, 198, 3, 59, 27471, 90, 31494, 9, 92, 198, 12, 20, 86, 62, 16, 1343, 604, 86, 62, 17, 532, 362, 86, 62, 18, 1222, 28, 657, 26867, 198, 19, 86, 62, 16, 532, 642, 86, 62, 17, 532, 362, 86, 62, 18, 1222, 28, 657, 26867, 198, 12, 17, 86, 62, 16, 532, 362, 86, 62, 17, 532, 807, 86, 62, 18, 1222, 28, 657, 198, 59, 437, 90, 31494, 9, 92, 3, 198, 198, 3, 59, 23928, 444, 266, 62, 16, 796, 532, 17, 11, 266, 62, 17, 796, 532, 17, 11, 266, 62, 18, 796, 352, 3, 198, 198, 4758, 3607, 262, 39279, 304, 9324, 31364, 198, 198, 3, 59, 4625, 1370, 90, 86, 92, 796, 3467, 31944, 90, 16, 18477, 18, 92, 3467, 27471, 90, 65, 6759, 8609, 92, 532, 17, 26867, 532, 17, 26867, 352, 3467, 437, 90, 65, 6759, 8609, 92, 3, 198, 37811, 198, 437, 198, 198, 2, 2343, 243, 242, 28670, 22880, 94, 352, 46071, 5999, 2414, 12, 65, 4761, 68, 12, 19, 12762, 12, 65, 2075, 64, 12, 6469, 67, 19, 67, 3510, 27037, 2682, 198, 1616, 198, 9132, 37811, 198, 21017, 20647, 642, 198, 198, 16742, 262, 304, 9324, 69, 8897, 3976, 290, 304, 9324, 76, 4147, 329, 262, 12370, 1080, 198, 198, 63, 91, 4907, 93, 74, 4907, 93, 58, 285, 2361, 4907, 93, 74, 4907, 93, 58, 285, 2361, 4907, 93, 74, 4907, 93, 58, 285, 2361, 4907, 93, 74, 4907, 93, 91, 63, 198, 198, 12050, 257, 7110, 326, 2523, 262, 25530, 286, 1123, 286, 262, 1115, 14568, 11, 329, 262, 1115, 5621, 286, 4238, 3403, 810, 262, 14568, 923, 379, 1334, 351, 2292, 1813, 416, 1123, 286, 262, 1115, 304, 9324, 303, 5217, 13, 198, 33, 3796, 306, 6901, 262, 25530, 286, 262, 1115, 14568, 11, 329, 1123, 286, 262, 304, 9324, 76, 4147, 13, 198, 37811, 198, 9132, 37811, 198, 21017, 20647, 642, 198, 198, 464, 18064, 22577, 27490, 460, 307, 3194, 355, 198, 198, 3, 59, 27471, 90, 31494, 9, 92, 198, 36802, 136, 230, 62, 16, 1222, 28, 532, 74, 87, 62, 16, 1343, 479, 7, 87, 62, 17, 532, 2124, 62, 16, 8, 796, 532, 17, 74, 87, 62, 16, 1343, 479, 87, 62, 17, 26867, 198, 36802, 136, 230, 62, 17, 1222, 28, 532, 74, 7, 87, 62, 17, 532, 2124, 62, 16, 8, 1343, 479, 7, 87, 62, 18, 532, 2124, 62, 17, 8, 796, 479, 87, 62, 16, 532, 362, 74, 87, 62, 17, 1343, 479, 87, 62, 18, 26867, 198, 36802, 136, 230, 62, 18, 1222, 28, 532, 74, 7, 87, 62, 18, 532, 2124, 62, 17, 8, 1343, 479, 32590, 87, 62, 18, 8, 796, 479, 87, 62, 17, 532, 362, 74, 87, 62, 18, 198, 59, 437, 90, 31494, 9, 92, 3, 198, 198, 1135, 460, 28183, 606, 1262, 7559, 59, 462, 4908, 62, 15, 796, 3467, 31166, 17034, 90, 74, 1220, 285, 92, 15506, 11, 198, 198, 3, 59, 27471, 90, 31494, 9, 92, 198, 87, 136, 230, 62, 16, 1222, 28, 532, 17, 31478, 462, 4908, 62, 15, 92, 61, 17, 2124, 62, 16, 1343, 43839, 462, 4908, 62, 15, 92, 61, 17, 2124, 62, 17, 26867, 198, 87, 136, 230, 62, 17, 1222, 28, 43839, 462, 4908, 62, 15, 92, 61, 17, 2124, 62, 16, 532, 362, 31478, 462, 4908, 62, 15, 92, 61, 17, 2124, 62, 17, 1343, 43839, 462, 4908, 62, 15, 92, 61, 17, 2124, 62, 18, 26867, 198, 87, 136, 230, 62, 18, 1222, 28, 43839, 462, 4908, 62, 15, 92, 61, 17, 2124, 62, 17, 532, 362, 31478, 462, 4908, 62, 15, 92, 61, 17, 2124, 62, 18, 198, 59, 437, 90, 31494, 9, 92, 3, 198, 198, 818, 2846, 286, 30104, 290, 2603, 45977, 11, 356, 460, 3551, 428, 355, 198, 198, 3, 59, 4625, 1370, 90, 87, 136, 230, 92, 7, 83, 8, 796, 532, 31478, 462, 4908, 62, 15, 92, 61, 17, 3467, 4625, 1370, 31478, 4625, 1370, 90, 138, 102, 11709, 3467, 11, 59, 4625, 1370, 90, 87, 92, 7, 83, 8, 3, 198, 198, 3003, 198, 198, 3, 59, 4625, 1370, 90, 87, 92, 796, 3467, 27471, 90, 65, 6759, 8609, 92, 2124, 62, 16, 26867, 2124, 62, 17, 26867, 2124, 62, 18, 3467, 437, 90, 65, 6759, 8609, 92, 3467, 80, 47003, 7377, 102, 796, 3467, 27471, 90, 65, 6759, 8609, 92, 532, 17, 1222, 352, 1222, 657, 26867, 352, 1222, 532, 17, 1222, 352, 26867, 657, 1222, 352, 1222, 532, 17, 3467, 437, 90, 65, 6759, 8609, 92, 3, 198, 198, 4480, 262, 1037, 286, 337, 12599, 3620, 1404, 25241, 11, 356, 1064, 262, 304, 9324, 69, 8897, 3976, 284, 307, 198, 198, 3, 59, 462, 4908, 62, 16, 796, 3467, 31166, 17034, 90, 7, 17, 532, 3467, 31166, 17034, 90, 17, 30072, 3467, 462, 4908, 62, 15, 5512, 3467, 11, 3467, 462, 4908, 62, 17, 796, 3467, 31166, 17034, 90, 17, 59, 462, 4908, 62, 15, 5512, 3467, 11, 3467, 462, 4908, 62, 18, 796, 3467, 31166, 17034, 90, 7, 17, 1343, 3467, 31166, 17034, 90, 17, 30072, 3467, 462, 4908, 62, 15, 92, 3, 198, 198, 392, 262, 39279, 304, 9324, 76, 4147, 284, 307, 198, 198, 3, 59, 4625, 1370, 90, 64, 92, 36796, 7, 16, 38165, 796, 3467, 31944, 90, 16, 18477, 17, 92, 3467, 27471, 90, 65, 6759, 8609, 92, 352, 26867, 532, 59, 31166, 17034, 90, 17, 92, 26867, 352, 3467, 437, 90, 65, 6759, 8609, 92, 3467, 80, 47003, 3467, 4625, 1370, 90, 64, 92, 36796, 7, 17, 38165, 796, 3467, 31944, 90, 16, 18477, 59, 31166, 17034, 90, 17, 11709, 3467, 27471, 90, 65, 6759, 8609, 92, 532, 16, 26867, 657, 26867, 352, 3467, 437, 90, 65, 6759, 8609, 92, 3467, 80, 47003, 3467, 4625, 1370, 90, 64, 92, 36796, 7, 18, 38165, 796, 3467, 31944, 90, 16, 18477, 17, 92, 3467, 27471, 90, 65, 6759, 8609, 92, 352, 26867, 3467, 31166, 17034, 90, 17, 92, 26867, 352, 3467, 437, 90, 65, 6759, 8609, 92, 3, 198, 37811, 198, 437, 198, 198, 2, 2343, 243, 242, 28670, 22880, 94, 767, 32220, 66, 33319, 12, 4349, 65, 22, 12, 32531, 65, 12, 64, 4059, 12, 671, 66, 15, 64, 2682, 65, 46712, 198, 1616, 198, 197, 138, 102, 796, 25915, 17, 352, 657, 26, 352, 532, 17, 352, 26, 657, 352, 532, 17, 60, 198, 197, 68, 9324, 7, 138, 102, 8, 198, 437, 198, 198, 2, 2343, 243, 242, 28670, 22880, 94, 275, 26200, 2548, 67, 15, 12, 23, 37710, 12, 19, 69, 16, 68, 12, 64, 18, 16072, 12, 64, 19, 1350, 46957, 65, 22, 15630, 22, 198, 7, 17, 532, 19862, 17034, 7, 17, 4008, 198, 198, 2, 2343, 243, 242, 28670, 22880, 94, 9940, 2075, 69, 891, 65, 12, 1507, 67, 16, 12, 19, 330, 22, 12, 65, 15, 66, 16, 12, 15, 67, 18, 66, 4869, 3609, 12952, 20, 198, 27471, 198, 197, 49535, 158, 224, 223, 796, 19862, 17034, 7, 17, 532, 19862, 17034, 7, 17, 4008, 198, 197, 49535, 158, 224, 224, 796, 19862, 17034, 7, 17, 8, 198, 197, 49535, 158, 224, 225, 796, 19862, 17034, 7, 17, 1343, 19862, 17034, 7, 17, 4008, 628, 197, 64, 16, 796, 357, 16, 14, 17, 8, 764, 9, 685, 16, 26, 532, 31166, 17034, 7, 17, 1776, 352, 60, 198, 197, 64, 17, 796, 357, 16, 14, 31166, 17034, 7, 17, 4008, 764, 9, 25915, 16, 26, 657, 26, 352, 60, 198, 197, 64, 18, 796, 357, 16, 14, 17, 8, 764, 9, 685, 16, 26, 19862, 17034, 7, 17, 1776, 352, 60, 198, 197, 198, 197, 82, 16, 7, 83, 11, 317, 11, 18074, 243, 8, 796, 317, 764, 9, 257, 16, 764, 9, 8615, 7, 49535, 158, 224, 223, 1635, 256, 1343, 18074, 243, 8, 198, 197, 82, 17, 7, 83, 11, 317, 11, 18074, 243, 8, 796, 317, 764, 9, 257, 17, 764, 9, 8615, 7, 49535, 158, 224, 224, 1635, 256, 1343, 18074, 243, 8, 198, 197, 82, 18, 7, 83, 11, 317, 11, 18074, 243, 8, 796, 317, 764, 9, 257, 18, 764, 9, 8615, 7, 49535, 158, 224, 225, 1635, 256, 1343, 18074, 243, 8, 198, 437, 26, 198, 198, 2, 2343, 243, 242, 28670, 22880, 94, 513, 31046, 1821, 721, 12, 9945, 24, 65, 12, 19, 344, 20, 12, 64, 20, 67, 17, 12, 15, 66, 940, 38073, 6814, 24, 2682, 198, 1616, 198, 197, 87, 16, 7, 83, 8, 796, 264, 16, 7, 83, 11, 352, 11, 657, 38381, 16, 60, 198, 197, 87, 17, 7, 83, 8, 796, 264, 16, 7, 83, 11, 352, 11, 657, 38381, 17, 60, 198, 197, 87, 18, 7, 83, 8, 796, 264, 16, 7, 83, 11, 352, 11, 657, 38381, 18, 60, 198, 197, 29487, 7, 87, 16, 11, 6167, 2625, 87, 158, 224, 223, 4943, 198, 197, 29487, 0, 7, 87, 17, 11, 6167, 2625, 87, 158, 224, 224, 4943, 198, 197, 29487, 0, 7, 87, 18, 11, 6167, 2625, 87, 158, 224, 225, 4943, 198, 197, 7839, 0, 7203, 36, 9324, 14171, 352, 4943, 198, 437, 198, 198, 2, 2343, 243, 242, 28670, 22880, 94, 390, 2598, 65, 15, 66, 22, 12, 1453, 68, 19, 12, 2920, 276, 12, 24, 18897, 12, 1821, 64, 20, 29626, 68, 22, 67, 21, 66, 198, 9132, 37811, 198, 36, 9324, 14171, 352, 25, 2124, 16, 290, 2124, 18, 24969, 378, 351, 1123, 584, 11, 6697, 284, 2124, 17, 198, 37811, 198, 198, 2, 2343, 243, 242, 28670, 22880, 94, 718, 69, 2998, 18, 69, 1959, 12, 2670, 65, 20, 12, 37747, 68, 12, 65, 29173, 12, 17885, 4349, 66, 6659, 397, 4051, 198, 1616, 198, 197, 87, 16, 7, 83, 8, 796, 264, 17, 7, 83, 11, 352, 11, 657, 38381, 16, 60, 198, 197, 87, 17, 7, 83, 8, 796, 264, 17, 7, 83, 11, 352, 11, 657, 38381, 17, 60, 198, 197, 87, 18, 7, 83, 8, 796, 264, 17, 7, 83, 11, 352, 11, 657, 38381, 18, 60, 198, 197, 29487, 7, 87, 16, 11, 6167, 2625, 87, 158, 224, 223, 4943, 198, 197, 29487, 0, 7, 87, 17, 11, 6167, 2625, 87, 158, 224, 224, 4943, 198, 197, 29487, 0, 7, 87, 18, 11, 6167, 2625, 87, 158, 224, 225, 4943, 198, 197, 7839, 0, 7203, 36, 9324, 14171, 362, 4943, 198, 437, 198, 198, 2, 2343, 243, 242, 28670, 22880, 94, 642, 4059, 64, 30206, 12, 2780, 16344, 12, 19, 24403, 12, 64, 2154, 69, 12, 20, 21526, 1495, 66, 20, 18376, 64, 198, 9132, 37811, 198, 36, 9324, 14171, 362, 25, 2124, 16, 290, 2124, 18, 24969, 378, 1028, 1123, 584, 981, 2124, 17, 3793, 287, 1295, 198, 37811, 198, 198, 2, 2343, 243, 242, 28670, 22880, 94, 304, 15, 64, 23, 67, 23, 18213, 12, 68, 20, 17457, 12, 2780, 6888, 12, 65, 2598, 69, 12, 19, 65, 2791, 1495, 27057, 64, 1558, 198, 1616, 198, 197, 87, 16, 7, 83, 8, 796, 264, 18, 7, 83, 11, 352, 11, 657, 38381, 16, 60, 198, 197, 87, 17, 7, 83, 8, 796, 264, 18, 7, 83, 11, 352, 11, 657, 38381, 17, 60, 198, 197, 87, 18, 7, 83, 8, 796, 264, 18, 7, 83, 11, 352, 11, 657, 38381, 18, 60, 198, 197, 29487, 7, 87, 16, 11, 6167, 2625, 87, 158, 224, 223, 4943, 198, 197, 29487, 0, 7, 87, 17, 11, 6167, 2625, 87, 158, 224, 224, 4943, 198, 197, 29487, 0, 7, 87, 18, 11, 6167, 2625, 87, 158, 224, 225, 4943, 198, 197, 7839, 0, 7203, 36, 9324, 14171, 513, 4943, 198, 437, 198, 198, 2, 2343, 243, 242, 28670, 22880, 94, 36624, 2624, 66, 17, 64, 20, 12, 67, 26514, 12, 19, 64, 3324, 12, 23, 32883, 12, 65, 18, 4134, 5066, 13227, 18, 65, 198, 9132, 37811, 198, 36, 9324, 14171, 513, 25, 2124, 16, 11, 2124, 17, 11, 290, 2124, 18, 477, 24969, 378, 351, 1123, 584, 11, 2158, 2124, 17, 24969, 341, 318, 37479, 198, 37811, 198, 198, 2, 2343, 243, 242, 28670, 22880, 94, 27551, 12, 2388, 12, 2388, 12, 2388, 12, 8269, 18005, 198, 6489, 3843, 46, 62, 31190, 23680, 62, 51, 2662, 43, 62, 37815, 15365, 796, 37227, 198, 58, 10378, 82, 60, 198, 14993, 451, 2348, 29230, 796, 366, 2718, 68, 17, 68, 3510, 67, 12, 69, 4531, 67, 12, 20, 2670, 67, 12, 65, 19, 1453, 12, 23, 2548, 69, 535, 535, 24, 66, 23, 68, 1, 198, 29668, 3646, 1747, 796, 366, 69, 18, 65, 22745, 64, 22, 12, 44698, 64, 12, 20, 68, 2154, 12, 65, 28676, 12, 4521, 31675, 67, 3720, 2816, 16344, 1, 198, 198, 58, 5589, 265, 60, 198, 29668, 3646, 1747, 796, 366, 93, 15, 13, 1415, 13, 2091, 1, 198, 37811, 198, 198, 2, 2343, 243, 242, 28670, 22880, 94, 27551, 12, 2388, 12, 2388, 12, 2388, 12, 8269, 34215, 198, 6489, 3843, 46, 62, 10725, 5064, 6465, 62, 51, 2662, 43, 62, 37815, 15365, 796, 37227, 198, 2, 770, 2393, 318, 4572, 12, 27568, 532, 12857, 340, 3264, 318, 407, 13030, 198, 198, 73, 43640, 62, 9641, 796, 366, 16, 13, 23, 13, 15, 12, 31361, 16, 1, 198, 805, 8409, 62, 18982, 796, 366, 17, 13, 15, 1, 198, 16302, 62, 17831, 796, 366, 5824, 65, 16, 487, 30484, 3720, 4521, 21855, 2670, 66, 3901, 721, 19, 69, 1350, 16, 68, 18, 66, 5066, 65, 9945, 66, 2791, 487, 1, 198, 198, 30109, 10378, 82, 13, 23839, 5777, 33758, 11907, 198, 10378, 82, 796, 14631, 35491, 37766, 14055, 1600, 366, 14993, 451, 2348, 29230, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 21, 69, 16, 67, 24, 15630, 16, 66, 2919, 69, 24, 69, 19, 64, 23, 13331, 5892, 68, 18, 18213, 18, 21101, 33548, 4310, 64, 16, 65, 1821, 67, 19, 1, 198, 12303, 312, 796, 366, 21, 2481, 69, 2920, 3720, 12, 66, 48200, 12, 20, 67, 4051, 12, 23, 3104, 68, 12, 69, 12993, 19, 68, 18, 68, 23, 21652, 66, 1, 198, 9641, 796, 366, 16, 13, 16, 13, 15, 1, 198, 198, 30109, 10378, 82, 13, 48003, 11907, 198, 10378, 82, 796, 14631, 14993, 451, 2348, 29230, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 1878, 24, 1959, 2996, 21855, 1270, 29331, 1415, 3720, 2791, 69, 3365, 330, 65, 2713, 6814, 4349, 66, 3980, 1433, 65, 20, 69, 1, 198, 12303, 312, 796, 366, 3720, 68, 21, 64, 18, 397, 12, 20, 7568, 65, 12, 33580, 67, 12, 45418, 67, 12, 22, 2548, 64, 17, 64, 24, 2548, 64, 15, 68, 1, 198, 9641, 796, 366, 18, 13, 18, 13, 18, 1, 198, 198, 30109, 10378, 82, 13, 28100, 33637, 11907, 198, 12303, 312, 796, 366, 15, 47984, 5705, 66, 20, 12, 67, 14686, 12, 3682, 68, 21, 12, 23, 67, 2078, 12, 891, 1065, 67, 6485, 40401, 69, 1, 198, 9641, 796, 366, 16, 13, 16, 13, 16, 1, 198, 198, 30109, 10378, 82, 13, 3163, 8002, 11907, 198, 10378, 82, 796, 14631, 3163, 8002, 62, 73, 297, 1600, 366, 25835, 25404, 1600, 366, 14993, 451, 2348, 29230, 1600, 366, 11187, 2667, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 6420, 6888, 1828, 66, 19, 65, 5705, 2718, 6814, 4531, 65, 39101, 69, 2919, 67, 4869, 9945, 2816, 64, 29088, 344, 24, 3365, 1, 198, 12303, 312, 796, 366, 22, 67, 24, 69, 6888, 17, 64, 12, 4531, 1899, 12, 4051, 67, 18, 12, 24, 69, 3695, 12, 22, 67, 16, 67, 535, 69, 17, 21101, 5607, 1, 198, 9641, 796, 366, 15, 13, 20, 13, 18, 1, 198, 198, 30109, 10378, 82, 13, 3163, 8002, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 7293, 5329, 15514, 43, 11127, 62, 73, 297, 1600, 366, 41, 3069, 36918, 11799, 1600, 366, 25835, 25404, 1600, 366, 11505, 9148, 1921, 62, 73, 297, 1600, 366, 47, 10025, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 20, 7012, 21, 66, 39251, 68, 23, 5036, 535, 69, 3070, 64, 1314, 4051, 7568, 1878, 18, 68, 2075, 65, 18, 12993, 66, 22, 16344, 20, 68, 1, 198, 12303, 312, 796, 366, 3104, 6469, 1314, 5774, 12, 65, 38612, 12, 3553, 5607, 12, 23, 35195, 12, 66, 29703, 18213, 27277, 41580, 1, 198, 9641, 796, 366, 18, 13, 20, 13, 16, 10, 16, 1, 198, 198, 30109, 10378, 82, 13, 8001, 37199, 11907, 198, 12303, 312, 796, 366, 3980, 69, 1828, 67, 4761, 12, 16344, 21, 67, 12, 4089, 69, 16, 12, 2999, 69, 15, 12, 2919, 1860, 66, 2931, 2998, 66, 2091, 1, 198, 198, 30109, 10378, 82, 13, 31554, 271, 2348, 7727, 907, 11907, 198, 10378, 82, 796, 14631, 14993, 451, 2348, 29230, 1600, 366, 29531, 1600, 366, 50, 29572, 3163, 20477, 1600, 366, 22911, 10711, 19044, 45977, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 2791, 46761, 66, 23, 67, 2481, 66, 23, 487, 20, 68, 18, 64, 24, 2091, 3720, 22148, 64, 19214, 22, 330, 2623, 4521, 18, 69, 22, 1, 198, 12303, 312, 796, 366, 12952, 4761, 65, 15, 69, 12, 17, 66, 2816, 12, 4051, 2718, 12, 24, 3609, 22, 12, 67, 42117, 65, 22, 64, 29626, 1120, 1, 198, 9641, 796, 366, 16, 13, 15, 13, 16, 1, 198, 198, 30109, 10378, 82, 13, 14881, 2414, 11907, 198, 12303, 312, 796, 366, 17, 64, 15, 69, 2598, 68, 18, 12, 21, 66, 5999, 12, 2816, 17457, 12, 5774, 68, 19, 12, 65, 37950, 67, 4089, 17457, 20, 69, 1, 198, 198, 30109, 10378, 82, 13, 33, 13344, 17, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 41, 3069, 36918, 11799, 1600, 366, 25835, 25404, 1600, 366, 47, 10025, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 1129, 64, 2327, 24669, 64, 6469, 68, 24940, 487, 4349, 15630, 1558, 64, 18, 64, 2598, 65, 3388, 891, 2327, 21652, 64, 17, 1, 198, 12303, 312, 796, 366, 21, 68, 2682, 65, 26704, 12, 19, 397, 67, 12, 46096, 66, 12, 65, 3459, 69, 12, 38339, 66, 2623, 7568, 64, 22, 64, 15, 1, 198, 9641, 796, 366, 16, 13, 15, 13, 23, 10, 15, 1, 198, 198, 30109, 10378, 82, 13, 34, 18131, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 33, 13344, 17, 62, 73, 297, 1600, 366, 23252, 11250, 62, 73, 297, 1600, 366, 11146, 6030, 17, 62, 73, 297, 1600, 366, 38, 8019, 62, 73, 297, 1600, 366, 41, 3069, 36918, 11799, 1600, 366, 43, 57, 46, 62, 73, 297, 1600, 366, 25835, 25404, 1600, 366, 47, 844, 805, 62, 73, 297, 1600, 366, 47, 10025, 1600, 366, 55, 2398, 62, 8019, 55, 2302, 62, 73, 297, 1600, 366, 55, 2398, 62, 8019, 55, 13287, 62, 73, 297, 1600, 366, 57, 8019, 62, 73, 297, 1600, 366, 8019, 11134, 62, 73, 297, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 19, 65, 23, 3270, 64, 21315, 65, 1954, 5607, 64, 22, 64, 46872, 64, 3070, 31911, 68, 3510, 2623, 65, 9945, 1558, 65, 12993, 17, 1, 198, 12303, 312, 796, 366, 23, 2682, 1954, 67, 5332, 12, 65, 15, 1453, 12, 3365, 1507, 12, 12865, 22, 12, 65, 5066, 535, 1350, 65, 46660, 64, 1, 198, 9641, 796, 366, 16, 13, 1433, 13, 16, 10, 16, 1, 198, 198, 30109, 10378, 82, 13, 9771, 17576, 11907, 198, 10378, 82, 796, 14631, 14993, 451, 2348, 29230, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 69, 42759, 1765, 15, 64, 19, 69, 405, 66, 32118, 11848, 66, 32637, 3510, 68, 1065, 1558, 65, 4521, 69, 18, 344, 24, 47984, 1, 198, 12303, 312, 796, 366, 2920, 17896, 17, 68, 5332, 12, 64, 20, 67, 15, 12, 20, 324, 18, 12, 64, 31027, 12, 43704, 68, 2078, 5607, 69, 16, 65, 24, 1, 198, 9641, 796, 366, 15, 13, 20, 13, 16, 1, 198, 198, 30109, 10378, 82, 13, 35491, 37766, 14055, 11907, 198, 10378, 82, 796, 14631, 40073, 1600, 366, 14993, 451, 2348, 29230, 1600, 366, 50, 29572, 3163, 20477, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 2079, 1120, 32220, 28857, 26912, 67, 2919, 1878, 2548, 69, 21, 68, 891, 23, 21101, 4051, 1795, 4521, 17, 64, 40064, 69, 1, 198, 12303, 312, 796, 366, 67, 15277, 67, 17, 68, 21, 12, 65, 1731, 66, 12, 1157, 68, 24, 12, 64, 17, 64, 18, 12, 17, 64, 17, 3609, 17, 9945, 66, 344, 19, 1, 198, 9641, 796, 366, 16, 13, 1415, 13, 15, 1, 198, 198, 30109, 10378, 82, 13, 29238, 5189, 23907, 2977, 11907, 198, 10378, 82, 796, 14631, 35491, 37766, 14055, 1600, 366, 14993, 451, 2348, 29230, 1600, 366, 14402, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 19881, 4089, 13331, 2231, 64, 15, 64, 19, 344, 68, 25710, 2934, 4089, 67, 19, 66, 1415, 5237, 1350, 2075, 27712, 65, 24, 64, 16, 1, 198, 12303, 312, 796, 366, 24, 68, 39647, 69, 23, 64, 12, 24, 64, 5607, 12, 3682, 67, 20, 12, 64, 24, 69, 16, 12, 344, 21, 65, 16072, 1314, 68, 17, 66, 15, 1, 198, 9641, 796, 366, 15, 13, 16, 13, 17, 1, 198, 198, 30109, 10378, 82, 13, 2601, 436, 1586, 11907, 198, 10378, 82, 796, 14631, 20344, 1817, 1600, 366, 14993, 451, 2348, 29230, 1600, 366, 8199, 12423, 46445, 32289, 1600, 366, 18557, 69, 1600, 366, 50, 29572, 3163, 20477, 1600, 366, 48346, 1600, 366, 29668, 14881, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 2425, 31714, 65, 22, 7568, 19, 21940, 25674, 67, 2425, 27696, 67, 1415, 65, 3365, 25707, 37381, 1350, 65, 17, 330, 1, 198, 12303, 312, 796, 366, 24794, 1959, 64, 23, 12, 2327, 1878, 12, 33042, 66, 12, 23, 15630, 18, 12, 65, 39380, 64, 1558, 64, 15, 5036, 20, 1, 198, 9641, 796, 366, 15, 13, 1415, 13, 17, 1, 198, 198, 30109, 10378, 82, 13, 10258, 27054, 6880, 11907, 198, 10378, 82, 796, 14631, 10258, 31431, 1600, 366, 5216, 669, 1600, 366, 13715, 12727, 49601, 1600, 366, 29531, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 1065, 16072, 4790, 68, 20, 68, 15, 1878, 3104, 324, 18, 19708, 65, 44980, 68, 18, 69, 22, 66, 16, 68, 330, 69, 6888, 2075, 1821, 1, 198, 12303, 312, 796, 366, 2327, 67, 21, 64, 40022, 12, 64, 32118, 12, 49934, 68, 12, 64, 21, 18213, 12, 16, 67, 5237, 65, 16315, 69, 17, 69, 19, 1, 198, 9641, 796, 366, 18, 13, 1558, 13, 16, 1, 198, 198, 30109, 10378, 82, 13, 10258, 31431, 11907, 198, 10378, 82, 796, 14631, 13715, 12727, 49601, 1600, 366, 29531, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 40839, 5036, 1731, 67, 5999, 68, 19, 64, 20, 19881, 20, 16072, 28256, 486, 64, 33638, 344, 15, 67, 16, 7252, 2327, 43239, 1, 198, 12303, 312, 796, 366, 18, 6814, 21601, 69, 22, 12, 3270, 5705, 12, 20, 64, 1899, 12, 65, 23, 64, 21, 12, 66, 11848, 2791, 66, 15, 65, 20370, 69, 1, 198, 9641, 796, 366, 15, 13, 1157, 13, 15, 1, 198, 198, 30109, 10378, 82, 13, 5216, 669, 11907, 198, 10378, 82, 796, 14631, 10258, 31431, 1600, 366, 13715, 12727, 49601, 1600, 366, 3041, 39344, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 38547, 65, 15, 276, 22, 65, 23, 65, 23, 2548, 7252, 21, 6888, 15, 64, 5774, 64, 324, 69, 16, 11848, 24, 1765, 16243, 344, 1821, 1, 198, 12303, 312, 796, 366, 20, 3609, 3270, 2931, 20, 12, 24, 64, 24, 65, 12, 3270, 5036, 12, 64, 24669, 12, 21, 69, 24, 1485, 66, 20356, 48630, 1, 198, 9641, 796, 366, 15, 13, 1065, 13, 23, 1, 198, 198, 30109, 10378, 82, 13, 40073, 11907, 198, 10378, 82, 796, 14631, 14881, 2414, 1600, 366, 35, 689, 1600, 366, 13856, 320, 863, 25876, 1600, 366, 20344, 6169, 1600, 366, 9492, 5275, 18274, 4487, 1600, 366, 25835, 38, 270, 17, 1600, 366, 25835, 25404, 1600, 366, 14993, 451, 2348, 29230, 1600, 366, 9704, 2902, 1600, 366, 44, 8899, 1600, 366, 47, 10025, 1600, 366, 18557, 69, 1600, 366, 2200, 6489, 1600, 366, 29531, 1600, 366, 37596, 1600, 366, 32634, 1634, 1600, 366, 2484, 1144, 3163, 20477, 1600, 366, 50, 11603, 1600, 366, 50, 29572, 3163, 20477, 1600, 366, 48346, 1600, 366, 14402, 1600, 366, 52, 27586, 82, 1600, 366, 3118, 291, 1098, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 4846, 65, 15, 15630, 21, 66, 4309, 7568, 4304, 35638, 891, 66, 23, 64, 39710, 66, 21, 12993, 16, 324, 21101, 16, 65, 39305, 19, 1, 198, 12303, 312, 796, 366, 2682, 6814, 17, 21652, 12, 65, 1959, 65, 12, 20, 66, 1485, 12, 65, 15, 66, 22, 12, 330, 69, 1558, 1495, 1485, 67, 1238, 1, 198, 9641, 796, 366, 18, 13, 3682, 13, 15, 1, 198, 198, 30109, 10378, 82, 13, 7293, 5329, 15514, 43, 11127, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 25835, 25404, 8973, 198, 12303, 312, 796, 366, 68, 2791, 68, 405, 3695, 12, 22, 25150, 12, 4051, 1120, 12, 5892, 69, 22, 12, 1314, 69, 17457, 24, 3553, 69, 17, 3609, 1, 198, 9641, 796, 366, 15, 13, 20, 13, 15, 10, 15, 1, 198, 198, 30109, 10378, 82, 13, 4264, 454, 11907, 198, 10378, 82, 796, 14631, 45442, 3163, 20477, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 24, 69, 33618, 2231, 67, 24, 2682, 17896, 39101, 276, 324, 33459, 2598, 18213, 1795, 9945, 67, 16, 69, 15, 68, 1350, 64, 22, 1, 198, 12303, 312, 796, 366, 67, 2548, 66, 11785, 64, 12, 3134, 4869, 12, 4310, 66, 21, 12, 65, 2079, 68, 12, 2425, 67, 17279, 65, 21, 68, 2079, 16, 1, 198, 9641, 796, 366, 15, 13, 20, 13, 22, 1, 198, 198, 30109, 10378, 82, 13, 6601, 17614, 11907, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 535, 2154, 65, 1558, 23195, 43193, 1765, 2857, 15630, 24, 68, 20, 69, 23, 1433, 2327, 4089, 16, 69, 1485, 344, 64, 20, 66, 23, 1, 198, 12303, 312, 796, 366, 24, 64, 4846, 17, 69, 24, 66, 12, 21, 7568, 15, 12, 1157, 68, 24, 12, 15, 68, 20, 67, 12, 66, 49489, 65, 23, 65, 20, 1453, 23, 64, 1, 198, 9641, 796, 366, 16, 13, 24, 13, 15, 1, 198, 198, 30109, 10378, 82, 13, 6601, 44909, 942, 11907, 198, 10378, 82, 796, 14631, 40073, 1600, 366, 9492, 5275, 18274, 4487, 1600, 366, 35422, 1068, 5216, 26448, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 18, 6814, 891, 2816, 1954, 1860, 17, 68, 22, 3388, 47984, 1954, 2996, 28857, 69, 40761, 487, 20, 69, 32568, 66, 22, 67, 1, 198, 12303, 312, 796, 366, 39570, 276, 65, 18, 65, 12, 2079, 535, 12, 20, 68, 2425, 12, 23, 67, 17, 67, 12, 23, 1959, 21101, 15, 64, 24, 66, 5036, 23, 1, 198, 9641, 796, 366, 15, 13, 1507, 13, 1157, 1, 198, 198, 30109, 10378, 82, 13, 6601, 11395, 9492, 32186, 11907, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 65, 16072, 1157, 5774, 65, 3720, 2078, 4846, 2718, 13331, 15, 891, 21, 67, 2598, 2623, 1765, 67, 5036, 3388, 2713, 66, 17457, 21, 1, 198, 12303, 312, 796, 366, 68, 17, 67, 17279, 64, 15, 12, 24, 67, 2078, 12, 4051, 1350, 12, 1795, 69, 15, 12, 15801, 65, 1350, 1238, 64, 44578, 1, 198, 9641, 796, 366, 16, 13, 15, 13, 15, 1, 198, 198, 30109, 10378, 82, 13, 6601, 40161, 11907, 198, 10378, 82, 796, 14631, 6601, 11395, 9492, 32186, 1600, 366, 35, 689, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 67, 3459, 64, 1129, 22579, 1765, 64, 21033, 64, 21, 67, 3312, 17, 68, 17059, 64, 3559, 69, 11245, 1954, 3609, 2154, 19881, 1, 198, 12303, 312, 796, 366, 68, 22, 17896, 21, 67, 15, 67, 12, 16, 31047, 12, 20, 13331, 21, 12, 23, 324, 21, 12, 20, 64, 721, 2934, 23, 65, 22, 18213, 20, 1, 198, 9641, 796, 366, 15, 13, 19, 13, 1485, 1, 198, 198, 30109, 10378, 82, 13, 35, 689, 11907, 198, 10378, 82, 796, 14631, 18557, 69, 8973, 198, 12303, 312, 796, 366, 671, 17, 6888, 2154, 12, 2548, 6420, 12, 3270, 2231, 12, 4089, 21855, 12, 17896, 15, 42691, 2624, 68, 3312, 64, 1, 198, 198, 30109, 10378, 82, 13, 13856, 320, 863, 25876, 11907, 198, 10378, 82, 796, 14631, 44, 8899, 8973, 198, 12303, 312, 796, 366, 23, 11848, 1415, 1821, 69, 12, 2857, 2327, 12, 41734, 65, 12, 64, 19, 397, 12, 29416, 65, 4089, 7568, 19, 67, 397, 1, 198, 198, 30109, 10378, 82, 13, 35, 6377, 39317, 11907, 198, 10378, 82, 796, 14631, 818, 4399, 24629, 2733, 1600, 366, 14402, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 1795, 66, 18, 68, 4521, 2670, 68, 2091, 4310, 68, 20, 67, 1959, 1065, 21855, 18, 64, 1129, 1433, 65, 23, 30505, 68, 1731, 5824, 65, 1, 198, 12303, 312, 796, 366, 65, 11785, 67, 24, 1558, 12, 33032, 69, 12, 19, 9945, 66, 12, 23, 69, 19, 66, 12, 15, 535, 3865, 11785, 17, 65, 16, 67, 1, 198, 9641, 796, 366, 15, 13, 19, 13, 15, 1, 198, 198, 30109, 10378, 82, 13, 20344, 1817, 11907, 198, 10378, 82, 796, 14631, 14993, 451, 2348, 29230, 1600, 366, 50, 29572, 3163, 20477, 1600, 366, 48346, 1600, 366, 29668, 17614, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 18, 25600, 67, 15, 36445, 69, 23, 1065, 330, 2934, 3720, 68, 23, 64, 4524, 65, 1157, 69, 1558, 330, 3312, 67, 15, 6888, 3023, 1, 198, 12303, 312, 796, 366, 65, 19, 69, 2682, 68, 6469, 12, 68, 3695, 67, 12, 4051, 64, 20, 12, 38956, 64, 12, 69, 4089, 68, 4531, 67, 21, 68, 23, 69, 22, 1, 198, 9641, 796, 366, 15, 13, 940, 13, 22, 1, 198, 198, 30109, 10378, 82, 13, 20344, 6169, 11907, 198, 10378, 82, 796, 14631, 29531, 1600, 366, 32634, 1634, 1600, 366, 50, 11603, 8973, 198, 12303, 312, 796, 366, 23, 7012, 4531, 68, 1238, 12, 26279, 66, 12, 20, 65, 21, 69, 12, 24, 27277, 12, 24, 2857, 22544, 1238, 1453, 16, 65, 1, 198, 198, 30109, 10378, 82, 13, 20344, 2455, 507, 11907, 198, 10378, 82, 796, 14631, 35491, 37766, 14055, 1600, 366, 35, 6377, 39317, 1600, 366, 33762, 3163, 20477, 1600, 366, 14993, 451, 2348, 29230, 1600, 366, 5760, 44, 1381, 1600, 366, 18557, 69, 1600, 366, 4507, 324, 38, 42, 1600, 366, 29531, 1600, 366, 50, 29572, 3163, 20477, 1600, 366, 13409, 24629, 2733, 1600, 366, 48346, 1600, 366, 29668, 14881, 1600, 366, 29668, 37, 13271, 1600, 366, 14402, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 20, 64, 19, 14656, 17279, 18654, 24, 1485, 64, 17, 10210, 37601, 68, 4310, 66, 17, 10163, 21101, 19, 65, 39121, 41544, 1, 198, 12303, 312, 796, 366, 3132, 66, 1731, 68, 940, 12, 64, 27057, 12, 20, 37804, 12, 65, 23, 1765, 12, 3720, 3388, 330, 67, 15, 36243, 69, 1, 198, 9641, 796, 366, 15, 13, 1495, 13, 4310, 1, 198, 198, 30109, 10378, 82, 13, 23579, 10100, 11627, 5736, 11907, 198, 10378, 82, 796, 14631, 25835, 38, 270, 17, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 65, 22186, 2682, 67, 1507, 3865, 67, 2154, 2078, 4531, 65, 28896, 66, 36243, 64, 21, 68, 1507, 486, 2998, 5607, 69, 15, 65, 1, 198, 12303, 312, 796, 366, 487, 3077, 21526, 12, 19, 891, 22, 12, 20, 3682, 67, 12, 11848, 65, 22, 12, 66, 2931, 67, 18, 64, 3720, 16072, 3609, 1, 198, 9641, 796, 366, 15, 13, 23, 13, 21, 1, 198, 198, 30109, 10378, 82, 13, 10002, 82, 11907, 198, 10378, 82, 796, 14631, 28100, 33637, 1600, 366, 8979, 10723, 278, 1600, 366, 25835, 34, 21886, 1600, 366, 26245, 29046, 8973, 198, 12303, 312, 796, 366, 69, 3559, 64, 28872, 69, 12, 66, 1238, 64, 12, 19, 324, 19, 12, 23, 4309, 66, 12, 69, 21, 65, 1065, 2857, 4521, 16, 66, 21, 1, 198, 9641, 796, 366, 16, 13, 21, 13, 15, 1, 198, 198, 30109, 10378, 82, 13, 36248, 49601, 11907, 198, 10378, 82, 796, 14631, 9771, 17576, 1600, 366, 26705, 32755, 776, 1600, 366, 13409, 24629, 2733, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 3365, 2718, 64, 23, 2718, 29769, 69, 535, 69, 2998, 2414, 2231, 69, 344, 2998, 16, 66, 23, 1860, 44705, 2327, 64, 20, 2791, 1, 198, 12303, 312, 796, 366, 13331, 21, 65, 22, 7012, 19, 12, 66, 16, 1453, 12, 20, 69, 6469, 12, 65, 20, 16072, 12, 721, 69, 15, 324, 7012, 23, 69, 4524, 1, 198, 9641, 796, 366, 15, 13, 21, 13, 23, 1, 198, 198, 30109, 10378, 82, 13, 8419, 26254, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 41, 3069, 36918, 11799, 1600, 366, 25835, 25404, 1600, 366, 47, 10025, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 18, 69, 18, 64, 1495, 486, 13331, 22, 24940, 68, 24, 65, 35549, 68, 15, 69, 22, 64, 39118, 66, 37680, 68, 23, 1828, 11848, 21, 67, 1, 198, 12303, 312, 796, 366, 20, 3609, 44103, 9945, 12, 11848, 67, 16, 12, 20, 68, 5066, 12, 65, 3553, 67, 12, 67, 1731, 64, 5333, 7568, 405, 69, 20, 1, 198, 9641, 796, 366, 17, 13, 17, 13, 18, 10, 15, 1, 198, 198, 30109, 10378, 82, 13, 3109, 8071, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 41, 3069, 36918, 11799, 1600, 366, 25835, 25404, 1600, 366, 47, 10025, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 14774, 4761, 69, 43916, 68, 24, 68, 6420, 66, 2919, 67, 5824, 1983, 67, 20, 68, 23, 9945, 3865, 29059, 64, 18, 66, 32637, 67, 1, 198, 12303, 312, 796, 366, 17, 68, 21, 22186, 1314, 12, 5999, 65, 20, 12, 49542, 65, 12, 11848, 1899, 12, 2075, 66, 2999, 64, 2327, 64, 1264, 1, 198, 9641, 796, 366, 17, 13, 19, 13, 23, 10, 15, 1, 198, 198, 30109, 10378, 82, 13, 5777, 7378, 7156, 11907, 198, 10378, 82, 796, 14631, 5777, 7378, 7156, 62, 73, 297, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 65, 3553, 68, 18, 330, 1350, 1828, 69, 23, 34137, 65, 19, 65, 20, 487, 2791, 64, 4524, 39647, 1558, 5036, 16, 64, 24, 535, 23, 1, 198, 12303, 312, 796, 366, 66, 23, 4761, 1270, 67, 15, 12, 64, 24403, 12, 1157, 68, 24, 12, 16, 65, 3559, 12, 67, 22, 68, 1350, 19, 68, 2425, 2154, 64, 1, 198, 9641, 796, 366, 15, 13, 19, 13, 16, 1, 198, 198, 30109, 10378, 82, 13, 5777, 7378, 7156, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 33, 13344, 17, 62, 73, 297, 1600, 366, 11146, 6030, 17, 62, 73, 297, 1600, 366, 30214, 33, 19830, 62, 73, 297, 1600, 366, 41, 3069, 36918, 11799, 1600, 366, 43, 10067, 62, 73, 297, 1600, 366, 25835, 25404, 1600, 366, 46, 1130, 62, 73, 297, 1600, 366, 11505, 31127, 62, 73, 297, 1600, 366, 18257, 385, 62, 73, 297, 1600, 366, 47, 10025, 1600, 366, 57, 8019, 62, 73, 297, 1600, 366, 8019, 562, 62, 73, 297, 1600, 366, 8019, 16344, 74, 62, 64, 330, 62, 73, 297, 1600, 366, 8019, 20867, 41907, 62, 73, 297, 1600, 366, 87, 18897, 62, 73, 297, 1600, 366, 87, 22980, 62, 73, 297, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 67, 23, 64, 38907, 46589, 68, 1270, 3324, 330, 34808, 65, 1120, 66, 2999, 1558, 7568, 67, 3134, 69, 2481, 67, 16, 68, 20, 69, 1, 198, 12303, 312, 796, 366, 65, 1828, 64, 21, 69, 6469, 12, 17, 69, 2996, 12, 1120, 3510, 12, 64, 20, 65, 17, 12, 35273, 397, 3559, 21855, 19, 68, 20, 1, 198, 9641, 796, 366, 19, 13, 19, 13, 15, 10, 15, 1, 198, 198, 30109, 10378, 82, 13, 5777, 34551, 11907, 198, 10378, 82, 796, 14631, 23839, 5777, 33758, 1600, 366, 5777, 34551, 62, 73, 297, 1600, 366, 14993, 451, 2348, 29230, 1600, 366, 33907, 43, 62, 73, 297, 1600, 366, 36698, 4972, 1600, 366, 3041, 39344, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 1120, 3365, 29143, 3324, 65, 20, 40271, 68, 1120, 67, 49352, 66, 16, 66, 34427, 2079, 7568, 65, 21, 13331, 1765, 66, 5237, 1, 198, 12303, 312, 796, 366, 22, 64, 16, 535, 21, 6888, 12, 4309, 891, 12, 3270, 69, 20, 12, 5999, 10210, 12, 18, 64, 2154, 2816, 66, 2931, 33660, 1, 198, 9641, 796, 366, 16, 13, 19, 13, 21, 1, 198, 198, 30109, 10378, 82, 13, 5777, 34551, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 41, 3069, 36918, 11799, 1600, 366, 25835, 25404, 1600, 366, 47, 10025, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 66, 1899, 2091, 535, 2548, 5892, 67, 15, 891, 20, 11848, 24, 10210, 1959, 65, 22, 69, 17, 69, 15, 31697, 18213, 20, 22883, 18213, 1, 198, 12303, 312, 796, 366, 69, 38905, 1415, 2623, 12, 15, 67, 22, 64, 12, 20, 69, 1485, 12, 65, 24, 2934, 12, 69, 44698, 2919, 16344, 27192, 64, 1, 198, 9641, 796, 366, 18, 13, 18, 13, 940, 10, 15, 1, 198, 198, 30109, 10378, 82, 13, 8979, 10723, 278, 11907, 198, 12303, 312, 796, 366, 22, 65, 16, 69, 1899, 3720, 12, 22, 2718, 64, 12, 3365, 17896, 12, 65, 23, 15630, 12, 22, 64, 17, 6888, 20, 66, 16, 65, 20, 1453, 1, 198, 198, 30109, 10378, 82, 13, 33762, 3163, 20477, 11907, 198, 10378, 82, 796, 14631, 14993, 451, 2348, 29230, 1600, 366, 29531, 1600, 366, 50, 29572, 3163, 20477, 1600, 366, 48346, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 1731, 2791, 2481, 67, 1954, 67, 16, 69, 3559, 68, 18, 65, 24, 66, 27412, 19881, 18, 65, 4761, 65, 1954, 3132, 64, 1983, 66, 27033, 1, 198, 12303, 312, 796, 366, 16, 64, 26561, 69, 1899, 12, 3388, 6888, 12, 20, 21734, 12, 15630, 2934, 12, 65, 5333, 68, 28857, 65, 44966, 65, 1, 198, 9641, 796, 366, 15, 13, 1485, 13, 17, 1, 198, 198, 30109, 10378, 82, 13, 13715, 12727, 49601, 11907, 198, 10378, 82, 796, 14631, 48346, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 27326, 65, 16344, 344, 4134, 5705, 66, 20, 66, 7568, 1433, 64, 324, 66, 30610, 7252, 20, 1860, 16072, 20, 34741, 535, 1, 198, 12303, 312, 796, 366, 4310, 66, 2780, 66, 1558, 12, 19, 64, 22, 67, 12, 20, 6888, 17, 12, 3829, 66, 20, 12, 3720, 65, 3695, 4846, 1453, 64, 6052, 1, 198, 9641, 796, 366, 15, 13, 23, 13, 19, 1, 198, 198, 30109, 10378, 82, 13, 23252, 11250, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 33, 13344, 17, 62, 73, 297, 1600, 366, 3109, 8071, 62, 73, 297, 1600, 366, 11146, 6030, 17, 62, 73, 297, 1600, 366, 41, 3069, 36918, 11799, 1600, 366, 25835, 25404, 1600, 366, 25835, 12303, 312, 62, 73, 297, 1600, 366, 47, 10025, 1600, 366, 57, 8019, 62, 73, 297, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 2481, 891, 67, 1129, 15801, 64, 37864, 1238, 64, 1507, 4521, 1314, 6814, 21, 67, 18, 67, 3312, 10210, 22, 69, 21, 1453, 3070, 1, 198, 12303, 312, 796, 366, 64, 18, 69, 24, 2078, 3609, 12, 22, 65, 1821, 12, 1120, 2414, 12, 40022, 65, 12, 3104, 1878, 2670, 2857, 67, 2682, 65, 1, 198, 9641, 796, 366, 17, 13, 1485, 13, 6052, 10, 15, 1, 198, 198, 30109, 10378, 82, 13, 26227, 889, 11907, 198, 10378, 82, 796, 14631, 18557, 69, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 23, 29626, 67, 39132, 3559, 23815, 69, 1860, 18, 1765, 38431, 67, 4521, 66, 24, 2075, 21101, 32568, 3609, 4761, 64, 23, 1, 198, 12303, 312, 796, 366, 3270, 2078, 3324, 4761, 12, 15, 64, 1238, 12, 20, 64, 2670, 12, 65, 6659, 65, 12, 1485, 2791, 38905, 1765, 19, 66, 15, 1, 198, 9641, 796, 366, 15, 13, 19, 13, 17, 1, 198, 198, 30109, 10378, 82, 13, 11146, 6030, 17, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 33, 13344, 17, 62, 73, 297, 1600, 366, 41, 3069, 36918, 11799, 1600, 366, 25835, 25404, 1600, 366, 47, 10025, 1600, 366, 57, 8019, 62, 73, 297, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 5774, 1765, 50055, 4051, 67, 23, 721, 16, 64, 4846, 67, 19, 64, 4304, 2623, 17457, 3553, 64, 22, 30995, 1860, 68, 18, 891, 24, 1, 198, 12303, 312, 796, 366, 67, 22, 68, 49351, 69, 15, 12, 64, 21, 3132, 12, 3270, 3459, 12, 19881, 2682, 12, 5036, 26780, 5892, 65, 12993, 67, 22, 1, 198, 9641, 796, 366, 17, 13, 940, 13, 19, 10, 15, 1, 198, 198, 30109, 10378, 82, 13, 30214, 33, 19830, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 41, 3069, 36918, 11799, 1600, 366, 25835, 25404, 1600, 366, 47, 10025, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 7252, 18, 27301, 66, 17, 7012, 23, 32869, 68, 1954, 66, 21, 66, 23, 7012, 23, 64, 19, 69, 22, 3388, 67, 20, 67, 22, 68, 19, 69, 6420, 1, 198, 12303, 312, 796, 366, 2816, 6052, 2078, 1765, 12, 6659, 69, 24, 12, 38605, 67, 12, 6052, 1795, 12, 2934, 49803, 64, 3459, 66, 5999, 66, 1, 198, 9641, 796, 366, 16, 13, 15, 13, 940, 10, 15, 1, 198, 198, 30109, 10378, 82, 13, 8763, 24160, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 41, 3069, 36918, 11799, 1600, 366, 25835, 25404, 1600, 366, 25835, 4743, 85, 358, 62, 73, 297, 1600, 366, 47, 10025, 1600, 366, 55, 2398, 62, 8019, 55, 66, 21471, 62, 73, 297, 1600, 366, 55, 2398, 62, 8019, 42528, 62, 73, 297, 1600, 366, 55, 2398, 62, 8019, 55, 7274, 1689, 62, 73, 297, 1600, 366, 55, 2398, 62, 8019, 55, 25192, 81, 62, 73, 297, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 4349, 67, 17, 67, 5036, 23, 68, 36993, 69, 17457, 4524, 68, 22, 64, 23, 3682, 12993, 21, 67, 1485, 67, 23, 64, 17, 69, 2231, 17896, 486, 1, 198, 12303, 312, 796, 366, 15, 37466, 65, 5333, 68, 12, 1238, 2091, 12, 20, 535, 17, 12, 64, 2414, 64, 12, 3324, 66, 15, 69, 21, 66, 2931, 65, 4531, 1, 198, 9641, 796, 366, 18, 13, 18, 13, 21, 10, 15, 1, 198, 198, 30109, 10378, 82, 13, 10761, 11907, 198, 10378, 82, 796, 14631, 14881, 2414, 1600, 366, 13856, 320, 863, 25876, 1600, 366, 10761, 62, 73, 297, 1600, 366, 40717, 1600, 366, 40386, 1600, 366, 25835, 25404, 1600, 366, 14993, 451, 2348, 29230, 1600, 366, 47, 10025, 1600, 366, 18557, 69, 1600, 366, 29531, 1600, 366, 6892, 420, 21156, 37, 727, 364, 1600, 366, 32634, 1634, 1600, 366, 50, 11603, 1600, 366, 14402, 1600, 366, 52, 27586, 82, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 1878, 24693, 66, 2919, 43444, 34251, 65, 22, 3559, 1507, 66, 1795, 2154, 324, 65, 4846, 891, 64, 37381, 1495, 1270, 1, 198, 12303, 312, 796, 366, 2078, 65, 23, 67, 18, 6888, 12, 21855, 20, 69, 12, 3270, 67, 24, 12, 1795, 3829, 12, 19881, 9945, 67, 21, 67, 2998, 64, 4869, 1, 198, 9641, 796, 366, 15, 13, 2414, 13, 17, 1, 198, 198, 30109, 10378, 82, 13, 10761, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 33, 13344, 17, 62, 73, 297, 1600, 366, 34, 18131, 62, 73, 297, 1600, 366, 5777, 7378, 7156, 62, 73, 297, 1600, 366, 23252, 11250, 62, 73, 297, 1600, 366, 8763, 24160, 62, 73, 297, 1600, 366, 41, 3069, 36918, 11799, 1600, 366, 41, 22071, 17483, 2127, 62, 73, 297, 1600, 366, 25835, 25404, 1600, 366, 25835, 83, 733, 62, 73, 297, 1600, 366, 47, 844, 805, 62, 73, 297, 1600, 366, 47, 10025, 1600, 366, 48, 83, 20, 14881, 62, 73, 297, 1600, 366, 57, 8019, 62, 73, 297, 1600, 366, 8019, 11134, 62, 73, 297, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 10210, 21, 891, 12993, 24, 17896, 22, 3510, 65, 3312, 31495, 7568, 1415, 68, 39997, 69, 15, 64, 18, 5036, 2998, 4521, 65, 16, 68, 1, 198, 12303, 312, 796, 366, 67, 17, 66, 4790, 2934, 18, 12, 69, 48365, 12, 20, 29173, 12, 64, 33808, 12, 2998, 16, 68, 20, 65, 18742, 7012, 24, 1, 198, 9641, 796, 366, 15, 13, 2414, 13, 17, 10, 15, 1, 198, 198, 30109, 10378, 82, 13, 10082, 15748, 15522, 873, 11907, 198, 10378, 82, 796, 14631, 8419, 26254, 62, 73, 297, 1600, 366, 29993, 33637, 1600, 366, 14993, 451, 2348, 29230, 1600, 366, 45442, 3163, 20477, 1600, 366, 44909, 3163, 20477, 1600, 366, 51, 2977, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 5999, 18213, 30005, 22842, 64, 1485, 16072, 19, 69, 21601, 65, 3324, 35844, 15630, 15, 1878, 1765, 19, 13381, 330, 24, 1, 198, 12303, 312, 796, 366, 20, 66, 1065, 4309, 64, 17, 12, 20, 69, 2091, 12, 3980, 19881, 12, 4521, 66, 24, 12, 3270, 68, 22, 32148, 65, 3559, 2075, 1, 198, 9641, 796, 366, 15, 13, 19, 13, 17, 1, 198, 198, 30109, 10378, 82, 13, 3855, 5239, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 7293, 5329, 15514, 43, 11127, 62, 73, 297, 1600, 366, 41, 3069, 36918, 11799, 1600, 366, 25835, 25404, 1600, 366, 25835, 4749, 85, 62, 73, 297, 1600, 366, 47, 10025, 1600, 366, 55, 5805, 17, 62, 73, 297, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 24, 65, 48891, 4089, 15498, 22, 19881, 2998, 19, 67, 1415, 2934, 4531, 69, 24, 67, 2718, 6888, 1731, 64, 16, 64, 15, 65, 45438, 1, 198, 12303, 312, 796, 366, 3695, 65, 2816, 35378, 12, 3609, 891, 12, 3365, 67, 19, 12, 4521, 16, 66, 12, 3324, 64, 2001, 2682, 4089, 65, 16, 1, 198, 9641, 796, 366, 15, 13, 2481, 13, 15, 10, 15, 1, 198, 198, 30109, 10378, 82, 13, 38, 8019, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 3855, 5239, 62, 73, 297, 1600, 366, 41, 3069, 36918, 11799, 1600, 366, 25835, 25404, 1600, 366, 25835, 487, 72, 62, 73, 297, 1600, 366, 25835, 4749, 85, 62, 73, 297, 1600, 366, 25835, 14948, 62, 73, 297, 1600, 366, 5662, 2200, 62, 73, 297, 1600, 366, 47, 10025, 1600, 366, 57, 8019, 62, 73, 297, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 64, 2624, 67, 43864, 330, 17, 66, 24, 3134, 69, 18, 11275, 23, 64, 6659, 67, 23, 2078, 1878, 66, 22, 2670, 66, 23, 2548, 64, 3312, 1, 198, 12303, 312, 796, 366, 3324, 3510, 65, 1860, 68, 12, 25764, 67, 12, 3270, 17896, 12, 24, 3609, 23, 12, 3459, 68, 344, 24, 4790, 22042, 67, 1, 198, 9641, 796, 366, 17, 13, 3104, 13, 18, 10, 17, 1, 198, 198, 30109, 10378, 82, 13, 37065, 578, 17, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 41, 3069, 36918, 11799, 1600, 366, 25835, 25404, 1600, 366, 47, 10025, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 33535, 19881, 1821, 17896, 397, 940, 4790, 22260, 3023, 7252, 15, 7568, 19, 21855, 2931, 17, 69, 37128, 68, 21844, 16, 1, 198, 12303, 312, 796, 366, 18, 65, 24294, 67, 5332, 12, 1731, 3070, 12, 20, 66, 2481, 12, 24, 66, 2481, 12, 16, 68, 16, 69, 15, 535, 1495, 37856, 1, 198, 9641, 796, 366, 16, 13, 18, 13, 1415, 10, 15, 1, 198, 198, 30109, 10378, 82, 13, 38, 2442, 84, 11907, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 4310, 11848, 44675, 67, 1157, 4349, 68, 3553, 68, 1731, 5705, 66, 18, 67, 16, 65, 4310, 68, 1129, 40427, 65, 46660, 21855, 17, 1, 198, 12303, 312, 796, 366, 3682, 68, 17, 6814, 15, 68, 12, 23, 25870, 12, 19, 68, 4869, 12, 15630, 1731, 12, 3270, 29022, 324, 6888, 15, 5036, 1, 198, 9641, 796, 366, 16, 13, 15, 13, 17, 1, 198, 198, 30109, 10378, 82, 13, 40717, 11907, 198, 10378, 82, 796, 14631, 14881, 2414, 1600, 366, 35, 689, 1600, 366, 818, 72, 8979, 1600, 366, 11187, 2667, 1600, 366, 44, 3077, 51, 6561, 1600, 366, 26245, 29046, 1600, 366, 50, 11603, 1600, 366, 4261, 3792, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 15, 13331, 41820, 1828, 5036, 19, 65, 20, 16817, 2075, 65, 2670, 66, 4531, 19, 66, 3829, 67, 1878, 20, 69, 344, 2091, 2682, 64, 1, 198, 12303, 312, 796, 366, 10210, 18, 1765, 27037, 12, 2327, 21855, 12, 1120, 5824, 12, 24, 1959, 65, 12, 40486, 64, 4846, 69, 324, 21, 69, 18, 1, 198, 9641, 796, 366, 15, 13, 24, 13, 1558, 1, 198, 198, 30109, 10378, 82, 13, 13587, 69, 48230, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 34, 18131, 62, 73, 297, 1600, 366, 23252, 11250, 62, 73, 297, 1600, 366, 11146, 6030, 17, 62, 73, 297, 1600, 366, 38, 8019, 62, 73, 297, 1600, 366, 37065, 578, 17, 62, 73, 297, 1600, 366, 41, 3069, 36918, 11799, 1600, 366, 25835, 25404, 1600, 366, 25835, 487, 72, 62, 73, 297, 1600, 366, 47, 10025, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 18741, 330, 69, 2931, 19, 67, 14656, 34626, 68, 1795, 1453, 16, 17896, 19, 15630, 3312, 721, 23, 2327, 68, 33690, 64, 18, 1, 198, 12303, 312, 796, 366, 17, 68, 4304, 69, 21, 66, 17, 12, 64, 37452, 12, 4309, 67, 19, 12, 3865, 66, 16, 12, 1238, 324, 5036, 19, 2934, 20, 2791, 1, 198, 9641, 796, 366, 17, 13, 23, 13, 16, 10, 16, 1, 198, 198, 30109, 10378, 82, 13, 38197, 469, 16996, 24629, 2733, 11907, 198, 10378, 82, 796, 14631, 36248, 49601, 1600, 366, 14993, 451, 2348, 29230, 1600, 366, 13409, 24629, 2733, 1600, 366, 14402, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 2996, 68, 29334, 3829, 1270, 891, 18, 66, 2598, 67, 18, 65, 3829, 17457, 66, 20, 64, 330, 39997, 65, 19, 11848, 47838, 3134, 1, 198, 12303, 312, 796, 366, 2682, 22914, 65, 2327, 12, 1415, 67, 23, 12, 20, 891, 18, 12, 6052, 1270, 12, 19, 66, 9945, 3104, 2414, 65, 3070, 64, 1, 198, 9641, 796, 366, 15, 13, 18, 13, 23, 1, 198, 198, 30109, 10378, 82, 13, 818, 72, 8979, 11907, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 69, 22730, 68, 21, 68, 19504, 4524, 66, 24, 2670, 25710, 1765, 20, 18213, 21, 2934, 36042, 2920, 330, 17, 66, 4846, 1495, 1, 198, 12303, 312, 796, 366, 5999, 68, 23, 330, 1485, 12, 1495, 69, 23, 12, 4310, 2598, 12, 23, 64, 2414, 12, 64, 24, 69, 17, 65, 1828, 2682, 2078, 69, 1, 198, 9641, 796, 366, 15, 13, 20, 13, 16, 1, 198, 198, 30109, 10378, 82, 13, 24123, 11505, 7378, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 41, 3069, 36918, 11799, 1600, 366, 25835, 25404, 1600, 366, 47, 10025, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 67, 24, 3720, 68, 4051, 65, 4869, 6814, 6469, 69, 18, 64, 2996, 65, 26704, 4310, 6814, 19, 16072, 18, 67, 1507, 66, 12865, 19, 66, 1, 198, 12303, 312, 796, 366, 16, 67, 20, 535, 22, 65, 23, 12, 2920, 2931, 12, 47785, 68, 12, 64, 15, 69, 23, 12, 67, 15, 69, 20, 324, 5607, 1065, 67, 15, 1, 198, 9641, 796, 366, 7908, 13, 15, 13, 18, 10, 17, 1, 198, 198, 30109, 10378, 82, 13, 9492, 5275, 18274, 4487, 11907, 198, 10378, 82, 796, 14631, 9704, 2902, 8973, 198, 12303, 312, 796, 366, 65, 3324, 68, 15, 64, 19, 66, 12, 67, 33551, 12, 3553, 64, 15, 12, 3829, 68, 23, 12, 23, 9945, 1495, 64, 1983, 64, 16102, 1, 198, 198, 30109, 10378, 82, 13, 9492, 16104, 602, 11907, 198, 10378, 82, 796, 14631, 31554, 271, 2348, 7727, 907, 1600, 366, 35491, 37766, 14055, 1600, 366, 14993, 451, 2348, 29230, 1600, 366, 34519, 3163, 20477, 1600, 366, 29531, 1600, 366, 29665, 4267, 1600, 366, 39618, 1600, 366, 2484, 1144, 3163, 20477, 1600, 366, 50, 29572, 3163, 20477, 1600, 366, 45442, 3163, 20477, 1600, 366, 22911, 10711, 19044, 45977, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 65, 1314, 16072, 15, 64, 3865, 66, 20, 2414, 6888, 17, 68, 15, 64, 22, 3609, 1065, 66, 16, 69, 2931, 20, 6888, 23, 2780, 344, 65, 3132, 1, 198, 12303, 312, 796, 366, 64, 4089, 67, 24, 64, 23, 65, 12, 64, 17, 397, 12, 3270, 68, 21, 12, 4531, 1860, 12, 2414, 64, 16, 66, 1507, 69, 6888, 3270, 1, 198, 9641, 796, 366, 15, 13, 1485, 13, 20, 1, 198, 198, 30109, 10378, 82, 13, 818, 4399, 24629, 2733, 11907, 198, 10378, 82, 796, 14631, 14402, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 6420, 65, 20, 67, 12993, 35667, 66, 20, 2860, 40022, 2920, 68, 21, 66, 1959, 1453, 2425, 3388, 940, 65, 39101, 4349, 67, 1, 198, 12303, 312, 796, 366, 2327, 5774, 68, 19782, 12, 18, 69, 4531, 12, 3682, 67, 15, 12, 3829, 1453, 12, 1415, 31552, 721, 1983, 14686, 1, 198, 9641, 796, 366, 15, 13, 16, 13, 18, 1, 198, 198, 30109, 10378, 82, 13, 23820, 20310, 34184, 1187, 11907, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 22, 16344, 2598, 16344, 19, 487, 3559, 16072, 28688, 1314, 69, 23, 68, 22, 2414, 66, 15, 69, 33394, 65, 5999, 66, 2920, 24309, 1, 198, 12303, 312, 796, 366, 5892, 67, 31495, 10210, 12, 3388, 405, 12, 1821, 65, 22, 12, 24, 2919, 17, 12, 66, 21, 1350, 2920, 69, 33535, 65, 21, 1, 198, 9641, 796, 366, 15, 13, 16, 13, 16, 1, 198, 198, 30109, 10378, 82, 13, 29993, 33637, 11907, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 13331, 21, 27800, 64, 2598, 3388, 69, 20, 68, 47202, 67, 49641, 7568, 2548, 26050, 1453, 48555, 69, 17457, 2598, 68, 20, 1, 198, 12303, 312, 796, 366, 66, 23, 68, 16, 6814, 2919, 12, 22, 1828, 66, 12, 1120, 1821, 12, 24, 276, 24, 12, 22, 9945, 15, 17896, 48000, 3132, 68, 1, 198, 9641, 796, 366, 16, 13, 19, 13, 15, 1, 198, 198, 30109, 10378, 82, 13, 37787, 39317, 11627, 5736, 11907, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 64, 18, 69, 1731, 40179, 66, 2481, 69, 20, 65, 1350, 24, 67, 17, 64, 45722, 69, 3865, 67, 10210, 3365, 31496, 21855, 2078, 3980, 1, 198, 12303, 312, 796, 366, 23, 2078, 33438, 940, 12, 2857, 3720, 12, 20, 28645, 12, 23, 4309, 68, 12, 3070, 68, 43690, 12993, 36453, 67, 1, 198, 9641, 796, 366, 16, 13, 15, 13, 15, 1, 198, 198, 30109, 10378, 82, 13, 41, 3069, 36918, 11799, 11907, 198, 10378, 82, 796, 14631, 36698, 4972, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 39305, 24, 44230, 64, 22, 6888, 1238, 4309, 64, 49150, 64, 8054, 69, 22, 13331, 2791, 22567, 69, 4846, 35638, 68, 16, 1, 198, 12303, 312, 796, 366, 46589, 65, 18, 65, 10210, 12, 18, 66, 5332, 12, 19, 65, 16, 69, 12, 65, 15711, 12, 69, 1485, 344, 15, 1765, 2624, 940, 1, 198, 9641, 796, 366, 16, 13, 19, 13, 16, 1, 198, 198, 30109, 10378, 82, 13, 40386, 11907, 198, 10378, 82, 796, 14631, 35, 689, 1600, 366, 44, 8899, 1600, 366, 47, 945, 364, 1600, 366, 3118, 291, 1098, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 18, 66, 5999, 2425, 3559, 1860, 65, 44087, 1120, 891, 3682, 69, 2857, 2548, 30995, 34229, 69, 31027, 3720, 67, 19, 68, 1, 198, 12303, 312, 796, 366, 43950, 66, 3312, 64, 15, 12, 2934, 21, 64, 12, 4051, 397, 12, 64, 23726, 12, 66, 23, 65, 16, 12993, 3720, 66, 2934, 21, 1, 198, 9641, 796, 366, 15, 13, 2481, 13, 18, 1, 198, 198, 30109, 10378, 82, 13, 41, 22071, 17483, 2127, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 41, 3069, 36918, 11799, 1600, 366, 25835, 25404, 1600, 366, 47, 10025, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 65, 44994, 28362, 4349, 66, 21, 68, 2791, 2414, 18638, 891, 65, 17, 68, 5237, 10210, 1731, 13331, 20, 66, 2857, 68, 19, 7012, 1, 198, 12303, 312, 796, 366, 64, 330, 1860, 65, 2999, 12, 31360, 69, 12, 3270, 67, 21, 12, 65, 24, 1507, 12, 44980, 68, 21, 891, 19, 69, 19881, 23, 1, 198, 9641, 796, 366, 17, 13, 16, 13, 17, 10, 15, 1, 198, 198, 30109, 10378, 82, 13, 42, 7948, 35, 6377, 11907, 198, 10378, 82, 796, 14631, 20344, 2455, 507, 1600, 366, 23579, 10100, 11627, 5736, 1600, 366, 5777, 34551, 1600, 366, 9492, 16104, 602, 1600, 366, 29668, 14881, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 48952, 68, 23, 17896, 2931, 324, 1507, 21734, 1507, 4846, 940, 330, 1878, 65, 5607, 405, 2624, 66, 47785, 24038, 1, 198, 12303, 312, 796, 366, 20, 397, 2919, 3388, 65, 12, 6659, 7252, 12, 40486, 67, 12, 11848, 1954, 12, 66, 19881, 4051, 1954, 65, 1350, 24, 65, 1, 198, 9641, 796, 366, 15, 13, 21, 13, 18, 1, 198, 198, 30109, 10378, 82, 13, 43, 10067, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 41, 3069, 36918, 11799, 1600, 366, 25835, 25404, 1600, 366, 47, 10025, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 69, 5237, 1120, 65, 1433, 3459, 16, 324, 69, 15, 32642, 33781, 2920, 69, 7012, 2780, 65, 1157, 5333, 330, 67, 330, 23, 66, 1, 198, 12303, 312, 796, 366, 66, 16, 66, 20, 1765, 67, 15, 12, 3134, 4761, 12, 4349, 1270, 12, 64, 47582, 12, 67, 20, 16072, 3609, 19, 64, 40401, 67, 1, 198, 9641, 796, 366, 18, 13, 3064, 13, 16, 10, 15, 1, 198, 198, 30109, 10378, 82, 13, 39878, 34, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 41, 3069, 36918, 11799, 1600, 366, 25835, 25404, 1600, 366, 47, 10025, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 19881, 2623, 69, 49351, 68, 721, 2791, 2682, 891, 66, 1899, 67, 22, 721, 3312, 11528, 69, 1558, 15982, 1415, 2682, 1, 198, 12303, 312, 796, 366, 3459, 25150, 69, 1157, 12, 69, 28727, 12, 1120, 67, 22, 12, 6052, 64, 23, 12, 64, 21, 1878, 42224, 64, 24, 2231, 67, 1, 198, 9641, 796, 366, 18, 13, 15, 13, 15, 10, 16, 1, 198, 198, 30109, 10378, 82, 13, 43, 57, 46, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 41, 3069, 36918, 11799, 1600, 366, 25835, 25404, 1600, 366, 47, 10025, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 68, 20, 65, 44675, 65, 12993, 42250, 66, 20, 68, 21719, 3553, 2718, 67, 17, 344, 25870, 276, 3720, 16, 65, 4531, 1350, 21, 1, 198, 12303, 312, 796, 366, 1860, 19, 65, 4089, 18, 64, 12, 69, 15, 68, 20, 12, 20, 69, 23, 67, 12, 64, 16, 65, 22, 12, 18741, 67, 19, 64, 20, 21855, 16, 330, 1, 198, 9641, 796, 366, 17, 13, 940, 13, 16, 10, 15, 1, 198, 198, 30109, 10378, 82, 13, 14772, 49568, 13290, 654, 11907, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 69, 1954, 2816, 48528, 67, 3134, 3695, 64, 23188, 671, 1314, 49234, 65, 22, 330, 2857, 64, 19, 487, 5607, 38565, 1, 198, 12303, 312, 796, 366, 65, 24, 2414, 13331, 24, 69, 12, 15, 31911, 12, 20, 65, 3553, 12, 64, 20, 66, 17, 12, 67, 18, 18213, 2996, 69, 1821, 1821, 69, 1, 198, 9641, 796, 366, 16, 13, 18, 13, 15, 1, 198, 198, 30109, 10378, 82, 13, 26302, 87, 1958, 11907, 198, 10378, 82, 796, 14631, 26227, 889, 1600, 366, 9492, 5275, 18274, 4487, 1600, 366, 14772, 49568, 13290, 654, 1600, 366, 14155, 305, 33637, 1600, 366, 9704, 2902, 1600, 366, 18557, 69, 1600, 366, 39618, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 21, 69, 18781, 2920, 69, 3324, 1899, 67, 5705, 65, 17, 9945, 22, 64, 24, 65, 940, 65, 3459, 10210, 18, 535, 1270, 28676, 1270, 1, 198, 12303, 312, 796, 366, 1954, 69, 1350, 16, 66, 16, 12, 18, 69, 2857, 12, 2816, 9945, 12, 65, 1314, 69, 12, 3388, 67, 22, 721, 2481, 64, 33400, 1, 198, 9641, 796, 366, 15, 13, 1314, 13, 1415, 1, 198, 198, 30109, 10378, 82, 13, 43, 12582, 8001, 37199, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 47, 10025, 8973, 198, 12303, 312, 796, 366, 19, 1878, 4051, 5036, 16, 12, 31047, 15, 12, 3559, 64, 23, 12, 5332, 64, 22, 12, 41019, 67, 6420, 65, 37688, 68, 18, 1, 198, 198, 30109, 10378, 82, 13, 25835, 34, 21886, 11907, 198, 10378, 82, 796, 14631, 25835, 34, 21886, 62, 73, 297, 1600, 366, 44, 8590, 5049, 34, 2246, 861, 82, 62, 73, 297, 8973, 198, 12303, 312, 796, 366, 65, 20233, 2624, 66, 17, 12, 64, 18, 68, 22, 12, 1120, 66, 23, 12, 1795, 10210, 12, 17, 67, 2623, 9945, 21101, 16344, 2481, 1, 198, 9641, 796, 366, 15, 13, 21, 13, 18, 1, 198, 198, 30109, 10378, 82, 13, 25835, 34, 21886, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 25835, 5432, 39, 17, 62, 73, 297, 1600, 366, 25835, 25404, 1600, 366, 44, 3077, 51, 6561, 62, 73, 297, 1600, 366, 57, 8019, 62, 73, 297, 1600, 366, 77, 456, 29281, 17, 62, 73, 297, 8973, 198, 12303, 312, 796, 366, 2934, 330, 24, 65, 2857, 12, 23, 15630, 22, 12, 3270, 3312, 12, 64, 15, 5036, 12, 2327, 330, 3980, 17896, 5705, 66, 15, 1, 198, 9641, 796, 366, 22, 13, 6659, 13, 15, 10, 15, 1, 198, 198, 30109, 10378, 82, 13, 25835, 38, 270, 17, 11907, 198, 10378, 82, 796, 14631, 14881, 2414, 1600, 366, 26245, 29046, 1600, 366, 18557, 69, 1600, 366, 37596, 8973, 198, 12303, 312, 796, 366, 4304, 69, 23, 4051, 1120, 12, 20, 24909, 12, 20, 65, 20, 64, 12, 23, 68, 7252, 12, 49721, 324, 40350, 65, 42117, 1, 198, 198, 30109, 10378, 82, 13, 25835, 5432, 39, 17, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 25835, 25404, 1600, 366, 44, 3077, 51, 6561, 62, 73, 297, 8973, 198, 12303, 312, 796, 366, 27728, 1433, 65, 20, 64, 12, 65, 24, 397, 12, 49489, 69, 12, 24, 2091, 66, 12, 276, 324, 1507, 4521, 7568, 64, 23, 1, 198, 9641, 796, 366, 16, 13, 940, 13, 17, 10, 15, 1, 198, 198, 30109, 10378, 82, 13, 25835, 25404, 11907, 198, 12303, 312, 796, 366, 23, 69, 28771, 6814, 18, 12, 2327, 3553, 12, 3980, 2425, 12, 65, 20, 487, 12, 21855, 23, 2624, 66, 5607, 21101, 9945, 1, 198, 198, 30109, 10378, 82, 13, 25835, 487, 72, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 41, 3069, 36918, 11799, 1600, 366, 25835, 25404, 1600, 366, 47, 10025, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 15, 65, 19, 64, 20, 67, 4869, 69, 18, 68, 20, 2167, 64, 22, 67, 487, 3720, 2091, 6052, 68, 2931, 7568, 66, 17, 67, 23, 4524, 24369, 1, 198, 12303, 312, 796, 366, 68, 24, 69, 25096, 66, 21, 12, 5892, 67, 17, 12, 20, 65, 2996, 12, 23, 64, 2791, 12, 39071, 2481, 17896, 16, 65, 31503, 1, 198, 9641, 796, 366, 18, 13, 17, 13, 17, 10, 16, 1, 198, 198, 30109, 10378, 82, 13, 25835, 70, 29609, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 41, 3069, 36918, 11799, 1600, 366, 25835, 25404, 1600, 366, 25835, 70, 6024, 62, 18224, 62, 73, 297, 1600, 366, 47, 10025, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 27720, 1485, 66, 6469, 64, 3270, 66, 1065, 3023, 2327, 66, 15, 3134, 66, 17, 65, 34583, 16072, 5333, 12993, 20, 23055, 3609, 1, 198, 12303, 312, 796, 366, 67, 3559, 405, 330, 18, 12, 68, 1828, 66, 12, 3553, 3559, 12, 24, 17827, 12, 66, 27696, 68, 2670, 9945, 16, 68, 19, 1, 198, 9641, 796, 366, 16, 13, 23, 13, 22, 10, 15, 1, 198, 198, 30109, 10378, 82, 13, 25835, 4743, 85, 358, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 41, 3069, 36918, 11799, 1600, 366, 25835, 25404, 1600, 366, 47, 10025, 1600, 366, 55, 2398, 62, 8019, 55, 1157, 62, 73, 297, 1600, 366, 55, 2398, 62, 8019, 55, 2302, 62, 73, 297, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 3324, 2670, 69, 23, 2718, 67, 2414, 2857, 1821, 2327, 4846, 64, 2425, 67, 1129, 276, 486, 16344, 2919, 67, 21, 69, 3980, 19881, 1, 198, 12303, 312, 796, 366, 22, 68, 4304, 64, 15, 67, 19, 12, 69, 18, 66, 22, 12, 4310, 2481, 12, 23, 26050, 12, 23, 67, 4846, 1453, 276, 15, 69, 1959, 1, 198, 9641, 796, 366, 16, 13, 18, 13, 15, 10, 18, 1, 198, 198, 30109, 10378, 82, 13, 25835, 70, 6024, 62, 18224, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 41, 3069, 36918, 11799, 1600, 366, 25835, 25404, 1600, 366, 47, 10025, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 66, 2091, 2718, 1433, 68, 3510, 2623, 3104, 3553, 44550, 68, 27367, 344, 21, 64, 3388, 1453, 2931, 2231, 64, 21, 9945, 24, 1, 198, 12303, 312, 796, 366, 22, 2860, 20, 7012, 18, 12, 17, 69, 3459, 12, 48057, 68, 12, 24, 10210, 20, 12, 69, 5999, 65, 23, 64, 2816, 69, 22, 65, 23, 1, 198, 9641, 796, 366, 16, 13, 3682, 13, 15, 10, 15, 1, 198, 198, 30109, 10378, 82, 13, 25835, 4749, 85, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 41, 3069, 36918, 11799, 1600, 366, 25835, 25404, 1600, 366, 47, 10025, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 3682, 65, 48200, 2231, 67, 2154, 64, 21, 1129, 69, 3312, 18, 64, 22, 6814, 2931, 18, 67, 33438, 721, 23, 68, 1314, 68, 39761, 1, 198, 12303, 312, 796, 366, 5824, 344, 19, 69, 4051, 12, 24, 64, 21, 66, 12, 3553, 2780, 12, 24, 66, 16, 66, 12, 69, 24, 66, 22, 25667, 64, 2231, 3132, 1, 198, 9641, 796, 366, 16, 13, 1433, 13, 16, 10, 16, 1, 198, 198, 30109, 10378, 82, 13, 25835, 14948, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 41, 3069, 36918, 11799, 1600, 366, 25835, 25404, 1600, 366, 47, 10025, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 24, 66, 22515, 1270, 19881, 15, 14822, 67, 3510, 68, 1314, 68, 15, 16344, 12993, 17, 65, 4521, 2623, 68, 3695, 66, 11848, 67, 4790, 1, 198, 12303, 312, 796, 366, 19, 65, 17, 69, 3132, 64, 18, 12, 24, 68, 535, 12, 40486, 66, 12, 65, 34229, 12, 65, 2718, 1270, 17896, 65, 4790, 68, 24, 1, 198, 9641, 796, 366, 17, 13, 2327, 13, 15, 10, 15, 1, 198, 198, 30109, 10378, 82, 13, 25835, 83, 733, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 41, 3069, 36918, 11799, 1600, 366, 41, 22071, 17483, 2127, 62, 73, 297, 1600, 366, 39878, 34, 62, 73, 297, 1600, 366, 25835, 25404, 1600, 366, 47, 10025, 1600, 366, 57, 8019, 62, 73, 297, 1600, 366, 57, 19282, 62, 73, 297, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 66, 24, 43697, 1860, 2075, 68, 3132, 397, 1558, 65, 4521, 66, 17457, 405, 66, 17, 18654, 30484, 66, 2919, 38569, 1765, 1, 198, 12303, 312, 796, 366, 4531, 49641, 68, 4531, 12, 24, 65, 3070, 12, 3270, 3312, 12, 330, 7012, 12, 65, 1238, 69, 39380, 10210, 23, 2078, 1, 198, 9641, 796, 366, 19, 13, 18, 13, 15, 10, 16, 1, 198, 198, 30109, 10378, 82, 13, 25835, 12303, 312, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 41, 3069, 36918, 11799, 1600, 366, 25835, 25404, 1600, 366, 47, 10025, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 22, 69, 18, 891, 721, 41322, 2091, 43950, 9945, 23, 4309, 69, 23, 65, 18, 15630, 18, 66, 16, 67, 17, 65, 15, 64, 15, 397, 15, 2791, 1, 198, 12303, 312, 796, 366, 2548, 64, 27712, 65, 18, 12, 2934, 4089, 12, 20, 67, 17, 65, 12, 64, 20, 67, 18, 12, 1415, 10210, 5892, 1314, 68, 9879, 1, 198, 9641, 796, 366, 17, 13, 2623, 13, 15, 10, 15, 1, 198, 198, 30109, 10378, 82, 13, 14993, 451, 2348, 29230, 11907, 198, 10378, 82, 796, 14631, 25835, 25404, 1600, 366, 8019, 39806, 81, 696, 14453, 62, 73, 297, 8973, 198, 12303, 312, 796, 366, 2718, 68, 17, 68, 3510, 67, 12, 69, 4531, 67, 12, 20, 2670, 67, 12, 65, 19, 1453, 12, 23, 2548, 69, 535, 535, 24, 66, 23, 68, 1, 198, 198, 30109, 10378, 82, 13, 11187, 16870, 24629, 2733, 11907, 198, 10378, 82, 796, 14631, 35491, 37766, 14055, 1600, 366, 29238, 5189, 23907, 2977, 1600, 366, 23579, 10100, 11627, 5736, 1600, 366, 818, 4399, 24629, 2733, 1600, 366, 23820, 20310, 34184, 1187, 1600, 366, 14993, 451, 2348, 29230, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 3365, 69, 1495, 68, 3980, 65, 35402, 69, 3865, 11623, 17896, 65, 41060, 69, 2670, 68, 16, 21855, 486, 67, 24, 1485, 64, 4869, 1, 198, 12303, 312, 796, 366, 17, 397, 18, 64, 18, 330, 12, 1878, 3901, 12, 20, 65, 1120, 12, 7252, 3070, 12, 3324, 3720, 22544, 3609, 34427, 1, 198, 9641, 796, 366, 15, 13, 18, 13, 940, 1, 198, 198, 30109, 10378, 82, 13, 11187, 2667, 11907, 198, 12303, 312, 796, 366, 3980, 1860, 65, 27037, 12, 23, 3553, 65, 12, 4051, 68, 16, 12, 65, 5999, 67, 12, 9945, 19, 67, 3365, 9945, 2816, 3104, 1, 198, 198, 30109, 10378, 82, 13, 33907, 43, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 24123, 11505, 7378, 62, 73, 297, 1600, 366, 41, 3069, 36918, 11799, 1600, 366, 43, 12582, 8001, 37199, 1600, 366, 25835, 25404, 1600, 366, 47, 10025, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 68, 35124, 65, 21261, 891, 67, 2920, 33042, 31128, 69, 22, 17896, 43798, 64, 46899, 66, 3720, 33618, 3510, 1959, 1, 198, 12303, 312, 796, 366, 23, 3980, 69, 43977, 66, 12, 67, 4521, 68, 12, 20, 67, 2931, 12, 65, 31418, 12, 3609, 397, 4304, 17896, 23, 7012, 22, 1, 198, 9641, 796, 366, 1238, 1828, 13, 15, 13, 15, 10, 15, 1, 198, 198, 30109, 10378, 82, 13, 14155, 305, 33637, 11907, 198, 10378, 82, 796, 14631, 9704, 2902, 1600, 366, 29531, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 18, 67, 18, 68, 24, 2999, 65, 3132, 22337, 64, 1983, 23601, 67, 15, 19881, 405, 67, 21, 330, 2231, 27033, 1899, 2481, 12993, 1, 198, 12303, 312, 796, 366, 1129, 1415, 1860, 17, 69, 12, 6659, 66, 21, 12, 20, 69, 10210, 12, 5774, 1129, 12, 21, 67, 20, 66, 4846, 940, 487, 2931, 1, 198, 9641, 796, 366, 15, 13, 20, 13, 24, 1, 198, 198, 30109, 10378, 82, 13, 9704, 2902, 11907, 198, 10378, 82, 796, 14631, 14881, 2414, 8973, 198, 12303, 312, 796, 366, 67, 21, 69, 19, 32128, 68, 12, 64, 891, 20, 12, 31654, 64, 12, 4846, 66, 16, 12, 24, 66, 44698, 34626, 31980, 64, 1, 198, 198, 30109, 10378, 82, 13, 44, 3077, 51, 6561, 11907, 198, 10378, 82, 796, 14631, 35, 689, 1600, 366, 44, 3077, 51, 6561, 62, 73, 297, 1600, 366, 29531, 1600, 366, 50, 11603, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 16, 66, 2548, 68, 4349, 66, 18, 67, 2919, 891, 24403, 1795, 5237, 1765, 344, 671, 15, 68, 3510, 344, 16072, 4846, 5036, 1, 198, 12303, 312, 796, 366, 22, 2670, 1350, 11785, 12, 1350, 64, 23, 12, 20, 23756, 12, 2079, 1485, 12, 535, 2154, 68, 22, 69, 2718, 2623, 67, 1, 198, 9641, 796, 366, 16, 13, 15, 13, 18, 1, 198, 198, 30109, 10378, 82, 13, 44, 3077, 51, 6561, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 25835, 25404, 8973, 198, 12303, 312, 796, 366, 66, 23, 487, 67, 24, 66, 18, 12, 26073, 67, 12, 3365, 3901, 12, 65, 3695, 68, 12, 2919, 1558, 67, 22, 18781, 13331, 16, 1, 198, 9641, 796, 366, 17, 13, 2078, 13, 15, 10, 15, 1, 198, 198, 30109, 10378, 82, 13, 5308, 13846, 11907, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 68, 36260, 1860, 1453, 68, 21, 69, 24, 69, 9945, 2231, 4349, 344, 45432, 64, 3510, 69, 4051, 9945, 67, 12865, 22995, 69, 1, 198, 12303, 312, 796, 366, 39506, 16344, 66, 1860, 12, 1495, 3559, 12, 20, 6814, 17, 12, 65, 15, 69, 18, 12, 23, 66, 4521, 66, 1270, 2996, 1485, 68, 1, 198, 9641, 796, 366, 15, 13, 18, 13, 16, 1, 198, 198, 30109, 10378, 82, 13, 17140, 654, 11907, 198, 10378, 82, 796, 14631, 6601, 17614, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 19881, 21536, 344, 3829, 65, 21, 66, 24, 2308, 2624, 67, 1495, 9945, 66, 3609, 16, 1765, 66, 47372, 7568, 2075, 5774, 69, 1, 198, 12303, 312, 796, 366, 68, 16, 67, 1959, 67, 22, 64, 12, 11848, 17896, 12, 20, 12993, 17, 12, 24, 330, 15, 12, 69, 1065, 2934, 17, 66, 2091, 68, 2078, 1, 198, 9641, 796, 366, 16, 13, 15, 13, 17, 1, 198, 198, 30109, 10378, 82, 13, 44, 8899, 11907, 198, 12303, 312, 796, 366, 64, 5066, 324, 16562, 12, 22, 68, 1485, 12, 1120, 5705, 12, 48372, 69, 12, 5036, 30206, 66, 40179, 36088, 1, 198, 198, 30109, 10378, 82, 13, 44, 8590, 5049, 34, 2246, 861, 82, 62, 73, 297, 11907, 198, 12303, 312, 796, 366, 1415, 64, 15277, 21, 67, 12, 69, 1899, 67, 12, 43918, 68, 12, 24, 19244, 12, 1065, 67, 24, 4761, 10210, 23, 19707, 1, 198, 9641, 796, 366, 1238, 1828, 13, 17, 13, 16, 1, 198, 198, 30109, 10378, 82, 13, 15205, 42524, 29668, 11907, 198, 10378, 82, 796, 14631, 3163, 8002, 1600, 366, 14993, 451, 2348, 29230, 1600, 366, 50, 29572, 3163, 20477, 1600, 366, 48346, 1600, 366, 29668, 17614, 1600, 366, 29668, 14881, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 9879, 23, 64, 2682, 1065, 67, 23, 1954, 68, 1959, 67, 20167, 1860, 66, 3324, 42224, 67, 49051, 17457, 23, 64, 18, 67, 3070, 1, 198, 12303, 312, 796, 366, 21, 69, 27033, 69, 21, 64, 12, 16243, 69, 12, 3365, 3695, 12, 397, 16, 68, 12, 1507, 4310, 2414, 8635, 42224, 1, 198, 9641, 796, 366, 15, 13, 24, 13, 16, 1, 198, 198, 30109, 10378, 82, 13, 26705, 32755, 776, 11907, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 22, 2718, 64, 3270, 3553, 69, 32220, 65, 1558, 68, 4524, 67, 19, 324, 17, 69, 25644, 1765, 26073, 65, 2670, 64, 5237, 66, 20, 1, 198, 12303, 312, 796, 366, 3324, 7012, 2598, 1129, 12, 17, 67, 16, 69, 12, 3365, 10210, 12, 24, 11848, 16, 12, 23, 5853, 31916, 64, 17, 68, 18, 1, 198, 9641, 796, 366, 16, 13, 15, 13, 15, 1, 198, 198, 30109, 10378, 82, 13, 8199, 12423, 46445, 32289, 11907, 198, 10378, 82, 796, 14631, 20344, 1817, 1600, 366, 45442, 3163, 20477, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 9395, 5892, 2934, 31027, 3132, 67, 19, 64, 23, 66, 5333, 7568, 65, 21, 7012, 24, 324, 65, 21, 69, 16, 67, 23, 27037, 1860, 67, 1, 198, 12303, 312, 796, 366, 65, 23, 64, 23, 2996, 5774, 12, 19, 15363, 12, 20, 397, 16, 12, 5999, 15630, 12, 7252, 37128, 67, 2718, 11848, 344, 1, 198, 9641, 796, 366, 15, 13, 19, 13, 940, 1, 198, 198, 30109, 10378, 82, 13, 26245, 29046, 11907, 198, 12303, 312, 796, 366, 6888, 36189, 45418, 12, 66, 17, 68, 18, 12, 3559, 64, 24, 12, 558, 19, 12, 16, 68, 24, 3459, 65, 17, 66, 1129, 2919, 1, 198, 9641, 796, 366, 16, 13, 17, 13, 15, 1, 198, 198, 30109, 10378, 82, 13, 31310, 712, 2977, 11907, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 5036, 1959, 1878, 4299, 18, 67, 15, 66, 19, 64, 23, 27033, 12762, 67, 19, 68, 2231, 535, 35638, 2481, 65, 16, 68, 3559, 67, 1, 198, 12303, 312, 796, 366, 20, 15377, 1314, 16072, 12, 19, 22745, 12, 20, 1860, 68, 12, 65, 24909, 12, 48634, 16072, 2598, 3459, 1453, 17, 1, 198, 9641, 796, 366, 15, 13, 19, 13, 15, 1, 198, 198, 30109, 10378, 82, 13, 34519, 3163, 20477, 11907, 198, 10378, 82, 796, 14631, 48003, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 3023, 18938, 22, 68, 15, 65, 2934, 487, 5333, 12993, 11848, 22, 1878, 1765, 40486, 397, 25710, 2623, 11848, 65, 20, 276, 1, 198, 12303, 312, 796, 366, 21, 5036, 16, 19881, 65, 15, 12, 2934, 1238, 12, 27641, 12, 23, 6888, 22, 12, 1795, 69, 3553, 67, 2075, 69, 3459, 16, 1, 198, 9641, 796, 366, 16, 13, 940, 13, 23, 1, 198, 198, 30109, 10378, 82, 13, 46, 1130, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 41, 3069, 36918, 11799, 1600, 366, 25835, 25404, 1600, 366, 47, 10025, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 3459, 2425, 3720, 64, 18, 1765, 22544, 27260, 67, 47396, 397, 22, 3609, 330, 20, 67, 16, 67, 44698, 38431, 65, 23, 69, 1, 198, 12303, 312, 796, 366, 68, 4524, 1065, 64, 17, 64, 12, 16, 64, 21, 68, 12, 4051, 66, 15, 12, 1350, 405, 12, 36042, 68, 1495, 4869, 66, 2713, 16, 1, 198, 9641, 796, 366, 16, 13, 18, 13, 20, 10, 16, 1, 198, 198, 30109, 10378, 82, 13, 11505, 9148, 1921, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 7293, 5329, 15514, 43, 11127, 62, 73, 297, 1600, 366, 25835, 25404, 8973, 198, 12303, 312, 796, 366, 2231, 32459, 1959, 64, 12, 66, 49351, 12, 20, 65, 1795, 12, 17457, 3510, 12, 69, 1795, 67, 4349, 66, 20, 65, 35447, 1, 198, 9641, 796, 366, 15, 13, 18, 13, 1558, 10, 17, 1, 198, 198, 30109, 10378, 82, 13, 11505, 25835, 76, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 25835, 25404, 8973, 198, 12303, 312, 796, 366, 2713, 23, 1954, 4059, 12, 1129, 330, 12, 20, 65, 23, 65, 12, 4846, 2078, 12, 26492, 64, 3023, 15630, 4349, 1065, 1, 198, 9641, 796, 366, 15, 13, 23, 13, 16, 10, 15, 1, 198, 198, 30109, 10378, 82, 13, 11505, 31127, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 41, 3069, 36918, 11799, 1600, 366, 25835, 25404, 1600, 366, 47, 10025, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 397, 2713, 7252, 19, 535, 4531, 49150, 68, 24, 3270, 1314, 65, 486, 68, 22, 26050, 68, 5333, 65, 16, 65, 5036, 2091, 65, 23, 1, 198, 12303, 312, 796, 366, 29334, 66, 18, 66, 3865, 12, 17, 68, 5705, 12, 1120, 7252, 12, 23, 891, 66, 12, 1129, 23734, 65, 17, 64, 18, 64, 3865, 1, 198, 9641, 796, 366, 16, 13, 16, 13, 1415, 10, 15, 1, 198, 198, 30109, 10378, 82, 13, 11505, 22882, 24629, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 7293, 5329, 15514, 43, 11127, 62, 73, 297, 1600, 366, 41, 3069, 36918, 11799, 1600, 366, 25835, 25404, 1600, 366, 47, 10025, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 1485, 2996, 1731, 6420, 69, 3104, 3980, 330, 16344, 17, 9945, 1959, 15277, 68, 16, 11848, 10210, 2231, 2996, 67, 3023, 69, 16, 1, 198, 12303, 312, 796, 366, 22521, 2078, 16344, 20, 12, 23, 30057, 12, 48096, 65, 12, 64, 24, 68, 16, 12, 65, 1959, 1433, 16072, 2718, 2548, 68, 1, 198, 9641, 796, 366, 15, 13, 20, 13, 20, 10, 15, 1, 198, 198, 30109, 10378, 82, 13, 18257, 385, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 41, 3069, 36918, 11799, 1600, 366, 25835, 25404, 1600, 366, 47, 10025, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 4349, 64, 2919, 21855, 1415, 721, 2078, 6814, 17, 721, 22, 64, 24, 1983, 66, 19, 31496, 68, 19, 32148, 66, 17, 64, 2857, 1238, 1, 198, 12303, 312, 796, 366, 6420, 67, 19, 22413, 67, 12, 2425, 2623, 12, 3270, 1129, 12, 65, 24, 2481, 12, 7410, 22709, 69, 2718, 36720, 1, 198, 9641, 796, 366, 16, 13, 18, 13, 17, 10, 15, 1, 198, 198, 30109, 10378, 82, 13, 35422, 1068, 5216, 26448, 11907, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 5332, 69, 23, 68, 2996, 3695, 19881, 16, 69, 24, 1453, 15, 67, 1157, 68, 22, 11848, 16, 65, 18781, 2414, 2327, 31714, 67, 2857, 66, 1, 198, 12303, 312, 796, 366, 65, 330, 40486, 68, 16, 12, 20, 68, 4761, 12, 20, 1765, 66, 12, 23, 39071, 12, 11231, 23, 64, 42947, 69, 2816, 67, 1, 198, 9641, 796, 366, 16, 13, 19, 13, 16, 1, 198, 198, 30109, 10378, 82, 13, 5662, 2200, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 41, 3069, 36918, 11799, 1600, 366, 25835, 25404, 1600, 366, 47, 10025, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 65, 17, 64, 22, 1878, 21, 2414, 68, 2931, 1795, 2816, 64, 2425, 1959, 324, 16, 64, 12865, 9395, 4846, 17, 65, 6888, 33646, 1, 198, 12303, 312, 796, 366, 17, 69, 1795, 69, 1433, 68, 12, 21, 1157, 64, 12, 4051, 397, 12, 15630, 5333, 12, 7252, 5892, 2934, 20, 65, 4089, 16072, 1, 198, 9641, 796, 366, 23, 13, 2598, 13, 15, 10, 15, 1, 198, 198, 30109, 10378, 82, 13, 5760, 44, 1381, 11907, 198, 10378, 82, 796, 14631, 14993, 451, 2348, 29230, 1600, 366, 50, 29572, 3163, 20477, 1600, 366, 5606, 578, 50, 29572, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 68, 23, 21652, 65, 5999, 65, 24, 16072, 3980, 1765, 21, 29228, 2167, 68, 23, 4790, 344, 41292, 1765, 66, 22, 69, 29119, 1, 198, 12303, 312, 796, 366, 12865, 1415, 64, 16, 69, 12, 1983, 7012, 12, 44617, 66, 12, 397, 1238, 12, 3365, 69, 7252, 2598, 67, 6420, 1120, 1, 198, 9641, 796, 366, 15, 13, 1157, 13, 22, 1, 198, 198, 30109, 10378, 82, 13, 47, 945, 364, 11907, 198, 10378, 82, 796, 14631, 35, 689, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 21, 2481, 69, 19, 69, 18, 65, 2920, 3324, 26582, 65, 24, 12762, 67, 20, 69, 3609, 22, 64, 23, 65, 2780, 1959, 64, 15, 66, 1828, 1828, 1, 198, 12303, 312, 796, 366, 3388, 2934, 15, 64, 3388, 12, 16, 1860, 67, 12, 20, 29326, 12, 24, 30743, 12, 17, 19881, 15, 65, 2999, 17896, 24, 69, 15, 1, 198, 9641, 796, 366, 17, 13, 17, 13, 19, 1, 198, 198, 30109, 10378, 82, 13, 47, 844, 805, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 41, 3069, 36918, 11799, 1600, 366, 25835, 25404, 1600, 366, 47, 10025, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 65, 19, 69, 20, 67, 36629, 2920, 64, 940, 68, 22745, 1795, 64, 1731, 69, 344, 4761, 1350, 64, 4846, 65, 5066, 1959, 68, 1959, 1, 198, 12303, 312, 796, 366, 1270, 2670, 1731, 2920, 12, 33394, 64, 12, 20, 31115, 12, 23, 3901, 67, 12, 65, 16, 330, 344, 19, 68, 5607, 17896, 1, 198, 9641, 796, 366, 15, 13, 1821, 13, 16, 10, 15, 1, 198, 198, 30109, 10378, 82, 13, 47, 10025, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 35, 689, 1600, 366, 10002, 82, 1600, 366, 25835, 38, 270, 17, 1600, 366, 25835, 25404, 1600, 366, 11187, 2667, 1600, 366, 9704, 2902, 1600, 366, 18557, 69, 1600, 366, 2200, 6489, 1600, 366, 29531, 1600, 366, 37596, 1600, 366, 32634, 1634, 1600, 366, 51, 2662, 43, 1600, 366, 47079, 1600, 366, 52, 27586, 82, 1600, 366, 79, 22, 13344, 62, 73, 297, 8973, 198, 12303, 312, 796, 366, 2598, 66, 5036, 3865, 64, 12, 16, 1765, 17, 12, 4309, 18213, 12, 65, 43864, 12, 68, 17, 1878, 7568, 3388, 65, 3695, 69, 1, 198, 9641, 796, 366, 16, 13, 23, 13, 15, 1, 198, 198, 30109, 10378, 82, 13, 43328, 464, 6880, 11907, 198, 10378, 82, 796, 14631, 43328, 18274, 4487, 1600, 366, 39618, 1600, 366, 48346, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 64, 18, 64, 24, 2414, 344, 24, 17896, 3695, 4089, 1129, 2327, 2623, 21601, 64, 21, 1860, 4531, 17, 65, 16, 65, 20, 64, 21, 69, 16, 67, 1, 198, 12303, 312, 796, 366, 535, 69, 17, 69, 23, 324, 12, 1731, 3132, 12, 20, 66, 5999, 12, 19881, 1959, 12, 66, 20, 28460, 65, 45791, 65, 21, 64, 1, 198, 9641, 796, 366, 17, 13, 15, 13, 16, 1, 198, 198, 30109, 10378, 82, 13, 43328, 18274, 4487, 11907, 198, 10378, 82, 796, 14631, 10258, 27054, 6880, 1600, 366, 5216, 669, 1600, 366, 35, 689, 1600, 366, 18557, 69, 1600, 366, 29531, 1600, 366, 3041, 39344, 1600, 366, 48346, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 11848, 23237, 3388, 16344, 4309, 1731, 3064, 68, 44361, 69, 15, 65, 44698, 67, 2075, 66, 20, 64, 1495, 2934, 27550, 1, 198, 12303, 312, 796, 366, 33438, 65, 6420, 64, 24, 12, 67, 21495, 12, 20, 1878, 67, 12, 24, 721, 21, 12, 22, 3510, 68, 2481, 9945, 66, 48768, 1, 198, 9641, 796, 366, 16, 13, 17, 13, 15, 1, 198, 198, 30109, 10378, 82, 13, 3646, 1747, 11907, 198, 10378, 82, 796, 14631, 14881, 2414, 1600, 366, 4264, 454, 1600, 366, 35, 689, 1600, 366, 10002, 82, 1600, 366, 5777, 7378, 7156, 1600, 366, 13715, 12727, 49601, 1600, 366, 10761, 1600, 366, 10082, 15748, 15522, 873, 1600, 366, 40386, 1600, 366, 26302, 87, 1958, 1600, 366, 14993, 451, 2348, 29230, 1600, 366, 5308, 13846, 1600, 366, 26705, 32755, 776, 1600, 366, 47, 10025, 1600, 366, 43328, 464, 6880, 1600, 366, 43328, 18274, 4487, 1600, 366, 18557, 69, 1600, 366, 2200, 6489, 1600, 366, 29531, 1600, 366, 6690, 18636, 14881, 1600, 366, 6690, 18636, 47, 541, 4470, 1600, 366, 3041, 39344, 1600, 366, 39618, 1600, 366, 3351, 36722, 1600, 366, 15307, 2364, 1600, 366, 50, 29572, 3163, 20477, 1600, 366, 48346, 1600, 366, 29668, 14881, 1600, 366, 52, 27586, 82, 1600, 366, 3118, 291, 1098, 24629, 1600, 366, 3118, 13344, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 276, 721, 2919, 44578, 2091, 69, 16, 66, 22913, 15197, 23721, 2816, 3459, 16344, 3553, 23734, 65, 5237, 65, 3270, 1, 198, 12303, 312, 796, 366, 6420, 64, 20, 15630, 1860, 12, 2816, 67, 22, 12, 20, 66, 1878, 12, 24, 68, 15, 65, 12, 31211, 67, 23, 3270, 66, 3609, 1795, 1, 198, 9641, 796, 366, 16, 13, 1983, 13, 19, 1, 198, 198, 30109, 10378, 82, 13, 36698, 4972, 11907, 198, 10378, 82, 796, 14631, 51, 2662, 43, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 67, 2327, 2548, 68, 22, 69, 23, 64, 37750, 17896, 23, 3829, 2327, 1129, 2931, 2919, 3553, 891, 23, 68, 1065, 5999, 68, 21142, 1, 198, 12303, 312, 796, 366, 21777, 1433, 66, 21, 64, 12, 17, 68, 4790, 12, 2996, 5066, 12, 21, 68, 2996, 12, 22, 22980, 2791, 2996, 4761, 1120, 1, 198, 9641, 796, 366, 16, 13, 17, 13, 20, 1, 198, 198, 30109, 10378, 82, 13, 18557, 69, 11907, 198, 10378, 82, 796, 14631, 3118, 291, 1098, 8973, 198, 12303, 312, 796, 366, 2934, 2919, 3365, 6814, 12, 21, 22572, 12, 20, 68, 3134, 12, 5774, 2598, 12, 4349, 6048, 1453, 1765, 23, 67, 22, 1, 198, 198, 30109, 10378, 82, 13, 48, 83, 20, 14881, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 7293, 5329, 15514, 43, 11127, 62, 73, 297, 1600, 366, 23252, 11250, 62, 73, 297, 1600, 366, 38, 8019, 62, 73, 297, 1600, 366, 41, 3069, 36918, 11799, 1600, 366, 25835, 25404, 1600, 366, 25835, 4743, 85, 358, 62, 73, 297, 1600, 366, 11505, 31127, 62, 73, 297, 1600, 366, 47, 10025, 1600, 366, 55, 2398, 62, 8019, 55, 2302, 62, 73, 297, 1600, 366, 55, 2398, 62, 8019, 87, 21101, 62, 73, 297, 1600, 366, 55, 2398, 62, 87, 21101, 62, 22602, 62, 9060, 62, 73, 297, 1600, 366, 55, 2398, 62, 87, 21101, 62, 22602, 62, 13083, 88, 907, 62, 73, 297, 1600, 366, 55, 2398, 62, 87, 21101, 62, 22602, 62, 13287, 22602, 62, 73, 297, 1600, 366, 55, 2398, 62, 87, 21101, 62, 22602, 62, 26377, 62, 73, 297, 1600, 366, 57, 8019, 62, 73, 297, 1600, 366, 87, 32812, 11321, 62, 73, 297, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 324, 27412, 45791, 64, 20, 68, 1238, 9945, 65, 23, 67, 21, 17896, 17, 69, 1860, 68, 22521, 19, 67, 3609, 2998, 6659, 3609, 23, 1, 198, 12303, 312, 796, 366, 18213, 17, 344, 64, 18, 65, 12, 20, 65, 4304, 12, 3553, 3609, 12, 64, 21, 891, 12, 15, 64, 23, 1878, 21, 1731, 4846, 68, 16, 1, 198, 9641, 796, 366, 20, 13, 1314, 13, 18, 10, 15, 1, 198, 198, 30109, 10378, 82, 13, 4507, 324, 38, 42, 11907, 198, 10378, 82, 796, 14631, 6601, 44909, 942, 1600, 366, 14993, 451, 2348, 29230, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 3695, 64, 324, 487, 65, 18, 891, 67, 17, 18742, 1878, 20219, 49703, 65, 23, 64, 23, 7568, 16, 891, 26050, 18213, 2670, 1, 198, 12303, 312, 796, 366, 16, 16344, 2857, 65, 1120, 12, 37804, 67, 12, 20, 66, 2154, 12, 24, 38205, 12, 69, 22, 1129, 69, 23, 69, 18, 65, 10210, 66, 1, 198, 9641, 796, 366, 17, 13, 19, 13, 17, 1, 198, 198, 30109, 10378, 82, 13, 2200, 6489, 11907, 198, 10378, 82, 796, 14631, 9492, 5275, 18274, 4487, 1600, 366, 9704, 2902, 1600, 366, 50, 11603, 1600, 366, 3118, 291, 1098, 8973, 198, 12303, 312, 796, 366, 18, 13331, 15, 10210, 4846, 12, 68, 891, 16, 12, 20, 42548, 12, 23, 64, 5333, 12, 65, 18, 65, 31360, 23, 11848, 487, 65, 1, 198, 198, 30109, 10378, 82, 13, 29531, 11907, 198, 10378, 82, 796, 14631, 37596, 1600, 366, 32634, 1634, 8973, 198, 12303, 312, 796, 366, 24, 64, 18, 69, 23, 30336, 12, 64, 17, 66, 24, 12, 20, 69, 2999, 12, 24, 64, 1157, 12, 23, 33459, 1795, 64, 16, 16344, 20, 66, 1, 198, 198, 30109, 10378, 82, 13, 29665, 4267, 11907, 198, 10378, 82, 796, 14631, 39618, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 17896, 5705, 25022, 5036, 15, 68, 2091, 2327, 64, 5237, 68, 27936, 64, 18, 64, 22, 12993, 17, 28485, 22, 23188, 64, 22, 2682, 1, 198, 12303, 312, 796, 366, 66, 5705, 276, 17, 69, 16, 12, 47984, 20, 12, 4051, 69, 15, 12, 7252, 23, 68, 12, 9945, 22521, 1983, 25707, 2670, 1, 198, 9641, 796, 366, 15, 13, 19, 13, 18, 1, 198, 198, 30109, 10378, 82, 13, 6690, 18636, 14881, 11907, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 21, 19881, 18, 69, 23734, 487, 4309, 344, 2919, 2624, 1860, 67, 18, 64, 17, 64, 22, 65, 3865, 2548, 276, 16, 65, 13227, 22, 67, 1, 198, 12303, 312, 796, 366, 18, 10210, 12993, 20, 69, 17, 12, 16, 891, 19, 12, 48170, 66, 12, 24, 28256, 12, 2996, 5774, 65, 1899, 6485, 486, 1, 198, 9641, 796, 366, 16, 13, 17, 13, 16, 1, 198, 198, 30109, 10378, 82, 13, 6690, 18636, 47, 541, 4470, 11907, 198, 10378, 82, 796, 14631, 35, 689, 1600, 366, 26705, 32755, 776, 1600, 366, 43328, 18274, 4487, 1600, 366, 6690, 18636, 14881, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 17896, 16, 68, 36330, 68, 1314, 67, 3829, 30995, 64, 22, 2934, 535, 44361, 1507, 3682, 64, 44087, 65, 486, 1558, 1415, 1, 198, 12303, 312, 796, 366, 486, 67, 49503, 1558, 12, 65, 891, 66, 12, 19, 21101, 21, 12, 65, 24, 721, 12, 64, 24, 3553, 1129, 67, 15, 30743, 66, 1, 198, 9641, 796, 366, 15, 13, 20, 13, 17, 1, 198, 198, 30109, 10378, 82, 13, 3041, 39344, 11907, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 2231, 68, 40173, 3682, 23055, 1899, 4790, 68, 397, 21, 69, 17, 6814, 20, 66, 24, 67, 26717, 67, 2079, 11848, 1065, 69, 24, 65, 1, 198, 12303, 312, 796, 366, 23362, 64, 2548, 3134, 12, 1270, 1120, 12, 4309, 6814, 12, 64, 23, 2623, 12, 68, 30005, 7012, 3829, 397, 3388, 1, 198, 9641, 796, 366, 16, 13, 17, 13, 17, 1, 198, 198, 30109, 10378, 82, 13, 6892, 420, 21156, 37, 727, 364, 11907, 198, 10378, 82, 796, 14631, 37596, 1600, 366, 3351, 36722, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 66, 9945, 67, 18, 65, 1485, 2548, 66, 4761, 344, 1959, 67, 24, 46352, 16344, 1350, 24, 68, 24, 65, 2154, 1453, 65, 20, 324, 6888, 1, 198, 12303, 312, 796, 366, 2713, 1507, 940, 2598, 12, 487, 15, 65, 12, 19, 330, 20, 12, 23, 27367, 12, 41292, 66, 16, 68, 2548, 9945, 405, 1, 198, 9641, 796, 366, 15, 13, 16, 13, 18, 1, 198, 198, 30109, 10378, 82, 13, 39618, 11907, 198, 10378, 82, 796, 14631, 52, 27586, 82, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 23, 2548, 64, 18, 64, 19, 20356, 68, 17, 9395, 5774, 64, 19, 69, 24, 69, 22883, 65, 19, 65, 15, 67, 3695, 64, 16, 68, 6420, 21101, 22, 1, 198, 12303, 312, 796, 366, 3609, 48891, 30206, 12, 64, 19, 1860, 12, 20, 13464, 12, 24, 6814, 64, 12, 67, 48882, 3459, 22148, 20, 7568, 1, 198, 9641, 796, 366, 16, 13, 18, 13, 15, 1, 198, 198, 30109, 10378, 82, 13, 49, 11018, 11907, 198, 10378, 82, 796, 14631, 29531, 1600, 366, 49, 11018, 62, 73, 297, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 19881, 18, 20356, 69, 31047, 20198, 344, 15711, 66, 4304, 324, 6469, 66, 1983, 5892, 66, 3553, 11231, 22, 65, 16, 69, 1, 198, 12303, 312, 796, 366, 3720, 2931, 23, 16072, 19, 12, 64, 5332, 68, 12, 20, 67, 3388, 12, 7252, 21, 64, 12, 2780, 5066, 69, 1731, 36260, 13331, 1, 198, 9641, 796, 366, 15, 13, 22, 13, 15, 1, 198, 198, 30109, 10378, 82, 13, 49, 11018, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 41, 3069, 36918, 11799, 1600, 366, 25835, 25404, 1600, 366, 47, 10025, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 3104, 9945, 2624, 67, 487, 1065, 11848, 21, 16799, 65, 330, 4790, 66, 22567, 3459, 16315, 16, 19881, 15, 891, 11848, 22, 1, 198, 12303, 312, 796, 366, 69, 1120, 67, 16, 65, 3132, 12, 3459, 68, 23, 12, 3365, 2934, 12, 1350, 17, 66, 12, 16, 535, 43489, 36042, 2425, 69, 1, 198, 9641, 796, 366, 15, 13, 18, 13, 15, 10, 15, 1, 198, 198, 30109, 10378, 82, 13, 37596, 11907, 198, 12303, 312, 796, 366, 18213, 23, 68, 24, 1129, 66, 12, 26660, 66, 12, 4349, 1878, 12, 3459, 1495, 12, 46071, 5066, 10210, 22, 2481, 344, 1, 198, 9641, 796, 366, 15, 13, 22, 13, 15, 1, 198, 198, 30109, 10378, 82, 13, 3351, 36722, 11907, 198, 10378, 82, 796, 14631, 35, 689, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 15, 65, 19, 65, 22, 69, 1485, 6052, 66, 487, 5607, 66, 2091, 4531, 16, 6814, 17, 64, 15, 19881, 3388, 66, 21, 276, 28872, 69, 6814, 1, 198, 12303, 312, 796, 366, 21, 66, 21, 64, 17, 68, 4790, 12, 2996, 5066, 12, 21, 17279, 12, 22, 27412, 12, 21, 2718, 3510, 1558, 2075, 33319, 1, 198, 9641, 796, 366, 16, 13, 16, 13, 15, 1, 198, 198, 30109, 10378, 82, 13, 31837, 20538, 3163, 20477, 11907, 198, 10378, 82, 796, 14631, 35, 689, 1600, 366, 29531, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 21, 64, 17, 69, 22, 67, 2154, 25836, 67, 21261, 6888, 23, 66, 22, 1453, 3132, 65, 13331, 24, 69, 23726, 5036, 22, 3559, 940, 66, 1, 198, 12303, 312, 796, 366, 6420, 66, 41647, 4051, 12, 18, 721, 19, 12, 3901, 64, 18, 12, 64, 1731, 69, 12, 18, 69, 1954, 68, 1238, 67, 47007, 66, 1, 198, 9641, 796, 366, 16, 13, 18, 13, 1065, 1, 198, 198, 30109, 10378, 82, 13, 32634, 1634, 11907, 198, 12303, 312, 796, 366, 24, 68, 3459, 65, 3682, 64, 12, 69, 23, 1959, 12, 20, 65, 15, 66, 12, 65, 1350, 24, 12, 24, 68, 24, 1954, 22337, 23055, 65, 1, 198, 198, 30109, 10378, 82, 13, 2484, 1144, 3163, 20477, 11907, 198, 10378, 82, 796, 14631, 20344, 6169, 1600, 366, 44, 8899, 1600, 366, 29531, 1600, 366, 32634, 1634, 8973, 198, 12303, 312, 796, 366, 16, 64, 8784, 16, 64, 18, 12, 5705, 2934, 12, 38605, 68, 12, 23, 68, 4531, 12, 64, 1157, 64, 17, 69, 22, 17896, 34741, 1, 198, 198, 30109, 10378, 82, 13, 15307, 2364, 11907, 198, 10378, 82, 796, 14631, 35, 689, 1600, 366, 38, 2442, 84, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 6420, 6048, 69, 37680, 22260, 6659, 7568, 24, 3609, 21, 344, 65, 1238, 65, 24, 3270, 3609, 20, 46435, 324, 16, 2934, 1, 198, 12303, 312, 796, 366, 41561, 67, 19, 64, 891, 12, 2919, 1415, 12, 47396, 65, 12, 15630, 19, 67, 12, 69, 17, 68, 24, 64, 21, 66, 19, 18298, 69, 1, 198, 9641, 796, 366, 16, 13, 15, 13, 18, 1, 198, 198, 30109, 10378, 82, 13, 50, 11603, 11907, 198, 12303, 312, 796, 366, 2414, 5237, 5036, 15, 65, 12, 1731, 2934, 12, 3980, 3132, 12, 23, 40035, 12, 1860, 24, 3901, 69, 3829, 2934, 535, 1, 198, 198, 30109, 10378, 82, 13, 50, 24707, 2348, 7727, 907, 11907, 198, 10378, 82, 796, 14631, 6601, 44909, 942, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 65, 2091, 5066, 67, 4524, 1899, 69, 22, 67, 2931, 23, 6888, 2931, 1065, 66, 3388, 65, 2919, 17, 69, 2425, 26704, 67, 15426, 23, 1, 198, 12303, 312, 796, 366, 64, 17, 1878, 1157, 2791, 12, 64, 2919, 69, 12, 20, 69, 2414, 12, 23, 3510, 66, 12, 5824, 64, 15, 67, 18, 344, 69, 2780, 66, 1, 198, 9641, 796, 366, 16, 13, 15, 13, 16, 1, 198, 198, 30109, 10378, 82, 13, 50, 29572, 3163, 20477, 11907, 198, 10378, 82, 796, 14631, 14993, 451, 2348, 29230, 1600, 366, 29531, 8973, 198, 12303, 312, 796, 366, 17, 69, 486, 22883, 68, 12, 68, 1828, 65, 12, 20, 7568, 20, 12, 3609, 5066, 12, 67, 6052, 1765, 397, 3388, 68, 1878, 1, 198, 198, 30109, 10378, 82, 13, 13409, 24629, 2733, 11907, 198, 10378, 82, 796, 14631, 35491, 37766, 14055, 1600, 366, 23820, 20310, 34184, 1187, 1600, 366, 11187, 16870, 24629, 2733, 1600, 366, 11505, 25835, 76, 62, 73, 297, 1600, 366, 11505, 22882, 24629, 62, 73, 297, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 20, 7012, 38431, 3609, 31047, 1878, 38819, 1954, 67, 344, 15, 6814, 24, 68, 36809, 17457, 16, 5036, 22, 27310, 69, 24, 1, 198, 12303, 312, 796, 366, 27988, 67, 1878, 2791, 12, 2548, 3104, 12, 20, 31115, 12, 24, 7252, 19, 12, 10210, 20964, 67, 24, 2548, 3901, 65, 1, 198, 9641, 796, 366, 17, 13, 16, 13, 19, 1, 198, 198, 30109, 10378, 82, 13, 45442, 3163, 20477, 11907, 198, 10378, 82, 796, 14631, 14993, 451, 2348, 29230, 1600, 366, 29531, 1600, 366, 48346, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 19, 69, 21, 721, 20, 67, 2079, 64, 2078, 68, 16, 64, 22, 2920, 38605, 891, 22, 1860, 44085, 45791, 66, 20, 31047, 18, 67, 20, 1, 198, 12303, 312, 796, 366, 46815, 2718, 487, 64, 12, 22, 27203, 12, 3980, 1821, 12, 6659, 65, 24, 12, 68, 31211, 2718, 28727, 24294, 1, 198, 9641, 796, 366, 16, 13, 19, 13, 18, 1, 198, 198, 30109, 10378, 82, 13, 48346, 11907, 198, 10378, 82, 796, 14631, 14993, 451, 2348, 29230, 1600, 366, 50, 29572, 3163, 20477, 8973, 198, 12303, 312, 796, 366, 15982, 2231, 65, 1433, 12, 3720, 344, 12, 1157, 68, 23, 12, 1157, 69, 24, 12, 22, 67, 1485, 324, 2624, 64, 18, 65, 17, 1, 198, 198, 30109, 10378, 82, 13, 29668, 17614, 11907, 198, 10378, 82, 796, 14631, 14993, 451, 2348, 29230, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 66, 18, 67, 23, 7012, 22, 69, 18, 13331, 3312, 1495, 65, 3312, 17, 65, 23, 2078, 4310, 64, 22, 67, 20, 23539, 21101, 48524, 65, 21, 65, 1, 198, 12303, 312, 796, 366, 6469, 3609, 5774, 2920, 12, 3324, 276, 12, 19, 5036, 21, 12, 3609, 20, 69, 12, 69, 49803, 1314, 18938, 19, 65, 15, 1, 198, 9641, 796, 366, 16, 13, 17, 13, 16, 1, 198, 198, 30109, 10378, 82, 13, 29668, 14881, 11907, 198, 10378, 82, 796, 14631, 6601, 17614, 1600, 366, 6601, 44909, 942, 1600, 366, 14993, 451, 2348, 29230, 1600, 366, 11187, 16870, 24629, 2733, 1600, 366, 17140, 654, 1600, 366, 18557, 69, 1600, 366, 29531, 1600, 366, 50, 24707, 2348, 7727, 907, 1600, 366, 50, 29572, 3163, 20477, 1600, 366, 48346, 1600, 366, 29668, 17614, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 4531, 3324, 65, 21738, 3312, 65, 15, 64, 16, 535, 4524, 397, 17, 68, 18, 64, 2713, 69, 7252, 1433, 12993, 2919, 64, 23, 33551, 1, 198, 12303, 312, 796, 366, 1959, 1485, 11848, 67, 17, 12, 3609, 23, 64, 12, 20, 69, 4869, 12, 23, 66, 2079, 12, 19, 21855, 21, 66, 4304, 69, 18, 64, 6420, 1, 198, 9641, 796, 366, 15, 13, 2091, 13, 1433, 1, 198, 198, 30109, 10378, 82, 13, 29668, 37, 13271, 11907, 198, 10378, 82, 796, 14631, 35491, 37766, 14055, 1600, 366, 38197, 469, 16996, 24629, 2733, 1600, 366, 818, 4399, 24629, 2733, 1600, 366, 23820, 20310, 34184, 1187, 1600, 366, 11187, 16870, 24629, 2733, 1600, 366, 3041, 39344, 1600, 366, 49, 11018, 1600, 366, 13409, 24629, 2733, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 4761, 68, 21, 397, 67, 21, 16072, 24, 891, 15, 13331, 5237, 64, 1314, 5607, 1485, 66, 5999, 65, 4304, 2718, 64, 1415, 65, 17, 65, 23, 1, 198, 12303, 312, 796, 366, 19, 66, 5066, 67, 17, 65, 24, 12, 19, 32066, 12, 4051, 9945, 12, 23, 13227, 12, 1558, 65, 2414, 66, 2670, 68, 3682, 66, 1, 198, 9641, 796, 366, 15, 13, 24, 13, 1558, 1, 198, 198, 30109, 10378, 82, 13, 29668, 3646, 1747, 11907, 198, 10378, 82, 796, 14631, 23839, 5777, 33758, 1600, 366, 2601, 436, 1586, 1600, 366, 6601, 44909, 942, 1600, 366, 6601, 40161, 1600, 366, 20344, 2455, 507, 1600, 366, 9492, 16104, 602, 1600, 366, 42, 7948, 35, 6377, 1600, 366, 14993, 451, 2348, 29230, 1600, 366, 15205, 42524, 29668, 1600, 366, 31310, 712, 2977, 1600, 366, 3646, 1747, 1600, 366, 6690, 18636, 14881, 1600, 366, 6690, 18636, 47, 541, 4470, 1600, 366, 3041, 39344, 1600, 366, 29668, 14881, 1600, 366, 10962, 18843, 602, 1600, 366, 51, 2977, 1600, 366, 54, 312, 11407, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 19, 67, 24, 66, 3388, 67, 2996, 69, 16, 65, 20233, 324, 2931, 17, 2934, 15, 11231, 1485, 68, 23, 3270, 65, 23, 66, 2816, 66, 324, 1, 198, 12303, 312, 796, 366, 69, 18, 65, 22745, 64, 22, 12, 44698, 64, 12, 20, 68, 2154, 12, 65, 28676, 12, 4521, 31675, 67, 3720, 2816, 16344, 1, 198, 9641, 796, 366, 15, 13, 1415, 13, 2091, 1, 198, 198, 30109, 10378, 82, 13, 44909, 3163, 20477, 11907, 198, 10378, 82, 796, 14631, 48003, 1600, 366, 6601, 17614, 1600, 366, 45442, 3163, 20477, 1600, 366, 51, 2977, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 37452, 1558, 65, 2682, 13331, 2682, 69, 6420, 67, 44468, 1765, 22980, 7568, 3134, 66, 17, 67, 2231, 1129, 65, 23, 65, 4089, 1, 198, 12303, 312, 796, 366, 2931, 397, 33372, 65, 12, 69, 17, 65, 21, 12, 49561, 69, 12, 65, 5824, 64, 12, 17, 69, 5999, 12993, 19, 64, 23, 3682, 64, 1, 198, 9641, 796, 366, 15, 13, 21, 13, 20, 1, 198, 198, 30109, 10378, 82, 13, 5606, 578, 50, 29572, 11907, 198, 10378, 82, 796, 14631, 25835, 25404, 1600, 366, 14993, 451, 2348, 29230, 1600, 366, 32634, 1634, 1600, 366, 50, 29572, 3163, 20477, 8973, 198, 12303, 312, 796, 366, 19, 31980, 65, 15, 69, 15, 12, 3312, 69, 18, 12, 20, 66, 6814, 12, 65, 21, 65, 16, 12, 64, 21, 25272, 64, 1558, 1959, 68, 24, 1, 198, 198, 30109, 10378, 82, 13, 51, 2662, 43, 11907, 198, 10378, 82, 796, 14631, 35, 689, 8973, 198, 12303, 312, 796, 366, 13331, 25674, 69, 16, 69, 12, 1899, 2920, 12, 19, 69, 1415, 12, 7252, 4051, 12, 2091, 65, 1878, 3609, 16, 276, 4304, 1, 198, 9641, 796, 366, 16, 13, 15, 13, 15, 1, 198, 198, 30109, 10378, 82, 13, 10962, 18843, 602, 11907, 198, 10378, 82, 796, 14631, 31837, 20538, 3163, 20477, 1600, 366, 51, 2977, 1600, 366, 14402, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 68, 34741, 66, 5774, 12993, 17, 64, 16, 17896, 3901, 13331, 1270, 66, 2931, 18, 65, 17, 64, 22337, 3324, 66, 5999, 68, 16, 15630, 16, 1, 198, 12303, 312, 796, 366, 397, 2999, 64, 16, 65, 17, 12, 64, 22, 7568, 12, 1157, 68, 23, 12, 21599, 68, 12, 21855, 1507, 2091, 69, 1120, 65, 5774, 1, 198, 9641, 796, 366, 16, 13, 17, 13, 15, 1, 198, 198, 30109, 10378, 82, 13, 10962, 15721, 896, 11907, 198, 10378, 82, 796, 14631, 37787, 39317, 11627, 5736, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 66, 3312, 65, 17, 69, 20, 2670, 7568, 16, 66, 21, 891, 64, 3720, 2598, 4521, 397, 21855, 21, 276, 1238, 18182, 5333, 64, 2670, 1, 198, 12303, 312, 796, 366, 2718, 5999, 65, 9945, 23, 12, 19, 64, 4089, 12, 20, 65, 21, 65, 12, 1878, 24, 64, 12, 47372, 69, 1959, 64, 20, 5036, 24, 66, 1, 198, 9641, 796, 366, 16, 13, 15, 13, 16, 1, 198, 198, 30109, 10378, 82, 13, 51, 2977, 11907, 198, 10378, 82, 796, 14631, 6601, 17614, 1600, 366, 6601, 11395, 9492, 32186, 1600, 366, 37787, 39317, 11627, 5736, 1600, 366, 14993, 451, 2348, 29230, 1600, 366, 35422, 1068, 5216, 26448, 1600, 366, 10962, 15721, 896, 1600, 366, 14402, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 20, 344, 3720, 344, 25096, 535, 30924, 11848, 65, 20, 66, 20, 48564, 6888, 2091, 3720, 67, 16, 1860, 3609, 1157, 64, 16, 1, 198, 12303, 312, 796, 366, 17457, 30803, 1878, 21, 12, 64, 721, 16, 12, 20, 324, 15, 12, 65, 1433, 64, 12, 69, 22, 535, 4059, 23, 25948, 66, 1, 198, 9641, 796, 366, 16, 13, 22, 13, 15, 1, 198, 198, 30109, 10378, 82, 13, 47079, 11907, 198, 10378, 82, 796, 14631, 28100, 33637, 1600, 366, 37596, 8973, 198, 12303, 312, 796, 366, 64, 19, 68, 20, 3388, 64, 21, 12, 68, 36088, 12, 19, 13331, 19, 12, 65, 15, 69, 18, 12, 68, 891, 22, 64, 16, 67, 20, 65, 1485, 68, 1, 198, 9641, 796, 366, 16, 13, 940, 13, 15, 1, 198, 198, 30109, 10378, 82, 13, 14402, 11907, 198, 10378, 82, 796, 14631, 9492, 5275, 18274, 4487, 1600, 366, 11187, 2667, 1600, 366, 29531, 1600, 366, 32634, 1634, 8973, 198, 12303, 312, 796, 366, 23, 7568, 276, 46841, 12, 68, 1828, 66, 12, 20, 68, 2919, 12, 5332, 68, 16, 12, 2996, 66, 20, 24409, 69, 15, 65, 1821, 1, 198, 198, 30109, 10378, 82, 13, 4261, 3792, 11907, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 5607, 65, 1350, 38172, 64, 4310, 5036, 23, 3270, 36657, 10210, 24, 2998, 69, 17, 67, 4846, 64, 1453, 23, 67, 17, 66, 1485, 2816, 1, 198, 12303, 312, 796, 366, 20, 66, 1983, 2857, 69, 23, 12, 65, 22, 18213, 12, 19, 487, 17, 12, 7012, 17, 68, 12, 46572, 65, 16344, 2623, 65, 16, 67, 19, 1, 198, 9641, 796, 366, 16, 13, 18, 13, 15, 1, 198, 198, 30109, 10378, 82, 13, 52, 27586, 82, 11907, 198, 10378, 82, 796, 14631, 29531, 1600, 366, 37596, 8973, 198, 12303, 312, 796, 366, 12993, 22, 16817, 64, 22, 12, 3388, 4304, 12, 20, 65, 16, 64, 12, 24, 64, 2670, 12, 22, 324, 66, 4761, 69, 48952, 64, 19, 1, 198, 198, 30109, 10378, 82, 13, 3118, 291, 1098, 11907, 198, 12303, 312, 796, 366, 19, 721, 15, 64, 5999, 68, 12, 43134, 68, 12, 1120, 68, 17, 12, 65, 24, 330, 12, 23, 69, 4761, 330, 69, 20, 64, 23, 69, 20, 1, 198, 198, 30109, 10378, 82, 13, 3118, 291, 1098, 24629, 11907, 198, 10378, 82, 796, 14631, 2200, 6489, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 20, 2670, 1314, 68, 1120, 10531, 3270, 28933, 68, 3695, 64, 5892, 64, 39667, 46438, 65, 40173, 67, 487, 1860, 69, 1, 198, 12303, 312, 796, 366, 16, 12993, 671, 486, 12, 1828, 12993, 12, 3553, 405, 12, 65, 2931, 17, 12, 330, 535, 19, 65, 5237, 67, 21, 68, 16, 1, 198, 9641, 796, 366, 15, 13, 19, 13, 16, 1, 198, 198, 30109, 10378, 82, 13, 3118, 13344, 11907, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 2682, 9945, 1795, 3865, 1129, 486, 2998, 2327, 486, 19708, 65, 9945, 66, 18, 67, 20, 64, 23, 68, 22, 11848, 67, 15, 2791, 2154, 1, 198, 12303, 312, 796, 366, 3901, 5036, 22, 65, 1899, 12, 3324, 276, 12, 3559, 64, 16, 12, 65, 19, 69, 15, 12, 47338, 16344, 20, 64, 3980, 1120, 67, 1, 198, 9641, 796, 366, 15, 13, 16, 13, 17, 1, 198, 198, 30109, 10378, 82, 13, 25309, 1044, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 3109, 8071, 62, 73, 297, 1600, 366, 41, 3069, 36918, 11799, 1600, 366, 25835, 25404, 1600, 366, 25835, 487, 72, 62, 73, 297, 1600, 366, 47, 10025, 1600, 366, 55, 5805, 17, 62, 73, 297, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 18, 68, 5333, 69, 15, 65, 4521, 69, 3829, 67, 330, 65, 15, 15630, 15, 68, 4790, 64, 15, 66, 20, 64, 5999, 69, 21, 64, 4521, 2623, 68, 1954, 1, 198, 12303, 312, 796, 366, 64, 1959, 2414, 67, 16, 69, 12, 5607, 6814, 12, 1120, 67, 19, 12, 65, 6469, 64, 12, 31128, 66, 22, 69, 344, 24, 67, 4531, 1, 198, 9641, 796, 366, 16, 13, 1129, 13, 15, 10, 15, 1, 198, 198, 30109, 10378, 82, 13, 25309, 1044, 62, 11235, 4668, 82, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 41, 3069, 36918, 11799, 1600, 366, 25835, 25404, 1600, 366, 47, 10025, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 2231, 2078, 31714, 7252, 486, 1453, 16, 65, 18, 65, 19, 10210, 15, 68, 21, 13331, 891, 15, 68, 3023, 12993, 23237, 2791, 6814, 1, 198, 12303, 312, 796, 366, 1954, 6659, 19881, 23, 64, 12, 7568, 67, 15, 12, 41948, 67, 12, 24214, 12, 3720, 30005, 68, 22, 65, 16, 65, 6420, 1, 198, 9641, 796, 366, 16, 13, 1495, 13, 15, 10, 15, 1, 198, 198, 30109, 10378, 82, 13, 54, 312, 11407, 11907, 198, 10378, 82, 796, 14631, 5216, 669, 1600, 366, 35, 689, 1600, 366, 31310, 712, 2977, 1600, 366, 35422, 1068, 5216, 26448, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 31654, 66, 3132, 69, 38905, 26598, 16072, 22318, 67, 2079, 67, 36629, 3459, 69, 21, 344, 15498, 3720, 1065, 3901, 1, 198, 12303, 312, 796, 366, 535, 23, 15630, 19, 64, 23, 12, 1983, 67, 21, 12, 3553, 3388, 12, 64, 6052, 65, 12, 24, 67, 24, 1485, 68, 3388, 7252, 5237, 1, 198, 9641, 796, 366, 15, 13, 21, 13, 20, 1, 198, 198, 30109, 10378, 82, 13, 22911, 10711, 19044, 45977, 11907, 198, 10378, 82, 796, 14631, 14993, 451, 2348, 29230, 1600, 366, 50, 29572, 3163, 20477, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 2934, 3134, 13331, 3270, 68, 2091, 324, 21599, 64, 3270, 405, 2816, 22318, 64, 1270, 65, 1954, 66, 1821, 22579, 67, 18, 1, 198, 12303, 312, 796, 366, 891, 344, 18, 69, 3104, 12, 2791, 17896, 12, 3365, 2548, 12, 24, 16102, 12, 1983, 64, 21, 67, 21, 69, 20, 69, 24, 65, 21, 1, 198, 9641, 796, 366, 15, 13, 20, 13, 20, 1, 198, 198, 30109, 10378, 82, 13, 55, 5805, 17, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 41, 3069, 36918, 11799, 1600, 366, 25835, 25404, 1600, 366, 25835, 4749, 85, 62, 73, 297, 1600, 366, 47, 10025, 1600, 366, 57, 8019, 62, 73, 297, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 16, 330, 69, 20, 65, 7568, 2998, 7252, 2931, 2998, 68, 15, 64, 2718, 67, 2718, 1507, 11848, 3459, 67, 19, 65, 39925, 65, 4524, 64, 1, 198, 12303, 312, 796, 366, 2999, 66, 23, 16072, 24, 66, 12, 65, 5607, 69, 12, 1120, 65, 24, 12, 65, 1350, 19, 12, 24, 1350, 1270, 487, 15, 64, 3695, 64, 1, 198, 9641, 796, 366, 17, 13, 24, 13, 1065, 10, 15, 1, 198, 198, 30109, 10378, 82, 13, 55, 8634, 51, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 41, 3069, 36918, 11799, 1600, 366, 25835, 25404, 1600, 366, 25835, 70, 29609, 62, 73, 297, 1600, 366, 25835, 70, 6024, 62, 18224, 62, 73, 297, 1600, 366, 25835, 4749, 85, 62, 73, 297, 1600, 366, 47, 10025, 1600, 366, 55, 5805, 17, 62, 73, 297, 1600, 366, 57, 8019, 62, 73, 297, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 24, 1507, 31115, 4790, 66, 1821, 5332, 16102, 65, 3865, 68, 41544, 69, 46589, 66, 19, 344, 66, 19, 67, 28256, 69, 23, 64, 1, 198, 12303, 312, 796, 366, 8432, 30763, 64, 12, 23, 69, 6814, 12, 35378, 69, 12, 24, 29796, 12, 22, 65, 3023, 28771, 3270, 64, 5333, 1, 198, 9641, 796, 366, 16, 13, 16, 13, 2682, 10, 15, 1, 198, 198, 30109, 10378, 82, 13, 55, 2398, 62, 8019, 55, 1157, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 41, 3069, 36918, 11799, 1600, 366, 25835, 25404, 1600, 366, 47, 10025, 1600, 366, 55, 2398, 62, 8019, 87, 21101, 62, 73, 297, 1600, 366, 55, 2398, 62, 742, 26084, 62, 73, 297, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 20, 1350, 33300, 67, 22730, 69, 18, 69, 19, 65, 3865, 21495, 19881, 486, 5999, 65, 6469, 68, 25600, 27800, 2996, 1983, 1, 198, 12303, 312, 796, 366, 19, 69, 21, 31575, 69, 22, 12, 65, 18, 67, 17, 12, 44169, 68, 12, 24, 67, 1238, 12, 276, 1765, 2231, 69, 17, 65, 17, 15630, 1, 198, 9641, 796, 366, 16, 13, 21, 13, 24, 10, 19, 1, 198, 198, 30109, 10378, 82, 13, 55, 2398, 62, 8019, 55, 559, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 41, 3069, 36918, 11799, 1600, 366, 25835, 25404, 1600, 366, 47, 10025, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 19, 68, 31503, 67, 20, 66, 39277, 66, 33638, 69, 2091, 3459, 3553, 3829, 276, 33289, 487, 18, 64, 5824, 344, 3134, 68, 1, 198, 12303, 312, 796, 366, 15, 66, 15, 65, 22, 1860, 16, 12, 67, 1821, 65, 12, 46352, 66, 12, 64, 10163, 12, 64, 35218, 1821, 69, 5774, 68, 721, 1, 198, 9641, 796, 366, 16, 13, 15, 13, 24, 10, 19, 1, 198, 198, 30109, 10378, 82, 13, 55, 2398, 62, 8019, 55, 66, 21471, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 41, 3069, 36918, 11799, 1600, 366, 25835, 25404, 1600, 366, 47, 10025, 1600, 366, 55, 2398, 62, 8019, 55, 42624, 62, 73, 297, 1600, 366, 55, 2398, 62, 8019, 55, 13287, 62, 73, 297, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 1065, 68, 15, 1765, 18, 15630, 21, 2682, 13331, 1238, 1795, 66, 16, 66, 2718, 69, 535, 69, 3980, 69, 22, 66, 1828, 42520, 1878, 67, 1, 198, 12303, 312, 796, 366, 24, 2327, 21855, 22, 2414, 12, 23, 12993, 17, 12, 4310, 19881, 12, 11848, 1270, 12, 2231, 11848, 16, 69, 23, 19881, 22, 1731, 1, 198, 9641, 796, 366, 16, 13, 17, 13, 15, 10, 19, 1, 198, 198, 30109, 10378, 82, 13, 55, 2398, 62, 8019, 55, 36020, 13155, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 41, 3069, 36918, 11799, 1600, 366, 25835, 25404, 1600, 366, 47, 10025, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 19, 5036, 2857, 17457, 17, 23753, 23045, 11623, 66, 19, 27693, 41019, 1821, 68, 1507, 64, 3104, 1485, 4761, 1860, 19, 1, 198, 12303, 312, 796, 366, 64, 2718, 4531, 22, 2682, 12, 66, 5036, 16, 12, 20, 65, 3312, 12, 65, 17, 67, 15, 12, 16, 1860, 15, 67, 24, 67, 5237, 67, 2713, 1, 198, 9641, 796, 366, 16, 13, 16, 13, 18, 10, 19, 1, 198, 198, 30109, 10378, 82, 13, 55, 2398, 62, 8019, 55, 2302, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 41, 3069, 36918, 11799, 1600, 366, 25835, 25404, 1600, 366, 47, 10025, 1600, 366, 55, 2398, 62, 8019, 55, 1157, 62, 73, 297, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 65, 22, 66, 15, 7252, 23, 66, 32128, 65, 3132, 68, 2780, 4309, 65, 15277, 1828, 2078, 34251, 2718, 69, 40271, 69, 23, 66, 18, 1, 198, 12303, 312, 796, 366, 15711, 2075, 2670, 64, 12, 15, 67, 3609, 12, 20, 69, 2682, 12, 24, 65, 3312, 12, 47760, 6659, 1453, 65, 23, 21101, 18, 1, 198, 9641, 796, 366, 16, 13, 18, 13, 19, 10, 19, 1, 198, 198, 30109, 10378, 82, 13, 55, 2398, 62, 8019, 55, 42624, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 41, 3069, 36918, 11799, 1600, 366, 25835, 25404, 1600, 366, 47, 10025, 1600, 366, 55, 2398, 62, 8019, 55, 1157, 62, 73, 297, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 15, 68, 15, 17896, 4524, 3132, 68, 22, 64, 2713, 31360, 3270, 69, 24, 27696, 3609, 721, 26276, 38339, 66, 2079, 16, 64, 19, 1, 198, 12303, 312, 796, 366, 67, 2931, 16, 68, 23, 7012, 12, 20, 3132, 64, 12, 44169, 66, 12, 24, 2934, 24, 12, 46899, 3388, 65, 15, 2718, 276, 23, 1, 198, 9641, 796, 366, 20, 13, 15, 13, 18, 10, 19, 1, 198, 198, 30109, 10378, 82, 13, 55, 2398, 62, 8019, 42528, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 41, 3069, 36918, 11799, 1600, 366, 25835, 25404, 1600, 366, 47, 10025, 1600, 366, 55, 2398, 62, 8019, 55, 2302, 62, 73, 297, 1600, 366, 55, 2398, 62, 8019, 55, 42624, 62, 73, 297, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 4531, 65, 4309, 15630, 17, 14198, 64, 324, 66, 5705, 67, 2154, 31495, 2670, 1270, 891, 15, 65, 487, 64, 2414, 1065, 3510, 1, 198, 12303, 312, 796, 366, 64, 4349, 7252, 15, 16344, 12, 19, 68, 18, 66, 12, 20, 21734, 12, 65, 23, 3829, 12, 68, 44550, 12501, 6814, 40256, 1, 198, 9641, 796, 366, 16, 13, 22, 13, 940, 10, 19, 1, 198, 198, 30109, 10378, 82, 13, 55, 2398, 62, 8019, 55, 7274, 1689, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 41, 3069, 36918, 11799, 1600, 366, 25835, 25404, 1600, 366, 47, 10025, 1600, 366, 55, 2398, 62, 8019, 55, 2302, 62, 73, 297, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 2075, 1350, 23, 65, 16, 66, 2682, 1959, 1959, 1495, 6052, 1558, 67, 23, 65, 24, 69, 22, 65, 4310, 19881, 17, 11848, 4790, 65, 10163, 1, 198, 12303, 312, 796, 366, 67, 1415, 4051, 29703, 12, 3270, 7568, 12, 20, 18213, 16, 12, 1350, 330, 12, 66, 23601, 69, 2481, 1270, 15630, 18, 1, 198, 9641, 796, 366, 16, 13, 16, 13, 19, 10, 19, 1, 198, 198, 30109, 10378, 82, 13, 55, 2398, 62, 8019, 55, 25192, 81, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 41, 3069, 36918, 11799, 1600, 366, 25835, 25404, 1600, 366, 47, 10025, 1600, 366, 55, 2398, 62, 8019, 55, 2302, 62, 73, 297, 1600, 366, 55, 2398, 62, 8019, 55, 13287, 62, 73, 297, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 2682, 344, 64, 5999, 21101, 22, 2075, 21855, 3365, 69, 26582, 46660, 19881, 3312, 1065, 66, 21, 65, 18, 21855, 24096, 3132, 1, 198, 12303, 312, 796, 366, 721, 5705, 65, 45385, 12, 7012, 23, 68, 12, 20, 67, 4846, 12, 23, 7012, 16, 12, 17, 64, 40523, 7012, 940, 34137, 1, 198, 9641, 796, 366, 16, 13, 20, 13, 17, 10, 19, 1, 198, 198, 30109, 10378, 82, 13, 55, 2398, 62, 8019, 55, 13287, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 41, 3069, 36918, 11799, 1600, 366, 25835, 25404, 1600, 366, 47, 10025, 1600, 366, 55, 2398, 62, 8019, 55, 1157, 62, 73, 297, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 22186, 1899, 69, 1270, 16344, 2920, 69, 19, 67, 19, 891, 1350, 9879, 17, 64, 940, 2718, 69, 23, 66, 3559, 67, 3559, 65, 4846, 1, 198, 12303, 312, 796, 366, 18213, 17, 69, 16, 64, 4846, 12, 16, 1860, 66, 12, 35005, 67, 12, 65, 3510, 69, 12, 11785, 35916, 68, 2998, 12993, 64, 1, 198, 9641, 796, 366, 15, 13, 24, 13, 940, 10, 19, 1, 198, 198, 30109, 10378, 82, 13, 55, 2398, 62, 8019, 79, 16663, 62, 301, 23161, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 41, 3069, 36918, 11799, 1600, 366, 25835, 25404, 1600, 366, 47, 10025, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 30924, 2718, 2718, 68, 2231, 67, 18, 66, 3270, 64, 19, 64, 19, 66, 1821, 6420, 69, 20, 69, 3459, 10210, 12993, 2931, 2919, 66, 11848, 1, 198, 12303, 312, 796, 366, 1415, 67, 6469, 69, 2920, 12, 24096, 66, 12, 20, 276, 16, 12, 11848, 2920, 12, 324, 18, 69, 20, 66, 17457, 23, 66, 4524, 1, 198, 9641, 796, 366, 15, 13, 16, 13, 15, 10, 18, 1, 198, 198, 30109, 10378, 82, 13, 55, 2398, 62, 8019, 87, 21101, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 41, 3069, 36918, 11799, 1600, 366, 25835, 25404, 1600, 366, 47, 10025, 1600, 366, 55, 8634, 51, 62, 73, 297, 1600, 366, 55, 2398, 62, 8019, 55, 559, 62, 73, 297, 1600, 366, 55, 2398, 62, 8019, 55, 36020, 13155, 62, 73, 297, 1600, 366, 55, 2398, 62, 8019, 79, 16663, 62, 301, 23161, 62, 73, 297, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 67, 1878, 1558, 69, 2598, 1065, 2078, 68, 22, 64, 2548, 28460, 3510, 10210, 47202, 4531, 2078, 5333, 66, 487, 1433, 67, 21, 1, 198, 12303, 312, 796, 366, 66, 22, 12993, 17896, 5824, 12, 17896, 2624, 12, 2816, 2934, 12, 330, 4846, 12, 20, 64, 16, 65, 23, 67, 24, 3324, 66, 20, 65, 1, 198, 9641, 796, 366, 16, 13, 1485, 13, 15, 10, 18, 1, 198, 198, 30109, 10378, 82, 13, 55, 2398, 62, 8019, 87, 32812, 7753, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 41, 3069, 36918, 11799, 1600, 366, 25835, 25404, 1600, 366, 47, 10025, 1600, 366, 55, 2398, 62, 8019, 55, 1157, 62, 73, 297, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 24, 2075, 1878, 4521, 1558, 2598, 21777, 9945, 15, 1765, 8298, 67, 24, 68, 1821, 65, 20, 67, 1433, 1959, 1238, 1795, 65, 17, 1, 198, 12303, 312, 796, 366, 535, 5333, 68, 45385, 12, 15, 34229, 12, 45326, 66, 12, 23, 65, 2075, 12, 276, 17, 66, 3104, 330, 397, 22, 64, 1, 198, 9641, 796, 366, 16, 13, 16, 13, 15, 10, 19, 1, 198, 198, 30109, 10378, 82, 13, 55, 2398, 62, 87, 21101, 62, 22602, 62, 9060, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 41, 3069, 36918, 11799, 1600, 366, 25835, 25404, 1600, 366, 47, 10025, 1600, 366, 55, 2398, 62, 87, 21101, 62, 22602, 62, 73, 297, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 15, 36434, 15, 64, 1821, 27371, 7012, 16, 66, 7012, 17, 66, 16, 6814, 47325, 1731, 2091, 4846, 487, 23, 68, 5824, 65, 5607, 1, 198, 12303, 312, 796, 366, 17464, 20219, 1495, 12, 23, 23726, 12, 20, 69, 2816, 12, 11848, 15, 68, 12, 21, 67, 22, 6888, 1120, 11848, 2931, 65, 1, 198, 9641, 796, 366, 15, 13, 19, 13, 15, 10, 16, 1, 198, 198, 30109, 10378, 82, 13, 55, 2398, 62, 87, 21101, 62, 22602, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 41, 3069, 36918, 11799, 1600, 366, 25835, 25404, 1600, 366, 47, 10025, 1600, 366, 55, 2398, 62, 8019, 87, 21101, 62, 73, 297, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 68, 22, 16344, 22, 65, 2078, 6659, 13331, 17, 68, 7252, 47760, 22985, 1238, 4531, 19, 67, 2670, 2548, 1558, 3695, 5237, 67, 16, 1, 198, 12303, 312, 796, 366, 17, 4299, 47512, 69, 12, 20, 324, 16, 12, 4310, 940, 12, 65, 1314, 65, 12, 65, 1314, 67, 3510, 69, 49351, 69, 20, 1, 198, 9641, 796, 366, 15, 13, 19, 13, 15, 10, 16, 1, 198, 198, 30109, 10378, 82, 13, 55, 2398, 62, 87, 21101, 62, 22602, 62, 13083, 88, 907, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 41, 3069, 36918, 11799, 1600, 366, 25835, 25404, 1600, 366, 47, 10025, 1600, 366, 55, 2398, 62, 87, 21101, 62, 22602, 62, 73, 297, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 67, 1157, 4349, 68, 17, 66, 2231, 64, 47576, 69, 33916, 3901, 64, 20, 3134, 67, 1433, 3829, 68, 41583, 721, 4531, 65, 405, 1, 198, 12303, 312, 796, 366, 5607, 1120, 2598, 67, 17, 12, 4304, 68, 21, 12, 20, 69, 1350, 12, 19881, 2919, 12, 5607, 344, 22, 66, 2996, 4524, 66, 22, 1, 198, 9641, 796, 366, 15, 13, 19, 13, 15, 10, 16, 1, 198, 198, 30109, 10378, 82, 13, 55, 2398, 62, 87, 21101, 62, 22602, 62, 13287, 22602, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 41, 3069, 36918, 11799, 1600, 366, 25835, 25404, 1600, 366, 47, 10025, 1600, 366, 55, 2398, 62, 87, 21101, 62, 22602, 62, 73, 297, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 7568, 67, 22, 64, 23, 69, 2548, 67, 3510, 1485, 65, 21, 64, 36189, 28592, 65, 18, 22985, 1860, 2079, 16, 6888, 21, 24839, 68, 1, 198, 12303, 312, 796, 366, 15, 67, 2857, 35809, 68, 12, 15, 28933, 12, 20, 64, 3388, 12, 64, 4761, 66, 12, 69, 4304, 1433, 1270, 19881, 65, 22, 68, 1, 198, 9641, 796, 366, 15, 13, 18, 13, 24, 10, 16, 1, 198, 198, 30109, 10378, 82, 13, 55, 2398, 62, 87, 21101, 62, 22602, 62, 26377, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 41, 3069, 36918, 11799, 1600, 366, 25835, 25404, 1600, 366, 47, 10025, 1600, 366, 55, 2398, 62, 87, 21101, 62, 22602, 62, 73, 297, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 68, 3695, 67, 940, 64, 397, 486, 64, 19, 64, 21526, 23726, 66, 4059, 21, 276, 2598, 16344, 24, 68, 23, 68, 3132, 65, 3134, 1, 198, 12303, 312, 796, 366, 66, 1828, 69, 24, 397, 15, 12, 67, 20, 5036, 12, 1120, 2791, 12, 23, 2857, 66, 12, 69, 19, 11848, 16, 10210, 19, 68, 35195, 1, 198, 9641, 796, 366, 15, 13, 19, 13, 16, 10, 16, 1, 198, 198, 30109, 10378, 82, 13, 55, 2398, 62, 87, 32812, 5589, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 41, 3069, 36918, 11799, 1600, 366, 25835, 25404, 1600, 366, 47, 10025, 1600, 366, 55, 2398, 62, 8019, 87, 32812, 7753, 62, 73, 297, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 19, 15630, 19881, 39885, 69, 21, 66, 17, 68, 45722, 69, 5774, 68, 39277, 64, 27192, 65, 16315, 67, 3312, 1453, 24136, 65, 1, 198, 12303, 312, 796, 366, 2327, 2791, 1415, 4310, 12, 65, 27693, 12, 20, 36434, 12, 23, 64, 405, 12, 18, 67, 24, 14198, 66, 21, 64, 18, 64, 19, 1, 198, 9641, 796, 366, 16, 13, 19, 13, 17, 10, 19, 1, 198, 198, 30109, 10378, 82, 13, 55, 2398, 62, 87, 2539, 3526, 62, 11250, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 41, 3069, 36918, 11799, 1600, 366, 25835, 25404, 1600, 366, 47, 10025, 1600, 366, 55, 2398, 62, 87, 32812, 5589, 62, 73, 297, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 20, 66, 5705, 1731, 69, 23, 64, 3134, 66, 18, 69, 17572, 24, 27720, 67, 2598, 1495, 69, 18, 67, 35038, 39071, 3270, 3132, 67, 1, 198, 12303, 312, 796, 366, 2091, 9423, 3365, 68, 12, 1065, 4790, 12, 25836, 69, 12, 5824, 486, 12, 20, 67, 20, 29211, 2075, 69, 23, 1828, 1, 198, 9641, 796, 366, 17, 13, 1983, 13, 15, 10, 19, 1, 198, 198, 30109, 10378, 82, 13, 55, 2398, 62, 742, 26084, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 41, 3069, 36918, 11799, 1600, 366, 25835, 25404, 1600, 366, 47, 10025, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 3720, 66, 3132, 68, 3695, 2598, 69, 21, 721, 69, 40393, 34801, 69, 15630, 1065, 20964, 1765, 19782, 65, 22, 67, 23, 2231, 1, 198, 12303, 312, 796, 366, 66, 20, 21855, 20, 34626, 12, 64, 21, 2548, 12, 20, 68, 19, 67, 12, 4846, 68, 20, 12, 65, 1959, 2934, 16, 65, 20, 12993, 940, 1, 198, 9641, 796, 366, 16, 13, 19, 13, 15, 10, 18, 1, 198, 198, 30109, 10378, 82, 13, 57, 8019, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 25835, 25404, 8973, 198, 12303, 312, 796, 366, 23, 2718, 2425, 64, 3365, 12, 16, 69, 16, 67, 12, 48645, 69, 12, 65, 24991, 12, 67, 50055, 4051, 397, 25816, 64, 1, 198, 9641, 796, 366, 16, 13, 17, 13, 1065, 10, 16, 1, 198, 198, 30109, 10378, 82, 13, 57, 19282, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 41, 3069, 36918, 11799, 1600, 366, 25835, 25404, 1600, 366, 47, 10025, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 68, 17885, 2598, 10210, 23, 4790, 9395, 4051, 65, 21, 64, 20, 65, 330, 15, 1765, 20, 66, 5607, 1485, 5892, 12993, 1129, 1983, 1, 198, 12303, 312, 796, 366, 18, 25948, 67, 18, 64, 18, 12, 65, 7568, 21, 12, 20, 23237, 12, 23, 1157, 64, 12, 47941, 31751, 9945, 3324, 65, 19, 1, 198, 9641, 796, 366, 16, 13, 20, 13, 17, 10, 15, 1, 198, 198, 30109, 10378, 82, 13, 8019, 562, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 33, 13344, 17, 62, 73, 297, 1600, 366, 11146, 6030, 17, 62, 73, 297, 1600, 366, 30214, 33, 19830, 62, 73, 297, 1600, 366, 13587, 69, 48230, 62, 73, 297, 1600, 366, 41, 3069, 36918, 11799, 1600, 366, 25835, 25404, 1600, 366, 47, 10025, 1600, 366, 57, 8019, 62, 73, 297, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 3270, 6469, 64, 5824, 16072, 7012, 1238, 69, 2999, 69, 3682, 558, 2598, 65, 4089, 5824, 1453, 17, 65, 15187, 5036, 2857, 1, 198, 12303, 312, 796, 366, 15, 330, 5237, 69, 2425, 12, 16, 67, 21, 69, 12, 20, 68, 4310, 12, 17457, 22, 66, 12, 6052, 65, 34137, 11848, 2718, 66, 15, 1, 198, 9641, 796, 366, 15, 13, 1314, 13, 16, 10, 15, 1, 198, 198, 30109, 10378, 82, 13, 8019, 39806, 81, 696, 14453, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 25835, 25404, 1600, 366, 11505, 9148, 1921, 62, 73, 297, 8973, 198, 12303, 312, 796, 366, 23, 68, 25764, 65, 3829, 12, 4521, 9945, 12, 20, 2682, 66, 12, 64, 15, 67, 18, 12, 1415, 3695, 24096, 66, 22, 67, 6052, 1, 198, 9641, 796, 366, 20, 13, 15, 13, 16, 10, 15, 1, 198, 198, 30109, 10378, 82, 13, 8019, 16344, 74, 62, 64, 330, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 41, 3069, 36918, 11799, 1600, 366, 25835, 25404, 1600, 366, 47, 10025, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 6814, 4134, 5705, 64, 3023, 1314, 5066, 69, 24, 2996, 1350, 47448, 3270, 64, 2623, 68, 1558, 66, 19, 68, 19, 69, 10210, 2816, 1, 198, 12303, 312, 796, 366, 69, 21, 2548, 69, 15, 64, 21, 12, 22, 21855, 15, 12, 20, 34938, 12, 3459, 7012, 12, 16, 535, 4524, 23539, 65, 21033, 1, 198, 9641, 796, 366, 17, 13, 15, 13, 17, 10, 15, 1, 198, 198, 30109, 10378, 82, 13, 8019, 11134, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 41, 3069, 36918, 11799, 1600, 366, 25835, 25404, 1600, 366, 47, 10025, 1600, 366, 57, 8019, 62, 73, 297, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 5824, 67, 15259, 64, 21, 67, 17, 65, 20, 68, 2816, 68, 34825, 68, 17, 67, 1983, 64, 1959, 276, 3023, 5036, 3720, 1765, 1270, 66, 1, 198, 12303, 312, 796, 366, 65, 4310, 65, 19, 66, 2996, 12, 24, 32066, 12, 3365, 1983, 12, 65, 16, 18213, 12, 23, 66, 22, 64, 16, 64, 5705, 35638, 69, 1, 198, 9641, 796, 366, 16, 13, 21, 13, 2548, 10, 15, 1, 198, 198, 30109, 10378, 82, 13, 8019, 20867, 41907, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 41, 3069, 36918, 11799, 1600, 366, 25835, 25404, 1600, 366, 46, 1130, 62, 73, 297, 1600, 366, 47, 10025, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 65, 43234, 21101, 6659, 891, 18, 5036, 21, 68, 3695, 19881, 21, 558, 68, 25644, 43444, 4521, 16344, 21, 3609, 405, 66, 1, 198, 12303, 312, 796, 366, 69, 1983, 69, 21, 68, 2718, 12, 20, 67, 17, 65, 12, 4349, 7252, 12, 39277, 69, 12, 65, 27800, 69, 17, 15630, 18, 65, 22, 64, 1, 198, 9641, 796, 366, 16, 13, 18, 13, 22, 10, 16, 1, 198, 198, 30109, 10378, 82, 13, 77, 456, 29281, 17, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 25835, 25404, 8973, 198, 12303, 312, 796, 366, 23, 68, 25764, 18654, 12, 30610, 23, 12, 20, 29626, 12, 64, 2998, 66, 12, 22709, 330, 67, 17, 64, 1878, 23, 67, 1, 198, 9641, 796, 366, 16, 13, 3901, 13, 15, 10, 16, 1, 198, 198, 30109, 10378, 82, 13, 79, 22, 13344, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 25835, 25404, 8973, 198, 12303, 312, 796, 366, 18, 69, 1129, 68, 24, 2091, 12, 2091, 67, 23, 12, 4310, 65, 18, 12, 7252, 397, 12, 17457, 4349, 940, 66, 18, 65, 22, 64, 15, 1, 198, 9641, 796, 366, 1433, 13, 17, 13, 16, 10, 16, 1, 198, 198, 30109, 10378, 82, 13, 87, 18897, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 41, 3069, 36918, 11799, 1600, 366, 25835, 25404, 1600, 366, 47, 10025, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 19, 5036, 64, 36993, 65, 4531, 68, 21, 721, 1120, 2231, 6052, 20964, 19881, 23, 65, 24, 3459, 65, 17, 66, 28694, 1828, 65, 17, 1, 198, 12303, 312, 796, 366, 1065, 2154, 276, 69, 20, 12, 69, 17, 69, 24, 12, 4309, 67, 17, 12, 5607, 68, 24, 12, 397, 405, 65, 20, 67, 15, 24693, 64, 1, 198, 9641, 796, 366, 1238, 2481, 13, 20, 13, 20, 10, 15, 1, 198, 198, 30109, 10378, 82, 13, 87, 22980, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 41, 3069, 36918, 11799, 1600, 366, 25835, 25404, 1600, 366, 47, 10025, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 1453, 20, 3134, 64, 27192, 66, 344, 44215, 2154, 67, 3324, 324, 18, 64, 3559, 68, 24, 2999, 1507, 68, 29769, 2718, 64, 24, 1, 198, 12303, 312, 796, 366, 7568, 7252, 2931, 20, 69, 12, 1821, 3901, 12, 20, 67, 10210, 12, 6052, 1129, 12, 17, 36434, 67, 23, 34251, 65, 4304, 1, 198, 9641, 796, 366, 18, 13, 20, 13, 15, 10, 15, 1, 198, 198, 30109, 10378, 82, 13, 87, 32812, 11321, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 41, 3069, 36918, 11799, 1600, 366, 25835, 25404, 1600, 366, 47, 10025, 1600, 366, 25309, 1044, 62, 73, 297, 1600, 366, 25309, 1044, 62, 11235, 4668, 82, 62, 73, 297, 1600, 366, 55, 2398, 62, 8019, 87, 21101, 62, 73, 297, 1600, 366, 55, 2398, 62, 87, 2539, 3526, 62, 11250, 62, 73, 297, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 68, 344, 22370, 486, 4524, 22186, 11848, 3132, 2934, 16, 64, 5066, 1350, 64, 18, 64, 3901, 3609, 16, 7252, 49051, 65, 21, 1, 198, 12303, 312, 796, 366, 67, 23, 21855, 3104, 67, 15, 12, 1065, 64, 18, 12, 20, 12993, 67, 12, 64, 5332, 64, 12, 67, 2920, 36809, 65, 21652, 16344, 1, 198, 9641, 796, 366, 15, 13, 24, 13, 16, 10, 20, 1, 198, 37811, 198, 198, 2, 2343, 243, 242, 28670, 22880, 94, 12440, 1502, 25, 198, 2, 2343, 243, 253, 7280, 16, 1765, 2682, 69, 940, 12, 65, 19, 65, 18, 12, 1157, 721, 12, 1129, 69, 20, 12, 66, 22, 69, 2075, 15711, 67, 31020, 198, 2, 2343, 243, 253, 7280, 21, 66, 19, 65, 18, 19881, 22, 12, 2075, 68, 24, 12, 19, 67, 21, 69, 12, 24, 22515, 12, 2996, 69, 15630, 5332, 1507, 1507, 69, 198, 2, 2343, 243, 253, 7280, 1983, 3559, 21652, 69, 12, 65, 15, 67, 22, 12, 19, 22186, 12, 23, 68, 23, 68, 12, 64, 16, 19881, 12993, 1485, 1959, 2682, 198, 2, 2343, 243, 254, 28670, 4089, 17, 36434, 1495, 12, 1415, 1415, 12, 2857, 4531, 12, 15630, 1433, 12, 32118, 397, 1959, 65, 2231, 1415, 198, 2, 2343, 243, 253, 7280, 22, 68, 4310, 66, 5999, 66, 12, 1329, 22, 12, 34137, 69, 12, 23, 48194, 12, 19, 64, 2931, 3980, 7012, 4761, 940, 198, 2, 2343, 243, 253, 7280, 66, 4531, 3324, 20964, 12, 1415, 2931, 12, 19, 1765, 16, 12, 3077, 68, 12, 19880, 2623, 16344, 4761, 1415, 65, 198, 2, 2343, 243, 253, 7280, 1264, 21855, 46636, 12, 2670, 65, 16, 12, 2857, 9945, 12, 23, 12501, 12, 31751, 2154, 2414, 5333, 67, 6888, 198, 2, 2343, 243, 253, 7280, 68, 1065, 68, 2682, 66, 22, 12, 3829, 9945, 12, 19, 69, 3132, 12, 23, 48156, 12, 344, 17, 64, 2670, 4134, 40064, 198, 2, 2343, 243, 253, 7280, 16, 46071, 5999, 2414, 12, 65, 4761, 68, 12, 19, 12762, 12, 65, 2075, 64, 12, 6469, 67, 19, 67, 3510, 27037, 2682, 198, 2, 2343, 243, 254, 28670, 22, 32220, 66, 33319, 12, 4349, 65, 22, 12, 32531, 65, 12, 64, 4059, 12, 671, 66, 15, 64, 2682, 65, 46712, 198, 2, 2343, 243, 254, 28670, 65, 26200, 2548, 67, 15, 12, 23, 37710, 12, 19, 69, 16, 68, 12, 64, 18, 16072, 12, 64, 19, 1350, 46957, 65, 22, 15630, 22, 198, 2, 2343, 243, 253, 7280, 721, 2075, 69, 891, 65, 12, 1507, 67, 16, 12, 19, 330, 22, 12, 65, 15, 66, 16, 12, 15, 67, 18, 66, 4869, 3609, 12952, 20, 198, 2, 2343, 243, 253, 7280, 2327, 2816, 1821, 721, 12, 9945, 24, 65, 12, 19, 344, 20, 12, 64, 20, 67, 17, 12, 15, 66, 940, 38073, 6814, 24, 2682, 198, 2, 2343, 243, 253, 7280, 2934, 2598, 65, 15, 66, 22, 12, 1453, 68, 19, 12, 2920, 276, 12, 24, 18897, 12, 1821, 64, 20, 29626, 68, 22, 67, 21, 66, 198, 2, 2343, 243, 253, 7280, 21, 69, 2998, 18, 69, 1959, 12, 2670, 65, 20, 12, 37747, 68, 12, 65, 29173, 12, 17885, 4349, 66, 6659, 397, 4051, 198, 2, 2343, 243, 253, 7280, 2816, 405, 64, 30206, 12, 2780, 16344, 12, 19, 24403, 12, 64, 2154, 69, 12, 20, 21526, 1495, 66, 20, 18376, 64, 198, 2, 2343, 243, 253, 7280, 68, 15, 64, 23, 67, 23, 18213, 12, 68, 20, 17457, 12, 2780, 6888, 12, 65, 2598, 69, 12, 19, 65, 2791, 1495, 27057, 64, 1558, 198, 2, 2343, 243, 253, 7280, 535, 2624, 66, 17, 64, 20, 12, 67, 26514, 12, 19, 64, 3324, 12, 23, 32883, 12, 65, 18, 4134, 5066, 13227, 18, 65, 198, 2, 2343, 243, 253, 7280, 8269, 12, 2388, 12, 2388, 12, 2388, 12, 8269, 18005, 198, 2, 2343, 243, 253, 7280, 8269, 12, 2388, 12, 2388, 12, 2388, 12, 8269, 34215, 198 ]
1.884621
26,192
<reponame>JuliaPackageMirrors/CUDNN.jl # Julia wrapper for header: /mnt/ai/home/dyuret/src/cudnn/4.0.4/include/cudnn.h # Automatically generated using Clang.jl wrap_c, version 0.0.0 function cudnnGetVersion() ccall((:cudnnGetVersion,libcudnn),Cint,()) end function cudnnGetErrorString(status) ccall((:cudnnGetErrorString,libcudnn),Ptr{UInt8},(cudnnStatus_t,),status) end function cudnnCreate(handle) ccall((:cudnnCreate,libcudnn),cudnnStatus_t,(Ptr{cudnnHandle_t},),handle) end function cudnnDestroy(handle) ccall((:cudnnDestroy,libcudnn),cudnnStatus_t,(cudnnHandle_t,),handle) end function cudnnSetStream(handle,streamId) ccall((:cudnnSetStream,libcudnn),cudnnStatus_t,(cudnnHandle_t,Cint),handle,streamId) end function cudnnGetStream(handle,streamId) ccall((:cudnnGetStream,libcudnn),cudnnStatus_t,(cudnnHandle_t,Ptr{Cint}),handle,streamId) end function cudnnCreateTensorDescriptor(tensorDesc) ccall((:cudnnCreateTensorDescriptor,libcudnn),cudnnStatus_t,(Ptr{cudnnTensorDescriptor_t},),tensorDesc) end function cudnnSetTensor4dDescriptor(tensorDesc,format,dataType,n,c,h,w) ccall((:cudnnSetTensor4dDescriptor,libcudnn),cudnnStatus_t,(cudnnTensorDescriptor_t,cudnnTensorFormat_t,cudnnDataType_t,Cint,Cint,Cint,Cint),tensorDesc,format,dataType,n,c,h,w) end function cudnnSetTensor4dDescriptorEx(tensorDesc,dataType,n,c,h,w,nStride,cStride,hStride,wStride) ccall((:cudnnSetTensor4dDescriptorEx,libcudnn),cudnnStatus_t,(cudnnTensorDescriptor_t,cudnnDataType_t,Cint,Cint,Cint,Cint,Cint,Cint,Cint,Cint),tensorDesc,dataType,n,c,h,w,nStride,cStride,hStride,wStride) end function cudnnGetTensor4dDescriptor(tensorDesc,dataType,n,c,h,w,nStride,cStride,hStride,wStride) ccall((:cudnnGetTensor4dDescriptor,libcudnn),cudnnStatus_t,(cudnnTensorDescriptor_t,Ptr{cudnnDataType_t},Ptr{Cint},Ptr{Cint},Ptr{Cint},Ptr{Cint},Ptr{Cint},Ptr{Cint},Ptr{Cint},Ptr{Cint}),tensorDesc,dataType,n,c,h,w,nStride,cStride,hStride,wStride) end function cudnnSetTensorNdDescriptor(tensorDesc,dataType,nbDims,dimA,strideA) ccall((:cudnnSetTensorNdDescriptor,libcudnn),cudnnStatus_t,(cudnnTensorDescriptor_t,cudnnDataType_t,Cint,Ptr{Cint},Ptr{Cint}),tensorDesc,dataType,nbDims,dimA,strideA) end function cudnnGetTensorNdDescriptor(tensorDesc,nbDimsRequested,dataType,nbDims,dimA,strideA) ccall((:cudnnGetTensorNdDescriptor,libcudnn),cudnnStatus_t,(cudnnTensorDescriptor_t,Cint,Ptr{cudnnDataType_t},Ptr{Cint},Ptr{Cint},Ptr{Cint}),tensorDesc,nbDimsRequested,dataType,nbDims,dimA,strideA) end function cudnnDestroyTensorDescriptor(tensorDesc) ccall((:cudnnDestroyTensorDescriptor,libcudnn),cudnnStatus_t,(cudnnTensorDescriptor_t,),tensorDesc) end function cudnnTransformTensor(handle,alpha,xDesc,x,beta,yDesc,y) ccall((:cudnnTransformTensor,libcudnn),cudnnStatus_t,(cudnnHandle_t,Ptr{Void},cudnnTensorDescriptor_t,Ptr{Void},Ptr{Void},cudnnTensorDescriptor_t,Ptr{Void}),handle,alpha,xDesc,x,beta,yDesc,y) end function cudnnAddTensor(handle,alpha,bDesc,b,beta,yDesc,y) ccall((:cudnnAddTensor,libcudnn),cudnnStatus_t,(cudnnHandle_t,Ptr{Void},cudnnTensorDescriptor_t,Ptr{Void},Ptr{Void},cudnnTensorDescriptor_t,Ptr{Void}),handle,alpha,bDesc,b,beta,yDesc,y) end function cudnnAddTensor_v3(handle,alpha,bDesc,b,beta,yDesc,y) ccall((:cudnnAddTensor_v3,libcudnn),cudnnStatus_t,(cudnnHandle_t,Ptr{Void},cudnnTensorDescriptor_t,Ptr{Void},Ptr{Void},cudnnTensorDescriptor_t,Ptr{Void}),handle,alpha,bDesc,b,beta,yDesc,y) end function cudnnSetTensor(handle,yDesc,y,valuePtr) ccall((:cudnnSetTensor,libcudnn),cudnnStatus_t,(cudnnHandle_t,cudnnTensorDescriptor_t,Ptr{Void},Ptr{Void}),handle,yDesc,y,valuePtr) end function cudnnScaleTensor(handle,yDesc,y,alpha) ccall((:cudnnScaleTensor,libcudnn),cudnnStatus_t,(cudnnHandle_t,cudnnTensorDescriptor_t,Ptr{Void},Ptr{Void}),handle,yDesc,y,alpha) end function cudnnCreateFilterDescriptor(filterDesc) ccall((:cudnnCreateFilterDescriptor,libcudnn),cudnnStatus_t,(Ptr{cudnnFilterDescriptor_t},),filterDesc) end function cudnnSetFilter4dDescriptor(filterDesc,dataType,k,c,h,w) ccall((:cudnnSetFilter4dDescriptor,libcudnn),cudnnStatus_t,(cudnnFilterDescriptor_t,cudnnDataType_t,Cint,Cint,Cint,Cint),filterDesc,dataType,k,c,h,w) end function cudnnSetFilter4dDescriptor_v4(filterDesc,dataType,format,k,c,h,w) ccall((:cudnnSetFilter4dDescriptor_v4,libcudnn),cudnnStatus_t,(cudnnFilterDescriptor_t,cudnnDataType_t,cudnnTensorFormat_t,Cint,Cint,Cint,Cint),filterDesc,dataType,format,k,c,h,w) end function cudnnGetFilter4dDescriptor(filterDesc,dataType,k,c,h,w) ccall((:cudnnGetFilter4dDescriptor,libcudnn),cudnnStatus_t,(cudnnFilterDescriptor_t,Ptr{cudnnDataType_t},Ptr{Cint},Ptr{Cint},Ptr{Cint},Ptr{Cint}),filterDesc,dataType,k,c,h,w) end function cudnnGetFilter4dDescriptor_v4(filterDesc,dataType,format,k,c,h,w) ccall((:cudnnGetFilter4dDescriptor_v4,libcudnn),cudnnStatus_t,(cudnnFilterDescriptor_t,Ptr{cudnnDataType_t},Ptr{cudnnTensorFormat_t},Ptr{Cint},Ptr{Cint},Ptr{Cint},Ptr{Cint}),filterDesc,dataType,format,k,c,h,w) end function cudnnSetFilterNdDescriptor(filterDesc,dataType,nbDims,filterDimA) ccall((:cudnnSetFilterNdDescriptor,libcudnn),cudnnStatus_t,(cudnnFilterDescriptor_t,cudnnDataType_t,Cint,Ptr{Cint}),filterDesc,dataType,nbDims,filterDimA) end function cudnnSetFilterNdDescriptor_v4(filterDesc,dataType,format,nbDims,filterDimA) ccall((:cudnnSetFilterNdDescriptor_v4,libcudnn),cudnnStatus_t,(cudnnFilterDescriptor_t,cudnnDataType_t,cudnnTensorFormat_t,Cint,Ptr{Cint}),filterDesc,dataType,format,nbDims,filterDimA) end function cudnnGetFilterNdDescriptor(filterDesc,nbDimsRequested,dataType,nbDims,filterDimA) ccall((:cudnnGetFilterNdDescriptor,libcudnn),cudnnStatus_t,(cudnnFilterDescriptor_t,Cint,Ptr{cudnnDataType_t},Ptr{Cint},Ptr{Cint}),filterDesc,nbDimsRequested,dataType,nbDims,filterDimA) end function cudnnGetFilterNdDescriptor_v4(filterDesc,nbDimsRequested,dataType,format,nbDims,filterDimA) ccall((:cudnnGetFilterNdDescriptor_v4,libcudnn),cudnnStatus_t,(cudnnFilterDescriptor_t,Cint,Ptr{cudnnDataType_t},Ptr{cudnnTensorFormat_t},Ptr{Cint},Ptr{Cint}),filterDesc,nbDimsRequested,dataType,format,nbDims,filterDimA) end function cudnnDestroyFilterDescriptor(filterDesc) ccall((:cudnnDestroyFilterDescriptor,libcudnn),cudnnStatus_t,(cudnnFilterDescriptor_t,),filterDesc) end function cudnnCreateConvolutionDescriptor(convDesc) ccall((:cudnnCreateConvolutionDescriptor,libcudnn),cudnnStatus_t,(Ptr{cudnnConvolutionDescriptor_t},),convDesc) end function cudnnSetConvolution2dDescriptor(convDesc,pad_h,pad_w,u,v,upscalex,upscaley,mode) ccall((:cudnnSetConvolution2dDescriptor,libcudnn),cudnnStatus_t,(cudnnConvolutionDescriptor_t,Cint,Cint,Cint,Cint,Cint,Cint,cudnnConvolutionMode_t),convDesc,pad_h,pad_w,u,v,upscalex,upscaley,mode) end function cudnnGetConvolution2dDescriptor(convDesc,pad_h,pad_w,u,v,upscalex,upscaley,mode) ccall((:cudnnGetConvolution2dDescriptor,libcudnn),cudnnStatus_t,(cudnnConvolutionDescriptor_t,Ptr{Cint},Ptr{Cint},Ptr{Cint},Ptr{Cint},Ptr{Cint},Ptr{Cint},Ptr{cudnnConvolutionMode_t}),convDesc,pad_h,pad_w,u,v,upscalex,upscaley,mode) end function cudnnGetConvolution2dForwardOutputDim(convDesc,inputTensorDesc,filterDesc,n,c,h,w) ccall((:cudnnGetConvolution2dForwardOutputDim,libcudnn),cudnnStatus_t,(cudnnConvolutionDescriptor_t,cudnnTensorDescriptor_t,cudnnFilterDescriptor_t,Ptr{Cint},Ptr{Cint},Ptr{Cint},Ptr{Cint}),convDesc,inputTensorDesc,filterDesc,n,c,h,w) end function cudnnSetConvolutionNdDescriptor(convDesc,arrayLength,padA,filterStrideA,upscaleA,mode,dataType) ccall((:cudnnSetConvolutionNdDescriptor,libcudnn),cudnnStatus_t,(cudnnConvolutionDescriptor_t,Cint,Ptr{Cint},Ptr{Cint},Ptr{Cint},cudnnConvolutionMode_t,cudnnDataType_t),convDesc,arrayLength,padA,filterStrideA,upscaleA,mode,dataType) end function cudnnGetConvolutionNdDescriptor(convDesc,arrayLengthRequested,arrayLength,padA,strideA,upscaleA,mode,dataType) ccall((:cudnnGetConvolutionNdDescriptor,libcudnn),cudnnStatus_t,(cudnnConvolutionDescriptor_t,Cint,Ptr{Cint},Ptr{Cint},Ptr{Cint},Ptr{Cint},Ptr{cudnnConvolutionMode_t},Ptr{cudnnDataType_t}),convDesc,arrayLengthRequested,arrayLength,padA,strideA,upscaleA,mode,dataType) end function cudnnSetConvolutionNdDescriptor_v3(convDesc,arrayLength,padA,filterStrideA,upscaleA,mode,dataType) ccall((:cudnnSetConvolutionNdDescriptor_v3,libcudnn),cudnnStatus_t,(cudnnConvolutionDescriptor_t,Cint,Ptr{Cint},Ptr{Cint},Ptr{Cint},cudnnConvolutionMode_t,cudnnDataType_t),convDesc,arrayLength,padA,filterStrideA,upscaleA,mode,dataType) end function cudnnGetConvolutionNdDescriptor_v3(convDesc,arrayLengthRequested,arrayLength,padA,strideA,upscaleA,mode,dataType) ccall((:cudnnGetConvolutionNdDescriptor_v3,libcudnn),cudnnStatus_t,(cudnnConvolutionDescriptor_t,Cint,Ptr{Cint},Ptr{Cint},Ptr{Cint},Ptr{Cint},Ptr{cudnnConvolutionMode_t},Ptr{cudnnDataType_t}),convDesc,arrayLengthRequested,arrayLength,padA,strideA,upscaleA,mode,dataType) end function cudnnGetConvolutionNdForwardOutputDim(convDesc,inputTensorDesc,filterDesc,nbDims,tensorOuputDimA) ccall((:cudnnGetConvolutionNdForwardOutputDim,libcudnn),cudnnStatus_t,(cudnnConvolutionDescriptor_t,cudnnTensorDescriptor_t,cudnnFilterDescriptor_t,Cint,Ptr{Cint}),convDesc,inputTensorDesc,filterDesc,nbDims,tensorOuputDimA) end function cudnnDestroyConvolutionDescriptor(convDesc) ccall((:cudnnDestroyConvolutionDescriptor,libcudnn),cudnnStatus_t,(cudnnConvolutionDescriptor_t,),convDesc) end function cudnnFindConvolutionForwardAlgorithm(handle,xDesc,wDesc,convDesc,yDesc,requestedAlgoCount,returnedAlgoCount,perfResults) ccall((:cudnnFindConvolutionForwardAlgorithm,libcudnn),cudnnStatus_t,(cudnnHandle_t,cudnnTensorDescriptor_t,cudnnFilterDescriptor_t,cudnnConvolutionDescriptor_t,cudnnTensorDescriptor_t,Cint,Ptr{Cint},Ptr{cudnnConvolutionFwdAlgoPerf_t}),handle,xDesc,wDesc,convDesc,yDesc,requestedAlgoCount,returnedAlgoCount,perfResults) end function cudnnGetConvolutionForwardAlgorithm(handle,xDesc,wDesc,convDesc,yDesc,preference,memoryLimitInBytes,algo) ccall((:cudnnGetConvolutionForwardAlgorithm,libcudnn),cudnnStatus_t,(cudnnHandle_t,cudnnTensorDescriptor_t,cudnnFilterDescriptor_t,cudnnConvolutionDescriptor_t,cudnnTensorDescriptor_t,cudnnConvolutionFwdPreference_t,Cint,Ptr{cudnnConvolutionFwdAlgo_t}),handle,xDesc,wDesc,convDesc,yDesc,preference,memoryLimitInBytes,algo) end function cudnnGetConvolutionForwardWorkspaceSize(handle,xDesc,wDesc,convDesc,yDesc,algo,sizeInBytes) ccall((:cudnnGetConvolutionForwardWorkspaceSize,libcudnn),cudnnStatus_t,(cudnnHandle_t,cudnnTensorDescriptor_t,cudnnFilterDescriptor_t,cudnnConvolutionDescriptor_t,cudnnTensorDescriptor_t,cudnnConvolutionFwdAlgo_t,Ptr{Cint}),handle,xDesc,wDesc,convDesc,yDesc,algo,sizeInBytes) end function cudnnConvolutionForward(handle,alpha,xDesc,x,wDesc,w,convDesc,algo,workSpace,workSpaceSizeInBytes,beta,yDesc,y) ccall((:cudnnConvolutionForward,libcudnn),cudnnStatus_t,(cudnnHandle_t,Ptr{Void},cudnnTensorDescriptor_t,Ptr{Void},cudnnFilterDescriptor_t,Ptr{Void},cudnnConvolutionDescriptor_t,cudnnConvolutionFwdAlgo_t,Ptr{Void},Cint,Ptr{Void},cudnnTensorDescriptor_t,Ptr{Void}),handle,alpha,xDesc,x,wDesc,w,convDesc,algo,workSpace,workSpaceSizeInBytes,beta,yDesc,y) end function cudnnConvolutionBackwardBias(handle,alpha,dyDesc,dy,beta,dbDesc,db) ccall((:cudnnConvolutionBackwardBias,libcudnn),cudnnStatus_t,(cudnnHandle_t,Ptr{Void},cudnnTensorDescriptor_t,Ptr{Void},Ptr{Void},cudnnTensorDescriptor_t,Ptr{Void}),handle,alpha,dyDesc,dy,beta,dbDesc,db) end function cudnnFindConvolutionBackwardFilterAlgorithm(handle,xDesc,dyDesc,convDesc,dwDesc,requestedAlgoCount,returnedAlgoCount,perfResults) ccall((:cudnnFindConvolutionBackwardFilterAlgorithm,libcudnn),cudnnStatus_t,(cudnnHandle_t,cudnnTensorDescriptor_t,cudnnTensorDescriptor_t,cudnnConvolutionDescriptor_t,cudnnFilterDescriptor_t,Cint,Ptr{Cint},Ptr{cudnnConvolutionBwdFilterAlgoPerf_t}),handle,xDesc,dyDesc,convDesc,dwDesc,requestedAlgoCount,returnedAlgoCount,perfResults) end function cudnnGetConvolutionBackwardFilterAlgorithm(handle,xDesc,dyDesc,convDesc,dwDesc,preference,memoryLimitInBytes,algo) ccall((:cudnnGetConvolutionBackwardFilterAlgorithm,libcudnn),cudnnStatus_t,(cudnnHandle_t,cudnnTensorDescriptor_t,cudnnTensorDescriptor_t,cudnnConvolutionDescriptor_t,cudnnFilterDescriptor_t,cudnnConvolutionBwdFilterPreference_t,Cint,Ptr{cudnnConvolutionBwdFilterAlgo_t}),handle,xDesc,dyDesc,convDesc,dwDesc,preference,memoryLimitInBytes,algo) end function cudnnGetConvolutionBackwardFilterWorkspaceSize(handle,xDesc,dyDesc,convDesc,gradDesc,algo,sizeInBytes) ccall((:cudnnGetConvolutionBackwardFilterWorkspaceSize,libcudnn),cudnnStatus_t,(cudnnHandle_t,cudnnTensorDescriptor_t,cudnnTensorDescriptor_t,cudnnConvolutionDescriptor_t,cudnnFilterDescriptor_t,cudnnConvolutionBwdFilterAlgo_t,Ptr{Cint}),handle,xDesc,dyDesc,convDesc,gradDesc,algo,sizeInBytes) end function cudnnConvolutionBackwardFilter(handle,alpha,xDesc,x,dyDesc,dy,convDesc,algo,workSpace,workSpaceSizeInBytes,beta,dwDesc,dw) ccall((:cudnnConvolutionBackwardFilter,libcudnn),cudnnStatus_t,(cudnnHandle_t,Ptr{Void},cudnnTensorDescriptor_t,Ptr{Void},cudnnTensorDescriptor_t,Ptr{Void},cudnnConvolutionDescriptor_t,cudnnConvolutionBwdFilterAlgo_t,Ptr{Void},Cint,Ptr{Void},cudnnFilterDescriptor_t,Ptr{Void}),handle,alpha,xDesc,x,dyDesc,dy,convDesc,algo,workSpace,workSpaceSizeInBytes,beta,dwDesc,dw) end function cudnnConvolutionBackwardFilter_v3(handle,alpha,xDesc,x,dyDesc,dy,convDesc,algo,workSpace,workSpaceSizeInBytes,beta,dwDesc,dw) ccall((:cudnnConvolutionBackwardFilter_v3,libcudnn),cudnnStatus_t,(cudnnHandle_t,Ptr{Void},cudnnTensorDescriptor_t,Ptr{Void},cudnnTensorDescriptor_t,Ptr{Void},cudnnConvolutionDescriptor_t,cudnnConvolutionBwdFilterAlgo_t,Ptr{Void},Cint,Ptr{Void},cudnnFilterDescriptor_t,Ptr{Void}),handle,alpha,xDesc,x,dyDesc,dy,convDesc,algo,workSpace,workSpaceSizeInBytes,beta,dwDesc,dw) end function cudnnFindConvolutionBackwardDataAlgorithm(handle,wDesc,dyDesc,convDesc,dxDesc,requestedAlgoCount,returnedAlgoCount,perfResults) ccall((:cudnnFindConvolutionBackwardDataAlgorithm,libcudnn),cudnnStatus_t,(cudnnHandle_t,cudnnFilterDescriptor_t,cudnnTensorDescriptor_t,cudnnConvolutionDescriptor_t,cudnnTensorDescriptor_t,Cint,Ptr{Cint},Ptr{cudnnConvolutionBwdDataAlgoPerf_t}),handle,wDesc,dyDesc,convDesc,dxDesc,requestedAlgoCount,returnedAlgoCount,perfResults) end function cudnnGetConvolutionBackwardDataAlgorithm(handle,wDesc,dyDesc,convDesc,dxDesc,preference,memoryLimitInBytes,algo) ccall((:cudnnGetConvolutionBackwardDataAlgorithm,libcudnn),cudnnStatus_t,(cudnnHandle_t,cudnnFilterDescriptor_t,cudnnTensorDescriptor_t,cudnnConvolutionDescriptor_t,cudnnTensorDescriptor_t,cudnnConvolutionBwdDataPreference_t,Cint,Ptr{cudnnConvolutionBwdDataAlgo_t}),handle,wDesc,dyDesc,convDesc,dxDesc,preference,memoryLimitInBytes,algo) end function cudnnGetConvolutionBackwardDataWorkspaceSize(handle,wDesc,dyDesc,convDesc,dxDesc,algo,sizeInBytes) ccall((:cudnnGetConvolutionBackwardDataWorkspaceSize,libcudnn),cudnnStatus_t,(cudnnHandle_t,cudnnFilterDescriptor_t,cudnnTensorDescriptor_t,cudnnConvolutionDescriptor_t,cudnnTensorDescriptor_t,cudnnConvolutionBwdDataAlgo_t,Ptr{Cint}),handle,wDesc,dyDesc,convDesc,dxDesc,algo,sizeInBytes) end function cudnnConvolutionBackwardData(handle,alpha,wDesc,w,dyDesc,dy,convDesc,algo,workSpace,workSpaceSizeInBytes,beta,dxDesc,dx) ccall((:cudnnConvolutionBackwardData,libcudnn),cudnnStatus_t,(cudnnHandle_t,Ptr{Void},cudnnFilterDescriptor_t,Ptr{Void},cudnnTensorDescriptor_t,Ptr{Void},cudnnConvolutionDescriptor_t,cudnnConvolutionBwdDataAlgo_t,Ptr{Void},Cint,Ptr{Void},cudnnTensorDescriptor_t,Ptr{Void}),handle,alpha,wDesc,w,dyDesc,dy,convDesc,algo,workSpace,workSpaceSizeInBytes,beta,dxDesc,dx) end function cudnnConvolutionBackwardData_v3(handle,alpha,wDesc,w,dyDesc,dy,convDesc,algo,workSpace,workSpaceSizeInBytes,beta,dxDesc,dx) ccall((:cudnnConvolutionBackwardData_v3,libcudnn),cudnnStatus_t,(cudnnHandle_t,Ptr{Void},cudnnFilterDescriptor_t,Ptr{Void},cudnnTensorDescriptor_t,Ptr{Void},cudnnConvolutionDescriptor_t,cudnnConvolutionBwdDataAlgo_t,Ptr{Void},Cint,Ptr{Void},cudnnTensorDescriptor_t,Ptr{Void}),handle,alpha,wDesc,w,dyDesc,dy,convDesc,algo,workSpace,workSpaceSizeInBytes,beta,dxDesc,dx) end function cudnnIm2Col(handle,xDesc,x,wDesc,convDesc,colBuffer) ccall((:cudnnIm2Col,libcudnn),cudnnStatus_t,(cudnnHandle_t,cudnnTensorDescriptor_t,Ptr{Void},cudnnFilterDescriptor_t,cudnnConvolutionDescriptor_t,Ptr{Void}),handle,xDesc,x,wDesc,convDesc,colBuffer) end function cudnnSoftmaxForward(handle,algo,mode,alpha,xDesc,x,beta,yDesc,y) ccall((:cudnnSoftmaxForward,libcudnn),cudnnStatus_t,(cudnnHandle_t,cudnnSoftmaxAlgorithm_t,cudnnSoftmaxMode_t,Ptr{Void},cudnnTensorDescriptor_t,Ptr{Void},Ptr{Void},cudnnTensorDescriptor_t,Ptr{Void}),handle,algo,mode,alpha,xDesc,x,beta,yDesc,y) end function cudnnSoftmaxBackward(handle,algo,mode,alpha,yDesc,y,dyDesc,dy,beta,dxDesc,dx) ccall((:cudnnSoftmaxBackward,libcudnn),cudnnStatus_t,(cudnnHandle_t,cudnnSoftmaxAlgorithm_t,cudnnSoftmaxMode_t,Ptr{Void},cudnnTensorDescriptor_t,Ptr{Void},cudnnTensorDescriptor_t,Ptr{Void},Ptr{Void},cudnnTensorDescriptor_t,Ptr{Void}),handle,algo,mode,alpha,yDesc,y,dyDesc,dy,beta,dxDesc,dx) end function cudnnCreatePoolingDescriptor(poolingDesc) ccall((:cudnnCreatePoolingDescriptor,libcudnn),cudnnStatus_t,(Ptr{cudnnPoolingDescriptor_t},),poolingDesc) end function cudnnSetPooling2dDescriptor(poolingDesc,mode,windowHeight,windowWidth,verticalPadding,horizontalPadding,verticalStride,horizontalStride) ccall((:cudnnSetPooling2dDescriptor,libcudnn),cudnnStatus_t,(cudnnPoolingDescriptor_t,cudnnPoolingMode_t,Cint,Cint,Cint,Cint,Cint,Cint),poolingDesc,mode,windowHeight,windowWidth,verticalPadding,horizontalPadding,verticalStride,horizontalStride) end function cudnnSetPooling2dDescriptor_v4(poolingDesc,mode,maxpoolingNanOpt,windowHeight,windowWidth,verticalPadding,horizontalPadding,verticalStride,horizontalStride) ccall((:cudnnSetPooling2dDescriptor_v4,libcudnn),cudnnStatus_t,(cudnnPoolingDescriptor_t,cudnnPoolingMode_t,cudnnNanPropagation_t,Cint,Cint,Cint,Cint,Cint,Cint),poolingDesc,mode,maxpoolingNanOpt,windowHeight,windowWidth,verticalPadding,horizontalPadding,verticalStride,horizontalStride) end function cudnnGetPooling2dDescriptor(poolingDesc,mode,windowHeight,windowWidth,verticalPadding,horizontalPadding,verticalStride,horizontalStride) ccall((:cudnnGetPooling2dDescriptor,libcudnn),cudnnStatus_t,(cudnnPoolingDescriptor_t,Ptr{cudnnPoolingMode_t},Ptr{Cint},Ptr{Cint},Ptr{Cint},Ptr{Cint},Ptr{Cint},Ptr{Cint}),poolingDesc,mode,windowHeight,windowWidth,verticalPadding,horizontalPadding,verticalStride,horizontalStride) end function cudnnGetPooling2dDescriptor_v4(poolingDesc,mode,maxpoolingNanOpt,windowHeight,windowWidth,verticalPadding,horizontalPadding,verticalStride,horizontalStride) ccall((:cudnnGetPooling2dDescriptor_v4,libcudnn),cudnnStatus_t,(cudnnPoolingDescriptor_t,Ptr{cudnnPoolingMode_t},Ptr{cudnnNanPropagation_t},Ptr{Cint},Ptr{Cint},Ptr{Cint},Ptr{Cint},Ptr{Cint},Ptr{Cint}),poolingDesc,mode,maxpoolingNanOpt,windowHeight,windowWidth,verticalPadding,horizontalPadding,verticalStride,horizontalStride) end function cudnnSetPoolingNdDescriptor(poolingDesc,mode,nbDims,windowDimA,paddingA,strideA) ccall((:cudnnSetPoolingNdDescriptor,libcudnn),cudnnStatus_t,(cudnnPoolingDescriptor_t,cudnnPoolingMode_t,Cint,Ptr{Cint},Ptr{Cint},Ptr{Cint}),poolingDesc,mode,nbDims,windowDimA,paddingA,strideA) end function cudnnSetPoolingNdDescriptor_v4(poolingDesc,mode,maxpoolingNanOpt,nbDims,windowDimA,paddingA,strideA) ccall((:cudnnSetPoolingNdDescriptor_v4,libcudnn),cudnnStatus_t,(cudnnPoolingDescriptor_t,cudnnPoolingMode_t,cudnnNanPropagation_t,Cint,Ptr{Cint},Ptr{Cint},Ptr{Cint}),poolingDesc,mode,maxpoolingNanOpt,nbDims,windowDimA,paddingA,strideA) end function cudnnGetPoolingNdDescriptor(poolingDesc,nbDimsRequested,mode,nbDims,windowDimA,paddingA,strideA) ccall((:cudnnGetPoolingNdDescriptor,libcudnn),cudnnStatus_t,(cudnnPoolingDescriptor_t,Cint,Ptr{cudnnPoolingMode_t},Ptr{Cint},Ptr{Cint},Ptr{Cint},Ptr{Cint}),poolingDesc,nbDimsRequested,mode,nbDims,windowDimA,paddingA,strideA) end function cudnnGetPoolingNdDescriptor_v4(poolingDesc,nbDimsRequested,mode,maxpoolingNanOpt,nbDims,windowDimA,paddingA,strideA) ccall((:cudnnGetPoolingNdDescriptor_v4,libcudnn),cudnnStatus_t,(cudnnPoolingDescriptor_t,Cint,Ptr{cudnnPoolingMode_t},Ptr{cudnnNanPropagation_t},Ptr{Cint},Ptr{Cint},Ptr{Cint},Ptr{Cint}),poolingDesc,nbDimsRequested,mode,maxpoolingNanOpt,nbDims,windowDimA,paddingA,strideA) end function cudnnGetPoolingNdForwardOutputDim(poolingDesc,inputTensorDesc,nbDims,outputTensorDimA) ccall((:cudnnGetPoolingNdForwardOutputDim,libcudnn),cudnnStatus_t,(cudnnPoolingDescriptor_t,cudnnTensorDescriptor_t,Cint,Ptr{Cint}),poolingDesc,inputTensorDesc,nbDims,outputTensorDimA) end function cudnnGetPooling2dForwardOutputDim(poolingDesc,inputTensorDesc,n,c,h,w) ccall((:cudnnGetPooling2dForwardOutputDim,libcudnn),cudnnStatus_t,(cudnnPoolingDescriptor_t,cudnnTensorDescriptor_t,Ptr{Cint},Ptr{Cint},Ptr{Cint},Ptr{Cint}),poolingDesc,inputTensorDesc,n,c,h,w) end function cudnnDestroyPoolingDescriptor(poolingDesc) ccall((:cudnnDestroyPoolingDescriptor,libcudnn),cudnnStatus_t,(cudnnPoolingDescriptor_t,),poolingDesc) end function cudnnPoolingForward(handle,poolingDesc,alpha,xDesc,x,beta,yDesc,y) ccall((:cudnnPoolingForward,libcudnn),cudnnStatus_t,(cudnnHandle_t,cudnnPoolingDescriptor_t,Ptr{Void},cudnnTensorDescriptor_t,Ptr{Void},Ptr{Void},cudnnTensorDescriptor_t,Ptr{Void}),handle,poolingDesc,alpha,xDesc,x,beta,yDesc,y) end function cudnnPoolingBackward(handle,poolingDesc,alpha,yDesc,y,dyDesc,dy,xDesc,x,beta,dxDesc,dx) ccall((:cudnnPoolingBackward,libcudnn),cudnnStatus_t,(cudnnHandle_t,cudnnPoolingDescriptor_t,Ptr{Void},cudnnTensorDescriptor_t,Ptr{Void},cudnnTensorDescriptor_t,Ptr{Void},cudnnTensorDescriptor_t,Ptr{Void},Ptr{Void},cudnnTensorDescriptor_t,Ptr{Void}),handle,poolingDesc,alpha,yDesc,y,dyDesc,dy,xDesc,x,beta,dxDesc,dx) end function cudnnCreateActivationDescriptor(activationDesc) ccall((:cudnnCreateActivationDescriptor,libcudnn),cudnnStatus_t,(Ptr{cudnnActivationDescriptor_t},),activationDesc) end function cudnnSetActivationDescriptor(activationDesc,mode,reluNanOpt,reluCeiling) ccall((:cudnnSetActivationDescriptor,libcudnn),cudnnStatus_t,(cudnnActivationDescriptor_t,cudnnActivationMode_t,cudnnNanPropagation_t,Cdouble),activationDesc,mode,reluNanOpt,reluCeiling) end function cudnnGetActivationDescriptor(activationDesc,mode,reluNanOpt,reluCeiling) ccall((:cudnnGetActivationDescriptor,libcudnn),cudnnStatus_t,(cudnnActivationDescriptor_t,Ptr{cudnnActivationMode_t},Ptr{cudnnNanPropagation_t},Ptr{Cdouble}),activationDesc,mode,reluNanOpt,reluCeiling) end function cudnnDestroyActivationDescriptor(activationDesc) ccall((:cudnnDestroyActivationDescriptor,libcudnn),cudnnStatus_t,(cudnnActivationDescriptor_t,),activationDesc) end function cudnnActivationForward(handle,mode,alpha,xDesc,x,beta,yDesc,y) ccall((:cudnnActivationForward,libcudnn),cudnnStatus_t,(cudnnHandle_t,cudnnActivationMode_t,Ptr{Void},cudnnTensorDescriptor_t,Ptr{Void},Ptr{Void},cudnnTensorDescriptor_t,Ptr{Void}),handle,mode,alpha,xDesc,x,beta,yDesc,y) end function cudnnActivationForward_v4(handle,activationDesc,alpha,xDesc,x,beta,yDesc,y) ccall((:cudnnActivationForward_v4,libcudnn),cudnnStatus_t,(cudnnHandle_t,cudnnActivationDescriptor_t,Ptr{Void},cudnnTensorDescriptor_t,Ptr{Void},Ptr{Void},cudnnTensorDescriptor_t,Ptr{Void}),handle,activationDesc,alpha,xDesc,x,beta,yDesc,y) end function cudnnActivationBackward(handle,mode,alpha,yDesc,y,dyDesc,dy,xDesc,x,beta,dxDesc,dx) ccall((:cudnnActivationBackward,libcudnn),cudnnStatus_t,(cudnnHandle_t,cudnnActivationMode_t,Ptr{Void},cudnnTensorDescriptor_t,Ptr{Void},cudnnTensorDescriptor_t,Ptr{Void},cudnnTensorDescriptor_t,Ptr{Void},Ptr{Void},cudnnTensorDescriptor_t,Ptr{Void}),handle,mode,alpha,yDesc,y,dyDesc,dy,xDesc,x,beta,dxDesc,dx) end function cudnnActivationBackward_v4(handle,activationDesc,alpha,yDesc,y,dyDesc,dy,xDesc,x,beta,dxDesc,dx) ccall((:cudnnActivationBackward_v4,libcudnn),cudnnStatus_t,(cudnnHandle_t,cudnnActivationDescriptor_t,Ptr{Void},cudnnTensorDescriptor_t,Ptr{Void},cudnnTensorDescriptor_t,Ptr{Void},cudnnTensorDescriptor_t,Ptr{Void},Ptr{Void},cudnnTensorDescriptor_t,Ptr{Void}),handle,activationDesc,alpha,yDesc,y,dyDesc,dy,xDesc,x,beta,dxDesc,dx) end function cudnnCreateLRNDescriptor(normDesc) ccall((:cudnnCreateLRNDescriptor,libcudnn),cudnnStatus_t,(Ptr{cudnnLRNDescriptor_t},),normDesc) end function cudnnSetLRNDescriptor(normDesc,lrnN,lrnAlpha,lrnBeta,lrnK) ccall((:cudnnSetLRNDescriptor,libcudnn),cudnnStatus_t,(cudnnLRNDescriptor_t,UInt32,Cdouble,Cdouble,Cdouble),normDesc,lrnN,lrnAlpha,lrnBeta,lrnK) end function cudnnGetLRNDescriptor(normDesc,lrnN,lrnAlpha,lrnBeta,lrnK) ccall((:cudnnGetLRNDescriptor,libcudnn),cudnnStatus_t,(cudnnLRNDescriptor_t,Ptr{UInt32},Ptr{Cdouble},Ptr{Cdouble},Ptr{Cdouble}),normDesc,lrnN,lrnAlpha,lrnBeta,lrnK) end function cudnnDestroyLRNDescriptor(lrnDesc) ccall((:cudnnDestroyLRNDescriptor,libcudnn),cudnnStatus_t,(cudnnLRNDescriptor_t,),lrnDesc) end function cudnnLRNCrossChannelForward(handle,normDesc,lrnMode,alpha,xDesc,x,beta,yDesc,y) ccall((:cudnnLRNCrossChannelForward,libcudnn),cudnnStatus_t,(cudnnHandle_t,cudnnLRNDescriptor_t,cudnnLRNMode_t,Ptr{Void},cudnnTensorDescriptor_t,Ptr{Void},Ptr{Void},cudnnTensorDescriptor_t,Ptr{Void}),handle,normDesc,lrnMode,alpha,xDesc,x,beta,yDesc,y) end function cudnnLRNCrossChannelBackward(handle,normDesc,lrnMode,alpha,yDesc,y,dyDesc,dy,xDesc,x,beta,dxDesc,dx) ccall((:cudnnLRNCrossChannelBackward,libcudnn),cudnnStatus_t,(cudnnHandle_t,cudnnLRNDescriptor_t,cudnnLRNMode_t,Ptr{Void},cudnnTensorDescriptor_t,Ptr{Void},cudnnTensorDescriptor_t,Ptr{Void},cudnnTensorDescriptor_t,Ptr{Void},Ptr{Void},cudnnTensorDescriptor_t,Ptr{Void}),handle,normDesc,lrnMode,alpha,yDesc,y,dyDesc,dy,xDesc,x,beta,dxDesc,dx) end function cudnnDivisiveNormalizationForward(handle,normDesc,mode,alpha,xDesc,x,means,temp,temp2,beta,yDesc,y) ccall((:cudnnDivisiveNormalizationForward,libcudnn),cudnnStatus_t,(cudnnHandle_t,cudnnLRNDescriptor_t,cudnnDivNormMode_t,Ptr{Void},cudnnTensorDescriptor_t,Ptr{Void},Ptr{Void},Ptr{Void},Ptr{Void},Ptr{Void},cudnnTensorDescriptor_t,Ptr{Void}),handle,normDesc,mode,alpha,xDesc,x,means,temp,temp2,beta,yDesc,y) end function cudnnDivisiveNormalizationBackward(handle,normDesc,mode,alpha,xDesc,x,means,dy,temp,temp2,beta,dXdMeansDesc,dx,dMeans) ccall((:cudnnDivisiveNormalizationBackward,libcudnn),cudnnStatus_t,(cudnnHandle_t,cudnnLRNDescriptor_t,cudnnDivNormMode_t,Ptr{Void},cudnnTensorDescriptor_t,Ptr{Void},Ptr{Void},Ptr{Void},Ptr{Void},Ptr{Void},Ptr{Void},cudnnTensorDescriptor_t,Ptr{Void},Ptr{Void}),handle,normDesc,mode,alpha,xDesc,x,means,dy,temp,temp2,beta,dXdMeansDesc,dx,dMeans) end function cudnnDeriveBNTensorDescriptor(derivedBnDesc,xDesc,mode) ccall((:cudnnDeriveBNTensorDescriptor,libcudnn),cudnnStatus_t,(cudnnTensorDescriptor_t,cudnnTensorDescriptor_t,cudnnBatchNormMode_t),derivedBnDesc,xDesc,mode) end function cudnnBatchNormalizationForwardTraining(handle,mode,alpha,beta,xDesc,x,yDesc,y,bnScaleBiasMeanVarDesc,bnScale,bnBias,exponentialAverageFactor,resultRunningMean,resultRunningInvVariance,epsilon,resultSaveMean,resultSaveInvVariance) ccall((:cudnnBatchNormalizationForwardTraining,libcudnn),cudnnStatus_t,(cudnnHandle_t,cudnnBatchNormMode_t,Ptr{Void},Ptr{Void},cudnnTensorDescriptor_t,Ptr{Void},cudnnTensorDescriptor_t,Ptr{Void},cudnnTensorDescriptor_t,Ptr{Void},Ptr{Void},Cdouble,Ptr{Void},Ptr{Void},Cdouble,Ptr{Void},Ptr{Void}),handle,mode,alpha,beta,xDesc,x,yDesc,y,bnScaleBiasMeanVarDesc,bnScale,bnBias,exponentialAverageFactor,resultRunningMean,resultRunningInvVariance,epsilon,resultSaveMean,resultSaveInvVariance) end function cudnnBatchNormalizationForwardInference(handle,mode,alpha,beta,xDesc,x,yDesc,y,bnScaleBiasMeanVarDesc,bnScale,bnBias,estimatedMean,estimatedInvVariance,epsilon) ccall((:cudnnBatchNormalizationForwardInference,libcudnn),cudnnStatus_t,(cudnnHandle_t,cudnnBatchNormMode_t,Ptr{Void},Ptr{Void},cudnnTensorDescriptor_t,Ptr{Void},cudnnTensorDescriptor_t,Ptr{Void},cudnnTensorDescriptor_t,Ptr{Void},Ptr{Void},Ptr{Void},Ptr{Void},Cdouble),handle,mode,alpha,beta,xDesc,x,yDesc,y,bnScaleBiasMeanVarDesc,bnScale,bnBias,estimatedMean,estimatedInvVariance,epsilon) end function cudnnBatchNormalizationBackward(handle,mode,alpha,beta,xDesc,x,dyDesc,dy,dxDesc,dx,dBnScaleBiasDesc,bnScale,dBnScaleResult,dBnBiasResult,epsilon,savedMean,savedInvVariance) ccall((:cudnnBatchNormalizationBackward,libcudnn),cudnnStatus_t,(cudnnHandle_t,cudnnBatchNormMode_t,Ptr{Void},Ptr{Void},cudnnTensorDescriptor_t,Ptr{Void},cudnnTensorDescriptor_t,Ptr{Void},cudnnTensorDescriptor_t,Ptr{Void},cudnnTensorDescriptor_t,Ptr{Void},Ptr{Void},Ptr{Void},Cdouble,Ptr{Void},Ptr{Void}),handle,mode,alpha,beta,xDesc,x,dyDesc,dy,dxDesc,dx,dBnScaleBiasDesc,bnScale,dBnScaleResult,dBnBiasResult,epsilon,savedMean,savedInvVariance) end function cudnnSetConvolutionNdDescriptor_v2(convDesc,arrayLength,padA,filterStrideA,upscaleA,mode) ccall((:cudnnSetConvolutionNdDescriptor_v2,libcudnn),cudnnStatus_t,(cudnnConvolutionDescriptor_t,Cint,Ptr{Cint},Ptr{Cint},Ptr{Cint},cudnnConvolutionMode_t),convDesc,arrayLength,padA,filterStrideA,upscaleA,mode) end function cudnnGetConvolutionNdDescriptor_v2(convDesc,arrayLengthRequested,arrayLength,padA,strideA,upscaleA,mode) ccall((:cudnnGetConvolutionNdDescriptor_v2,libcudnn),cudnnStatus_t,(cudnnConvolutionDescriptor_t,Cint,Ptr{Cint},Ptr{Cint},Ptr{Cint},Ptr{Cint},Ptr{cudnnConvolutionMode_t}),convDesc,arrayLengthRequested,arrayLength,padA,strideA,upscaleA,mode) end function cudnnAddTensor_v2(handle,mode,alpha,bDesc,b,beta,yDesc,y) ccall((:cudnnAddTensor_v2,libcudnn),cudnnStatus_t,(cudnnHandle_t,cudnnAddMode_t,Ptr{Void},cudnnTensorDescriptor_t,Ptr{Void},Ptr{Void},cudnnTensorDescriptor_t,Ptr{Void}),handle,mode,alpha,bDesc,b,beta,yDesc,y) end function cudnnConvolutionBackwardFilter_v2(handle,alpha,xDesc,x,dyDesc,dy,convDesc,beta,dxDesc,dx) ccall((:cudnnConvolutionBackwardFilter_v2,libcudnn),cudnnStatus_t,(cudnnHandle_t,Ptr{Void},cudnnTensorDescriptor_t,Ptr{Void},cudnnTensorDescriptor_t,Ptr{Void},cudnnConvolutionDescriptor_t,Ptr{Void},cudnnFilterDescriptor_t,Ptr{Void}),handle,alpha,xDesc,x,dyDesc,dy,convDesc,beta,dxDesc,dx) end function cudnnConvolutionBackwardData_v2(handle,alpha,xDesc,x,dyDesc,dy,convDesc,beta,dxDesc,dx) ccall((:cudnnConvolutionBackwardData_v2,libcudnn),cudnnStatus_t,(cudnnHandle_t,Ptr{Void},cudnnFilterDescriptor_t,Ptr{Void},cudnnTensorDescriptor_t,Ptr{Void},cudnnConvolutionDescriptor_t,Ptr{Void},cudnnTensorDescriptor_t,Ptr{Void}),handle,alpha,xDesc,x,dyDesc,dy,convDesc,beta,dxDesc,dx) end ### To make things work on v2: function cudnnSetConvolutionNdDescriptor(convDesc,arrayLength,padA,filterStrideA,upscaleA,mode) ccall((:cudnnSetConvolutionNdDescriptor,libcudnn),cudnnStatus_t,(cudnnConvolutionDescriptor_t,Cint,Ptr{Cint},Ptr{Cint},Ptr{Cint},cudnnConvolutionMode_t),convDesc,arrayLength,padA,filterStrideA,upscaleA,mode) end function cudnnGetConvolutionNdDescriptor(convDesc,arrayLengthRequested,arrayLength,padA,strideA,upscaleA,mode) ccall((:cudnnGetConvolutionNdDescriptor,libcudnn),cudnnStatus_t,(cudnnConvolutionDescriptor_t,Cint,Ptr{Cint},Ptr{Cint},Ptr{Cint},Ptr{Cint},Ptr{cudnnConvolutionMode_t}),convDesc,arrayLengthRequested,arrayLength,padA,strideA,upscaleA,mode) end function cudnnAddTensor(handle,mode,alpha,bDesc,b,beta,yDesc,y) ccall((:cudnnAddTensor,libcudnn),cudnnStatus_t,(cudnnHandle_t,cudnnAddMode_t,Ptr{Void},cudnnTensorDescriptor_t,Ptr{Void},Ptr{Void},cudnnTensorDescriptor_t,Ptr{Void}),handle,mode,alpha,bDesc,b,beta,yDesc,y) end function cudnnConvolutionBackwardFilter(handle,alpha,xDesc,x,dyDesc,dy,convDesc,beta,dxDesc,dx) ccall((:cudnnConvolutionBackwardFilter,libcudnn),cudnnStatus_t,(cudnnHandle_t,Ptr{Void},cudnnTensorDescriptor_t,Ptr{Void},cudnnTensorDescriptor_t,Ptr{Void},cudnnConvolutionDescriptor_t,Ptr{Void},cudnnFilterDescriptor_t,Ptr{Void}),handle,alpha,xDesc,x,dyDesc,dy,convDesc,beta,dxDesc,dx) end function cudnnConvolutionBackwardData(handle,alpha,xDesc,x,dyDesc,dy,convDesc,beta,dxDesc,dx) ccall((:cudnnConvolutionBackwardData,libcudnn),cudnnStatus_t,(cudnnHandle_t,Ptr{Void},cudnnFilterDescriptor_t,Ptr{Void},cudnnTensorDescriptor_t,Ptr{Void},cudnnConvolutionDescriptor_t,Ptr{Void},cudnnTensorDescriptor_t,Ptr{Void}),handle,alpha,xDesc,x,dyDesc,dy,convDesc,beta,dxDesc,dx) end
[ 27, 7856, 261, 480, 29, 16980, 544, 27813, 27453, 5965, 14, 34, 8322, 6144, 13, 20362, 198, 2, 22300, 29908, 329, 13639, 25, 1220, 76, 429, 14, 1872, 14, 11195, 14, 9892, 495, 83, 14, 10677, 14, 66, 463, 20471, 14, 19, 13, 15, 13, 19, 14, 17256, 14, 66, 463, 20471, 13, 71, 198, 2, 17406, 4142, 7560, 1262, 1012, 648, 13, 20362, 14441, 62, 66, 11, 2196, 657, 13, 15, 13, 15, 628, 198, 8818, 269, 463, 20471, 3855, 14815, 3419, 198, 220, 220, 220, 269, 13345, 19510, 25, 66, 463, 20471, 3855, 14815, 11, 8019, 66, 463, 20471, 828, 34, 600, 11, 28955, 198, 437, 198, 198, 8818, 269, 463, 20471, 3855, 12331, 10100, 7, 13376, 8, 198, 220, 220, 220, 269, 13345, 19510, 25, 66, 463, 20471, 3855, 12331, 10100, 11, 8019, 66, 463, 20471, 828, 46745, 90, 52, 5317, 23, 5512, 7, 66, 463, 20471, 19580, 62, 83, 11, 828, 13376, 8, 198, 437, 198, 198, 8818, 269, 463, 20471, 16447, 7, 28144, 8, 198, 220, 220, 220, 269, 13345, 19510, 25, 66, 463, 20471, 16447, 11, 8019, 66, 463, 20471, 828, 66, 463, 20471, 19580, 62, 83, 11, 7, 46745, 90, 66, 463, 20471, 37508, 62, 83, 5512, 828, 28144, 8, 198, 437, 198, 198, 8818, 269, 463, 20471, 49174, 7, 28144, 8, 198, 220, 220, 220, 269, 13345, 19510, 25, 66, 463, 20471, 49174, 11, 8019, 66, 463, 20471, 828, 66, 463, 20471, 19580, 62, 83, 11, 7, 66, 463, 20471, 37508, 62, 83, 11, 828, 28144, 8, 198, 437, 198, 198, 8818, 269, 463, 20471, 7248, 12124, 7, 28144, 11, 5532, 7390, 8, 198, 220, 220, 220, 269, 13345, 19510, 25, 66, 463, 20471, 7248, 12124, 11, 8019, 66, 463, 20471, 828, 66, 463, 20471, 19580, 62, 83, 11, 7, 66, 463, 20471, 37508, 62, 83, 11, 34, 600, 828, 28144, 11, 5532, 7390, 8, 198, 437, 198, 198, 8818, 269, 463, 20471, 3855, 12124, 7, 28144, 11, 5532, 7390, 8, 198, 220, 220, 220, 269, 13345, 19510, 25, 66, 463, 20471, 3855, 12124, 11, 8019, 66, 463, 20471, 828, 66, 463, 20471, 19580, 62, 83, 11, 7, 66, 463, 20471, 37508, 62, 83, 11, 46745, 90, 34, 600, 92, 828, 28144, 11, 5532, 7390, 8, 198, 437, 198, 198, 8818, 269, 463, 20471, 16447, 51, 22854, 24564, 1968, 273, 7, 83, 22854, 24564, 8, 198, 220, 220, 220, 269, 13345, 19510, 25, 66, 463, 20471, 16447, 51, 22854, 24564, 1968, 273, 11, 8019, 66, 463, 20471, 828, 66, 463, 20471, 19580, 62, 83, 11, 7, 46745, 90, 66, 463, 20471, 51, 22854, 24564, 1968, 273, 62, 83, 5512, 828, 83, 22854, 24564, 8, 198, 437, 198, 198, 8818, 269, 463, 20471, 7248, 51, 22854, 19, 67, 24564, 1968, 273, 7, 83, 22854, 24564, 11, 18982, 11, 7890, 6030, 11, 77, 11, 66, 11, 71, 11, 86, 8, 198, 220, 220, 220, 269, 13345, 19510, 25, 66, 463, 20471, 7248, 51, 22854, 19, 67, 24564, 1968, 273, 11, 8019, 66, 463, 20471, 828, 66, 463, 20471, 19580, 62, 83, 11, 7, 66, 463, 20471, 51, 22854, 24564, 1968, 273, 62, 83, 11, 66, 463, 20471, 51, 22854, 26227, 62, 83, 11, 66, 463, 20471, 6601, 6030, 62, 83, 11, 34, 600, 11, 34, 600, 11, 34, 600, 11, 34, 600, 828, 83, 22854, 24564, 11, 18982, 11, 7890, 6030, 11, 77, 11, 66, 11, 71, 11, 86, 8, 198, 437, 198, 198, 8818, 269, 463, 20471, 7248, 51, 22854, 19, 67, 24564, 1968, 273, 3109, 7, 83, 22854, 24564, 11, 7890, 6030, 11, 77, 11, 66, 11, 71, 11, 86, 11, 77, 1273, 13154, 11, 66, 1273, 13154, 11, 71, 1273, 13154, 11, 86, 1273, 13154, 8, 198, 220, 220, 220, 269, 13345, 19510, 25, 66, 463, 20471, 7248, 51, 22854, 19, 67, 24564, 1968, 273, 3109, 11, 8019, 66, 463, 20471, 828, 66, 463, 20471, 19580, 62, 83, 11, 7, 66, 463, 20471, 51, 22854, 24564, 1968, 273, 62, 83, 11, 66, 463, 20471, 6601, 6030, 62, 83, 11, 34, 600, 11, 34, 600, 11, 34, 600, 11, 34, 600, 11, 34, 600, 11, 34, 600, 11, 34, 600, 11, 34, 600, 828, 83, 22854, 24564, 11, 7890, 6030, 11, 77, 11, 66, 11, 71, 11, 86, 11, 77, 1273, 13154, 11, 66, 1273, 13154, 11, 71, 1273, 13154, 11, 86, 1273, 13154, 8, 198, 437, 198, 198, 8818, 269, 463, 20471, 3855, 51, 22854, 19, 67, 24564, 1968, 273, 7, 83, 22854, 24564, 11, 7890, 6030, 11, 77, 11, 66, 11, 71, 11, 86, 11, 77, 1273, 13154, 11, 66, 1273, 13154, 11, 71, 1273, 13154, 11, 86, 1273, 13154, 8, 198, 220, 220, 220, 269, 13345, 19510, 25, 66, 463, 20471, 3855, 51, 22854, 19, 67, 24564, 1968, 273, 11, 8019, 66, 463, 20471, 828, 66, 463, 20471, 19580, 62, 83, 11, 7, 66, 463, 20471, 51, 22854, 24564, 1968, 273, 62, 83, 11, 46745, 90, 66, 463, 20471, 6601, 6030, 62, 83, 5512, 46745, 90, 34, 600, 5512, 46745, 90, 34, 600, 5512, 46745, 90, 34, 600, 5512, 46745, 90, 34, 600, 5512, 46745, 90, 34, 600, 5512, 46745, 90, 34, 600, 5512, 46745, 90, 34, 600, 5512, 46745, 90, 34, 600, 92, 828, 83, 22854, 24564, 11, 7890, 6030, 11, 77, 11, 66, 11, 71, 11, 86, 11, 77, 1273, 13154, 11, 66, 1273, 13154, 11, 71, 1273, 13154, 11, 86, 1273, 13154, 8, 198, 437, 198, 198, 8818, 269, 463, 20471, 7248, 51, 22854, 45, 67, 24564, 1968, 273, 7, 83, 22854, 24564, 11, 7890, 6030, 11, 46803, 35, 12078, 11, 27740, 32, 11, 2536, 485, 32, 8, 198, 220, 220, 220, 269, 13345, 19510, 25, 66, 463, 20471, 7248, 51, 22854, 45, 67, 24564, 1968, 273, 11, 8019, 66, 463, 20471, 828, 66, 463, 20471, 19580, 62, 83, 11, 7, 66, 463, 20471, 51, 22854, 24564, 1968, 273, 62, 83, 11, 66, 463, 20471, 6601, 6030, 62, 83, 11, 34, 600, 11, 46745, 90, 34, 600, 5512, 46745, 90, 34, 600, 92, 828, 83, 22854, 24564, 11, 7890, 6030, 11, 46803, 35, 12078, 11, 27740, 32, 11, 2536, 485, 32, 8, 198, 437, 198, 198, 8818, 269, 463, 20471, 3855, 51, 22854, 45, 67, 24564, 1968, 273, 7, 83, 22854, 24564, 11, 46803, 35, 12078, 18453, 276, 11, 7890, 6030, 11, 46803, 35, 12078, 11, 27740, 32, 11, 2536, 485, 32, 8, 198, 220, 220, 220, 269, 13345, 19510, 25, 66, 463, 20471, 3855, 51, 22854, 45, 67, 24564, 1968, 273, 11, 8019, 66, 463, 20471, 828, 66, 463, 20471, 19580, 62, 83, 11, 7, 66, 463, 20471, 51, 22854, 24564, 1968, 273, 62, 83, 11, 34, 600, 11, 46745, 90, 66, 463, 20471, 6601, 6030, 62, 83, 5512, 46745, 90, 34, 600, 5512, 46745, 90, 34, 600, 5512, 46745, 90, 34, 600, 92, 828, 83, 22854, 24564, 11, 46803, 35, 12078, 18453, 276, 11, 7890, 6030, 11, 46803, 35, 12078, 11, 27740, 32, 11, 2536, 485, 32, 8, 198, 437, 198, 198, 8818, 269, 463, 20471, 49174, 51, 22854, 24564, 1968, 273, 7, 83, 22854, 24564, 8, 198, 220, 220, 220, 269, 13345, 19510, 25, 66, 463, 20471, 49174, 51, 22854, 24564, 1968, 273, 11, 8019, 66, 463, 20471, 828, 66, 463, 20471, 19580, 62, 83, 11, 7, 66, 463, 20471, 51, 22854, 24564, 1968, 273, 62, 83, 11, 828, 83, 22854, 24564, 8, 198, 437, 198, 198, 8818, 269, 463, 20471, 41762, 51, 22854, 7, 28144, 11, 26591, 11, 87, 24564, 11, 87, 11, 31361, 11, 88, 24564, 11, 88, 8, 198, 220, 220, 220, 269, 13345, 19510, 25, 66, 463, 20471, 41762, 51, 22854, 11, 8019, 66, 463, 20471, 828, 66, 463, 20471, 19580, 62, 83, 11, 7, 66, 463, 20471, 37508, 62, 83, 11, 46745, 90, 53, 1868, 5512, 66, 463, 20471, 51, 22854, 24564, 1968, 273, 62, 83, 11, 46745, 90, 53, 1868, 5512, 46745, 90, 53, 1868, 5512, 66, 463, 20471, 51, 22854, 24564, 1968, 273, 62, 83, 11, 46745, 90, 53, 1868, 92, 828, 28144, 11, 26591, 11, 87, 24564, 11, 87, 11, 31361, 11, 88, 24564, 11, 88, 8, 198, 437, 198, 198, 8818, 269, 463, 20471, 4550, 51, 22854, 7, 28144, 11, 26591, 11, 65, 24564, 11, 65, 11, 31361, 11, 88, 24564, 11, 88, 8, 198, 220, 220, 220, 269, 13345, 19510, 25, 66, 463, 20471, 4550, 51, 22854, 11, 8019, 66, 463, 20471, 828, 66, 463, 20471, 19580, 62, 83, 11, 7, 66, 463, 20471, 37508, 62, 83, 11, 46745, 90, 53, 1868, 5512, 66, 463, 20471, 51, 22854, 24564, 1968, 273, 62, 83, 11, 46745, 90, 53, 1868, 5512, 46745, 90, 53, 1868, 5512, 66, 463, 20471, 51, 22854, 24564, 1968, 273, 62, 83, 11, 46745, 90, 53, 1868, 92, 828, 28144, 11, 26591, 11, 65, 24564, 11, 65, 11, 31361, 11, 88, 24564, 11, 88, 8, 198, 437, 198, 198, 8818, 269, 463, 20471, 4550, 51, 22854, 62, 85, 18, 7, 28144, 11, 26591, 11, 65, 24564, 11, 65, 11, 31361, 11, 88, 24564, 11, 88, 8, 198, 220, 220, 220, 269, 13345, 19510, 25, 66, 463, 20471, 4550, 51, 22854, 62, 85, 18, 11, 8019, 66, 463, 20471, 828, 66, 463, 20471, 19580, 62, 83, 11, 7, 66, 463, 20471, 37508, 62, 83, 11, 46745, 90, 53, 1868, 5512, 66, 463, 20471, 51, 22854, 24564, 1968, 273, 62, 83, 11, 46745, 90, 53, 1868, 5512, 46745, 90, 53, 1868, 5512, 66, 463, 20471, 51, 22854, 24564, 1968, 273, 62, 83, 11, 46745, 90, 53, 1868, 92, 828, 28144, 11, 26591, 11, 65, 24564, 11, 65, 11, 31361, 11, 88, 24564, 11, 88, 8, 198, 437, 198, 198, 8818, 269, 463, 20471, 7248, 51, 22854, 7, 28144, 11, 88, 24564, 11, 88, 11, 8367, 46745, 8, 198, 220, 220, 220, 269, 13345, 19510, 25, 66, 463, 20471, 7248, 51, 22854, 11, 8019, 66, 463, 20471, 828, 66, 463, 20471, 19580, 62, 83, 11, 7, 66, 463, 20471, 37508, 62, 83, 11, 66, 463, 20471, 51, 22854, 24564, 1968, 273, 62, 83, 11, 46745, 90, 53, 1868, 5512, 46745, 90, 53, 1868, 92, 828, 28144, 11, 88, 24564, 11, 88, 11, 8367, 46745, 8, 198, 437, 198, 198, 8818, 269, 463, 20471, 29990, 51, 22854, 7, 28144, 11, 88, 24564, 11, 88, 11, 26591, 8, 198, 220, 220, 220, 269, 13345, 19510, 25, 66, 463, 20471, 29990, 51, 22854, 11, 8019, 66, 463, 20471, 828, 66, 463, 20471, 19580, 62, 83, 11, 7, 66, 463, 20471, 37508, 62, 83, 11, 66, 463, 20471, 51, 22854, 24564, 1968, 273, 62, 83, 11, 46745, 90, 53, 1868, 5512, 46745, 90, 53, 1868, 92, 828, 28144, 11, 88, 24564, 11, 88, 11, 26591, 8, 198, 437, 198, 198, 8818, 269, 463, 20471, 16447, 22417, 24564, 1968, 273, 7, 24455, 24564, 8, 198, 220, 220, 220, 269, 13345, 19510, 25, 66, 463, 20471, 16447, 22417, 24564, 1968, 273, 11, 8019, 66, 463, 20471, 828, 66, 463, 20471, 19580, 62, 83, 11, 7, 46745, 90, 66, 463, 20471, 22417, 24564, 1968, 273, 62, 83, 5512, 828, 24455, 24564, 8, 198, 437, 198, 198, 8818, 269, 463, 20471, 7248, 22417, 19, 67, 24564, 1968, 273, 7, 24455, 24564, 11, 7890, 6030, 11, 74, 11, 66, 11, 71, 11, 86, 8, 198, 220, 220, 220, 269, 13345, 19510, 25, 66, 463, 20471, 7248, 22417, 19, 67, 24564, 1968, 273, 11, 8019, 66, 463, 20471, 828, 66, 463, 20471, 19580, 62, 83, 11, 7, 66, 463, 20471, 22417, 24564, 1968, 273, 62, 83, 11, 66, 463, 20471, 6601, 6030, 62, 83, 11, 34, 600, 11, 34, 600, 11, 34, 600, 11, 34, 600, 828, 24455, 24564, 11, 7890, 6030, 11, 74, 11, 66, 11, 71, 11, 86, 8, 198, 437, 198, 198, 8818, 269, 463, 20471, 7248, 22417, 19, 67, 24564, 1968, 273, 62, 85, 19, 7, 24455, 24564, 11, 7890, 6030, 11, 18982, 11, 74, 11, 66, 11, 71, 11, 86, 8, 198, 220, 220, 220, 269, 13345, 19510, 25, 66, 463, 20471, 7248, 22417, 19, 67, 24564, 1968, 273, 62, 85, 19, 11, 8019, 66, 463, 20471, 828, 66, 463, 20471, 19580, 62, 83, 11, 7, 66, 463, 20471, 22417, 24564, 1968, 273, 62, 83, 11, 66, 463, 20471, 6601, 6030, 62, 83, 11, 66, 463, 20471, 51, 22854, 26227, 62, 83, 11, 34, 600, 11, 34, 600, 11, 34, 600, 11, 34, 600, 828, 24455, 24564, 11, 7890, 6030, 11, 18982, 11, 74, 11, 66, 11, 71, 11, 86, 8, 198, 437, 198, 198, 8818, 269, 463, 20471, 3855, 22417, 19, 67, 24564, 1968, 273, 7, 24455, 24564, 11, 7890, 6030, 11, 74, 11, 66, 11, 71, 11, 86, 8, 198, 220, 220, 220, 269, 13345, 19510, 25, 66, 463, 20471, 3855, 22417, 19, 67, 24564, 1968, 273, 11, 8019, 66, 463, 20471, 828, 66, 463, 20471, 19580, 62, 83, 11, 7, 66, 463, 20471, 22417, 24564, 1968, 273, 62, 83, 11, 46745, 90, 66, 463, 20471, 6601, 6030, 62, 83, 5512, 46745, 90, 34, 600, 5512, 46745, 90, 34, 600, 5512, 46745, 90, 34, 600, 5512, 46745, 90, 34, 600, 92, 828, 24455, 24564, 11, 7890, 6030, 11, 74, 11, 66, 11, 71, 11, 86, 8, 198, 437, 198, 198, 8818, 269, 463, 20471, 3855, 22417, 19, 67, 24564, 1968, 273, 62, 85, 19, 7, 24455, 24564, 11, 7890, 6030, 11, 18982, 11, 74, 11, 66, 11, 71, 11, 86, 8, 198, 220, 220, 220, 269, 13345, 19510, 25, 66, 463, 20471, 3855, 22417, 19, 67, 24564, 1968, 273, 62, 85, 19, 11, 8019, 66, 463, 20471, 828, 66, 463, 20471, 19580, 62, 83, 11, 7, 66, 463, 20471, 22417, 24564, 1968, 273, 62, 83, 11, 46745, 90, 66, 463, 20471, 6601, 6030, 62, 83, 5512, 46745, 90, 66, 463, 20471, 51, 22854, 26227, 62, 83, 5512, 46745, 90, 34, 600, 5512, 46745, 90, 34, 600, 5512, 46745, 90, 34, 600, 5512, 46745, 90, 34, 600, 92, 828, 24455, 24564, 11, 7890, 6030, 11, 18982, 11, 74, 11, 66, 11, 71, 11, 86, 8, 198, 437, 198, 198, 8818, 269, 463, 20471, 7248, 22417, 45, 67, 24564, 1968, 273, 7, 24455, 24564, 11, 7890, 6030, 11, 46803, 35, 12078, 11, 24455, 29271, 32, 8, 198, 220, 220, 220, 269, 13345, 19510, 25, 66, 463, 20471, 7248, 22417, 45, 67, 24564, 1968, 273, 11, 8019, 66, 463, 20471, 828, 66, 463, 20471, 19580, 62, 83, 11, 7, 66, 463, 20471, 22417, 24564, 1968, 273, 62, 83, 11, 66, 463, 20471, 6601, 6030, 62, 83, 11, 34, 600, 11, 46745, 90, 34, 600, 92, 828, 24455, 24564, 11, 7890, 6030, 11, 46803, 35, 12078, 11, 24455, 29271, 32, 8, 198, 437, 198, 198, 8818, 269, 463, 20471, 7248, 22417, 45, 67, 24564, 1968, 273, 62, 85, 19, 7, 24455, 24564, 11, 7890, 6030, 11, 18982, 11, 46803, 35, 12078, 11, 24455, 29271, 32, 8, 198, 220, 220, 220, 269, 13345, 19510, 25, 66, 463, 20471, 7248, 22417, 45, 67, 24564, 1968, 273, 62, 85, 19, 11, 8019, 66, 463, 20471, 828, 66, 463, 20471, 19580, 62, 83, 11, 7, 66, 463, 20471, 22417, 24564, 1968, 273, 62, 83, 11, 66, 463, 20471, 6601, 6030, 62, 83, 11, 66, 463, 20471, 51, 22854, 26227, 62, 83, 11, 34, 600, 11, 46745, 90, 34, 600, 92, 828, 24455, 24564, 11, 7890, 6030, 11, 18982, 11, 46803, 35, 12078, 11, 24455, 29271, 32, 8, 198, 437, 198, 198, 8818, 269, 463, 20471, 3855, 22417, 45, 67, 24564, 1968, 273, 7, 24455, 24564, 11, 46803, 35, 12078, 18453, 276, 11, 7890, 6030, 11, 46803, 35, 12078, 11, 24455, 29271, 32, 8, 198, 220, 220, 220, 269, 13345, 19510, 25, 66, 463, 20471, 3855, 22417, 45, 67, 24564, 1968, 273, 11, 8019, 66, 463, 20471, 828, 66, 463, 20471, 19580, 62, 83, 11, 7, 66, 463, 20471, 22417, 24564, 1968, 273, 62, 83, 11, 34, 600, 11, 46745, 90, 66, 463, 20471, 6601, 6030, 62, 83, 5512, 46745, 90, 34, 600, 5512, 46745, 90, 34, 600, 92, 828, 24455, 24564, 11, 46803, 35, 12078, 18453, 276, 11, 7890, 6030, 11, 46803, 35, 12078, 11, 24455, 29271, 32, 8, 198, 437, 198, 198, 8818, 269, 463, 20471, 3855, 22417, 45, 67, 24564, 1968, 273, 62, 85, 19, 7, 24455, 24564, 11, 46803, 35, 12078, 18453, 276, 11, 7890, 6030, 11, 18982, 11, 46803, 35, 12078, 11, 24455, 29271, 32, 8, 198, 220, 220, 220, 269, 13345, 19510, 25, 66, 463, 20471, 3855, 22417, 45, 67, 24564, 1968, 273, 62, 85, 19, 11, 8019, 66, 463, 20471, 828, 66, 463, 20471, 19580, 62, 83, 11, 7, 66, 463, 20471, 22417, 24564, 1968, 273, 62, 83, 11, 34, 600, 11, 46745, 90, 66, 463, 20471, 6601, 6030, 62, 83, 5512, 46745, 90, 66, 463, 20471, 51, 22854, 26227, 62, 83, 5512, 46745, 90, 34, 600, 5512, 46745, 90, 34, 600, 92, 828, 24455, 24564, 11, 46803, 35, 12078, 18453, 276, 11, 7890, 6030, 11, 18982, 11, 46803, 35, 12078, 11, 24455, 29271, 32, 8, 198, 437, 198, 198, 8818, 269, 463, 20471, 49174, 22417, 24564, 1968, 273, 7, 24455, 24564, 8, 198, 220, 220, 220, 269, 13345, 19510, 25, 66, 463, 20471, 49174, 22417, 24564, 1968, 273, 11, 8019, 66, 463, 20471, 828, 66, 463, 20471, 19580, 62, 83, 11, 7, 66, 463, 20471, 22417, 24564, 1968, 273, 62, 83, 11, 828, 24455, 24564, 8, 198, 437, 198, 198, 8818, 269, 463, 20471, 16447, 3103, 85, 2122, 24564, 1968, 273, 7, 42946, 24564, 8, 198, 220, 220, 220, 269, 13345, 19510, 25, 66, 463, 20471, 16447, 3103, 85, 2122, 24564, 1968, 273, 11, 8019, 66, 463, 20471, 828, 66, 463, 20471, 19580, 62, 83, 11, 7, 46745, 90, 66, 463, 20471, 3103, 85, 2122, 24564, 1968, 273, 62, 83, 5512, 828, 42946, 24564, 8, 198, 437, 198, 198, 8818, 269, 463, 20471, 7248, 3103, 85, 2122, 17, 67, 24564, 1968, 273, 7, 42946, 24564, 11, 15636, 62, 71, 11, 15636, 62, 86, 11, 84, 11, 85, 11, 4739, 38765, 87, 11, 4739, 66, 16730, 11, 14171, 8, 198, 220, 220, 220, 269, 13345, 19510, 25, 66, 463, 20471, 7248, 3103, 85, 2122, 17, 67, 24564, 1968, 273, 11, 8019, 66, 463, 20471, 828, 66, 463, 20471, 19580, 62, 83, 11, 7, 66, 463, 20471, 3103, 85, 2122, 24564, 1968, 273, 62, 83, 11, 34, 600, 11, 34, 600, 11, 34, 600, 11, 34, 600, 11, 34, 600, 11, 34, 600, 11, 66, 463, 20471, 3103, 85, 2122, 19076, 62, 83, 828, 42946, 24564, 11, 15636, 62, 71, 11, 15636, 62, 86, 11, 84, 11, 85, 11, 4739, 38765, 87, 11, 4739, 66, 16730, 11, 14171, 8, 198, 437, 198, 198, 8818, 269, 463, 20471, 3855, 3103, 85, 2122, 17, 67, 24564, 1968, 273, 7, 42946, 24564, 11, 15636, 62, 71, 11, 15636, 62, 86, 11, 84, 11, 85, 11, 4739, 38765, 87, 11, 4739, 66, 16730, 11, 14171, 8, 198, 220, 220, 220, 269, 13345, 19510, 25, 66, 463, 20471, 3855, 3103, 85, 2122, 17, 67, 24564, 1968, 273, 11, 8019, 66, 463, 20471, 828, 66, 463, 20471, 19580, 62, 83, 11, 7, 66, 463, 20471, 3103, 85, 2122, 24564, 1968, 273, 62, 83, 11, 46745, 90, 34, 600, 5512, 46745, 90, 34, 600, 5512, 46745, 90, 34, 600, 5512, 46745, 90, 34, 600, 5512, 46745, 90, 34, 600, 5512, 46745, 90, 34, 600, 5512, 46745, 90, 66, 463, 20471, 3103, 85, 2122, 19076, 62, 83, 92, 828, 42946, 24564, 11, 15636, 62, 71, 11, 15636, 62, 86, 11, 84, 11, 85, 11, 4739, 38765, 87, 11, 4739, 66, 16730, 11, 14171, 8, 198, 437, 198, 198, 8818, 269, 463, 20471, 3855, 3103, 85, 2122, 17, 67, 39746, 26410, 29271, 7, 42946, 24564, 11, 15414, 51, 22854, 24564, 11, 24455, 24564, 11, 77, 11, 66, 11, 71, 11, 86, 8, 198, 220, 220, 220, 269, 13345, 19510, 25, 66, 463, 20471, 3855, 3103, 85, 2122, 17, 67, 39746, 26410, 29271, 11, 8019, 66, 463, 20471, 828, 66, 463, 20471, 19580, 62, 83, 11, 7, 66, 463, 20471, 3103, 85, 2122, 24564, 1968, 273, 62, 83, 11, 66, 463, 20471, 51, 22854, 24564, 1968, 273, 62, 83, 11, 66, 463, 20471, 22417, 24564, 1968, 273, 62, 83, 11, 46745, 90, 34, 600, 5512, 46745, 90, 34, 600, 5512, 46745, 90, 34, 600, 5512, 46745, 90, 34, 600, 92, 828, 42946, 24564, 11, 15414, 51, 22854, 24564, 11, 24455, 24564, 11, 77, 11, 66, 11, 71, 11, 86, 8, 198, 437, 198, 198, 8818, 269, 463, 20471, 7248, 3103, 85, 2122, 45, 67, 24564, 1968, 273, 7, 42946, 24564, 11, 18747, 24539, 11, 15636, 32, 11, 24455, 1273, 13154, 32, 11, 4739, 38765, 32, 11, 14171, 11, 7890, 6030, 8, 198, 220, 220, 220, 269, 13345, 19510, 25, 66, 463, 20471, 7248, 3103, 85, 2122, 45, 67, 24564, 1968, 273, 11, 8019, 66, 463, 20471, 828, 66, 463, 20471, 19580, 62, 83, 11, 7, 66, 463, 20471, 3103, 85, 2122, 24564, 1968, 273, 62, 83, 11, 34, 600, 11, 46745, 90, 34, 600, 5512, 46745, 90, 34, 600, 5512, 46745, 90, 34, 600, 5512, 66, 463, 20471, 3103, 85, 2122, 19076, 62, 83, 11, 66, 463, 20471, 6601, 6030, 62, 83, 828, 42946, 24564, 11, 18747, 24539, 11, 15636, 32, 11, 24455, 1273, 13154, 32, 11, 4739, 38765, 32, 11, 14171, 11, 7890, 6030, 8, 198, 437, 198, 198, 8818, 269, 463, 20471, 3855, 3103, 85, 2122, 45, 67, 24564, 1968, 273, 7, 42946, 24564, 11, 18747, 24539, 18453, 276, 11, 18747, 24539, 11, 15636, 32, 11, 2536, 485, 32, 11, 4739, 38765, 32, 11, 14171, 11, 7890, 6030, 8, 198, 220, 220, 220, 269, 13345, 19510, 25, 66, 463, 20471, 3855, 3103, 85, 2122, 45, 67, 24564, 1968, 273, 11, 8019, 66, 463, 20471, 828, 66, 463, 20471, 19580, 62, 83, 11, 7, 66, 463, 20471, 3103, 85, 2122, 24564, 1968, 273, 62, 83, 11, 34, 600, 11, 46745, 90, 34, 600, 5512, 46745, 90, 34, 600, 5512, 46745, 90, 34, 600, 5512, 46745, 90, 34, 600, 5512, 46745, 90, 66, 463, 20471, 3103, 85, 2122, 19076, 62, 83, 5512, 46745, 90, 66, 463, 20471, 6601, 6030, 62, 83, 92, 828, 42946, 24564, 11, 18747, 24539, 18453, 276, 11, 18747, 24539, 11, 15636, 32, 11, 2536, 485, 32, 11, 4739, 38765, 32, 11, 14171, 11, 7890, 6030, 8, 198, 437, 198, 198, 8818, 269, 463, 20471, 7248, 3103, 85, 2122, 45, 67, 24564, 1968, 273, 62, 85, 18, 7, 42946, 24564, 11, 18747, 24539, 11, 15636, 32, 11, 24455, 1273, 13154, 32, 11, 4739, 38765, 32, 11, 14171, 11, 7890, 6030, 8, 198, 220, 220, 220, 269, 13345, 19510, 25, 66, 463, 20471, 7248, 3103, 85, 2122, 45, 67, 24564, 1968, 273, 62, 85, 18, 11, 8019, 66, 463, 20471, 828, 66, 463, 20471, 19580, 62, 83, 11, 7, 66, 463, 20471, 3103, 85, 2122, 24564, 1968, 273, 62, 83, 11, 34, 600, 11, 46745, 90, 34, 600, 5512, 46745, 90, 34, 600, 5512, 46745, 90, 34, 600, 5512, 66, 463, 20471, 3103, 85, 2122, 19076, 62, 83, 11, 66, 463, 20471, 6601, 6030, 62, 83, 828, 42946, 24564, 11, 18747, 24539, 11, 15636, 32, 11, 24455, 1273, 13154, 32, 11, 4739, 38765, 32, 11, 14171, 11, 7890, 6030, 8, 198, 437, 198, 198, 8818, 269, 463, 20471, 3855, 3103, 85, 2122, 45, 67, 24564, 1968, 273, 62, 85, 18, 7, 42946, 24564, 11, 18747, 24539, 18453, 276, 11, 18747, 24539, 11, 15636, 32, 11, 2536, 485, 32, 11, 4739, 38765, 32, 11, 14171, 11, 7890, 6030, 8, 198, 220, 220, 220, 269, 13345, 19510, 25, 66, 463, 20471, 3855, 3103, 85, 2122, 45, 67, 24564, 1968, 273, 62, 85, 18, 11, 8019, 66, 463, 20471, 828, 66, 463, 20471, 19580, 62, 83, 11, 7, 66, 463, 20471, 3103, 85, 2122, 24564, 1968, 273, 62, 83, 11, 34, 600, 11, 46745, 90, 34, 600, 5512, 46745, 90, 34, 600, 5512, 46745, 90, 34, 600, 5512, 46745, 90, 34, 600, 5512, 46745, 90, 66, 463, 20471, 3103, 85, 2122, 19076, 62, 83, 5512, 46745, 90, 66, 463, 20471, 6601, 6030, 62, 83, 92, 828, 42946, 24564, 11, 18747, 24539, 18453, 276, 11, 18747, 24539, 11, 15636, 32, 11, 2536, 485, 32, 11, 4739, 38765, 32, 11, 14171, 11, 7890, 6030, 8, 198, 437, 198, 198, 8818, 269, 463, 20471, 3855, 3103, 85, 2122, 45, 67, 39746, 26410, 29271, 7, 42946, 24564, 11, 15414, 51, 22854, 24564, 11, 24455, 24564, 11, 46803, 35, 12078, 11, 83, 22854, 46, 929, 315, 29271, 32, 8, 198, 220, 220, 220, 269, 13345, 19510, 25, 66, 463, 20471, 3855, 3103, 85, 2122, 45, 67, 39746, 26410, 29271, 11, 8019, 66, 463, 20471, 828, 66, 463, 20471, 19580, 62, 83, 11, 7, 66, 463, 20471, 3103, 85, 2122, 24564, 1968, 273, 62, 83, 11, 66, 463, 20471, 51, 22854, 24564, 1968, 273, 62, 83, 11, 66, 463, 20471, 22417, 24564, 1968, 273, 62, 83, 11, 34, 600, 11, 46745, 90, 34, 600, 92, 828, 42946, 24564, 11, 15414, 51, 22854, 24564, 11, 24455, 24564, 11, 46803, 35, 12078, 11, 83, 22854, 46, 929, 315, 29271, 32, 8, 198, 437, 198, 198, 8818, 269, 463, 20471, 49174, 3103, 85, 2122, 24564, 1968, 273, 7, 42946, 24564, 8, 198, 220, 220, 220, 269, 13345, 19510, 25, 66, 463, 20471, 49174, 3103, 85, 2122, 24564, 1968, 273, 11, 8019, 66, 463, 20471, 828, 66, 463, 20471, 19580, 62, 83, 11, 7, 66, 463, 20471, 3103, 85, 2122, 24564, 1968, 273, 62, 83, 11, 828, 42946, 24564, 8, 198, 437, 198, 198, 8818, 269, 463, 20471, 16742, 3103, 85, 2122, 39746, 2348, 42289, 7, 28144, 11, 87, 24564, 11, 86, 24564, 11, 42946, 24564, 11, 88, 24564, 11, 25927, 276, 2348, 2188, 12332, 11, 7783, 276, 2348, 2188, 12332, 11, 525, 69, 25468, 8, 198, 220, 220, 220, 269, 13345, 19510, 25, 66, 463, 20471, 16742, 3103, 85, 2122, 39746, 2348, 42289, 11, 8019, 66, 463, 20471, 828, 66, 463, 20471, 19580, 62, 83, 11, 7, 66, 463, 20471, 37508, 62, 83, 11, 66, 463, 20471, 51, 22854, 24564, 1968, 273, 62, 83, 11, 66, 463, 20471, 22417, 24564, 1968, 273, 62, 83, 11, 66, 463, 20471, 3103, 85, 2122, 24564, 1968, 273, 62, 83, 11, 66, 463, 20471, 51, 22854, 24564, 1968, 273, 62, 83, 11, 34, 600, 11, 46745, 90, 34, 600, 5512, 46745, 90, 66, 463, 20471, 3103, 85, 2122, 37, 16993, 2348, 2188, 5990, 69, 62, 83, 92, 828, 28144, 11, 87, 24564, 11, 86, 24564, 11, 42946, 24564, 11, 88, 24564, 11, 25927, 276, 2348, 2188, 12332, 11, 7783, 276, 2348, 2188, 12332, 11, 525, 69, 25468, 8, 198, 437, 198, 198, 8818, 269, 463, 20471, 3855, 3103, 85, 2122, 39746, 2348, 42289, 7, 28144, 11, 87, 24564, 11, 86, 24564, 11, 42946, 24564, 11, 88, 24564, 11, 3866, 4288, 11, 31673, 39184, 818, 45992, 11, 282, 2188, 8, 198, 220, 220, 220, 269, 13345, 19510, 25, 66, 463, 20471, 3855, 3103, 85, 2122, 39746, 2348, 42289, 11, 8019, 66, 463, 20471, 828, 66, 463, 20471, 19580, 62, 83, 11, 7, 66, 463, 20471, 37508, 62, 83, 11, 66, 463, 20471, 51, 22854, 24564, 1968, 273, 62, 83, 11, 66, 463, 20471, 22417, 24564, 1968, 273, 62, 83, 11, 66, 463, 20471, 3103, 85, 2122, 24564, 1968, 273, 62, 83, 11, 66, 463, 20471, 51, 22854, 24564, 1968, 273, 62, 83, 11, 66, 463, 20471, 3103, 85, 2122, 37, 16993, 6719, 4288, 62, 83, 11, 34, 600, 11, 46745, 90, 66, 463, 20471, 3103, 85, 2122, 37, 16993, 2348, 2188, 62, 83, 92, 828, 28144, 11, 87, 24564, 11, 86, 24564, 11, 42946, 24564, 11, 88, 24564, 11, 3866, 4288, 11, 31673, 39184, 818, 45992, 11, 282, 2188, 8, 198, 437, 198, 198, 8818, 269, 463, 20471, 3855, 3103, 85, 2122, 39746, 23044, 10223, 10699, 7, 28144, 11, 87, 24564, 11, 86, 24564, 11, 42946, 24564, 11, 88, 24564, 11, 282, 2188, 11, 7857, 818, 45992, 8, 198, 220, 220, 220, 269, 13345, 19510, 25, 66, 463, 20471, 3855, 3103, 85, 2122, 39746, 23044, 10223, 10699, 11, 8019, 66, 463, 20471, 828, 66, 463, 20471, 19580, 62, 83, 11, 7, 66, 463, 20471, 37508, 62, 83, 11, 66, 463, 20471, 51, 22854, 24564, 1968, 273, 62, 83, 11, 66, 463, 20471, 22417, 24564, 1968, 273, 62, 83, 11, 66, 463, 20471, 3103, 85, 2122, 24564, 1968, 273, 62, 83, 11, 66, 463, 20471, 51, 22854, 24564, 1968, 273, 62, 83, 11, 66, 463, 20471, 3103, 85, 2122, 37, 16993, 2348, 2188, 62, 83, 11, 46745, 90, 34, 600, 92, 828, 28144, 11, 87, 24564, 11, 86, 24564, 11, 42946, 24564, 11, 88, 24564, 11, 282, 2188, 11, 7857, 818, 45992, 8, 198, 437, 198, 198, 8818, 269, 463, 20471, 3103, 85, 2122, 39746, 7, 28144, 11, 26591, 11, 87, 24564, 11, 87, 11, 86, 24564, 11, 86, 11, 42946, 24564, 11, 282, 2188, 11, 1818, 14106, 11, 1818, 14106, 10699, 818, 45992, 11, 31361, 11, 88, 24564, 11, 88, 8, 198, 220, 220, 220, 269, 13345, 19510, 25, 66, 463, 20471, 3103, 85, 2122, 39746, 11, 8019, 66, 463, 20471, 828, 66, 463, 20471, 19580, 62, 83, 11, 7, 66, 463, 20471, 37508, 62, 83, 11, 46745, 90, 53, 1868, 5512, 66, 463, 20471, 51, 22854, 24564, 1968, 273, 62, 83, 11, 46745, 90, 53, 1868, 5512, 66, 463, 20471, 22417, 24564, 1968, 273, 62, 83, 11, 46745, 90, 53, 1868, 5512, 66, 463, 20471, 3103, 85, 2122, 24564, 1968, 273, 62, 83, 11, 66, 463, 20471, 3103, 85, 2122, 37, 16993, 2348, 2188, 62, 83, 11, 46745, 90, 53, 1868, 5512, 34, 600, 11, 46745, 90, 53, 1868, 5512, 66, 463, 20471, 51, 22854, 24564, 1968, 273, 62, 83, 11, 46745, 90, 53, 1868, 92, 828, 28144, 11, 26591, 11, 87, 24564, 11, 87, 11, 86, 24564, 11, 86, 11, 42946, 24564, 11, 282, 2188, 11, 1818, 14106, 11, 1818, 14106, 10699, 818, 45992, 11, 31361, 11, 88, 24564, 11, 88, 8, 198, 437, 198, 198, 8818, 269, 463, 20471, 3103, 85, 2122, 7282, 904, 33, 4448, 7, 28144, 11, 26591, 11, 9892, 24564, 11, 9892, 11, 31361, 11, 9945, 24564, 11, 9945, 8, 198, 220, 220, 220, 269, 13345, 19510, 25, 66, 463, 20471, 3103, 85, 2122, 7282, 904, 33, 4448, 11, 8019, 66, 463, 20471, 828, 66, 463, 20471, 19580, 62, 83, 11, 7, 66, 463, 20471, 37508, 62, 83, 11, 46745, 90, 53, 1868, 5512, 66, 463, 20471, 51, 22854, 24564, 1968, 273, 62, 83, 11, 46745, 90, 53, 1868, 5512, 46745, 90, 53, 1868, 5512, 66, 463, 20471, 51, 22854, 24564, 1968, 273, 62, 83, 11, 46745, 90, 53, 1868, 92, 828, 28144, 11, 26591, 11, 9892, 24564, 11, 9892, 11, 31361, 11, 9945, 24564, 11, 9945, 8, 198, 437, 198, 198, 8818, 269, 463, 20471, 16742, 3103, 85, 2122, 7282, 904, 22417, 2348, 42289, 7, 28144, 11, 87, 24564, 11, 9892, 24564, 11, 42946, 24564, 11, 67, 86, 24564, 11, 25927, 276, 2348, 2188, 12332, 11, 7783, 276, 2348, 2188, 12332, 11, 525, 69, 25468, 8, 198, 220, 220, 220, 269, 13345, 19510, 25, 66, 463, 20471, 16742, 3103, 85, 2122, 7282, 904, 22417, 2348, 42289, 11, 8019, 66, 463, 20471, 828, 66, 463, 20471, 19580, 62, 83, 11, 7, 66, 463, 20471, 37508, 62, 83, 11, 66, 463, 20471, 51, 22854, 24564, 1968, 273, 62, 83, 11, 66, 463, 20471, 51, 22854, 24564, 1968, 273, 62, 83, 11, 66, 463, 20471, 3103, 85, 2122, 24564, 1968, 273, 62, 83, 11, 66, 463, 20471, 22417, 24564, 1968, 273, 62, 83, 11, 34, 600, 11, 46745, 90, 34, 600, 5512, 46745, 90, 66, 463, 20471, 3103, 85, 2122, 33, 16993, 22417, 2348, 2188, 5990, 69, 62, 83, 92, 828, 28144, 11, 87, 24564, 11, 9892, 24564, 11, 42946, 24564, 11, 67, 86, 24564, 11, 25927, 276, 2348, 2188, 12332, 11, 7783, 276, 2348, 2188, 12332, 11, 525, 69, 25468, 8, 198, 437, 198, 198, 8818, 269, 463, 20471, 3855, 3103, 85, 2122, 7282, 904, 22417, 2348, 42289, 7, 28144, 11, 87, 24564, 11, 9892, 24564, 11, 42946, 24564, 11, 67, 86, 24564, 11, 3866, 4288, 11, 31673, 39184, 818, 45992, 11, 282, 2188, 8, 198, 220, 220, 220, 269, 13345, 19510, 25, 66, 463, 20471, 3855, 3103, 85, 2122, 7282, 904, 22417, 2348, 42289, 11, 8019, 66, 463, 20471, 828, 66, 463, 20471, 19580, 62, 83, 11, 7, 66, 463, 20471, 37508, 62, 83, 11, 66, 463, 20471, 51, 22854, 24564, 1968, 273, 62, 83, 11, 66, 463, 20471, 51, 22854, 24564, 1968, 273, 62, 83, 11, 66, 463, 20471, 3103, 85, 2122, 24564, 1968, 273, 62, 83, 11, 66, 463, 20471, 22417, 24564, 1968, 273, 62, 83, 11, 66, 463, 20471, 3103, 85, 2122, 33, 16993, 22417, 6719, 4288, 62, 83, 11, 34, 600, 11, 46745, 90, 66, 463, 20471, 3103, 85, 2122, 33, 16993, 22417, 2348, 2188, 62, 83, 92, 828, 28144, 11, 87, 24564, 11, 9892, 24564, 11, 42946, 24564, 11, 67, 86, 24564, 11, 3866, 4288, 11, 31673, 39184, 818, 45992, 11, 282, 2188, 8, 198, 437, 198, 198, 8818, 269, 463, 20471, 3855, 3103, 85, 2122, 7282, 904, 22417, 23044, 10223, 10699, 7, 28144, 11, 87, 24564, 11, 9892, 24564, 11, 42946, 24564, 11, 9744, 24564, 11, 282, 2188, 11, 7857, 818, 45992, 8, 198, 220, 220, 220, 269, 13345, 19510, 25, 66, 463, 20471, 3855, 3103, 85, 2122, 7282, 904, 22417, 23044, 10223, 10699, 11, 8019, 66, 463, 20471, 828, 66, 463, 20471, 19580, 62, 83, 11, 7, 66, 463, 20471, 37508, 62, 83, 11, 66, 463, 20471, 51, 22854, 24564, 1968, 273, 62, 83, 11, 66, 463, 20471, 51, 22854, 24564, 1968, 273, 62, 83, 11, 66, 463, 20471, 3103, 85, 2122, 24564, 1968, 273, 62, 83, 11, 66, 463, 20471, 22417, 24564, 1968, 273, 62, 83, 11, 66, 463, 20471, 3103, 85, 2122, 33, 16993, 22417, 2348, 2188, 62, 83, 11, 46745, 90, 34, 600, 92, 828, 28144, 11, 87, 24564, 11, 9892, 24564, 11, 42946, 24564, 11, 9744, 24564, 11, 282, 2188, 11, 7857, 818, 45992, 8, 198, 437, 198, 198, 8818, 269, 463, 20471, 3103, 85, 2122, 7282, 904, 22417, 7, 28144, 11, 26591, 11, 87, 24564, 11, 87, 11, 9892, 24564, 11, 9892, 11, 42946, 24564, 11, 282, 2188, 11, 1818, 14106, 11, 1818, 14106, 10699, 818, 45992, 11, 31361, 11, 67, 86, 24564, 11, 67, 86, 8, 198, 220, 220, 220, 269, 13345, 19510, 25, 66, 463, 20471, 3103, 85, 2122, 7282, 904, 22417, 11, 8019, 66, 463, 20471, 828, 66, 463, 20471, 19580, 62, 83, 11, 7, 66, 463, 20471, 37508, 62, 83, 11, 46745, 90, 53, 1868, 5512, 66, 463, 20471, 51, 22854, 24564, 1968, 273, 62, 83, 11, 46745, 90, 53, 1868, 5512, 66, 463, 20471, 51, 22854, 24564, 1968, 273, 62, 83, 11, 46745, 90, 53, 1868, 5512, 66, 463, 20471, 3103, 85, 2122, 24564, 1968, 273, 62, 83, 11, 66, 463, 20471, 3103, 85, 2122, 33, 16993, 22417, 2348, 2188, 62, 83, 11, 46745, 90, 53, 1868, 5512, 34, 600, 11, 46745, 90, 53, 1868, 5512, 66, 463, 20471, 22417, 24564, 1968, 273, 62, 83, 11, 46745, 90, 53, 1868, 92, 828, 28144, 11, 26591, 11, 87, 24564, 11, 87, 11, 9892, 24564, 11, 9892, 11, 42946, 24564, 11, 282, 2188, 11, 1818, 14106, 11, 1818, 14106, 10699, 818, 45992, 11, 31361, 11, 67, 86, 24564, 11, 67, 86, 8, 198, 437, 198, 198, 8818, 269, 463, 20471, 3103, 85, 2122, 7282, 904, 22417, 62, 85, 18, 7, 28144, 11, 26591, 11, 87, 24564, 11, 87, 11, 9892, 24564, 11, 9892, 11, 42946, 24564, 11, 282, 2188, 11, 1818, 14106, 11, 1818, 14106, 10699, 818, 45992, 11, 31361, 11, 67, 86, 24564, 11, 67, 86, 8, 198, 220, 220, 220, 269, 13345, 19510, 25, 66, 463, 20471, 3103, 85, 2122, 7282, 904, 22417, 62, 85, 18, 11, 8019, 66, 463, 20471, 828, 66, 463, 20471, 19580, 62, 83, 11, 7, 66, 463, 20471, 37508, 62, 83, 11, 46745, 90, 53, 1868, 5512, 66, 463, 20471, 51, 22854, 24564, 1968, 273, 62, 83, 11, 46745, 90, 53, 1868, 5512, 66, 463, 20471, 51, 22854, 24564, 1968, 273, 62, 83, 11, 46745, 90, 53, 1868, 5512, 66, 463, 20471, 3103, 85, 2122, 24564, 1968, 273, 62, 83, 11, 66, 463, 20471, 3103, 85, 2122, 33, 16993, 22417, 2348, 2188, 62, 83, 11, 46745, 90, 53, 1868, 5512, 34, 600, 11, 46745, 90, 53, 1868, 5512, 66, 463, 20471, 22417, 24564, 1968, 273, 62, 83, 11, 46745, 90, 53, 1868, 92, 828, 28144, 11, 26591, 11, 87, 24564, 11, 87, 11, 9892, 24564, 11, 9892, 11, 42946, 24564, 11, 282, 2188, 11, 1818, 14106, 11, 1818, 14106, 10699, 818, 45992, 11, 31361, 11, 67, 86, 24564, 11, 67, 86, 8, 198, 437, 198, 198, 8818, 269, 463, 20471, 16742, 3103, 85, 2122, 7282, 904, 6601, 2348, 42289, 7, 28144, 11, 86, 24564, 11, 9892, 24564, 11, 42946, 24564, 11, 34350, 24564, 11, 25927, 276, 2348, 2188, 12332, 11, 7783, 276, 2348, 2188, 12332, 11, 525, 69, 25468, 8, 198, 220, 220, 220, 269, 13345, 19510, 25, 66, 463, 20471, 16742, 3103, 85, 2122, 7282, 904, 6601, 2348, 42289, 11, 8019, 66, 463, 20471, 828, 66, 463, 20471, 19580, 62, 83, 11, 7, 66, 463, 20471, 37508, 62, 83, 11, 66, 463, 20471, 22417, 24564, 1968, 273, 62, 83, 11, 66, 463, 20471, 51, 22854, 24564, 1968, 273, 62, 83, 11, 66, 463, 20471, 3103, 85, 2122, 24564, 1968, 273, 62, 83, 11, 66, 463, 20471, 51, 22854, 24564, 1968, 273, 62, 83, 11, 34, 600, 11, 46745, 90, 34, 600, 5512, 46745, 90, 66, 463, 20471, 3103, 85, 2122, 33, 16993, 6601, 2348, 2188, 5990, 69, 62, 83, 92, 828, 28144, 11, 86, 24564, 11, 9892, 24564, 11, 42946, 24564, 11, 34350, 24564, 11, 25927, 276, 2348, 2188, 12332, 11, 7783, 276, 2348, 2188, 12332, 11, 525, 69, 25468, 8, 198, 437, 198, 198, 8818, 269, 463, 20471, 3855, 3103, 85, 2122, 7282, 904, 6601, 2348, 42289, 7, 28144, 11, 86, 24564, 11, 9892, 24564, 11, 42946, 24564, 11, 34350, 24564, 11, 3866, 4288, 11, 31673, 39184, 818, 45992, 11, 282, 2188, 8, 198, 220, 220, 220, 269, 13345, 19510, 25, 66, 463, 20471, 3855, 3103, 85, 2122, 7282, 904, 6601, 2348, 42289, 11, 8019, 66, 463, 20471, 828, 66, 463, 20471, 19580, 62, 83, 11, 7, 66, 463, 20471, 37508, 62, 83, 11, 66, 463, 20471, 22417, 24564, 1968, 273, 62, 83, 11, 66, 463, 20471, 51, 22854, 24564, 1968, 273, 62, 83, 11, 66, 463, 20471, 3103, 85, 2122, 24564, 1968, 273, 62, 83, 11, 66, 463, 20471, 51, 22854, 24564, 1968, 273, 62, 83, 11, 66, 463, 20471, 3103, 85, 2122, 33, 16993, 6601, 6719, 4288, 62, 83, 11, 34, 600, 11, 46745, 90, 66, 463, 20471, 3103, 85, 2122, 33, 16993, 6601, 2348, 2188, 62, 83, 92, 828, 28144, 11, 86, 24564, 11, 9892, 24564, 11, 42946, 24564, 11, 34350, 24564, 11, 3866, 4288, 11, 31673, 39184, 818, 45992, 11, 282, 2188, 8, 198, 437, 198, 198, 8818, 269, 463, 20471, 3855, 3103, 85, 2122, 7282, 904, 6601, 23044, 10223, 10699, 7, 28144, 11, 86, 24564, 11, 9892, 24564, 11, 42946, 24564, 11, 34350, 24564, 11, 282, 2188, 11, 7857, 818, 45992, 8, 198, 220, 220, 220, 269, 13345, 19510, 25, 66, 463, 20471, 3855, 3103, 85, 2122, 7282, 904, 6601, 23044, 10223, 10699, 11, 8019, 66, 463, 20471, 828, 66, 463, 20471, 19580, 62, 83, 11, 7, 66, 463, 20471, 37508, 62, 83, 11, 66, 463, 20471, 22417, 24564, 1968, 273, 62, 83, 11, 66, 463, 20471, 51, 22854, 24564, 1968, 273, 62, 83, 11, 66, 463, 20471, 3103, 85, 2122, 24564, 1968, 273, 62, 83, 11, 66, 463, 20471, 51, 22854, 24564, 1968, 273, 62, 83, 11, 66, 463, 20471, 3103, 85, 2122, 33, 16993, 6601, 2348, 2188, 62, 83, 11, 46745, 90, 34, 600, 92, 828, 28144, 11, 86, 24564, 11, 9892, 24564, 11, 42946, 24564, 11, 34350, 24564, 11, 282, 2188, 11, 7857, 818, 45992, 8, 198, 437, 198, 198, 8818, 269, 463, 20471, 3103, 85, 2122, 7282, 904, 6601, 7, 28144, 11, 26591, 11, 86, 24564, 11, 86, 11, 9892, 24564, 11, 9892, 11, 42946, 24564, 11, 282, 2188, 11, 1818, 14106, 11, 1818, 14106, 10699, 818, 45992, 11, 31361, 11, 34350, 24564, 11, 34350, 8, 198, 220, 220, 220, 269, 13345, 19510, 25, 66, 463, 20471, 3103, 85, 2122, 7282, 904, 6601, 11, 8019, 66, 463, 20471, 828, 66, 463, 20471, 19580, 62, 83, 11, 7, 66, 463, 20471, 37508, 62, 83, 11, 46745, 90, 53, 1868, 5512, 66, 463, 20471, 22417, 24564, 1968, 273, 62, 83, 11, 46745, 90, 53, 1868, 5512, 66, 463, 20471, 51, 22854, 24564, 1968, 273, 62, 83, 11, 46745, 90, 53, 1868, 5512, 66, 463, 20471, 3103, 85, 2122, 24564, 1968, 273, 62, 83, 11, 66, 463, 20471, 3103, 85, 2122, 33, 16993, 6601, 2348, 2188, 62, 83, 11, 46745, 90, 53, 1868, 5512, 34, 600, 11, 46745, 90, 53, 1868, 5512, 66, 463, 20471, 51, 22854, 24564, 1968, 273, 62, 83, 11, 46745, 90, 53, 1868, 92, 828, 28144, 11, 26591, 11, 86, 24564, 11, 86, 11, 9892, 24564, 11, 9892, 11, 42946, 24564, 11, 282, 2188, 11, 1818, 14106, 11, 1818, 14106, 10699, 818, 45992, 11, 31361, 11, 34350, 24564, 11, 34350, 8, 198, 437, 198, 198, 8818, 269, 463, 20471, 3103, 85, 2122, 7282, 904, 6601, 62, 85, 18, 7, 28144, 11, 26591, 11, 86, 24564, 11, 86, 11, 9892, 24564, 11, 9892, 11, 42946, 24564, 11, 282, 2188, 11, 1818, 14106, 11, 1818, 14106, 10699, 818, 45992, 11, 31361, 11, 34350, 24564, 11, 34350, 8, 198, 220, 220, 220, 269, 13345, 19510, 25, 66, 463, 20471, 3103, 85, 2122, 7282, 904, 6601, 62, 85, 18, 11, 8019, 66, 463, 20471, 828, 66, 463, 20471, 19580, 62, 83, 11, 7, 66, 463, 20471, 37508, 62, 83, 11, 46745, 90, 53, 1868, 5512, 66, 463, 20471, 22417, 24564, 1968, 273, 62, 83, 11, 46745, 90, 53, 1868, 5512, 66, 463, 20471, 51, 22854, 24564, 1968, 273, 62, 83, 11, 46745, 90, 53, 1868, 5512, 66, 463, 20471, 3103, 85, 2122, 24564, 1968, 273, 62, 83, 11, 66, 463, 20471, 3103, 85, 2122, 33, 16993, 6601, 2348, 2188, 62, 83, 11, 46745, 90, 53, 1868, 5512, 34, 600, 11, 46745, 90, 53, 1868, 5512, 66, 463, 20471, 51, 22854, 24564, 1968, 273, 62, 83, 11, 46745, 90, 53, 1868, 92, 828, 28144, 11, 26591, 11, 86, 24564, 11, 86, 11, 9892, 24564, 11, 9892, 11, 42946, 24564, 11, 282, 2188, 11, 1818, 14106, 11, 1818, 14106, 10699, 818, 45992, 11, 31361, 11, 34350, 24564, 11, 34350, 8, 198, 437, 198, 198, 8818, 269, 463, 20471, 3546, 17, 5216, 7, 28144, 11, 87, 24564, 11, 87, 11, 86, 24564, 11, 42946, 24564, 11, 4033, 28632, 8, 198, 220, 220, 220, 269, 13345, 19510, 25, 66, 463, 20471, 3546, 17, 5216, 11, 8019, 66, 463, 20471, 828, 66, 463, 20471, 19580, 62, 83, 11, 7, 66, 463, 20471, 37508, 62, 83, 11, 66, 463, 20471, 51, 22854, 24564, 1968, 273, 62, 83, 11, 46745, 90, 53, 1868, 5512, 66, 463, 20471, 22417, 24564, 1968, 273, 62, 83, 11, 66, 463, 20471, 3103, 85, 2122, 24564, 1968, 273, 62, 83, 11, 46745, 90, 53, 1868, 92, 828, 28144, 11, 87, 24564, 11, 87, 11, 86, 24564, 11, 42946, 24564, 11, 4033, 28632, 8, 198, 437, 198, 198, 8818, 269, 463, 20471, 18380, 9806, 39746, 7, 28144, 11, 282, 2188, 11, 14171, 11, 26591, 11, 87, 24564, 11, 87, 11, 31361, 11, 88, 24564, 11, 88, 8, 198, 220, 220, 220, 269, 13345, 19510, 25, 66, 463, 20471, 18380, 9806, 39746, 11, 8019, 66, 463, 20471, 828, 66, 463, 20471, 19580, 62, 83, 11, 7, 66, 463, 20471, 37508, 62, 83, 11, 66, 463, 20471, 18380, 9806, 2348, 42289, 62, 83, 11, 66, 463, 20471, 18380, 9806, 19076, 62, 83, 11, 46745, 90, 53, 1868, 5512, 66, 463, 20471, 51, 22854, 24564, 1968, 273, 62, 83, 11, 46745, 90, 53, 1868, 5512, 46745, 90, 53, 1868, 5512, 66, 463, 20471, 51, 22854, 24564, 1968, 273, 62, 83, 11, 46745, 90, 53, 1868, 92, 828, 28144, 11, 282, 2188, 11, 14171, 11, 26591, 11, 87, 24564, 11, 87, 11, 31361, 11, 88, 24564, 11, 88, 8, 198, 437, 198, 198, 8818, 269, 463, 20471, 18380, 9806, 7282, 904, 7, 28144, 11, 282, 2188, 11, 14171, 11, 26591, 11, 88, 24564, 11, 88, 11, 9892, 24564, 11, 9892, 11, 31361, 11, 34350, 24564, 11, 34350, 8, 198, 220, 220, 220, 269, 13345, 19510, 25, 66, 463, 20471, 18380, 9806, 7282, 904, 11, 8019, 66, 463, 20471, 828, 66, 463, 20471, 19580, 62, 83, 11, 7, 66, 463, 20471, 37508, 62, 83, 11, 66, 463, 20471, 18380, 9806, 2348, 42289, 62, 83, 11, 66, 463, 20471, 18380, 9806, 19076, 62, 83, 11, 46745, 90, 53, 1868, 5512, 66, 463, 20471, 51, 22854, 24564, 1968, 273, 62, 83, 11, 46745, 90, 53, 1868, 5512, 66, 463, 20471, 51, 22854, 24564, 1968, 273, 62, 83, 11, 46745, 90, 53, 1868, 5512, 46745, 90, 53, 1868, 5512, 66, 463, 20471, 51, 22854, 24564, 1968, 273, 62, 83, 11, 46745, 90, 53, 1868, 92, 828, 28144, 11, 282, 2188, 11, 14171, 11, 26591, 11, 88, 24564, 11, 88, 11, 9892, 24564, 11, 9892, 11, 31361, 11, 34350, 24564, 11, 34350, 8, 198, 437, 198, 198, 8818, 269, 463, 20471, 16447, 27201, 278, 24564, 1968, 273, 7, 7742, 278, 24564, 8, 198, 220, 220, 220, 269, 13345, 19510, 25, 66, 463, 20471, 16447, 27201, 278, 24564, 1968, 273, 11, 8019, 66, 463, 20471, 828, 66, 463, 20471, 19580, 62, 83, 11, 7, 46745, 90, 66, 463, 20471, 27201, 278, 24564, 1968, 273, 62, 83, 5512, 828, 7742, 278, 24564, 8, 198, 437, 198, 198, 8818, 269, 463, 20471, 7248, 27201, 278, 17, 67, 24564, 1968, 273, 7, 7742, 278, 24564, 11, 14171, 11, 17497, 23106, 11, 17497, 30916, 11, 1851, 605, 47, 26872, 11, 17899, 38342, 47, 26872, 11, 1851, 605, 1273, 13154, 11, 17899, 38342, 1273, 13154, 8, 198, 220, 220, 220, 269, 13345, 19510, 25, 66, 463, 20471, 7248, 27201, 278, 17, 67, 24564, 1968, 273, 11, 8019, 66, 463, 20471, 828, 66, 463, 20471, 19580, 62, 83, 11, 7, 66, 463, 20471, 27201, 278, 24564, 1968, 273, 62, 83, 11, 66, 463, 20471, 27201, 278, 19076, 62, 83, 11, 34, 600, 11, 34, 600, 11, 34, 600, 11, 34, 600, 11, 34, 600, 11, 34, 600, 828, 7742, 278, 24564, 11, 14171, 11, 17497, 23106, 11, 17497, 30916, 11, 1851, 605, 47, 26872, 11, 17899, 38342, 47, 26872, 11, 1851, 605, 1273, 13154, 11, 17899, 38342, 1273, 13154, 8, 198, 437, 198, 198, 8818, 269, 463, 20471, 7248, 27201, 278, 17, 67, 24564, 1968, 273, 62, 85, 19, 7, 7742, 278, 24564, 11, 14171, 11, 9806, 7742, 278, 45, 272, 27871, 11, 17497, 23106, 11, 17497, 30916, 11, 1851, 605, 47, 26872, 11, 17899, 38342, 47, 26872, 11, 1851, 605, 1273, 13154, 11, 17899, 38342, 1273, 13154, 8, 198, 220, 220, 220, 269, 13345, 19510, 25, 66, 463, 20471, 7248, 27201, 278, 17, 67, 24564, 1968, 273, 62, 85, 19, 11, 8019, 66, 463, 20471, 828, 66, 463, 20471, 19580, 62, 83, 11, 7, 66, 463, 20471, 27201, 278, 24564, 1968, 273, 62, 83, 11, 66, 463, 20471, 27201, 278, 19076, 62, 83, 11, 66, 463, 20471, 45, 272, 24331, 363, 341, 62, 83, 11, 34, 600, 11, 34, 600, 11, 34, 600, 11, 34, 600, 11, 34, 600, 11, 34, 600, 828, 7742, 278, 24564, 11, 14171, 11, 9806, 7742, 278, 45, 272, 27871, 11, 17497, 23106, 11, 17497, 30916, 11, 1851, 605, 47, 26872, 11, 17899, 38342, 47, 26872, 11, 1851, 605, 1273, 13154, 11, 17899, 38342, 1273, 13154, 8, 198, 437, 198, 198, 8818, 269, 463, 20471, 3855, 27201, 278, 17, 67, 24564, 1968, 273, 7, 7742, 278, 24564, 11, 14171, 11, 17497, 23106, 11, 17497, 30916, 11, 1851, 605, 47, 26872, 11, 17899, 38342, 47, 26872, 11, 1851, 605, 1273, 13154, 11, 17899, 38342, 1273, 13154, 8, 198, 220, 220, 220, 269, 13345, 19510, 25, 66, 463, 20471, 3855, 27201, 278, 17, 67, 24564, 1968, 273, 11, 8019, 66, 463, 20471, 828, 66, 463, 20471, 19580, 62, 83, 11, 7, 66, 463, 20471, 27201, 278, 24564, 1968, 273, 62, 83, 11, 46745, 90, 66, 463, 20471, 27201, 278, 19076, 62, 83, 5512, 46745, 90, 34, 600, 5512, 46745, 90, 34, 600, 5512, 46745, 90, 34, 600, 5512, 46745, 90, 34, 600, 5512, 46745, 90, 34, 600, 5512, 46745, 90, 34, 600, 92, 828, 7742, 278, 24564, 11, 14171, 11, 17497, 23106, 11, 17497, 30916, 11, 1851, 605, 47, 26872, 11, 17899, 38342, 47, 26872, 11, 1851, 605, 1273, 13154, 11, 17899, 38342, 1273, 13154, 8, 198, 437, 198, 198, 8818, 269, 463, 20471, 3855, 27201, 278, 17, 67, 24564, 1968, 273, 62, 85, 19, 7, 7742, 278, 24564, 11, 14171, 11, 9806, 7742, 278, 45, 272, 27871, 11, 17497, 23106, 11, 17497, 30916, 11, 1851, 605, 47, 26872, 11, 17899, 38342, 47, 26872, 11, 1851, 605, 1273, 13154, 11, 17899, 38342, 1273, 13154, 8, 198, 220, 220, 220, 269, 13345, 19510, 25, 66, 463, 20471, 3855, 27201, 278, 17, 67, 24564, 1968, 273, 62, 85, 19, 11, 8019, 66, 463, 20471, 828, 66, 463, 20471, 19580, 62, 83, 11, 7, 66, 463, 20471, 27201, 278, 24564, 1968, 273, 62, 83, 11, 46745, 90, 66, 463, 20471, 27201, 278, 19076, 62, 83, 5512, 46745, 90, 66, 463, 20471, 45, 272, 24331, 363, 341, 62, 83, 5512, 46745, 90, 34, 600, 5512, 46745, 90, 34, 600, 5512, 46745, 90, 34, 600, 5512, 46745, 90, 34, 600, 5512, 46745, 90, 34, 600, 5512, 46745, 90, 34, 600, 92, 828, 7742, 278, 24564, 11, 14171, 11, 9806, 7742, 278, 45, 272, 27871, 11, 17497, 23106, 11, 17497, 30916, 11, 1851, 605, 47, 26872, 11, 17899, 38342, 47, 26872, 11, 1851, 605, 1273, 13154, 11, 17899, 38342, 1273, 13154, 8, 198, 437, 198, 198, 8818, 269, 463, 20471, 7248, 27201, 278, 45, 67, 24564, 1968, 273, 7, 7742, 278, 24564, 11, 14171, 11, 46803, 35, 12078, 11, 17497, 29271, 32, 11, 39231, 32, 11, 2536, 485, 32, 8, 198, 220, 220, 220, 269, 13345, 19510, 25, 66, 463, 20471, 7248, 27201, 278, 45, 67, 24564, 1968, 273, 11, 8019, 66, 463, 20471, 828, 66, 463, 20471, 19580, 62, 83, 11, 7, 66, 463, 20471, 27201, 278, 24564, 1968, 273, 62, 83, 11, 66, 463, 20471, 27201, 278, 19076, 62, 83, 11, 34, 600, 11, 46745, 90, 34, 600, 5512, 46745, 90, 34, 600, 5512, 46745, 90, 34, 600, 92, 828, 7742, 278, 24564, 11, 14171, 11, 46803, 35, 12078, 11, 17497, 29271, 32, 11, 39231, 32, 11, 2536, 485, 32, 8, 198, 437, 198, 198, 8818, 269, 463, 20471, 7248, 27201, 278, 45, 67, 24564, 1968, 273, 62, 85, 19, 7, 7742, 278, 24564, 11, 14171, 11, 9806, 7742, 278, 45, 272, 27871, 11, 46803, 35, 12078, 11, 17497, 29271, 32, 11, 39231, 32, 11, 2536, 485, 32, 8, 198, 220, 220, 220, 269, 13345, 19510, 25, 66, 463, 20471, 7248, 27201, 278, 45, 67, 24564, 1968, 273, 62, 85, 19, 11, 8019, 66, 463, 20471, 828, 66, 463, 20471, 19580, 62, 83, 11, 7, 66, 463, 20471, 27201, 278, 24564, 1968, 273, 62, 83, 11, 66, 463, 20471, 27201, 278, 19076, 62, 83, 11, 66, 463, 20471, 45, 272, 24331, 363, 341, 62, 83, 11, 34, 600, 11, 46745, 90, 34, 600, 5512, 46745, 90, 34, 600, 5512, 46745, 90, 34, 600, 92, 828, 7742, 278, 24564, 11, 14171, 11, 9806, 7742, 278, 45, 272, 27871, 11, 46803, 35, 12078, 11, 17497, 29271, 32, 11, 39231, 32, 11, 2536, 485, 32, 8, 198, 437, 198, 198, 8818, 269, 463, 20471, 3855, 27201, 278, 45, 67, 24564, 1968, 273, 7, 7742, 278, 24564, 11, 46803, 35, 12078, 18453, 276, 11, 14171, 11, 46803, 35, 12078, 11, 17497, 29271, 32, 11, 39231, 32, 11, 2536, 485, 32, 8, 198, 220, 220, 220, 269, 13345, 19510, 25, 66, 463, 20471, 3855, 27201, 278, 45, 67, 24564, 1968, 273, 11, 8019, 66, 463, 20471, 828, 66, 463, 20471, 19580, 62, 83, 11, 7, 66, 463, 20471, 27201, 278, 24564, 1968, 273, 62, 83, 11, 34, 600, 11, 46745, 90, 66, 463, 20471, 27201, 278, 19076, 62, 83, 5512, 46745, 90, 34, 600, 5512, 46745, 90, 34, 600, 5512, 46745, 90, 34, 600, 5512, 46745, 90, 34, 600, 92, 828, 7742, 278, 24564, 11, 46803, 35, 12078, 18453, 276, 11, 14171, 11, 46803, 35, 12078, 11, 17497, 29271, 32, 11, 39231, 32, 11, 2536, 485, 32, 8, 198, 437, 198, 198, 8818, 269, 463, 20471, 3855, 27201, 278, 45, 67, 24564, 1968, 273, 62, 85, 19, 7, 7742, 278, 24564, 11, 46803, 35, 12078, 18453, 276, 11, 14171, 11, 9806, 7742, 278, 45, 272, 27871, 11, 46803, 35, 12078, 11, 17497, 29271, 32, 11, 39231, 32, 11, 2536, 485, 32, 8, 198, 220, 220, 220, 269, 13345, 19510, 25, 66, 463, 20471, 3855, 27201, 278, 45, 67, 24564, 1968, 273, 62, 85, 19, 11, 8019, 66, 463, 20471, 828, 66, 463, 20471, 19580, 62, 83, 11, 7, 66, 463, 20471, 27201, 278, 24564, 1968, 273, 62, 83, 11, 34, 600, 11, 46745, 90, 66, 463, 20471, 27201, 278, 19076, 62, 83, 5512, 46745, 90, 66, 463, 20471, 45, 272, 24331, 363, 341, 62, 83, 5512, 46745, 90, 34, 600, 5512, 46745, 90, 34, 600, 5512, 46745, 90, 34, 600, 5512, 46745, 90, 34, 600, 92, 828, 7742, 278, 24564, 11, 46803, 35, 12078, 18453, 276, 11, 14171, 11, 9806, 7742, 278, 45, 272, 27871, 11, 46803, 35, 12078, 11, 17497, 29271, 32, 11, 39231, 32, 11, 2536, 485, 32, 8, 198, 437, 198, 198, 8818, 269, 463, 20471, 3855, 27201, 278, 45, 67, 39746, 26410, 29271, 7, 7742, 278, 24564, 11, 15414, 51, 22854, 24564, 11, 46803, 35, 12078, 11, 22915, 51, 22854, 29271, 32, 8, 198, 220, 220, 220, 269, 13345, 19510, 25, 66, 463, 20471, 3855, 27201, 278, 45, 67, 39746, 26410, 29271, 11, 8019, 66, 463, 20471, 828, 66, 463, 20471, 19580, 62, 83, 11, 7, 66, 463, 20471, 27201, 278, 24564, 1968, 273, 62, 83, 11, 66, 463, 20471, 51, 22854, 24564, 1968, 273, 62, 83, 11, 34, 600, 11, 46745, 90, 34, 600, 92, 828, 7742, 278, 24564, 11, 15414, 51, 22854, 24564, 11, 46803, 35, 12078, 11, 22915, 51, 22854, 29271, 32, 8, 198, 437, 198, 198, 8818, 269, 463, 20471, 3855, 27201, 278, 17, 67, 39746, 26410, 29271, 7, 7742, 278, 24564, 11, 15414, 51, 22854, 24564, 11, 77, 11, 66, 11, 71, 11, 86, 8, 198, 220, 220, 220, 269, 13345, 19510, 25, 66, 463, 20471, 3855, 27201, 278, 17, 67, 39746, 26410, 29271, 11, 8019, 66, 463, 20471, 828, 66, 463, 20471, 19580, 62, 83, 11, 7, 66, 463, 20471, 27201, 278, 24564, 1968, 273, 62, 83, 11, 66, 463, 20471, 51, 22854, 24564, 1968, 273, 62, 83, 11, 46745, 90, 34, 600, 5512, 46745, 90, 34, 600, 5512, 46745, 90, 34, 600, 5512, 46745, 90, 34, 600, 92, 828, 7742, 278, 24564, 11, 15414, 51, 22854, 24564, 11, 77, 11, 66, 11, 71, 11, 86, 8, 198, 437, 198, 198, 8818, 269, 463, 20471, 49174, 27201, 278, 24564, 1968, 273, 7, 7742, 278, 24564, 8, 198, 220, 220, 220, 269, 13345, 19510, 25, 66, 463, 20471, 49174, 27201, 278, 24564, 1968, 273, 11, 8019, 66, 463, 20471, 828, 66, 463, 20471, 19580, 62, 83, 11, 7, 66, 463, 20471, 27201, 278, 24564, 1968, 273, 62, 83, 11, 828, 7742, 278, 24564, 8, 198, 437, 198, 198, 8818, 269, 463, 20471, 27201, 278, 39746, 7, 28144, 11, 7742, 278, 24564, 11, 26591, 11, 87, 24564, 11, 87, 11, 31361, 11, 88, 24564, 11, 88, 8, 198, 220, 220, 220, 269, 13345, 19510, 25, 66, 463, 20471, 27201, 278, 39746, 11, 8019, 66, 463, 20471, 828, 66, 463, 20471, 19580, 62, 83, 11, 7, 66, 463, 20471, 37508, 62, 83, 11, 66, 463, 20471, 27201, 278, 24564, 1968, 273, 62, 83, 11, 46745, 90, 53, 1868, 5512, 66, 463, 20471, 51, 22854, 24564, 1968, 273, 62, 83, 11, 46745, 90, 53, 1868, 5512, 46745, 90, 53, 1868, 5512, 66, 463, 20471, 51, 22854, 24564, 1968, 273, 62, 83, 11, 46745, 90, 53, 1868, 92, 828, 28144, 11, 7742, 278, 24564, 11, 26591, 11, 87, 24564, 11, 87, 11, 31361, 11, 88, 24564, 11, 88, 8, 198, 437, 198, 198, 8818, 269, 463, 20471, 27201, 278, 7282, 904, 7, 28144, 11, 7742, 278, 24564, 11, 26591, 11, 88, 24564, 11, 88, 11, 9892, 24564, 11, 9892, 11, 87, 24564, 11, 87, 11, 31361, 11, 34350, 24564, 11, 34350, 8, 198, 220, 220, 220, 269, 13345, 19510, 25, 66, 463, 20471, 27201, 278, 7282, 904, 11, 8019, 66, 463, 20471, 828, 66, 463, 20471, 19580, 62, 83, 11, 7, 66, 463, 20471, 37508, 62, 83, 11, 66, 463, 20471, 27201, 278, 24564, 1968, 273, 62, 83, 11, 46745, 90, 53, 1868, 5512, 66, 463, 20471, 51, 22854, 24564, 1968, 273, 62, 83, 11, 46745, 90, 53, 1868, 5512, 66, 463, 20471, 51, 22854, 24564, 1968, 273, 62, 83, 11, 46745, 90, 53, 1868, 5512, 66, 463, 20471, 51, 22854, 24564, 1968, 273, 62, 83, 11, 46745, 90, 53, 1868, 5512, 46745, 90, 53, 1868, 5512, 66, 463, 20471, 51, 22854, 24564, 1968, 273, 62, 83, 11, 46745, 90, 53, 1868, 92, 828, 28144, 11, 7742, 278, 24564, 11, 26591, 11, 88, 24564, 11, 88, 11, 9892, 24564, 11, 9892, 11, 87, 24564, 11, 87, 11, 31361, 11, 34350, 24564, 11, 34350, 8, 198, 437, 198, 198, 8818, 269, 463, 20471, 16447, 25526, 341, 24564, 1968, 273, 7, 48545, 24564, 8, 198, 220, 220, 220, 269, 13345, 19510, 25, 66, 463, 20471, 16447, 25526, 341, 24564, 1968, 273, 11, 8019, 66, 463, 20471, 828, 66, 463, 20471, 19580, 62, 83, 11, 7, 46745, 90, 66, 463, 20471, 25526, 341, 24564, 1968, 273, 62, 83, 5512, 828, 48545, 24564, 8, 198, 437, 198, 198, 8818, 269, 463, 20471, 7248, 25526, 341, 24564, 1968, 273, 7, 48545, 24564, 11, 14171, 11, 260, 2290, 45, 272, 27871, 11, 260, 2290, 34, 68, 4386, 8, 198, 220, 220, 220, 269, 13345, 19510, 25, 66, 463, 20471, 7248, 25526, 341, 24564, 1968, 273, 11, 8019, 66, 463, 20471, 828, 66, 463, 20471, 19580, 62, 83, 11, 7, 66, 463, 20471, 25526, 341, 24564, 1968, 273, 62, 83, 11, 66, 463, 20471, 25526, 341, 19076, 62, 83, 11, 66, 463, 20471, 45, 272, 24331, 363, 341, 62, 83, 11, 34, 23352, 828, 48545, 24564, 11, 14171, 11, 260, 2290, 45, 272, 27871, 11, 260, 2290, 34, 68, 4386, 8, 198, 437, 198, 198, 8818, 269, 463, 20471, 3855, 25526, 341, 24564, 1968, 273, 7, 48545, 24564, 11, 14171, 11, 260, 2290, 45, 272, 27871, 11, 260, 2290, 34, 68, 4386, 8, 198, 220, 220, 220, 269, 13345, 19510, 25, 66, 463, 20471, 3855, 25526, 341, 24564, 1968, 273, 11, 8019, 66, 463, 20471, 828, 66, 463, 20471, 19580, 62, 83, 11, 7, 66, 463, 20471, 25526, 341, 24564, 1968, 273, 62, 83, 11, 46745, 90, 66, 463, 20471, 25526, 341, 19076, 62, 83, 5512, 46745, 90, 66, 463, 20471, 45, 272, 24331, 363, 341, 62, 83, 5512, 46745, 90, 34, 23352, 92, 828, 48545, 24564, 11, 14171, 11, 260, 2290, 45, 272, 27871, 11, 260, 2290, 34, 68, 4386, 8, 198, 437, 198, 198, 8818, 269, 463, 20471, 49174, 25526, 341, 24564, 1968, 273, 7, 48545, 24564, 8, 198, 220, 220, 220, 269, 13345, 19510, 25, 66, 463, 20471, 49174, 25526, 341, 24564, 1968, 273, 11, 8019, 66, 463, 20471, 828, 66, 463, 20471, 19580, 62, 83, 11, 7, 66, 463, 20471, 25526, 341, 24564, 1968, 273, 62, 83, 11, 828, 48545, 24564, 8, 198, 437, 198, 198, 8818, 269, 463, 20471, 25526, 341, 39746, 7, 28144, 11, 14171, 11, 26591, 11, 87, 24564, 11, 87, 11, 31361, 11, 88, 24564, 11, 88, 8, 198, 220, 220, 220, 269, 13345, 19510, 25, 66, 463, 20471, 25526, 341, 39746, 11, 8019, 66, 463, 20471, 828, 66, 463, 20471, 19580, 62, 83, 11, 7, 66, 463, 20471, 37508, 62, 83, 11, 66, 463, 20471, 25526, 341, 19076, 62, 83, 11, 46745, 90, 53, 1868, 5512, 66, 463, 20471, 51, 22854, 24564, 1968, 273, 62, 83, 11, 46745, 90, 53, 1868, 5512, 46745, 90, 53, 1868, 5512, 66, 463, 20471, 51, 22854, 24564, 1968, 273, 62, 83, 11, 46745, 90, 53, 1868, 92, 828, 28144, 11, 14171, 11, 26591, 11, 87, 24564, 11, 87, 11, 31361, 11, 88, 24564, 11, 88, 8, 198, 437, 198, 198, 8818, 269, 463, 20471, 25526, 341, 39746, 62, 85, 19, 7, 28144, 11, 48545, 24564, 11, 26591, 11, 87, 24564, 11, 87, 11, 31361, 11, 88, 24564, 11, 88, 8, 198, 220, 220, 220, 269, 13345, 19510, 25, 66, 463, 20471, 25526, 341, 39746, 62, 85, 19, 11, 8019, 66, 463, 20471, 828, 66, 463, 20471, 19580, 62, 83, 11, 7, 66, 463, 20471, 37508, 62, 83, 11, 66, 463, 20471, 25526, 341, 24564, 1968, 273, 62, 83, 11, 46745, 90, 53, 1868, 5512, 66, 463, 20471, 51, 22854, 24564, 1968, 273, 62, 83, 11, 46745, 90, 53, 1868, 5512, 46745, 90, 53, 1868, 5512, 66, 463, 20471, 51, 22854, 24564, 1968, 273, 62, 83, 11, 46745, 90, 53, 1868, 92, 828, 28144, 11, 48545, 24564, 11, 26591, 11, 87, 24564, 11, 87, 11, 31361, 11, 88, 24564, 11, 88, 8, 198, 437, 198, 198, 8818, 269, 463, 20471, 25526, 341, 7282, 904, 7, 28144, 11, 14171, 11, 26591, 11, 88, 24564, 11, 88, 11, 9892, 24564, 11, 9892, 11, 87, 24564, 11, 87, 11, 31361, 11, 34350, 24564, 11, 34350, 8, 198, 220, 220, 220, 269, 13345, 19510, 25, 66, 463, 20471, 25526, 341, 7282, 904, 11, 8019, 66, 463, 20471, 828, 66, 463, 20471, 19580, 62, 83, 11, 7, 66, 463, 20471, 37508, 62, 83, 11, 66, 463, 20471, 25526, 341, 19076, 62, 83, 11, 46745, 90, 53, 1868, 5512, 66, 463, 20471, 51, 22854, 24564, 1968, 273, 62, 83, 11, 46745, 90, 53, 1868, 5512, 66, 463, 20471, 51, 22854, 24564, 1968, 273, 62, 83, 11, 46745, 90, 53, 1868, 5512, 66, 463, 20471, 51, 22854, 24564, 1968, 273, 62, 83, 11, 46745, 90, 53, 1868, 5512, 46745, 90, 53, 1868, 5512, 66, 463, 20471, 51, 22854, 24564, 1968, 273, 62, 83, 11, 46745, 90, 53, 1868, 92, 828, 28144, 11, 14171, 11, 26591, 11, 88, 24564, 11, 88, 11, 9892, 24564, 11, 9892, 11, 87, 24564, 11, 87, 11, 31361, 11, 34350, 24564, 11, 34350, 8, 198, 437, 198, 198, 8818, 269, 463, 20471, 25526, 341, 7282, 904, 62, 85, 19, 7, 28144, 11, 48545, 24564, 11, 26591, 11, 88, 24564, 11, 88, 11, 9892, 24564, 11, 9892, 11, 87, 24564, 11, 87, 11, 31361, 11, 34350, 24564, 11, 34350, 8, 198, 220, 220, 220, 269, 13345, 19510, 25, 66, 463, 20471, 25526, 341, 7282, 904, 62, 85, 19, 11, 8019, 66, 463, 20471, 828, 66, 463, 20471, 19580, 62, 83, 11, 7, 66, 463, 20471, 37508, 62, 83, 11, 66, 463, 20471, 25526, 341, 24564, 1968, 273, 62, 83, 11, 46745, 90, 53, 1868, 5512, 66, 463, 20471, 51, 22854, 24564, 1968, 273, 62, 83, 11, 46745, 90, 53, 1868, 5512, 66, 463, 20471, 51, 22854, 24564, 1968, 273, 62, 83, 11, 46745, 90, 53, 1868, 5512, 66, 463, 20471, 51, 22854, 24564, 1968, 273, 62, 83, 11, 46745, 90, 53, 1868, 5512, 46745, 90, 53, 1868, 5512, 66, 463, 20471, 51, 22854, 24564, 1968, 273, 62, 83, 11, 46745, 90, 53, 1868, 92, 828, 28144, 11, 48545, 24564, 11, 26591, 11, 88, 24564, 11, 88, 11, 9892, 24564, 11, 9892, 11, 87, 24564, 11, 87, 11, 31361, 11, 34350, 24564, 11, 34350, 8, 198, 437, 198, 198, 8818, 269, 463, 20471, 16447, 35972, 8575, 3798, 1968, 273, 7, 27237, 24564, 8, 198, 220, 220, 220, 269, 13345, 19510, 25, 66, 463, 20471, 16447, 35972, 8575, 3798, 1968, 273, 11, 8019, 66, 463, 20471, 828, 66, 463, 20471, 19580, 62, 83, 11, 7, 46745, 90, 66, 463, 20471, 35972, 8575, 3798, 1968, 273, 62, 83, 5512, 828, 27237, 24564, 8, 198, 437, 198, 198, 8818, 269, 463, 20471, 7248, 35972, 8575, 3798, 1968, 273, 7, 27237, 24564, 11, 14050, 77, 45, 11, 14050, 77, 38077, 11, 14050, 77, 43303, 11, 14050, 77, 42, 8, 198, 220, 220, 220, 269, 13345, 19510, 25, 66, 463, 20471, 7248, 35972, 8575, 3798, 1968, 273, 11, 8019, 66, 463, 20471, 828, 66, 463, 20471, 19580, 62, 83, 11, 7, 66, 463, 20471, 35972, 8575, 3798, 1968, 273, 62, 83, 11, 52, 5317, 2624, 11, 34, 23352, 11, 34, 23352, 11, 34, 23352, 828, 27237, 24564, 11, 14050, 77, 45, 11, 14050, 77, 38077, 11, 14050, 77, 43303, 11, 14050, 77, 42, 8, 198, 437, 198, 198, 8818, 269, 463, 20471, 3855, 35972, 8575, 3798, 1968, 273, 7, 27237, 24564, 11, 14050, 77, 45, 11, 14050, 77, 38077, 11, 14050, 77, 43303, 11, 14050, 77, 42, 8, 198, 220, 220, 220, 269, 13345, 19510, 25, 66, 463, 20471, 3855, 35972, 8575, 3798, 1968, 273, 11, 8019, 66, 463, 20471, 828, 66, 463, 20471, 19580, 62, 83, 11, 7, 66, 463, 20471, 35972, 8575, 3798, 1968, 273, 62, 83, 11, 46745, 90, 52, 5317, 2624, 5512, 46745, 90, 34, 23352, 5512, 46745, 90, 34, 23352, 5512, 46745, 90, 34, 23352, 92, 828, 27237, 24564, 11, 14050, 77, 45, 11, 14050, 77, 38077, 11, 14050, 77, 43303, 11, 14050, 77, 42, 8, 198, 437, 198, 198, 8818, 269, 463, 20471, 49174, 35972, 8575, 3798, 1968, 273, 7, 14050, 77, 24564, 8, 198, 220, 220, 220, 269, 13345, 19510, 25, 66, 463, 20471, 49174, 35972, 8575, 3798, 1968, 273, 11, 8019, 66, 463, 20471, 828, 66, 463, 20471, 19580, 62, 83, 11, 7, 66, 463, 20471, 35972, 8575, 3798, 1968, 273, 62, 83, 11, 828, 14050, 77, 24564, 8, 198, 437, 198, 198, 8818, 269, 463, 20471, 35972, 7792, 1214, 29239, 39746, 7, 28144, 11, 27237, 24564, 11, 14050, 77, 19076, 11, 26591, 11, 87, 24564, 11, 87, 11, 31361, 11, 88, 24564, 11, 88, 8, 198, 220, 220, 220, 269, 13345, 19510, 25, 66, 463, 20471, 35972, 7792, 1214, 29239, 39746, 11, 8019, 66, 463, 20471, 828, 66, 463, 20471, 19580, 62, 83, 11, 7, 66, 463, 20471, 37508, 62, 83, 11, 66, 463, 20471, 35972, 8575, 3798, 1968, 273, 62, 83, 11, 66, 463, 20471, 35972, 45, 19076, 62, 83, 11, 46745, 90, 53, 1868, 5512, 66, 463, 20471, 51, 22854, 24564, 1968, 273, 62, 83, 11, 46745, 90, 53, 1868, 5512, 46745, 90, 53, 1868, 5512, 66, 463, 20471, 51, 22854, 24564, 1968, 273, 62, 83, 11, 46745, 90, 53, 1868, 92, 828, 28144, 11, 27237, 24564, 11, 14050, 77, 19076, 11, 26591, 11, 87, 24564, 11, 87, 11, 31361, 11, 88, 24564, 11, 88, 8, 198, 437, 198, 198, 8818, 269, 463, 20471, 35972, 7792, 1214, 29239, 7282, 904, 7, 28144, 11, 27237, 24564, 11, 14050, 77, 19076, 11, 26591, 11, 88, 24564, 11, 88, 11, 9892, 24564, 11, 9892, 11, 87, 24564, 11, 87, 11, 31361, 11, 34350, 24564, 11, 34350, 8, 198, 220, 220, 220, 269, 13345, 19510, 25, 66, 463, 20471, 35972, 7792, 1214, 29239, 7282, 904, 11, 8019, 66, 463, 20471, 828, 66, 463, 20471, 19580, 62, 83, 11, 7, 66, 463, 20471, 37508, 62, 83, 11, 66, 463, 20471, 35972, 8575, 3798, 1968, 273, 62, 83, 11, 66, 463, 20471, 35972, 45, 19076, 62, 83, 11, 46745, 90, 53, 1868, 5512, 66, 463, 20471, 51, 22854, 24564, 1968, 273, 62, 83, 11, 46745, 90, 53, 1868, 5512, 66, 463, 20471, 51, 22854, 24564, 1968, 273, 62, 83, 11, 46745, 90, 53, 1868, 5512, 66, 463, 20471, 51, 22854, 24564, 1968, 273, 62, 83, 11, 46745, 90, 53, 1868, 5512, 46745, 90, 53, 1868, 5512, 66, 463, 20471, 51, 22854, 24564, 1968, 273, 62, 83, 11, 46745, 90, 53, 1868, 92, 828, 28144, 11, 27237, 24564, 11, 14050, 77, 19076, 11, 26591, 11, 88, 24564, 11, 88, 11, 9892, 24564, 11, 9892, 11, 87, 24564, 11, 87, 11, 31361, 11, 34350, 24564, 11, 34350, 8, 198, 437, 198, 198, 8818, 269, 463, 20471, 24095, 13911, 26447, 1634, 39746, 7, 28144, 11, 27237, 24564, 11, 14171, 11, 26591, 11, 87, 24564, 11, 87, 11, 1326, 504, 11, 29510, 11, 29510, 17, 11, 31361, 11, 88, 24564, 11, 88, 8, 198, 220, 220, 220, 269, 13345, 19510, 25, 66, 463, 20471, 24095, 13911, 26447, 1634, 39746, 11, 8019, 66, 463, 20471, 828, 66, 463, 20471, 19580, 62, 83, 11, 7, 66, 463, 20471, 37508, 62, 83, 11, 66, 463, 20471, 35972, 8575, 3798, 1968, 273, 62, 83, 11, 66, 463, 20471, 24095, 35393, 19076, 62, 83, 11, 46745, 90, 53, 1868, 5512, 66, 463, 20471, 51, 22854, 24564, 1968, 273, 62, 83, 11, 46745, 90, 53, 1868, 5512, 46745, 90, 53, 1868, 5512, 46745, 90, 53, 1868, 5512, 46745, 90, 53, 1868, 5512, 46745, 90, 53, 1868, 5512, 66, 463, 20471, 51, 22854, 24564, 1968, 273, 62, 83, 11, 46745, 90, 53, 1868, 92, 828, 28144, 11, 27237, 24564, 11, 14171, 11, 26591, 11, 87, 24564, 11, 87, 11, 1326, 504, 11, 29510, 11, 29510, 17, 11, 31361, 11, 88, 24564, 11, 88, 8, 198, 437, 198, 198, 8818, 269, 463, 20471, 24095, 13911, 26447, 1634, 7282, 904, 7, 28144, 11, 27237, 24564, 11, 14171, 11, 26591, 11, 87, 24564, 11, 87, 11, 1326, 504, 11, 9892, 11, 29510, 11, 29510, 17, 11, 31361, 11, 67, 55, 67, 5308, 504, 24564, 11, 34350, 11, 67, 5308, 504, 8, 198, 220, 220, 220, 269, 13345, 19510, 25, 66, 463, 20471, 24095, 13911, 26447, 1634, 7282, 904, 11, 8019, 66, 463, 20471, 828, 66, 463, 20471, 19580, 62, 83, 11, 7, 66, 463, 20471, 37508, 62, 83, 11, 66, 463, 20471, 35972, 8575, 3798, 1968, 273, 62, 83, 11, 66, 463, 20471, 24095, 35393, 19076, 62, 83, 11, 46745, 90, 53, 1868, 5512, 66, 463, 20471, 51, 22854, 24564, 1968, 273, 62, 83, 11, 46745, 90, 53, 1868, 5512, 46745, 90, 53, 1868, 5512, 46745, 90, 53, 1868, 5512, 46745, 90, 53, 1868, 5512, 46745, 90, 53, 1868, 5512, 46745, 90, 53, 1868, 5512, 66, 463, 20471, 51, 22854, 24564, 1968, 273, 62, 83, 11, 46745, 90, 53, 1868, 5512, 46745, 90, 53, 1868, 92, 828, 28144, 11, 27237, 24564, 11, 14171, 11, 26591, 11, 87, 24564, 11, 87, 11, 1326, 504, 11, 9892, 11, 29510, 11, 29510, 17, 11, 31361, 11, 67, 55, 67, 5308, 504, 24564, 11, 34350, 11, 67, 5308, 504, 8, 198, 437, 198, 198, 8818, 269, 463, 20471, 28532, 425, 33, 11251, 22854, 24564, 1968, 273, 7, 34631, 33, 77, 24564, 11, 87, 24564, 11, 14171, 8, 198, 220, 220, 220, 269, 13345, 19510, 25, 66, 463, 20471, 28532, 425, 33, 11251, 22854, 24564, 1968, 273, 11, 8019, 66, 463, 20471, 828, 66, 463, 20471, 19580, 62, 83, 11, 7, 66, 463, 20471, 51, 22854, 24564, 1968, 273, 62, 83, 11, 66, 463, 20471, 51, 22854, 24564, 1968, 273, 62, 83, 11, 66, 463, 20471, 33, 963, 35393, 19076, 62, 83, 828, 34631, 33, 77, 24564, 11, 87, 24564, 11, 14171, 8, 198, 437, 198, 198, 8818, 269, 463, 20471, 33, 963, 26447, 1634, 39746, 44357, 7, 28144, 11, 14171, 11, 26591, 11, 31361, 11, 87, 24564, 11, 87, 11, 88, 24564, 11, 88, 11, 9374, 29990, 33, 4448, 5308, 272, 19852, 24564, 11, 9374, 29990, 11, 9374, 33, 4448, 11, 11201, 35470, 26287, 41384, 11, 20274, 28768, 5308, 272, 11, 20274, 28768, 19904, 23907, 590, 11, 538, 18217, 261, 11, 20274, 16928, 5308, 272, 11, 20274, 16928, 19904, 23907, 590, 8, 198, 220, 220, 220, 269, 13345, 19510, 25, 66, 463, 20471, 33, 963, 26447, 1634, 39746, 44357, 11, 8019, 66, 463, 20471, 828, 66, 463, 20471, 19580, 62, 83, 11, 7, 66, 463, 20471, 37508, 62, 83, 11, 66, 463, 20471, 33, 963, 35393, 19076, 62, 83, 11, 46745, 90, 53, 1868, 5512, 46745, 90, 53, 1868, 5512, 66, 463, 20471, 51, 22854, 24564, 1968, 273, 62, 83, 11, 46745, 90, 53, 1868, 5512, 66, 463, 20471, 51, 22854, 24564, 1968, 273, 62, 83, 11, 46745, 90, 53, 1868, 5512, 66, 463, 20471, 51, 22854, 24564, 1968, 273, 62, 83, 11, 46745, 90, 53, 1868, 5512, 46745, 90, 53, 1868, 5512, 34, 23352, 11, 46745, 90, 53, 1868, 5512, 46745, 90, 53, 1868, 5512, 34, 23352, 11, 46745, 90, 53, 1868, 5512, 46745, 90, 53, 1868, 92, 828, 28144, 11, 14171, 11, 26591, 11, 31361, 11, 87, 24564, 11, 87, 11, 88, 24564, 11, 88, 11, 9374, 29990, 33, 4448, 5308, 272, 19852, 24564, 11, 9374, 29990, 11, 9374, 33, 4448, 11, 11201, 35470, 26287, 41384, 11, 20274, 28768, 5308, 272, 11, 20274, 28768, 19904, 23907, 590, 11, 538, 18217, 261, 11, 20274, 16928, 5308, 272, 11, 20274, 16928, 19904, 23907, 590, 8, 198, 437, 198, 198, 8818, 269, 463, 20471, 33, 963, 26447, 1634, 39746, 818, 4288, 7, 28144, 11, 14171, 11, 26591, 11, 31361, 11, 87, 24564, 11, 87, 11, 88, 24564, 11, 88, 11, 9374, 29990, 33, 4448, 5308, 272, 19852, 24564, 11, 9374, 29990, 11, 9374, 33, 4448, 11, 395, 15655, 5308, 272, 11, 395, 15655, 19904, 23907, 590, 11, 538, 18217, 261, 8, 198, 220, 220, 220, 269, 13345, 19510, 25, 66, 463, 20471, 33, 963, 26447, 1634, 39746, 818, 4288, 11, 8019, 66, 463, 20471, 828, 66, 463, 20471, 19580, 62, 83, 11, 7, 66, 463, 20471, 37508, 62, 83, 11, 66, 463, 20471, 33, 963, 35393, 19076, 62, 83, 11, 46745, 90, 53, 1868, 5512, 46745, 90, 53, 1868, 5512, 66, 463, 20471, 51, 22854, 24564, 1968, 273, 62, 83, 11, 46745, 90, 53, 1868, 5512, 66, 463, 20471, 51, 22854, 24564, 1968, 273, 62, 83, 11, 46745, 90, 53, 1868, 5512, 66, 463, 20471, 51, 22854, 24564, 1968, 273, 62, 83, 11, 46745, 90, 53, 1868, 5512, 46745, 90, 53, 1868, 5512, 46745, 90, 53, 1868, 5512, 46745, 90, 53, 1868, 5512, 34, 23352, 828, 28144, 11, 14171, 11, 26591, 11, 31361, 11, 87, 24564, 11, 87, 11, 88, 24564, 11, 88, 11, 9374, 29990, 33, 4448, 5308, 272, 19852, 24564, 11, 9374, 29990, 11, 9374, 33, 4448, 11, 395, 15655, 5308, 272, 11, 395, 15655, 19904, 23907, 590, 11, 538, 18217, 261, 8, 198, 437, 198, 198, 8818, 269, 463, 20471, 33, 963, 26447, 1634, 7282, 904, 7, 28144, 11, 14171, 11, 26591, 11, 31361, 11, 87, 24564, 11, 87, 11, 9892, 24564, 11, 9892, 11, 34350, 24564, 11, 34350, 11, 36077, 77, 29990, 33, 4448, 24564, 11, 9374, 29990, 11, 36077, 77, 29990, 23004, 11, 36077, 77, 33, 4448, 23004, 11, 538, 18217, 261, 11, 82, 9586, 5308, 272, 11, 82, 9586, 19904, 23907, 590, 8, 198, 220, 220, 220, 269, 13345, 19510, 25, 66, 463, 20471, 33, 963, 26447, 1634, 7282, 904, 11, 8019, 66, 463, 20471, 828, 66, 463, 20471, 19580, 62, 83, 11, 7, 66, 463, 20471, 37508, 62, 83, 11, 66, 463, 20471, 33, 963, 35393, 19076, 62, 83, 11, 46745, 90, 53, 1868, 5512, 46745, 90, 53, 1868, 5512, 66, 463, 20471, 51, 22854, 24564, 1968, 273, 62, 83, 11, 46745, 90, 53, 1868, 5512, 66, 463, 20471, 51, 22854, 24564, 1968, 273, 62, 83, 11, 46745, 90, 53, 1868, 5512, 66, 463, 20471, 51, 22854, 24564, 1968, 273, 62, 83, 11, 46745, 90, 53, 1868, 5512, 66, 463, 20471, 51, 22854, 24564, 1968, 273, 62, 83, 11, 46745, 90, 53, 1868, 5512, 46745, 90, 53, 1868, 5512, 46745, 90, 53, 1868, 5512, 34, 23352, 11, 46745, 90, 53, 1868, 5512, 46745, 90, 53, 1868, 92, 828, 28144, 11, 14171, 11, 26591, 11, 31361, 11, 87, 24564, 11, 87, 11, 9892, 24564, 11, 9892, 11, 34350, 24564, 11, 34350, 11, 36077, 77, 29990, 33, 4448, 24564, 11, 9374, 29990, 11, 36077, 77, 29990, 23004, 11, 36077, 77, 33, 4448, 23004, 11, 538, 18217, 261, 11, 82, 9586, 5308, 272, 11, 82, 9586, 19904, 23907, 590, 8, 198, 437, 198, 198, 8818, 269, 463, 20471, 7248, 3103, 85, 2122, 45, 67, 24564, 1968, 273, 62, 85, 17, 7, 42946, 24564, 11, 18747, 24539, 11, 15636, 32, 11, 24455, 1273, 13154, 32, 11, 4739, 38765, 32, 11, 14171, 8, 198, 220, 220, 220, 269, 13345, 19510, 25, 66, 463, 20471, 7248, 3103, 85, 2122, 45, 67, 24564, 1968, 273, 62, 85, 17, 11, 8019, 66, 463, 20471, 828, 66, 463, 20471, 19580, 62, 83, 11, 7, 66, 463, 20471, 3103, 85, 2122, 24564, 1968, 273, 62, 83, 11, 34, 600, 11, 46745, 90, 34, 600, 5512, 46745, 90, 34, 600, 5512, 46745, 90, 34, 600, 5512, 66, 463, 20471, 3103, 85, 2122, 19076, 62, 83, 828, 42946, 24564, 11, 18747, 24539, 11, 15636, 32, 11, 24455, 1273, 13154, 32, 11, 4739, 38765, 32, 11, 14171, 8, 198, 437, 198, 198, 8818, 269, 463, 20471, 3855, 3103, 85, 2122, 45, 67, 24564, 1968, 273, 62, 85, 17, 7, 42946, 24564, 11, 18747, 24539, 18453, 276, 11, 18747, 24539, 11, 15636, 32, 11, 2536, 485, 32, 11, 4739, 38765, 32, 11, 14171, 8, 198, 220, 220, 220, 269, 13345, 19510, 25, 66, 463, 20471, 3855, 3103, 85, 2122, 45, 67, 24564, 1968, 273, 62, 85, 17, 11, 8019, 66, 463, 20471, 828, 66, 463, 20471, 19580, 62, 83, 11, 7, 66, 463, 20471, 3103, 85, 2122, 24564, 1968, 273, 62, 83, 11, 34, 600, 11, 46745, 90, 34, 600, 5512, 46745, 90, 34, 600, 5512, 46745, 90, 34, 600, 5512, 46745, 90, 34, 600, 5512, 46745, 90, 66, 463, 20471, 3103, 85, 2122, 19076, 62, 83, 92, 828, 42946, 24564, 11, 18747, 24539, 18453, 276, 11, 18747, 24539, 11, 15636, 32, 11, 2536, 485, 32, 11, 4739, 38765, 32, 11, 14171, 8, 198, 437, 198, 198, 8818, 269, 463, 20471, 4550, 51, 22854, 62, 85, 17, 7, 28144, 11, 14171, 11, 26591, 11, 65, 24564, 11, 65, 11, 31361, 11, 88, 24564, 11, 88, 8, 198, 220, 220, 220, 269, 13345, 19510, 25, 66, 463, 20471, 4550, 51, 22854, 62, 85, 17, 11, 8019, 66, 463, 20471, 828, 66, 463, 20471, 19580, 62, 83, 11, 7, 66, 463, 20471, 37508, 62, 83, 11, 66, 463, 20471, 4550, 19076, 62, 83, 11, 46745, 90, 53, 1868, 5512, 66, 463, 20471, 51, 22854, 24564, 1968, 273, 62, 83, 11, 46745, 90, 53, 1868, 5512, 46745, 90, 53, 1868, 5512, 66, 463, 20471, 51, 22854, 24564, 1968, 273, 62, 83, 11, 46745, 90, 53, 1868, 92, 828, 28144, 11, 14171, 11, 26591, 11, 65, 24564, 11, 65, 11, 31361, 11, 88, 24564, 11, 88, 8, 198, 437, 198, 198, 8818, 269, 463, 20471, 3103, 85, 2122, 7282, 904, 22417, 62, 85, 17, 7, 28144, 11, 26591, 11, 87, 24564, 11, 87, 11, 9892, 24564, 11, 9892, 11, 42946, 24564, 11, 31361, 11, 34350, 24564, 11, 34350, 8, 198, 220, 220, 220, 269, 13345, 19510, 25, 66, 463, 20471, 3103, 85, 2122, 7282, 904, 22417, 62, 85, 17, 11, 8019, 66, 463, 20471, 828, 66, 463, 20471, 19580, 62, 83, 11, 7, 66, 463, 20471, 37508, 62, 83, 11, 46745, 90, 53, 1868, 5512, 66, 463, 20471, 51, 22854, 24564, 1968, 273, 62, 83, 11, 46745, 90, 53, 1868, 5512, 66, 463, 20471, 51, 22854, 24564, 1968, 273, 62, 83, 11, 46745, 90, 53, 1868, 5512, 66, 463, 20471, 3103, 85, 2122, 24564, 1968, 273, 62, 83, 11, 46745, 90, 53, 1868, 5512, 66, 463, 20471, 22417, 24564, 1968, 273, 62, 83, 11, 46745, 90, 53, 1868, 92, 828, 28144, 11, 26591, 11, 87, 24564, 11, 87, 11, 9892, 24564, 11, 9892, 11, 42946, 24564, 11, 31361, 11, 34350, 24564, 11, 34350, 8, 198, 437, 198, 198, 8818, 269, 463, 20471, 3103, 85, 2122, 7282, 904, 6601, 62, 85, 17, 7, 28144, 11, 26591, 11, 87, 24564, 11, 87, 11, 9892, 24564, 11, 9892, 11, 42946, 24564, 11, 31361, 11, 34350, 24564, 11, 34350, 8, 198, 220, 220, 220, 269, 13345, 19510, 25, 66, 463, 20471, 3103, 85, 2122, 7282, 904, 6601, 62, 85, 17, 11, 8019, 66, 463, 20471, 828, 66, 463, 20471, 19580, 62, 83, 11, 7, 66, 463, 20471, 37508, 62, 83, 11, 46745, 90, 53, 1868, 5512, 66, 463, 20471, 22417, 24564, 1968, 273, 62, 83, 11, 46745, 90, 53, 1868, 5512, 66, 463, 20471, 51, 22854, 24564, 1968, 273, 62, 83, 11, 46745, 90, 53, 1868, 5512, 66, 463, 20471, 3103, 85, 2122, 24564, 1968, 273, 62, 83, 11, 46745, 90, 53, 1868, 5512, 66, 463, 20471, 51, 22854, 24564, 1968, 273, 62, 83, 11, 46745, 90, 53, 1868, 92, 828, 28144, 11, 26591, 11, 87, 24564, 11, 87, 11, 9892, 24564, 11, 9892, 11, 42946, 24564, 11, 31361, 11, 34350, 24564, 11, 34350, 8, 198, 437, 628, 198, 21017, 1675, 787, 1243, 670, 319, 410, 17, 25, 198, 198, 8818, 269, 463, 20471, 7248, 3103, 85, 2122, 45, 67, 24564, 1968, 273, 7, 42946, 24564, 11, 18747, 24539, 11, 15636, 32, 11, 24455, 1273, 13154, 32, 11, 4739, 38765, 32, 11, 14171, 8, 198, 220, 220, 220, 269, 13345, 19510, 25, 66, 463, 20471, 7248, 3103, 85, 2122, 45, 67, 24564, 1968, 273, 11, 8019, 66, 463, 20471, 828, 66, 463, 20471, 19580, 62, 83, 11, 7, 66, 463, 20471, 3103, 85, 2122, 24564, 1968, 273, 62, 83, 11, 34, 600, 11, 46745, 90, 34, 600, 5512, 46745, 90, 34, 600, 5512, 46745, 90, 34, 600, 5512, 66, 463, 20471, 3103, 85, 2122, 19076, 62, 83, 828, 42946, 24564, 11, 18747, 24539, 11, 15636, 32, 11, 24455, 1273, 13154, 32, 11, 4739, 38765, 32, 11, 14171, 8, 198, 437, 198, 198, 8818, 269, 463, 20471, 3855, 3103, 85, 2122, 45, 67, 24564, 1968, 273, 7, 42946, 24564, 11, 18747, 24539, 18453, 276, 11, 18747, 24539, 11, 15636, 32, 11, 2536, 485, 32, 11, 4739, 38765, 32, 11, 14171, 8, 198, 220, 220, 220, 269, 13345, 19510, 25, 66, 463, 20471, 3855, 3103, 85, 2122, 45, 67, 24564, 1968, 273, 11, 8019, 66, 463, 20471, 828, 66, 463, 20471, 19580, 62, 83, 11, 7, 66, 463, 20471, 3103, 85, 2122, 24564, 1968, 273, 62, 83, 11, 34, 600, 11, 46745, 90, 34, 600, 5512, 46745, 90, 34, 600, 5512, 46745, 90, 34, 600, 5512, 46745, 90, 34, 600, 5512, 46745, 90, 66, 463, 20471, 3103, 85, 2122, 19076, 62, 83, 92, 828, 42946, 24564, 11, 18747, 24539, 18453, 276, 11, 18747, 24539, 11, 15636, 32, 11, 2536, 485, 32, 11, 4739, 38765, 32, 11, 14171, 8, 198, 437, 198, 198, 8818, 269, 463, 20471, 4550, 51, 22854, 7, 28144, 11, 14171, 11, 26591, 11, 65, 24564, 11, 65, 11, 31361, 11, 88, 24564, 11, 88, 8, 198, 220, 220, 220, 269, 13345, 19510, 25, 66, 463, 20471, 4550, 51, 22854, 11, 8019, 66, 463, 20471, 828, 66, 463, 20471, 19580, 62, 83, 11, 7, 66, 463, 20471, 37508, 62, 83, 11, 66, 463, 20471, 4550, 19076, 62, 83, 11, 46745, 90, 53, 1868, 5512, 66, 463, 20471, 51, 22854, 24564, 1968, 273, 62, 83, 11, 46745, 90, 53, 1868, 5512, 46745, 90, 53, 1868, 5512, 66, 463, 20471, 51, 22854, 24564, 1968, 273, 62, 83, 11, 46745, 90, 53, 1868, 92, 828, 28144, 11, 14171, 11, 26591, 11, 65, 24564, 11, 65, 11, 31361, 11, 88, 24564, 11, 88, 8, 198, 437, 198, 198, 8818, 269, 463, 20471, 3103, 85, 2122, 7282, 904, 22417, 7, 28144, 11, 26591, 11, 87, 24564, 11, 87, 11, 9892, 24564, 11, 9892, 11, 42946, 24564, 11, 31361, 11, 34350, 24564, 11, 34350, 8, 198, 220, 220, 220, 269, 13345, 19510, 25, 66, 463, 20471, 3103, 85, 2122, 7282, 904, 22417, 11, 8019, 66, 463, 20471, 828, 66, 463, 20471, 19580, 62, 83, 11, 7, 66, 463, 20471, 37508, 62, 83, 11, 46745, 90, 53, 1868, 5512, 66, 463, 20471, 51, 22854, 24564, 1968, 273, 62, 83, 11, 46745, 90, 53, 1868, 5512, 66, 463, 20471, 51, 22854, 24564, 1968, 273, 62, 83, 11, 46745, 90, 53, 1868, 5512, 66, 463, 20471, 3103, 85, 2122, 24564, 1968, 273, 62, 83, 11, 46745, 90, 53, 1868, 5512, 66, 463, 20471, 22417, 24564, 1968, 273, 62, 83, 11, 46745, 90, 53, 1868, 92, 828, 28144, 11, 26591, 11, 87, 24564, 11, 87, 11, 9892, 24564, 11, 9892, 11, 42946, 24564, 11, 31361, 11, 34350, 24564, 11, 34350, 8, 198, 437, 198, 198, 8818, 269, 463, 20471, 3103, 85, 2122, 7282, 904, 6601, 7, 28144, 11, 26591, 11, 87, 24564, 11, 87, 11, 9892, 24564, 11, 9892, 11, 42946, 24564, 11, 31361, 11, 34350, 24564, 11, 34350, 8, 198, 220, 220, 220, 269, 13345, 19510, 25, 66, 463, 20471, 3103, 85, 2122, 7282, 904, 6601, 11, 8019, 66, 463, 20471, 828, 66, 463, 20471, 19580, 62, 83, 11, 7, 66, 463, 20471, 37508, 62, 83, 11, 46745, 90, 53, 1868, 5512, 66, 463, 20471, 22417, 24564, 1968, 273, 62, 83, 11, 46745, 90, 53, 1868, 5512, 66, 463, 20471, 51, 22854, 24564, 1968, 273, 62, 83, 11, 46745, 90, 53, 1868, 5512, 66, 463, 20471, 3103, 85, 2122, 24564, 1968, 273, 62, 83, 11, 46745, 90, 53, 1868, 5512, 66, 463, 20471, 51, 22854, 24564, 1968, 273, 62, 83, 11, 46745, 90, 53, 1868, 92, 828, 28144, 11, 26591, 11, 87, 24564, 11, 87, 11, 9892, 24564, 11, 9892, 11, 42946, 24564, 11, 31361, 11, 34350, 24564, 11, 34350, 8, 198, 437, 198 ]
2.303839
14,195
### Linear Algebra # Import functions from Base import Base:dot, transpose, ctranspose, transpose!, ctranspose!, det, inv, norm, rank, *, A_mul_Bt, At_mul_B, At_mul_Bt, Ac_mul_B, A_mul_Bc, Ac_mul_Bc, chol, lu, lufact!, qr, qrfact!, svd, svdfact!, \, diag # Export Functions export isLAPACKAvailable, chol!, solveLU, upper, lower # Export constants export AF_MAT_NONE, AF_MAT_TRANS, AF_MAT_CTRANS, AF_MAT_CONJ , AF_MAT_UPPER, AF_MAT_LOWER, AF_MAT_DIAG_UNIT, AF_MAT_SYM, AF_MAT_POSDEF, AF_MAT_ORTHOG, AF_MAT_TRI_DIAG, AF_MAT_BLOCK_DIAG, AF_NORM_VECTOR_1, AF_NORM_VECTOR_INF, AF_NORM_VECTOR_2, AF_NORM_VECTOR_P, AF_NORM_MATRIX_1, AF_NORM_MATRIX_INF, AF_NORM_MATRIX_2, AF_NORM_MATRIX_L_PQ, AF_NORM_EUCLID # Constants AF_MAT_NONE = 0 AF_MAT_TRANS = 1 AF_MAT_CTRANS = 2 AF_MAT_CONJ = 4 AF_MAT_UPPER = 32 AF_MAT_LOWER = 64 AF_MAT_DIAG_UNIT = 128 AF_MAT_SYM = 512 AF_MAT_POSDEF = 1024 AF_MAT_ORTHOG = 2048 AF_MAT_TRI_DIAG = 4096 AF_MAT_BLOCK_DIAG = 8192 AF_NORM_VECTOR_1 = 0 AF_NORM_VECTOR_INF = 1 AF_NORM_VECTOR_2 = 2 AF_NORM_VECTOR_P = 3 AF_NORM_MATRIX_1 = 4 AF_NORM_MATRIX_INF = 5 AF_NORM_MATRIX_2 = 6 AF_NORM_MATRIX_L_PQ = 7 AF_NORM_EUCLID = AF_NORM_VECTOR_2 # Dot function dot{T,S}(a::AFVector{T}, b::AFVector{S}, lhsprop = AF_MAT_NONE, rhsprop = AF_MAT_NONE) out = new_ptr() af_dot(out, a, b, lhsprop, rhsprop) AFVector{af_promote(T,S)}(out[]) end # Transpose function transpose{T}(a::AFArray{T}) out = new_ptr() af_transpose(out, a, false) AFArray{T}(out[]) end function ctranspose{T}(a::AFArray{T}) out = new_ptr() af_transpose(out, a, true) AFArray{T}(out[]) end function transpose!{T}(a::AFArray{T}) af_transpose_inplace(a, false) a end function ctranspose!{T}(a::AFArray{T}) af_transpose_inplace(a, true) a end # Matrix Operations function det{T<:Real}(a::AFArray{T}) real = Base.Ref{Cdouble}(0) imag = Base.Ref{Cdouble}(0) af_det(real, imag, a) real[] end function det{T<:Complex}(a::AFArray{T}) real = Base.Ref{Cdouble}(0) imag = Base.Ref{Cdouble}(0) af_det(real, imag, a) complex(real[], imag[]) end function inv(a::AFArray, options::Int = AF_MAT_NONE) out = new_ptr() af_inverse(out, a, options) AFArray{backend_eltype(out[])}(out[]) end function norm{T}(a::AFArray{T}; options = AF_NORM_EUCLID, p::Real = 1, q::Real = 1) out = Base.Ref{Cdouble}(0) af_norm(out, a, options, p, q) if T == Float32 T(out[]) else out[] end end function rank(a::AFArray; tol::Cdouble = 1e-5) out = Base.Ref{Cuint}(0) af_rank(out, a, tol) Int(out[]) end # Matrix Multiply function *{T,S}(a::AFArray{T}, b::AFArray{S}; lhsprop = AF_MAT_NONE, rhsprop = AF_MAT_NONE) out = new_ptr() af_matmul(out, a, b, lhsprop, rhsprop) AFMatrix{af_promote(T,S)}(out[]) end A_mul_Bt{T,S}(a::AFMatrix{T}, b::AFMatrix{S}) = *(a, b, rhsprop = AF_MAT_TRANS) At_mul_B{T,S}(a::AFMatrix{T}, b::AFMatrix{S}) = *(a, b, lhsprop = AF_MAT_TRANS) At_mul_Bt{T,S}(a::AFMatrix{T}, b::AFMatrix{S}) = *(a, b, lhsprop = AF_MAT_TRANS, rhsprop = AF_MAT_TRANS) A_mul_Bc{T,S}(a::AFMatrix{T}, b::AFMatrix{S}) = *(a, b, rhsprop=AF_MAT_CTRANS) Ac_mul_B{T,S}(a::AFMatrix{T}, b::AFMatrix{S}) = *(a, b, lhsprop=AF_MAT_CTRANS) Ac_mul_Bc{T,S}(a::AFMatrix{T}, b::AFMatrix{S}) = *(a, b, lhsprop=AF_MAT_CTRANS, rhsprop=AF_MAT_CTRANS) # LAPACK function isLAPACKAvailable() out = Base.Ref{Bool}(0) af_is_lapack_available(out) out[] end # Matrix Factorizations function _chol{T}(a::AFMatrix{T}, is_upper::Bool) out = new_ptr() info = Base.Ref{Cint}(0) af_cholesky(out, info, a, is_upper) info[] > 0 && throw(PosDefException(info)) AFArray{T}(out[]) end function _chol!{T}(a::AFMatrix{T}, is_upper::Bool) info = Base.Ref{Cint}(0) af_cholesky_inplace(info, a, is_upper) info[] > 0 && throw(PosDefException(info)) a end chol(a::AFMatrix, ::Type{Val{:U}}) = _chol(a, true) chol(a::AFMatrix, ::Type{Val{:L}}) = _chol(a, false) chol(a::AFMatrix) = chol(a,Val{:U}) chol!(a::AFMatrix, ::Type{Val{:U}}) = _chol!(a, true) chol!(a::AFMatrix, ::Type{Val{:L}}) = _chol!(a, false) chol!(a::AFMatrix) = chol!(a,Val{:U}) function lu(a::AFMatrix) l = new_ptr() u = new_ptr() p = new_ptr() af_lu(l, u, p, a) AFArray{backend_eltype(l[])}(l[]), AFArray{backend_eltype(u[])}(u[]), (AFArray{backend_eltype(p[])}(p[]) + 1) end function lufact!(a::AFMatrix) p = new_ptr() af_lu_inplace(p, a, true) a, AFArray{backend_eltype(p[])}(p[]) end function qr(a::AFMatrix) q = new_ptr() r = new_ptr() tau = new_ptr() af_qr(q, r, tau, a) AFArray{backend_eltype(q[])}(q[]), AFArray{backend_eltype(r[])}(r[]), AFArray{backend_eltype(tau[])}(tau[]) end function qrfact!(a::AFMatrix) tau = new_ptr() af_qr_inplace(tau, a) a, AFArray{backend_eltype(tau[])}(tau[]) end function svd(a::AFArray) u = new_ptr() s = new_ptr() vt = new_ptr() af_svd(u, s, vt, a) AFArray{backend_eltype(u[])}(u[]), AFArray{backend_eltype(s[])}(s[]), AFArray{backend_eltype(vt[])}(vt[]) end function svdfact!(a::AFArray) u = new_ptr() s = new_ptr() vt = new_ptr() af_svd_inplace(u, s, vt, a) AFArray{backend_eltype(u[])}(u[]), AFArray{backend_eltype(s[])}(s[]), AFArray{backend_eltype(vt[])}(vt[]) end function \(a::AFArray, b::AFArray; options = AF_MAT_NONE) out = new_ptr() af_solve(out, a, b, options) AFArray{backend_eltype(out[])}(out[]) end function solveLU(a::AFArray, p::AFArray, b::AFArray; options = AF_MAT_NONE) out = new_ptr() af_solve_lu(out, a, p, b, options) AFArray{backend_eltype(out[])}(out[]) end function diag{T}(a::AFMatrix{T}, k::Integer = 1) out = new_ptr() af_diag_extract(out, a, k - 1) AFVector{T}(out[]) end function upper{T}(a::AFMatrix{T}; is_unit_diag = false) out = new_ptr() af_upper(out, a, is_unit_diag) AFMatrix{T}(out[]) end function lower{T}(a::AFMatrix{T}; is_unit_diag = false) out = new_ptr() af_lower(out, a, is_unit_diag) AFMatrix{T}(out[]) end
[ 21017, 44800, 978, 29230, 198, 198, 2, 17267, 5499, 422, 7308, 198, 198, 11748, 7308, 25, 26518, 11, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1007, 3455, 11, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 7645, 3455, 11, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1007, 3455, 28265, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 7645, 3455, 28265, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1062, 11, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 800, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2593, 11, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4279, 11, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1635, 11, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 317, 62, 76, 377, 62, 33, 83, 11, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1629, 62, 76, 377, 62, 33, 11, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1629, 62, 76, 377, 62, 33, 83, 11, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4013, 62, 76, 377, 62, 33, 11, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 317, 62, 76, 377, 62, 33, 66, 11, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4013, 62, 76, 377, 62, 33, 66, 11, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 442, 349, 11, 300, 84, 11, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 300, 3603, 28265, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10662, 81, 11, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10662, 81, 22584, 28265, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 264, 20306, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 38487, 7568, 529, 28265, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3467, 11, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2566, 363, 198, 198, 2, 36472, 40480, 198, 198, 39344, 220, 318, 43, 2969, 8120, 10493, 11, 220, 198, 220, 220, 220, 220, 220, 220, 220, 442, 349, 28265, 220, 198, 220, 220, 220, 220, 220, 220, 220, 8494, 41596, 11, 220, 198, 220, 220, 220, 220, 220, 220, 220, 6727, 11, 220, 198, 220, 220, 220, 220, 220, 220, 220, 2793, 198, 198, 2, 36472, 38491, 198, 198, 39344, 220, 12341, 62, 41636, 62, 45, 11651, 11, 198, 220, 220, 220, 220, 220, 220, 220, 12341, 62, 41636, 62, 5446, 15037, 11, 198, 220, 220, 220, 220, 220, 220, 220, 12341, 62, 41636, 62, 4177, 49, 15037, 11, 198, 220, 220, 220, 220, 220, 220, 220, 12341, 62, 41636, 62, 10943, 41, 837, 198, 220, 220, 220, 220, 220, 220, 220, 12341, 62, 41636, 62, 8577, 18973, 11, 198, 220, 220, 220, 220, 220, 220, 220, 12341, 62, 41636, 62, 43, 36048, 11, 198, 220, 220, 220, 220, 220, 220, 220, 12341, 62, 41636, 62, 35, 3539, 38, 62, 4944, 2043, 11, 198, 220, 220, 220, 220, 220, 220, 220, 12341, 62, 41636, 62, 23060, 44, 11, 198, 220, 220, 220, 220, 220, 220, 220, 12341, 62, 41636, 62, 37997, 32988, 11, 198, 220, 220, 220, 220, 220, 220, 220, 12341, 62, 41636, 62, 1581, 4221, 7730, 11, 198, 220, 220, 220, 220, 220, 220, 220, 12341, 62, 41636, 62, 5446, 40, 62, 35, 3539, 38, 11, 198, 220, 220, 220, 220, 220, 220, 220, 12341, 62, 41636, 62, 9148, 11290, 62, 35, 3539, 38, 11, 198, 220, 220, 220, 220, 220, 220, 220, 12341, 62, 35510, 44, 62, 53, 9782, 1581, 62, 16, 11, 198, 220, 220, 220, 220, 220, 220, 220, 12341, 62, 35510, 44, 62, 53, 9782, 1581, 62, 1268, 37, 11, 198, 220, 220, 220, 220, 220, 220, 220, 12341, 62, 35510, 44, 62, 53, 9782, 1581, 62, 17, 11, 198, 220, 220, 220, 220, 220, 220, 220, 12341, 62, 35510, 44, 62, 53, 9782, 1581, 62, 47, 11, 198, 220, 220, 220, 220, 220, 220, 220, 12341, 62, 35510, 44, 62, 41636, 7112, 55, 62, 16, 11, 198, 220, 220, 220, 220, 220, 220, 220, 12341, 62, 35510, 44, 62, 41636, 7112, 55, 62, 1268, 37, 11, 198, 220, 220, 220, 220, 220, 220, 220, 12341, 62, 35510, 44, 62, 41636, 7112, 55, 62, 17, 11, 198, 220, 220, 220, 220, 220, 220, 220, 12341, 62, 35510, 44, 62, 41636, 7112, 55, 62, 43, 62, 47, 48, 11, 198, 220, 220, 220, 220, 220, 220, 220, 12341, 62, 35510, 44, 62, 19684, 5097, 2389, 220, 198, 198, 2, 4757, 1187, 198, 198, 8579, 62, 41636, 62, 45, 11651, 220, 220, 220, 220, 220, 220, 796, 657, 198, 8579, 62, 41636, 62, 5446, 15037, 220, 220, 220, 220, 220, 796, 352, 198, 8579, 62, 41636, 62, 4177, 49, 15037, 220, 220, 220, 220, 796, 362, 198, 8579, 62, 41636, 62, 10943, 41, 220, 220, 220, 220, 220, 220, 796, 604, 220, 220, 220, 220, 198, 8579, 62, 41636, 62, 8577, 18973, 220, 220, 220, 220, 220, 796, 3933, 220, 220, 220, 198, 8579, 62, 41636, 62, 43, 36048, 220, 220, 220, 220, 220, 796, 5598, 220, 220, 220, 198, 8579, 62, 41636, 62, 35, 3539, 38, 62, 4944, 2043, 220, 796, 13108, 220, 220, 198, 8579, 62, 41636, 62, 23060, 44, 220, 220, 220, 220, 220, 220, 220, 796, 22243, 220, 220, 198, 8579, 62, 41636, 62, 37997, 32988, 220, 220, 220, 220, 796, 28119, 220, 198, 8579, 62, 41636, 62, 1581, 4221, 7730, 220, 220, 220, 220, 796, 36117, 220, 198, 8579, 62, 41636, 62, 5446, 40, 62, 35, 3539, 38, 220, 220, 796, 42479, 220, 198, 8579, 62, 41636, 62, 9148, 11290, 62, 35, 3539, 38, 796, 807, 17477, 220, 220, 198, 198, 8579, 62, 35510, 44, 62, 53, 9782, 1581, 62, 16, 796, 657, 220, 220, 220, 220, 220, 220, 198, 8579, 62, 35510, 44, 62, 53, 9782, 1581, 62, 1268, 37, 796, 352, 220, 220, 220, 198, 8579, 62, 35510, 44, 62, 53, 9782, 1581, 62, 17, 796, 362, 220, 198, 8579, 62, 35510, 44, 62, 53, 9782, 1581, 62, 47, 796, 513, 220, 220, 220, 220, 198, 8579, 62, 35510, 44, 62, 41636, 7112, 55, 62, 16, 796, 604, 220, 220, 220, 198, 8579, 62, 35510, 44, 62, 41636, 7112, 55, 62, 1268, 37, 796, 642, 220, 220, 220, 198, 8579, 62, 35510, 44, 62, 41636, 7112, 55, 62, 17, 796, 718, 220, 198, 8579, 62, 35510, 44, 62, 41636, 7112, 55, 62, 43, 62, 47, 48, 796, 767, 220, 220, 220, 198, 8579, 62, 35510, 44, 62, 19684, 5097, 2389, 796, 12341, 62, 35510, 44, 62, 53, 9782, 1581, 62, 17, 198, 198, 2, 22875, 198, 198, 8818, 16605, 90, 51, 11, 50, 92, 7, 64, 3712, 8579, 38469, 90, 51, 5512, 275, 3712, 8579, 38469, 90, 50, 5512, 300, 11994, 22930, 796, 12341, 62, 41636, 62, 45, 11651, 11, 9529, 82, 22930, 796, 12341, 62, 41636, 62, 45, 11651, 8, 198, 220, 220, 220, 503, 796, 649, 62, 20692, 3419, 198, 220, 220, 220, 6580, 62, 26518, 7, 448, 11, 257, 11, 275, 11, 300, 11994, 22930, 11, 9529, 82, 22930, 8, 198, 220, 220, 220, 12341, 38469, 90, 1878, 62, 16963, 1258, 7, 51, 11, 50, 38165, 7, 448, 58, 12962, 198, 437, 198, 220, 220, 220, 220, 198, 2, 3602, 3455, 198, 198, 8818, 1007, 3455, 90, 51, 92, 7, 64, 3712, 8579, 19182, 90, 51, 30072, 198, 220, 220, 220, 503, 796, 649, 62, 20692, 3419, 198, 220, 220, 220, 6580, 62, 7645, 3455, 7, 448, 11, 257, 11, 3991, 8, 198, 220, 220, 220, 12341, 19182, 90, 51, 92, 7, 448, 58, 12962, 198, 437, 198, 198, 8818, 269, 7645, 3455, 90, 51, 92, 7, 64, 3712, 8579, 19182, 90, 51, 30072, 198, 220, 220, 220, 503, 796, 649, 62, 20692, 3419, 198, 220, 220, 220, 6580, 62, 7645, 3455, 7, 448, 11, 257, 11, 2081, 8, 198, 220, 220, 220, 12341, 19182, 90, 51, 92, 7, 448, 58, 12962, 198, 437, 198, 198, 8818, 1007, 3455, 0, 90, 51, 92, 7, 64, 3712, 8579, 19182, 90, 51, 30072, 198, 220, 220, 220, 6580, 62, 7645, 3455, 62, 259, 5372, 7, 64, 11, 3991, 8, 198, 220, 220, 220, 257, 198, 437, 198, 198, 8818, 269, 7645, 3455, 0, 90, 51, 92, 7, 64, 3712, 8579, 19182, 90, 51, 30072, 198, 220, 220, 220, 6580, 62, 7645, 3455, 62, 259, 5372, 7, 64, 11, 2081, 8, 198, 220, 220, 220, 257, 198, 437, 198, 220, 198, 2, 24936, 16205, 198, 198, 8818, 1062, 90, 51, 27, 25, 15633, 92, 7, 64, 3712, 8579, 19182, 90, 51, 30072, 198, 220, 220, 220, 1103, 796, 7308, 13, 8134, 90, 34, 23352, 92, 7, 15, 8, 198, 220, 220, 220, 3590, 796, 7308, 13, 8134, 90, 34, 23352, 92, 7, 15, 8, 198, 220, 220, 220, 6580, 62, 15255, 7, 5305, 11, 3590, 11, 257, 8, 198, 220, 220, 220, 1103, 21737, 198, 437, 198, 198, 8818, 1062, 90, 51, 27, 25, 5377, 11141, 92, 7, 64, 3712, 8579, 19182, 90, 51, 30072, 198, 220, 220, 220, 1103, 796, 7308, 13, 8134, 90, 34, 23352, 92, 7, 15, 8, 198, 220, 220, 220, 3590, 796, 7308, 13, 8134, 90, 34, 23352, 92, 7, 15, 8, 198, 220, 220, 220, 6580, 62, 15255, 7, 5305, 11, 3590, 11, 257, 8, 198, 220, 220, 220, 3716, 7, 5305, 58, 4357, 3590, 58, 12962, 198, 437, 198, 198, 8818, 800, 7, 64, 3712, 8579, 19182, 11, 3689, 3712, 5317, 796, 12341, 62, 41636, 62, 45, 11651, 8, 198, 220, 220, 220, 503, 796, 649, 62, 20692, 3419, 198, 220, 220, 220, 6580, 62, 259, 4399, 7, 448, 11, 257, 11, 3689, 8, 198, 220, 220, 220, 12341, 19182, 90, 1891, 437, 62, 417, 4906, 7, 448, 58, 12962, 92, 7, 448, 58, 12962, 198, 437, 198, 198, 8818, 2593, 90, 51, 92, 7, 64, 3712, 8579, 19182, 90, 51, 19629, 3689, 796, 12341, 62, 35510, 44, 62, 19684, 5097, 2389, 11, 279, 3712, 15633, 796, 352, 11, 10662, 3712, 15633, 796, 352, 8, 198, 220, 220, 220, 503, 796, 7308, 13, 8134, 90, 34, 23352, 92, 7, 15, 8, 198, 220, 220, 220, 6580, 62, 27237, 7, 448, 11, 257, 11, 3689, 11, 279, 11, 10662, 8, 198, 220, 220, 220, 611, 309, 6624, 48436, 2624, 198, 220, 220, 220, 220, 220, 220, 220, 309, 7, 448, 58, 12962, 198, 220, 220, 220, 2073, 198, 220, 220, 220, 220, 220, 220, 220, 503, 21737, 198, 220, 220, 220, 886, 198, 437, 198, 198, 8818, 4279, 7, 64, 3712, 8579, 19182, 26, 284, 75, 3712, 34, 23352, 796, 352, 68, 12, 20, 8, 198, 220, 220, 220, 503, 796, 7308, 13, 8134, 90, 34, 28611, 92, 7, 15, 8, 198, 220, 220, 220, 6580, 62, 43027, 7, 448, 11, 257, 11, 284, 75, 8, 198, 220, 220, 220, 2558, 7, 448, 58, 12962, 198, 437, 198, 198, 2, 24936, 7854, 541, 306, 198, 198, 8818, 1635, 90, 51, 11, 50, 92, 7, 64, 3712, 8579, 19182, 90, 51, 5512, 275, 3712, 8579, 19182, 90, 50, 19629, 300, 11994, 22930, 796, 12341, 62, 41636, 62, 45, 11651, 11, 9529, 82, 22930, 796, 12341, 62, 41636, 62, 45, 11651, 8, 198, 220, 220, 220, 503, 796, 649, 62, 20692, 3419, 198, 220, 220, 220, 6580, 62, 6759, 76, 377, 7, 448, 11, 257, 11, 275, 11, 300, 11994, 22930, 11, 9529, 82, 22930, 8, 198, 220, 220, 220, 12341, 46912, 90, 1878, 62, 16963, 1258, 7, 51, 11, 50, 38165, 7, 448, 58, 12962, 198, 437, 198, 198, 32, 62, 76, 377, 62, 33, 83, 90, 51, 11, 50, 92, 7, 64, 3712, 8579, 46912, 90, 51, 5512, 275, 3712, 8579, 46912, 90, 50, 30072, 796, 1635, 7, 64, 11, 275, 11, 9529, 82, 22930, 796, 12341, 62, 41636, 62, 5446, 15037, 8, 198, 198, 2953, 62, 76, 377, 62, 33, 90, 51, 11, 50, 92, 7, 64, 3712, 8579, 46912, 90, 51, 5512, 275, 3712, 8579, 46912, 90, 50, 30072, 796, 1635, 7, 64, 11, 275, 11, 300, 11994, 22930, 796, 12341, 62, 41636, 62, 5446, 15037, 8, 198, 198, 2953, 62, 76, 377, 62, 33, 83, 90, 51, 11, 50, 92, 7, 64, 3712, 8579, 46912, 90, 51, 5512, 275, 3712, 8579, 46912, 90, 50, 30072, 796, 1635, 7, 64, 11, 275, 11, 300, 11994, 22930, 796, 12341, 62, 41636, 62, 5446, 15037, 11, 9529, 82, 22930, 796, 12341, 62, 41636, 62, 5446, 15037, 8, 198, 198, 32, 62, 76, 377, 62, 33, 66, 90, 51, 11, 50, 92, 7, 64, 3712, 8579, 46912, 90, 51, 5512, 275, 3712, 8579, 46912, 90, 50, 30072, 796, 1635, 7, 64, 11, 275, 11, 9529, 82, 22930, 28, 8579, 62, 41636, 62, 4177, 49, 15037, 8, 198, 198, 12832, 62, 76, 377, 62, 33, 90, 51, 11, 50, 92, 7, 64, 3712, 8579, 46912, 90, 51, 5512, 275, 3712, 8579, 46912, 90, 50, 30072, 796, 1635, 7, 64, 11, 275, 11, 300, 11994, 22930, 28, 8579, 62, 41636, 62, 4177, 49, 15037, 8, 198, 198, 12832, 62, 76, 377, 62, 33, 66, 90, 51, 11, 50, 92, 7, 64, 3712, 8579, 46912, 90, 51, 5512, 275, 3712, 8579, 46912, 90, 50, 30072, 796, 1635, 7, 64, 11, 275, 11, 300, 11994, 22930, 28, 8579, 62, 41636, 62, 4177, 49, 15037, 11, 9529, 82, 22930, 28, 8579, 62, 41636, 62, 4177, 49, 15037, 8, 198, 198, 2, 406, 2969, 8120, 198, 198, 8818, 318, 43, 2969, 8120, 10493, 3419, 198, 220, 220, 220, 503, 796, 7308, 13, 8134, 90, 33, 970, 92, 7, 15, 8, 198, 220, 220, 220, 6580, 62, 271, 62, 37796, 441, 62, 15182, 7, 448, 8, 198, 220, 220, 220, 503, 21737, 198, 437, 198, 198, 2, 24936, 27929, 4582, 198, 198, 8818, 4808, 354, 349, 90, 51, 92, 7, 64, 3712, 8579, 46912, 90, 51, 5512, 318, 62, 45828, 3712, 33, 970, 8, 198, 220, 220, 220, 503, 796, 649, 62, 20692, 3419, 198, 220, 220, 220, 7508, 796, 7308, 13, 8134, 90, 34, 600, 92, 7, 15, 8, 198, 220, 220, 220, 6580, 62, 354, 4316, 2584, 7, 448, 11, 7508, 11, 257, 11, 318, 62, 45828, 8, 198, 220, 220, 220, 7508, 21737, 1875, 657, 11405, 3714, 7, 21604, 7469, 16922, 7, 10951, 4008, 198, 220, 220, 220, 12341, 19182, 90, 51, 92, 7, 448, 58, 12962, 198, 437, 198, 198, 8818, 4808, 354, 349, 0, 90, 51, 92, 7, 64, 3712, 8579, 46912, 90, 51, 5512, 318, 62, 45828, 3712, 33, 970, 8, 198, 220, 220, 220, 7508, 796, 7308, 13, 8134, 90, 34, 600, 92, 7, 15, 8, 198, 220, 220, 220, 6580, 62, 354, 4316, 2584, 62, 259, 5372, 7, 10951, 11, 257, 11, 318, 62, 45828, 8, 198, 220, 220, 220, 7508, 21737, 1875, 657, 11405, 3714, 7, 21604, 7469, 16922, 7, 10951, 4008, 198, 220, 220, 220, 257, 198, 437, 198, 198, 354, 349, 7, 64, 3712, 8579, 46912, 11, 7904, 6030, 90, 7762, 90, 25, 52, 11709, 8, 796, 4808, 354, 349, 7, 64, 11, 2081, 8, 198, 354, 349, 7, 64, 3712, 8579, 46912, 11, 7904, 6030, 90, 7762, 90, 25, 43, 11709, 8, 796, 4808, 354, 349, 7, 64, 11, 3991, 8, 198, 354, 349, 7, 64, 3712, 8579, 46912, 8, 796, 442, 349, 7, 64, 11, 7762, 90, 25, 52, 30072, 198, 198, 354, 349, 0, 7, 64, 3712, 8579, 46912, 11, 7904, 6030, 90, 7762, 90, 25, 52, 11709, 8, 796, 4808, 354, 349, 0, 7, 64, 11, 2081, 8, 198, 354, 349, 0, 7, 64, 3712, 8579, 46912, 11, 7904, 6030, 90, 7762, 90, 25, 43, 11709, 8, 796, 4808, 354, 349, 0, 7, 64, 11, 3991, 8, 198, 354, 349, 0, 7, 64, 3712, 8579, 46912, 8, 796, 442, 349, 0, 7, 64, 11, 7762, 90, 25, 52, 30072, 198, 198, 8818, 300, 84, 7, 64, 3712, 8579, 46912, 8, 198, 220, 220, 220, 300, 796, 649, 62, 20692, 3419, 198, 220, 220, 220, 334, 796, 649, 62, 20692, 3419, 198, 220, 220, 220, 279, 796, 649, 62, 20692, 3419, 198, 220, 220, 220, 6580, 62, 2290, 7, 75, 11, 334, 11, 279, 11, 257, 8, 198, 220, 220, 220, 12341, 19182, 90, 1891, 437, 62, 417, 4906, 7, 75, 58, 12962, 92, 7, 75, 21737, 828, 12341, 19182, 90, 1891, 437, 62, 417, 4906, 7, 84, 58, 12962, 92, 7, 84, 21737, 828, 220, 198, 220, 220, 220, 357, 8579, 19182, 90, 1891, 437, 62, 417, 4906, 7, 79, 58, 12962, 92, 7, 79, 58, 12962, 1343, 352, 8, 198, 437, 198, 198, 8818, 300, 3603, 0, 7, 64, 3712, 8579, 46912, 8, 198, 220, 220, 220, 279, 796, 649, 62, 20692, 3419, 198, 220, 220, 220, 6580, 62, 2290, 62, 259, 5372, 7, 79, 11, 257, 11, 2081, 8, 198, 220, 220, 220, 257, 11, 12341, 19182, 90, 1891, 437, 62, 417, 4906, 7, 79, 58, 12962, 92, 7, 79, 58, 12962, 198, 437, 198, 198, 8818, 10662, 81, 7, 64, 3712, 8579, 46912, 8, 198, 220, 220, 220, 10662, 796, 649, 62, 20692, 3419, 198, 220, 220, 220, 374, 796, 649, 62, 20692, 3419, 198, 220, 220, 220, 256, 559, 796, 649, 62, 20692, 3419, 198, 220, 220, 220, 6580, 62, 80, 81, 7, 80, 11, 374, 11, 256, 559, 11, 257, 8, 198, 220, 220, 220, 12341, 19182, 90, 1891, 437, 62, 417, 4906, 7, 80, 58, 12962, 92, 7, 80, 21737, 828, 12341, 19182, 90, 1891, 437, 62, 417, 4906, 7, 81, 58, 12962, 92, 7, 81, 21737, 828, 220, 198, 220, 220, 220, 12341, 19182, 90, 1891, 437, 62, 417, 4906, 7, 83, 559, 58, 12962, 92, 7, 83, 559, 58, 12962, 198, 437, 198, 198, 8818, 10662, 81, 22584, 0, 7, 64, 3712, 8579, 46912, 8, 198, 220, 220, 220, 256, 559, 796, 649, 62, 20692, 3419, 198, 220, 220, 220, 6580, 62, 80, 81, 62, 259, 5372, 7, 83, 559, 11, 257, 8, 198, 220, 220, 220, 257, 11, 12341, 19182, 90, 1891, 437, 62, 417, 4906, 7, 83, 559, 58, 12962, 92, 7, 83, 559, 58, 12962, 198, 437, 198, 198, 8818, 264, 20306, 7, 64, 3712, 8579, 19182, 8, 198, 220, 220, 220, 334, 796, 649, 62, 20692, 3419, 198, 220, 220, 220, 264, 796, 649, 62, 20692, 3419, 198, 220, 220, 220, 410, 83, 796, 649, 62, 20692, 3419, 198, 220, 220, 220, 6580, 62, 82, 20306, 7, 84, 11, 264, 11, 410, 83, 11, 257, 8, 198, 220, 220, 220, 12341, 19182, 90, 1891, 437, 62, 417, 4906, 7, 84, 58, 12962, 92, 7, 84, 21737, 828, 198, 220, 220, 220, 12341, 19182, 90, 1891, 437, 62, 417, 4906, 7, 82, 58, 12962, 92, 7, 82, 21737, 828, 198, 220, 220, 220, 12341, 19182, 90, 1891, 437, 62, 417, 4906, 7, 36540, 58, 12962, 92, 7, 36540, 58, 12962, 198, 437, 198, 198, 8818, 38487, 7568, 529, 0, 7, 64, 3712, 8579, 19182, 8, 198, 220, 220, 220, 334, 796, 649, 62, 20692, 3419, 198, 220, 220, 220, 264, 796, 649, 62, 20692, 3419, 198, 220, 220, 220, 410, 83, 796, 649, 62, 20692, 3419, 198, 220, 220, 220, 6580, 62, 82, 20306, 62, 259, 5372, 7, 84, 11, 264, 11, 410, 83, 11, 257, 8, 198, 220, 220, 220, 12341, 19182, 90, 1891, 437, 62, 417, 4906, 7, 84, 58, 12962, 92, 7, 84, 21737, 828, 198, 220, 220, 220, 12341, 19182, 90, 1891, 437, 62, 417, 4906, 7, 82, 58, 12962, 92, 7, 82, 21737, 828, 198, 220, 220, 220, 12341, 19182, 90, 1891, 437, 62, 417, 4906, 7, 36540, 58, 12962, 92, 7, 36540, 58, 12962, 198, 437, 198, 198, 8818, 16792, 64, 3712, 8579, 19182, 11, 275, 3712, 8579, 19182, 26, 3689, 796, 12341, 62, 41636, 62, 45, 11651, 8, 198, 220, 220, 220, 503, 796, 649, 62, 20692, 3419, 198, 220, 220, 220, 6580, 62, 82, 6442, 7, 448, 11, 257, 11, 275, 11, 3689, 8, 198, 220, 220, 220, 12341, 19182, 90, 1891, 437, 62, 417, 4906, 7, 448, 58, 12962, 92, 7, 448, 58, 12962, 198, 437, 198, 198, 8818, 8494, 41596, 7, 64, 3712, 8579, 19182, 11, 279, 3712, 8579, 19182, 11, 275, 3712, 8579, 19182, 26, 3689, 796, 12341, 62, 41636, 62, 45, 11651, 8, 198, 220, 220, 220, 503, 796, 649, 62, 20692, 3419, 198, 220, 220, 220, 6580, 62, 82, 6442, 62, 2290, 7, 448, 11, 257, 11, 279, 11, 275, 11, 3689, 8, 198, 220, 220, 220, 12341, 19182, 90, 1891, 437, 62, 417, 4906, 7, 448, 58, 12962, 92, 7, 448, 58, 12962, 198, 437, 198, 198, 8818, 2566, 363, 90, 51, 92, 7, 64, 3712, 8579, 46912, 90, 51, 5512, 479, 3712, 46541, 796, 352, 8, 198, 220, 220, 220, 503, 796, 649, 62, 20692, 3419, 198, 220, 220, 220, 6580, 62, 10989, 363, 62, 2302, 974, 7, 448, 11, 257, 11, 479, 532, 352, 8, 198, 220, 220, 220, 12341, 38469, 90, 51, 92, 7, 448, 58, 12962, 198, 437, 198, 198, 8818, 6727, 90, 51, 92, 7, 64, 3712, 8579, 46912, 90, 51, 19629, 318, 62, 20850, 62, 10989, 363, 796, 3991, 8, 198, 220, 220, 220, 503, 796, 649, 62, 20692, 3419, 198, 220, 220, 220, 6580, 62, 45828, 7, 448, 11, 257, 11, 318, 62, 20850, 62, 10989, 363, 8, 198, 220, 220, 220, 12341, 46912, 90, 51, 92, 7, 448, 58, 12962, 198, 437, 198, 198, 8818, 2793, 90, 51, 92, 7, 64, 3712, 8579, 46912, 90, 51, 19629, 318, 62, 20850, 62, 10989, 363, 796, 3991, 8, 198, 220, 220, 220, 503, 796, 649, 62, 20692, 3419, 198, 220, 220, 220, 6580, 62, 21037, 7, 448, 11, 257, 11, 318, 62, 20850, 62, 10989, 363, 8, 198, 220, 220, 220, 12341, 46912, 90, 51, 92, 7, 448, 58, 12962, 198, 437, 198 ]
1.799031
3,717
<filename>test/dynamic_overlay.jl foo(x) = x^5 bar(x) = x^10 apply(f, x1, x2::Val{T}) where {T} = f(x1, T) function f(x) g = x < 5 ? foo : bar return g(2) end struct DynamicMix <: CompilationContext end allow(ctx::DynamicMix, m::Module) = m == TestMixtape swap(e) = e function swap(e::Expr) new = MacroTools.postwalk(e) do s isexpr(s, :call) || return s s.args[1] == Base.literal_pow || return s return Expr(:call, apply, Base.:(*), s.args[3:end]...) end return new end function transform(::DynamicMix, b) for (v, st) in b replace!(b, v, swap(st)) end return b end # JIT compile an entry and call. @testset "Dynamic overlay" begin fn = Mixtape.jit(DynamicMix(), f, Tuple{Int64}) @test fn(3) == 10 @test fn(6) == 20 # Mixtape cached call. Mixtape.@load_call_interface() @test call(DynamicMix(), f, 3) == 10 @test call(DynamicMix(), f, 6) == 20 # Native. @test f(3) == 2^5 @test f(6) == 2^10 end
[ 27, 34345, 29, 9288, 14, 67, 28995, 62, 2502, 10724, 13, 20362, 198, 21943, 7, 87, 8, 796, 2124, 61, 20, 198, 5657, 7, 87, 8, 796, 2124, 61, 940, 198, 39014, 7, 69, 11, 2124, 16, 11, 2124, 17, 3712, 7762, 90, 51, 30072, 810, 1391, 51, 92, 796, 277, 7, 87, 16, 11, 309, 8, 198, 198, 8818, 277, 7, 87, 8, 198, 220, 220, 220, 308, 796, 2124, 1279, 642, 5633, 22944, 1058, 2318, 198, 220, 220, 220, 1441, 308, 7, 17, 8, 198, 437, 198, 198, 7249, 26977, 35608, 1279, 25, 3082, 10520, 21947, 886, 198, 198, 12154, 7, 49464, 3712, 44090, 35608, 11, 285, 3712, 26796, 8, 796, 285, 6624, 6208, 44, 43938, 198, 198, 2032, 499, 7, 68, 8, 796, 304, 198, 8818, 16075, 7, 68, 3712, 3109, 1050, 8, 198, 220, 220, 220, 649, 796, 42755, 33637, 13, 7353, 11152, 7, 68, 8, 466, 264, 198, 220, 220, 220, 220, 220, 220, 220, 318, 31937, 7, 82, 11, 1058, 13345, 8, 8614, 1441, 264, 198, 220, 220, 220, 220, 220, 220, 220, 264, 13, 22046, 58, 16, 60, 6624, 7308, 13, 18250, 1691, 62, 79, 322, 8614, 1441, 264, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 1475, 1050, 7, 25, 13345, 11, 4174, 11, 7308, 11207, 46491, 828, 264, 13, 22046, 58, 18, 25, 437, 60, 23029, 198, 220, 220, 220, 886, 198, 220, 220, 220, 1441, 649, 198, 437, 198, 198, 8818, 6121, 7, 3712, 44090, 35608, 11, 275, 8, 198, 220, 220, 220, 329, 357, 85, 11, 336, 8, 287, 275, 198, 220, 220, 220, 220, 220, 220, 220, 6330, 0, 7, 65, 11, 410, 11, 16075, 7, 301, 4008, 198, 220, 220, 220, 886, 198, 220, 220, 220, 1441, 275, 198, 437, 198, 198, 2, 449, 2043, 17632, 281, 5726, 290, 869, 13, 198, 31, 9288, 2617, 366, 44090, 33345, 1, 2221, 198, 220, 220, 220, 24714, 796, 337, 43938, 13, 45051, 7, 44090, 35608, 22784, 277, 11, 309, 29291, 90, 5317, 2414, 30072, 198, 220, 220, 220, 2488, 9288, 24714, 7, 18, 8, 6624, 838, 198, 220, 220, 220, 2488, 9288, 24714, 7, 21, 8, 6624, 1160, 628, 220, 220, 220, 1303, 337, 43938, 39986, 869, 13, 198, 220, 220, 220, 337, 43938, 13, 31, 2220, 62, 13345, 62, 39994, 3419, 198, 220, 220, 220, 2488, 9288, 869, 7, 44090, 35608, 22784, 277, 11, 513, 8, 6624, 838, 198, 220, 220, 220, 2488, 9288, 869, 7, 44090, 35608, 22784, 277, 11, 718, 8, 6624, 1160, 628, 220, 220, 220, 1303, 12547, 13, 198, 220, 220, 220, 2488, 9288, 277, 7, 18, 8, 6624, 362, 61, 20, 198, 220, 220, 220, 2488, 9288, 277, 7, 21, 8, 6624, 362, 61, 940, 198, 437, 198 ]
2.20614
456
<filename>test/basics.jl<gh_stars>0 @testset "DWDataReader.File basics" begin @test_throws ArgumentError DWDataReader.File("") end
[ 27, 34345, 29, 9288, 14, 12093, 873, 13, 20362, 27, 456, 62, 30783, 29, 15, 198, 31, 9288, 2617, 366, 42955, 6601, 33634, 13, 8979, 19165, 1, 2221, 198, 220, 220, 220, 2488, 9288, 62, 400, 8516, 45751, 12331, 29652, 6601, 33634, 13, 8979, 7203, 4943, 198, 437, 198 ]
2.755102
49
<filename>src/core/objective.jl ################################################################################ # Copyright 2020, <NAME>, <NAME> # ################################################################################ # PowerModelsDistributionStateEstimation.jl # # An extention package of PowerModels(Distribution).jl for Static Power System # # State Estimation. # ################################################################################ """ objective_mc_se """ function objective_mc_se(pm::_PMD.AbstractUnbalancedPowerModel) return JuMP.@objective(pm.model, Min, sum( sum( sum(_PMD.var(pm, nw, :res, i)[idx] for idx in 1:length(_PMD.var(pm, nw, :res, i)) ) for i in _PMD.ids(pm, nw, :meas)) for (nw, nw_ref) in _PMD.nws(pm) ) ) end
[ 27, 34345, 29, 10677, 14, 7295, 14, 15252, 425, 13, 20362, 198, 29113, 29113, 14468, 198, 2, 220, 15069, 12131, 11, 1279, 20608, 22330, 1279, 20608, 29, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 198, 29113, 29113, 14468, 198, 2, 4333, 5841, 1424, 20344, 3890, 9012, 22362, 18991, 13, 20362, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 198, 2, 1052, 1070, 1463, 5301, 286, 4333, 5841, 1424, 7, 20344, 3890, 737, 20362, 329, 36125, 4333, 4482, 1303, 198, 2, 1812, 10062, 18991, 13, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 198, 29113, 29113, 14468, 198, 37811, 198, 220, 220, 220, 9432, 62, 23209, 62, 325, 198, 37811, 198, 8818, 9432, 62, 23209, 62, 325, 7, 4426, 3712, 62, 5868, 35, 13, 23839, 3118, 27753, 13434, 17633, 8, 198, 220, 220, 220, 1441, 12585, 7378, 13, 31, 15252, 425, 7, 4426, 13, 19849, 11, 1855, 11, 198, 220, 220, 220, 2160, 7, 198, 220, 220, 220, 220, 220, 220, 220, 2160, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2160, 28264, 5868, 35, 13, 7785, 7, 4426, 11, 299, 86, 11, 1058, 411, 11, 1312, 38381, 312, 87, 60, 329, 4686, 87, 287, 352, 25, 13664, 28264, 5868, 35, 13, 7785, 7, 4426, 11, 299, 86, 11, 1058, 411, 11, 1312, 4008, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 329, 1312, 287, 4808, 5868, 35, 13, 2340, 7, 4426, 11, 299, 86, 11, 1058, 1326, 292, 4008, 198, 220, 220, 220, 329, 357, 47516, 11, 299, 86, 62, 5420, 8, 287, 4808, 5868, 35, 13, 77, 18504, 7, 4426, 8, 1267, 198, 220, 220, 220, 1267, 198, 437, 198 ]
2.421875
384
<reponame>ryanstoner1/COAST.jl using Pkg Pkg.activate(pwd()) using Revise using COAST using JuMP using Test ENV["JULIA_SHELL"]="/bin/bash" @testset "COAST.jl" begin @test loaded_COAST()==true end @testset "app.jl" begin progress_test = [0.0] COAST.App.launchServer(progress_test,8040) end
[ 27, 7856, 261, 480, 29, 29038, 3743, 263, 16, 14, 8220, 11262, 13, 20362, 198, 3500, 350, 10025, 198, 47, 10025, 13, 39022, 7, 79, 16993, 28955, 198, 3500, 5416, 786, 198, 3500, 7375, 11262, 198, 3500, 12585, 7378, 198, 3500, 6208, 628, 198, 1677, 53, 14692, 41, 6239, 3539, 62, 9693, 23304, 8973, 35922, 8800, 14, 41757, 1, 198, 31, 9288, 2617, 366, 8220, 11262, 13, 20362, 1, 2221, 198, 220, 220, 220, 2488, 9288, 9639, 62, 8220, 11262, 3419, 855, 7942, 198, 437, 198, 198, 31, 9288, 2617, 366, 1324, 13, 20362, 1, 2221, 628, 220, 220, 220, 4371, 62, 9288, 796, 685, 15, 13, 15, 60, 198, 220, 220, 220, 7375, 11262, 13, 4677, 13, 35681, 10697, 7, 33723, 62, 9288, 11, 1795, 1821, 8, 198, 220, 220, 220, 220, 198, 437 ]
2.288889
135
using SparseArrays, StatPlots include("util.jl") mutable struct Point position::Tuple{Int64,Int64} velocity::Tuple{Int64,Int64} end function make_sky()::Array{Point} points::Array{Point} = [] for line in getlines("inputs/10_test.txt") m = match(r"position=<\s*(-?\d+),\s*(-?\d+)>\s*velocity=<\s*(-?\d+),\s*(-?\d+)>", line) p = Point((parse(Int64,m[1]),parse(Int64,m[2])),(parse(Int64,m[3]),parse(Int64,m[4]))) push!(points, p) end return points end function make_all_positive(a::Array{Tuple{Int64,Int64}})::Array{Tuple{Int64,Int64}} xmin = Inf ymin = Inf for t in a if t[1] < xmin xmin = t[1] end if t[2] < ymin ymin = t[2] end end newpoints::Array{Tuple{Int64,Int64}} = [] for t in a push!(newpoints, ((t[1]-xmin)+1, (t[2]-ymin)+1)) end return newpoints end function fast_forward_point(p::Point,seconds::Int64)::Tuple{Int64,Int64} x = p.position[1] + seconds*p.velocity[1] y = p.position[2] + seconds*p.velocity[2] return (x,y) end function make_grid(a::Array{Tuple{Int64,Int64}})::Array{Int64,2} xmax = 0 ymax = 0 for t in a if t[1] > xmax xmax = t[1] end if t[2] > ymax ymax = t[2] end end grid = zeros(ymax,xmax) for t in a grid[1+ymax-t[2],t[1]] = 1 end return grid end function get_sky_at(init::Array{Point}, seconds::Int64)::Array{Tuple{Int64,Int64}} newpoints = fast_forward_point.(init, seconds) newview = make_all_positive(newpoints) return newview end function get_size(a::Array{Tuple{Int64,Int64}})::Int64 xmax = 0 ymax = 0 for p in a if p[1] > xmax xmax = p[1] end if p[2] > ymax ymax = p[2] end end return xmax*ymax end function get_message(init::Array{Point})::Array{Int64,2} skies = [] for n in 0:100000 if n % 1000 == 0 println(n) end s = get_sky_at(init, n) area = get_size(s) push!(skies, (area,s)) end smallest_sky = sort(skies, by=x->x[1])[1] return make_grid(smallest_sky[2]) end sky = make_sky() message = get_message(sky) heatmap(message)
[ 3500, 1338, 17208, 3163, 20477, 11, 5133, 3646, 1747, 198, 17256, 7203, 22602, 13, 20362, 4943, 198, 198, 76, 18187, 2878, 6252, 198, 220, 220, 220, 2292, 3712, 51, 29291, 90, 5317, 2414, 11, 5317, 2414, 92, 198, 220, 220, 220, 15432, 3712, 51, 29291, 90, 5317, 2414, 11, 5317, 2414, 92, 198, 437, 198, 198, 8818, 787, 62, 15688, 33529, 25, 19182, 90, 12727, 92, 198, 220, 220, 220, 2173, 3712, 19182, 90, 12727, 92, 796, 220, 17635, 198, 220, 220, 220, 329, 1627, 287, 651, 6615, 7203, 15414, 82, 14, 940, 62, 9288, 13, 14116, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 285, 796, 2872, 7, 81, 1, 9150, 28, 27, 59, 82, 9, 32590, 30, 59, 67, 10, 828, 59, 82, 9, 32590, 30, 59, 67, 28988, 29, 59, 82, 9, 626, 11683, 28, 27, 59, 82, 9, 32590, 30, 59, 67, 10, 828, 59, 82, 9, 32590, 30, 59, 67, 28988, 29, 1600, 1627, 8, 198, 220, 220, 220, 220, 220, 220, 220, 279, 796, 6252, 19510, 29572, 7, 5317, 2414, 11, 76, 58, 16, 46570, 29572, 7, 5317, 2414, 11, 76, 58, 17, 12962, 828, 7, 29572, 7, 5317, 2414, 11, 76, 58, 18, 46570, 29572, 7, 5317, 2414, 11, 76, 58, 19, 60, 22305, 198, 220, 220, 220, 220, 220, 220, 220, 4574, 0, 7, 13033, 11, 279, 8, 198, 220, 220, 220, 886, 198, 220, 220, 220, 1441, 2173, 198, 437, 198, 198, 8818, 787, 62, 439, 62, 24561, 7, 64, 3712, 19182, 90, 51, 29291, 90, 5317, 2414, 11, 5317, 2414, 11709, 2599, 25, 19182, 90, 51, 29291, 90, 5317, 2414, 11, 5317, 2414, 11709, 198, 220, 220, 220, 2124, 1084, 796, 4806, 198, 220, 220, 220, 331, 1084, 796, 4806, 198, 220, 220, 220, 329, 256, 287, 257, 198, 220, 220, 220, 220, 220, 220, 220, 611, 256, 58, 16, 60, 1279, 2124, 1084, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2124, 1084, 796, 256, 58, 16, 60, 198, 220, 220, 220, 220, 220, 220, 220, 886, 198, 220, 220, 220, 220, 220, 220, 220, 611, 256, 58, 17, 60, 1279, 331, 1084, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 331, 1084, 796, 256, 58, 17, 60, 198, 220, 220, 220, 220, 220, 220, 220, 886, 198, 220, 220, 220, 886, 198, 220, 220, 220, 649, 13033, 3712, 19182, 90, 51, 29291, 90, 5317, 2414, 11, 5317, 2414, 11709, 796, 17635, 198, 220, 220, 220, 329, 256, 287, 257, 198, 220, 220, 220, 220, 220, 220, 220, 4574, 0, 7, 3605, 13033, 11, 14808, 83, 58, 16, 45297, 87, 1084, 47762, 16, 11, 357, 83, 58, 17, 45297, 88, 1084, 47762, 16, 4008, 198, 220, 220, 220, 886, 198, 220, 220, 220, 1441, 649, 13033, 198, 437, 198, 198, 8818, 3049, 62, 11813, 62, 4122, 7, 79, 3712, 12727, 11, 43012, 3712, 5317, 2414, 2599, 25, 51, 29291, 90, 5317, 2414, 11, 5317, 2414, 92, 198, 220, 220, 220, 2124, 796, 279, 13, 9150, 58, 16, 60, 1343, 4201, 9, 79, 13, 626, 11683, 58, 16, 60, 198, 220, 220, 220, 331, 796, 279, 13, 9150, 58, 17, 60, 1343, 4201, 9, 79, 13, 626, 11683, 58, 17, 60, 198, 220, 220, 220, 1441, 357, 87, 11, 88, 8, 198, 437, 198, 198, 8818, 787, 62, 25928, 7, 64, 3712, 19182, 90, 51, 29291, 90, 5317, 2414, 11, 5317, 2414, 11709, 2599, 25, 19182, 90, 5317, 2414, 11, 17, 92, 198, 220, 220, 220, 2124, 9806, 796, 657, 198, 220, 220, 220, 331, 9806, 796, 657, 198, 220, 220, 220, 329, 256, 287, 257, 198, 220, 220, 220, 220, 220, 220, 220, 611, 256, 58, 16, 60, 1875, 2124, 9806, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2124, 9806, 796, 256, 58, 16, 60, 198, 220, 220, 220, 220, 220, 220, 220, 886, 198, 220, 220, 220, 220, 220, 220, 220, 611, 256, 58, 17, 60, 1875, 331, 9806, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 331, 9806, 796, 256, 58, 17, 60, 198, 220, 220, 220, 220, 220, 220, 220, 886, 198, 220, 220, 220, 886, 198, 220, 220, 220, 10706, 796, 1976, 27498, 7, 4948, 897, 11, 87, 9806, 8, 198, 220, 220, 220, 329, 256, 287, 257, 198, 220, 220, 220, 220, 220, 220, 220, 10706, 58, 16, 10, 4948, 897, 12, 83, 58, 17, 4357, 83, 58, 16, 11907, 796, 352, 198, 220, 220, 220, 886, 198, 220, 220, 220, 1441, 10706, 198, 437, 198, 198, 8818, 651, 62, 15688, 62, 265, 7, 15003, 3712, 19182, 90, 12727, 5512, 4201, 3712, 5317, 2414, 2599, 25, 19182, 90, 51, 29291, 90, 5317, 2414, 11, 5317, 2414, 11709, 198, 220, 220, 220, 649, 13033, 796, 3049, 62, 11813, 62, 4122, 12195, 15003, 11, 4201, 8, 198, 220, 220, 220, 649, 1177, 796, 787, 62, 439, 62, 24561, 7, 3605, 13033, 8, 198, 220, 220, 220, 1441, 649, 1177, 198, 437, 198, 198, 8818, 651, 62, 7857, 7, 64, 3712, 19182, 90, 51, 29291, 90, 5317, 2414, 11, 5317, 2414, 11709, 2599, 25, 5317, 2414, 198, 220, 220, 220, 2124, 9806, 796, 657, 198, 220, 220, 220, 331, 9806, 796, 657, 198, 220, 220, 220, 329, 279, 287, 257, 198, 220, 220, 220, 220, 220, 220, 220, 611, 279, 58, 16, 60, 1875, 2124, 9806, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2124, 9806, 796, 279, 58, 16, 60, 198, 220, 220, 220, 220, 220, 220, 220, 886, 198, 220, 220, 220, 220, 220, 220, 220, 611, 279, 58, 17, 60, 1875, 331, 9806, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 331, 9806, 796, 279, 58, 17, 60, 198, 220, 220, 220, 220, 220, 220, 220, 886, 198, 220, 220, 220, 886, 198, 220, 220, 220, 1441, 2124, 9806, 9, 4948, 897, 198, 437, 198, 198, 8818, 651, 62, 20500, 7, 15003, 3712, 19182, 90, 12727, 92, 2599, 25, 19182, 90, 5317, 2414, 11, 17, 92, 198, 220, 220, 220, 24091, 796, 17635, 198, 220, 220, 220, 329, 299, 287, 657, 25, 3064, 830, 198, 220, 220, 220, 220, 220, 220, 220, 611, 299, 4064, 8576, 6624, 657, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 44872, 7, 77, 8, 198, 220, 220, 220, 220, 220, 220, 220, 886, 198, 220, 220, 220, 220, 220, 220, 220, 264, 796, 651, 62, 15688, 62, 265, 7, 15003, 11, 299, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1989, 796, 651, 62, 7857, 7, 82, 8, 198, 220, 220, 220, 220, 220, 220, 220, 4574, 0, 7, 8135, 444, 11, 357, 20337, 11, 82, 4008, 198, 220, 220, 220, 886, 198, 220, 220, 220, 18197, 62, 15688, 796, 3297, 7, 8135, 444, 11, 416, 28, 87, 3784, 87, 58, 16, 12962, 58, 16, 60, 198, 220, 220, 220, 1441, 787, 62, 25928, 7, 17470, 395, 62, 15688, 58, 17, 12962, 198, 437, 198, 198, 15688, 796, 787, 62, 15688, 3419, 198, 20500, 796, 651, 62, 20500, 7, 15688, 8, 198, 25080, 8899, 7, 20500, 8, 198 ]
1.918556
1,191
<filename>src/helpers.jl # g + g^2 + ... + g^(T-1) pvfactor(g, T) = (g ^ T - 1.0) / (g - 1.0); # Present value. First entry not discounted. present_value(xV, R) = sum(xV ./ (R .^ (0 : (length(xV)-1)))); # -----------
[ 27, 34345, 29, 10677, 14, 16794, 364, 13, 20362, 198, 2, 308, 1343, 308, 61, 17, 1343, 2644, 1343, 308, 61, 7, 51, 12, 16, 8, 198, 79, 85, 31412, 7, 70, 11, 309, 8, 796, 357, 70, 10563, 309, 532, 352, 13, 15, 8, 1220, 357, 70, 532, 352, 13, 15, 1776, 198, 198, 2, 21662, 1988, 13, 3274, 5726, 407, 29686, 13, 198, 25579, 62, 8367, 7, 87, 53, 11, 371, 8, 796, 2160, 7, 87, 53, 24457, 357, 49, 764, 61, 357, 15, 1058, 357, 13664, 7, 87, 53, 13219, 16, 4008, 18125, 198, 198, 2, 24200, 6329 ]
2.158416
101
""" zipandgutzwiller(mps1, mps2, mode) given two MPS, with the same number of sites and two physical dimensions perform gutzwiller projection of the two by making the matrices using iterative SVD. The final result is an MPS with 2 physical dimension where the final matrices are the tensor product of the given ones according to the `mode` which can be :B14 for bosonic or :F23 for fermionic. """ function zipandgutzwiller!(mps1::MPState{Y}, mps2::MPState{Y}; mode::Symbol=:B14, maxdim::Int64=200) where {Y<:Array} if mode != :B14 error("only Bosinic ↑↑ and ↓↓ is possible for no-symmetry MPSs!") end @assert mps1.d == mps2.d == 2 lx = mps1.lx @assert mps2.lx == lx center_at!(mps1, 1) center_at!(mps2, 1) dims = ones(Int64, lx+1) matrices = Array{T, 3}[] # Gutzwiller projector for mode :B14 gutzp = zeros(T, 2,2,2) gutzp[1,1,1] = 1 gutzp[2,2,2] = 1 E = ones(T, 1,1,1) for site=1:lx-1 mat1 = mps1.matrices[site] mat2 = mps2.matrices[site] diml1, dimr1 = size(mat1, 1), size(mat1, 3) diml2, dimr2 = size(mat2, 1), size(mat2, 3) dimle = size(E, 1) @tensor C[le, dg, r2, r1] := ((E[le, l2, l1] * mat1[l1,d1,r1]) * gutzp[dg,d1,d2]) * mat2[l2,d2, r2] fact = svd(reshape(C, dimle*2, dimr2*dimr1), full=false) S, n, ratio = MPStateTools.truncate(fact.S, maxdim=maxdim) dims[site+1] = n U = fact.U[:, 1:n] push!(matrices, reshape(U, dimle, 2, n)) E = reshape(Diagonal(S) * fact.Vt[1:n, :], n, dimr2, dimr1) end mat1 = mps1.matrices[lx] mat2 = mps2.matrices[lx] @tensor C[le, dg, r2, r1] := ((E[le, l2, l1] * mat1[l1,d1,r1]) * gutzp[dg,d1,d2]) * mat2[l2,d2,r2] push!(matrices, reshape(C, size(E, 1), 2, 1)) return MPState{T}(lx, 2, dims, matrices, lx) end function zipandgutzwiller!(mps1::MPState{Y}, mps2::MPState{Y}; mode::Symbol=:F23, maxdim::Int64=200) where {Y<:SymTensor} if mode==:B14 return _zipandgutzwiller_B14!(mps1, mps2, maxdim=maxdim) elseif mode==:F23 return _zipandgutzwiller_F23!(mps1, mps2, maxdim=maxdim) else error("mode not defined : ", mode) end end #bosonic version function _zipandgutzwiller_B14!(mps1::MPState{Y}, mps2::MPState{Y}; maxdim::Int64=200) where {Y} #@assert mps1.d == mps2.d == 2 lx = length(mps1) @assert length(mps2) == lx center_at!(mps1, 1) center_at!(mps2, 1) mps = MPState{Y}() ## NOTE: in order to make the gutzwiller projector respect the U1 ## symmetry we need to do the follwoing. Assume that ↑↑ ## corresponds to ↑ or 2 and ↓↓ corresponds or ↓ or 0. G = fill(one(T), 0, (STLeg(+1, [0,2], [1,1]), STLeg(-1, [0,1], [1,1]), STLeg(-1, [0,1], [1,1]))) E = fill(one(T), 0, (STLeg(+1, [0], [1]), STLeg(-1, [0], [1]), STLeg(-1, [0], [1]))) for l=1:lx-1 A = mps1.matrices[l] B = mps2.matrices[l] ##NOTE: # contracting (E2, A1) # First tensor has EA = E1 E3 A2 A3 # contracting (A2, G2) # Scond tensor has EAG = E1 E3 G1 A3 G3 # contracting (E3, B1) and (G3, B2) # Final tensor has E1 G1 A3 B3 C = contract(contract(contract(E, (1,-1, 2), A, (-1, 3, 4)), (1, 2, -1, 4), G, (3, -1, 5)), (1,-1, 2, 3,-2), B, (-1,-2, 4)) u,s,v = svdtrunc(fuselegs(fuselegs(C, 1, 2), 2, 2), maxdim=maxdim) normalize!(s) push!(matrices, mapcharges(x->div(x,2), unfuseleg(u, 1, (E.legs[1], G.legs[1])))) E = unfuseleg(s*v, 2, (A.legs[3], B.legs[3])) end A = mps1.As[lx] B = mps2.As[lx] C = contract(contract(contract(E, (1,-1, 2), A, (-1, 3, 4)), (1, 2, -1, 4), G, (3, -1, 5)), (1,-1, 2, 3,-2), B, (-1,-2, 4)) push!(matrices, mapcharges(x->div(x,2), fuselegs(C, 3, 2))) return MPState{Y}(lx, 2, dims, matrices, lx) end function _zipandgutzwiller_F23!(mps1::MPState{Y}, mps2::MPState{Y}; truncation::Bool=true, maxdim::Int64=200) where {Y} #@assert mps1.d == mps2.d == 2 lx = length(mps1) @assert length(mps2) == lx center_at!(mps1, 1) center_at!(mps2, 1) mps = MPState{Y}() ## NOTE: in order to make the gutzwiller projector respect the U1 ## symmetry we need to do the follwoing. Assume the first mps ## corresponds to ↑ or 1 and second mps to ↓ or -1. T = eltype(Y) S = vtype(Y) Vd = VectorSpace{S}(0=>1, 1=>1) G = fill(one(T), (dual(Vd), mapcharges(x->2*x-1, Vd), Vd)) Vdummy = VectorSpace{S}(0=>1) E = fill(one(T), (Vdummy, dual(Vdummy), Vdummy)) u,s,v = _svd_(eye(T, Vdummy)) for l=1:lx-1 A = mps1.As[l] B = dual(mps2.As[l], conjugate=false) fswap = fermionswapgate(A.space[2], B.space[1]) ##NOTE: # contracting (E3, A1) # First tensor has EA = E1 E2 A2 A3 # contracting with swap # second tensor has EAX = E1 XA2 E3 A3 # contracting (A2, G2) # Third tensor has EAG = E1 G1 G3 E3 A3 # contracting (E3, B1) and (G3, B2) # Final tensor has E1 G1 A3 B3 C = contract(contract(contract(contract(E, (1, 2, -1), A, (-1, 3, 4)), (1, -1, -2, 4), fswap, (-1, 2, 3, -2)), (1, -1, 4, 5), G, (-1, 2, 3)), (1,2, -2, -1, 4), B, (-1,-2, 3)) if truncation u,s,v = svdtrunc(SymMatrix(C, [1,2], [3,4]), maxdim=maxdim) else u,s,v = _svd_(SymMatrix(C, [1,2], [3,4])) end normalize!(s) fnl = x->div(x+l-1, 2) fnd = x->div(x+1, 2) fnr = x->div(x+l, 2) push!(mps, mapcharges((fnl,fnd,fnr), splitleg(u, 1, (E.space[1], G.space[2])))) E = splitleg(s*v, 2, (B.space[3], A.space[3])) end A = mps1.As[lx] B = dual(mps2.As[lx], conjugate=false) fswap = fermionswapgate(A.space[2], B.space[1]) C = contract(contract(contract(contract(E, (1, 2, -1), A, (-1, 3, 4)), (1, -1, -2, 4), fswap, (-1, 2, 3, -2)), (1, -1, 4, 5), G, (-1, 2, 3)), (1,2, -2, -1, 4), B, (-1,-2, 3)) if truncation u,s,v = svdtrunc(SymMatrix(C, [1,2], [3,4]), maxdim=maxdim) else u,s,v = _svd_(SymMatrix(C, [1,2], [3,4])) end normalize!(s) C = splitleg(u*s*v, 1, (E.space[1], G.space[2])) fnl = x->div(x+lx-1, 2) fnd = x->div(x+1, 2) fnr = x->div(x+lx, 2) push!(mps, mapcharges((fnl,fnd,fnr), C)) # could the below alone be the issue?! # is this correct (need explanation and stuff) mps.center = lx mps end function gutzwillerexact(mps1::MPState{Y}, mps2::MPState{Y}; mode::Symbol=:F23) where {Y} _zipandgutzwiller_F23(mps1, mps2, truncation=false) end function _tensorproductzip!(mps1::MPState{Y}, mps2::MPState{Y}; truncation::Bool=true, maxdim::Int64=200, verbose::Bool=true) where {Y} #@assert mps1.d == mps2.d == 2 lx = length(mps1) @assert length(mps2) == lx center_at!(mps1, 1) center_at!(mps2, 1) mps = MPState{Y}() ## NOTE: in order to make the gutzwiller projector respect the U1 ## symmetry we need to do the follwoing. Assume the first mps ## corresponds to ↑ or 1 and second mps to ↓ or -1. T = eltype(Y) S = vtype(Y) Vdummy = VectorSpace{S}(0=>1) E = fill(one(T), (Vdummy, dual(Vdummy), Vdummy)) u,s,v = _svd_(eye(T, Vdummy)) for l=1:lx-1 A = mps1.As[l] B = dual(mps2.As[l], conjugate=false) fswap = fermionswapgate(A.space[2], B.space[1]) ##NOTE: # contracting (E3, A1) # First tensor has EA = E1 E2 A2 A3 # contracting with swap # second tensor has EAX = E1 XA2 E2 A3 # contracting (EX2, B1) # Final tensor has E1 XA2 B2 B3 A3 C = contract(contract(contract(E, (1, 2, -1), A, (-1, 3, 4)), (1, -1, -2, 4), fswap, (-1, 2, 3, -2)), (1, 2, -1, 5), B, (-1, 3, 4)) if truncation u,s,v = svdtrunc(SymMatrix(C, [1,2,3], [4,5]), maxdim=maxdim) else u,s,v = _svd_(SymMatrix(C, [1,2,3], [4,5])) end normalize!(s) push!(mps, fuselegs( splitleg(u, 1, (E.space[1], A.space[2], B.space[2])), 2, 2)) E = splitleg(s*v, 2, (B.space[3], A.space[3])) end A = mps1.As[lx] B = dual(mps2.As[lx], conjugate=false) fswap = fermionswapgate(A.space[2], B.space[1]) C = contract(contract(contract(E, (1, 2, -1), A, (-1, 3, 4)), (1, -1, -2, 4), fswap, (-1, 2, 3, -2)), (1, 2, -1, 5), B, (-1, 3, 4)) push!(mps, fuselegs(fuselegs(C, 2, 2), 3, 2)) mps.center = lx mps end function _applygutzwillerzip!(mps::MPState{Y}) where{Y} T = eltype(mps) G = Tensor(ones, zero(U1), (U1Space([-1=>1, 1=>1]), dual(U1Space([-1=>1, 0=>2, 1=>1])) )) mpsgutz = MPState{Y}() center_at!(mps, 1) C = contract(G, (2, -1), mps.As[1], (1, -1, 3)) for l=1:lx-1 u,s,v = svdtrunc(fuselegs(C, 1, 2)) fnl = x->div(x+lx-1, 2) fnd = x->div(x+1, 2) fnr = x->div(x+lx, 2) push!(mpsgutz, mapcharges((fnl,fnd,fnr), splitleg(u, 1, (C.space[1], G.space[1])))) E = s*v C = contract(E, (1, -1), contract(G, (2, -1), mps.As[l+1], (1, -1, 3)), (-1,2,3)) end push!(mpsgutz, C) mpsgutz end function _zipandgutzwiller_F23_analysis!(mps1::MPState{Y}, mps2::MPState{Y}; maxdim::Int64=200) where {Y} lx = length(mps1) @assert length(mps2) == lx center_at!(mps1, 1) center_at!(mps2, 1) mps = MPState{Y}() ## NOTE: in order to make the gutzwiller projector respect the U1 ## symmetry we need to do the follwoing. Assume the first mps ## corresponds to ↑ or 1 and second mps to ↓ or -1. T = eltype(Y) S = vtype(Y) Vd = VectorSpace{S}(0=>1, 1=>1) G = fill(one(T), (dual(Vd), mapcharges(x->2*x-1, Vd), Vd)) Vdummy = VectorSpace{S}(0=>1) ### Making the F tensors Vend1 = rightspace(mps1) Vend2 = rightspace(mps2) Fs = Vector{SymTensor{S,T,3}}(undef, lx) F = fill(one(T), (Vend1, dual(Vend2), fuse(true, dual(Vend1), Vend2))) for l=lx:-1:2 A = mps1.As[l] B = dual(mps2.As[l], conjugate=false) fswap = fermionswapgate(A.space[2], B.space[1]) C = contract(contract(contract(contract(A, (1, 2, -1), F, (-1, 3, 4)), (1, 2, -1, 5), B, (3, 4, -1)), (1, -2, -1, 4, 5), fswap, (2, 3, -1, -2)), (1, 2, -1, -2, 4), G, (-1, 3, -2)) u,s,v = _svd_(SymMatrix(C, [1,2], [3,4])) normalize!(s) F = splitleg(u*s, 1, (C.space[1], C.space[2])) Fs[l] = F end error_ortho = Vector{Float64}() error_ets = Vector{Float64}() E = fill(one(T), (Vdummy, Vdummy, dual(Vdummy))) for l=1:lx-1 A = mps1.As[l] B = dual(mps2.As[l], conjugate=false) fswap = fermionswapgate(A.space[2], B.space[1]) ##NOTE: # contracting (E3, A1) # First tensor has EA = E1 E2 A2 A3 # contracting with swap # second tensor has EAX = E1 XA2 E3 A3 # contracting (A2, G2) # Third tensor has EAG = E1 G1 G3 E3 A3 # contracting (E3, B1) and (G3, B2) # Final tensor has E1 G1 A3 B3 C = contract(contract(contract(contract(E, (1, 2, -1), A, (-1, 3, 4)), (1, -1, -2, 4), fswap, (-1, 2, 3, -2)), (1, -1, 4, 5), G, (-1, 2, 3)), (1,2, -2, -1, 4), B, (-1,-2, 3)) # actual zipgutz process u,s,v = svdtrunc(SymMatrix(C, [1,2], [3,4]), maxdim=maxdim) normalize!(s) println(norm(SymMatrix(C, [1,2], [3,4]))) # The ortho center matrix CFmat = SymMatrix(contract(C, (1,2,-1,-2), Fs[l+1], (-2,-1, 3)), [1, 2], [3]) println(norm(SymMatrix(Fs[l+1], [2,1], [3]))) norm_CFmat = norm(CFmat) println(norm_CFmat) println() # othonormal truncation error _u,_s,_v = svdtrunc(CFmat, maxdim=maxdim) normalize!(_s) push!(error_ortho, dot(_u*_s*_v, CFmat) / norm_CFmat) # zipgutz truncation error CtrFmat = (u*s*v) * SymMatrix(Fs[l+1], [2,1], [3]) norm_CtrFmat = norm(CtrFmat) push!(error_ets, dot(CtrFmat, CFmat) / (norm_CFmat*norm_CtrFmat)) fnl = x->div(x+l-1, 2) fnd = x->div(x+1, 2) fnr = x->div(x+l, 2) push!(mps, mapcharges((fnl,fnd,fnr), splitleg(u, 1, (E.space[1], G.space[2])))) E = splitleg(s*v, 2, (B.space[3], A.space[3])) end A = mps1.As[lx] B = dual(mps2.As[lx], conjugate=false) fswap = fermionswapgate(A.space[2], B.space[1]) C = contract(contract(contract(contract(E, (1, 2, -1), A, (-1, 3, 4)), (1, -1, -2, 4), fswap, (-1, 2, 3, -2)), (1, -1, 4, 5), G, (-1, 2, 3)), (1,2,-2,-1,4), B, (-1,-2, 3)) u,s,v = svdtrunc(SymMatrix(C, [1,2], [3,4]), maxdim=maxdim) normalize!(s) push!(error_ortho, 1.0) push!(error_ets, 1.0) C = splitleg(u*s*v, 1, (E.space[1], G.space[2])) fnl = x->div(x+lx-1, 2) fnd = x->div(x+1, 2) fnr = x->div(x+lx, 2) push!(mps, mapcharges((fnl,fnd,fnr), C)) mps.center = lx mps, error_ortho, error_ets end
[ 37811, 198, 220, 220, 220, 19974, 392, 70, 27839, 86, 4665, 7, 76, 862, 16, 11, 285, 862, 17, 11, 4235, 8, 198, 198, 35569, 734, 337, 3705, 11, 351, 262, 976, 1271, 286, 5043, 290, 734, 3518, 198, 27740, 5736, 1620, 12500, 89, 86, 4665, 20128, 286, 262, 734, 416, 1642, 262, 198, 6759, 45977, 1262, 11629, 876, 311, 8898, 13, 383, 2457, 1255, 318, 281, 337, 3705, 351, 362, 198, 42854, 15793, 810, 262, 2457, 2603, 45977, 389, 262, 11192, 273, 1720, 286, 198, 1169, 1813, 3392, 1864, 284, 262, 4600, 14171, 63, 543, 460, 307, 1058, 33, 1415, 329, 37284, 9229, 198, 273, 1058, 37, 1954, 329, 277, 7780, 26523, 13, 198, 198, 37811, 198, 198, 8818, 19974, 392, 70, 27839, 86, 4665, 0, 7, 76, 862, 16, 3712, 7378, 9012, 90, 56, 5512, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 285, 862, 17, 3712, 7378, 9012, 90, 56, 19629, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4235, 3712, 13940, 23650, 28, 25, 33, 1415, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3509, 27740, 3712, 5317, 2414, 28, 2167, 8, 810, 1391, 56, 27, 25, 19182, 92, 198, 220, 220, 220, 611, 4235, 14512, 1058, 33, 1415, 198, 220, 220, 220, 220, 220, 220, 220, 4049, 7203, 8807, 14548, 47277, 24935, 48541, 290, 17804, 241, 29705, 241, 318, 1744, 329, 645, 12, 1837, 3020, 11973, 337, 3705, 82, 2474, 8, 198, 220, 220, 220, 886, 198, 220, 220, 220, 2488, 30493, 285, 862, 16, 13, 67, 6624, 285, 862, 17, 13, 67, 6624, 362, 198, 220, 220, 220, 300, 87, 796, 285, 862, 16, 13, 75, 87, 198, 220, 220, 220, 2488, 30493, 285, 862, 17, 13, 75, 87, 6624, 300, 87, 628, 220, 220, 220, 3641, 62, 265, 0, 7, 76, 862, 16, 11, 352, 8, 198, 220, 220, 220, 3641, 62, 265, 0, 7, 76, 862, 17, 11, 352, 8, 628, 220, 220, 220, 5391, 82, 796, 3392, 7, 5317, 2414, 11, 300, 87, 10, 16, 8, 198, 220, 220, 220, 2603, 45977, 796, 15690, 90, 51, 11, 513, 92, 21737, 628, 220, 220, 220, 1303, 27549, 89, 86, 4665, 43396, 329, 4235, 1058, 33, 1415, 198, 220, 220, 220, 12500, 89, 79, 796, 1976, 27498, 7, 51, 11, 362, 11, 17, 11, 17, 8, 198, 220, 220, 220, 12500, 89, 79, 58, 16, 11, 16, 11, 16, 60, 796, 352, 198, 220, 220, 220, 12500, 89, 79, 58, 17, 11, 17, 11, 17, 60, 796, 352, 628, 220, 220, 220, 412, 796, 3392, 7, 51, 11, 352, 11, 16, 11, 16, 8, 198, 220, 220, 220, 329, 2524, 28, 16, 25, 75, 87, 12, 16, 198, 220, 220, 220, 220, 220, 220, 220, 2603, 16, 796, 285, 862, 16, 13, 6759, 45977, 58, 15654, 60, 198, 220, 220, 220, 220, 220, 220, 220, 2603, 17, 796, 285, 862, 17, 13, 6759, 45977, 58, 15654, 60, 628, 220, 220, 220, 220, 220, 220, 220, 5391, 75, 16, 11, 5391, 81, 16, 796, 2546, 7, 6759, 16, 11, 352, 828, 2546, 7, 6759, 16, 11, 513, 8, 198, 220, 220, 220, 220, 220, 220, 220, 5391, 75, 17, 11, 5391, 81, 17, 796, 2546, 7, 6759, 17, 11, 352, 828, 2546, 7, 6759, 17, 11, 513, 8, 198, 220, 220, 220, 220, 220, 220, 220, 5391, 293, 796, 2546, 7, 36, 11, 352, 8, 628, 220, 220, 220, 220, 220, 220, 220, 2488, 83, 22854, 327, 58, 293, 11, 288, 70, 11, 374, 17, 11, 374, 16, 60, 19039, 14808, 36, 58, 293, 11, 300, 17, 11, 300, 16, 60, 1635, 2603, 16, 58, 75, 16, 11, 67, 16, 11, 81, 16, 12962, 1635, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 12500, 89, 79, 58, 67, 70, 11, 67, 16, 11, 67, 17, 12962, 1635, 2603, 17, 58, 75, 17, 11, 67, 17, 11, 374, 17, 60, 628, 220, 220, 220, 220, 220, 220, 220, 1109, 796, 264, 20306, 7, 3447, 1758, 7, 34, 11, 5391, 293, 9, 17, 11, 5391, 81, 17, 9, 27740, 81, 16, 828, 1336, 28, 9562, 8, 198, 220, 220, 220, 220, 220, 220, 220, 311, 11, 299, 11, 8064, 796, 4904, 9012, 33637, 13, 2213, 19524, 378, 7, 22584, 13, 50, 11, 3509, 27740, 28, 9806, 27740, 8, 198, 220, 220, 220, 220, 220, 220, 220, 5391, 82, 58, 15654, 10, 16, 60, 796, 299, 198, 220, 220, 220, 220, 220, 220, 220, 471, 796, 1109, 13, 52, 58, 45299, 352, 25, 77, 60, 198, 220, 220, 220, 220, 220, 220, 220, 4574, 0, 7, 6759, 45977, 11, 27179, 1758, 7, 52, 11, 5391, 293, 11, 362, 11, 299, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 412, 796, 27179, 1758, 7, 18683, 27923, 7, 50, 8, 1635, 1109, 13, 53, 83, 58, 16, 25, 77, 11, 1058, 4357, 299, 11, 5391, 81, 17, 11, 5391, 81, 16, 8, 198, 220, 220, 220, 886, 198, 220, 220, 220, 2603, 16, 796, 285, 862, 16, 13, 6759, 45977, 58, 75, 87, 60, 198, 220, 220, 220, 2603, 17, 796, 285, 862, 17, 13, 6759, 45977, 58, 75, 87, 60, 198, 220, 220, 220, 2488, 83, 22854, 327, 58, 293, 11, 288, 70, 11, 374, 17, 11, 374, 16, 60, 19039, 14808, 36, 58, 293, 11, 300, 17, 11, 300, 16, 60, 1635, 2603, 16, 58, 75, 16, 11, 67, 16, 11, 81, 16, 12962, 1635, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 12500, 89, 79, 58, 67, 70, 11, 67, 16, 11, 67, 17, 12962, 1635, 2603, 17, 58, 75, 17, 11, 67, 17, 11, 81, 17, 60, 198, 220, 220, 220, 4574, 0, 7, 6759, 45977, 11, 27179, 1758, 7, 34, 11, 2546, 7, 36, 11, 352, 828, 362, 11, 352, 4008, 628, 220, 220, 220, 1441, 4904, 9012, 90, 51, 92, 7, 75, 87, 11, 362, 11, 5391, 82, 11, 2603, 45977, 11, 300, 87, 8, 198, 437, 198, 198, 8818, 19974, 392, 70, 27839, 86, 4665, 0, 7, 76, 862, 16, 3712, 7378, 9012, 90, 56, 5512, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 285, 862, 17, 3712, 7378, 9012, 90, 56, 19629, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4235, 3712, 13940, 23650, 28, 25, 37, 1954, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3509, 27740, 3712, 5317, 2414, 28, 2167, 8, 810, 1391, 56, 27, 25, 43094, 51, 22854, 92, 198, 220, 220, 220, 611, 4235, 855, 25, 33, 1415, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 4808, 13344, 392, 70, 27839, 86, 4665, 62, 33, 1415, 0, 7, 76, 862, 16, 11, 285, 862, 17, 11, 3509, 27740, 28, 9806, 27740, 8, 198, 220, 220, 220, 2073, 361, 4235, 855, 25, 37, 1954, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 4808, 13344, 392, 70, 27839, 86, 4665, 62, 37, 1954, 0, 7, 76, 862, 16, 11, 285, 862, 17, 11, 3509, 27740, 28, 9806, 27740, 8, 198, 220, 220, 220, 2073, 198, 220, 220, 220, 220, 220, 220, 220, 4049, 7203, 14171, 407, 5447, 1058, 33172, 4235, 8, 198, 220, 220, 220, 886, 198, 437, 198, 198, 2, 39565, 9229, 2196, 198, 8818, 4808, 13344, 392, 70, 27839, 86, 4665, 62, 33, 1415, 0, 7, 76, 862, 16, 3712, 7378, 9012, 90, 56, 5512, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 285, 862, 17, 3712, 7378, 9012, 90, 56, 19629, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3509, 27740, 3712, 5317, 2414, 28, 2167, 8, 810, 1391, 56, 92, 198, 220, 220, 220, 1303, 31, 30493, 285, 862, 16, 13, 67, 6624, 285, 862, 17, 13, 67, 6624, 362, 198, 220, 220, 220, 300, 87, 796, 4129, 7, 76, 862, 16, 8, 198, 220, 220, 220, 2488, 30493, 4129, 7, 76, 862, 17, 8, 6624, 300, 87, 628, 220, 220, 220, 3641, 62, 265, 0, 7, 76, 862, 16, 11, 352, 8, 198, 220, 220, 220, 3641, 62, 265, 0, 7, 76, 862, 17, 11, 352, 8, 628, 220, 220, 220, 285, 862, 796, 4904, 9012, 90, 56, 92, 3419, 628, 220, 220, 220, 22492, 24550, 25, 287, 1502, 284, 787, 262, 12500, 89, 86, 4665, 43396, 2461, 262, 471, 16, 198, 220, 220, 220, 22492, 40686, 356, 761, 284, 466, 262, 22752, 21638, 278, 13, 2195, 2454, 326, 24935, 48541, 198, 220, 220, 220, 22492, 24866, 284, 24935, 393, 362, 290, 17804, 241, 29705, 241, 24866, 393, 17804, 241, 393, 657, 13, 198, 220, 220, 220, 402, 796, 6070, 7, 505, 7, 51, 828, 657, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 2257, 11484, 7, 10, 16, 11, 685, 15, 11, 17, 4357, 685, 16, 11, 16, 46570, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3563, 11484, 32590, 16, 11, 685, 15, 11, 16, 4357, 685, 16, 11, 16, 46570, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3563, 11484, 32590, 16, 11, 685, 15, 11, 16, 4357, 685, 16, 11, 16, 60, 22305, 628, 220, 220, 220, 412, 796, 6070, 7, 505, 7, 51, 828, 657, 11, 357, 2257, 11484, 7, 10, 16, 11, 685, 15, 4357, 685, 16, 46570, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3563, 11484, 32590, 16, 11, 685, 15, 4357, 685, 16, 46570, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3563, 11484, 32590, 16, 11, 685, 15, 4357, 685, 16, 60, 22305, 198, 220, 220, 220, 329, 300, 28, 16, 25, 75, 87, 12, 16, 198, 220, 220, 220, 220, 220, 220, 220, 317, 796, 285, 862, 16, 13, 6759, 45977, 58, 75, 60, 198, 220, 220, 220, 220, 220, 220, 220, 347, 796, 285, 862, 17, 13, 6759, 45977, 58, 75, 60, 628, 220, 220, 220, 220, 220, 220, 220, 22492, 16580, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 29148, 357, 36, 17, 11, 317, 16, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 3274, 11192, 273, 468, 19814, 796, 412, 16, 412, 18, 317, 17, 317, 18, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 29148, 357, 32, 17, 11, 402, 17, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 1446, 623, 11192, 273, 468, 412, 4760, 796, 412, 16, 412, 18, 402, 16, 317, 18, 402, 18, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 29148, 357, 36, 18, 11, 347, 16, 8, 290, 357, 38, 18, 11, 347, 17, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 8125, 11192, 273, 468, 412, 16, 402, 16, 317, 18, 347, 18, 198, 220, 220, 220, 220, 220, 220, 220, 327, 796, 2775, 7, 28484, 7, 28484, 7, 36, 11, 357, 16, 12095, 16, 11, 362, 828, 317, 11, 13841, 16, 11, 513, 11, 604, 36911, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 16, 11, 362, 11, 532, 16, 11, 604, 828, 402, 11, 357, 18, 11, 532, 16, 11, 642, 36911, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 16, 12095, 16, 11, 362, 11, 513, 12095, 17, 828, 347, 11, 13841, 16, 12095, 17, 11, 604, 4008, 628, 198, 220, 220, 220, 220, 220, 220, 220, 334, 11, 82, 11, 85, 796, 264, 20306, 2213, 19524, 7, 69, 1904, 1455, 82, 7, 69, 1904, 1455, 82, 7, 34, 11, 352, 11, 362, 828, 362, 11, 362, 828, 3509, 27740, 28, 9806, 27740, 8, 198, 220, 220, 220, 220, 220, 220, 220, 3487, 1096, 0, 7, 82, 8, 198, 220, 220, 220, 220, 220, 220, 220, 4574, 0, 7, 6759, 45977, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3975, 34948, 7, 87, 3784, 7146, 7, 87, 11, 17, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3684, 1904, 1455, 7, 84, 11, 352, 11, 357, 36, 13, 1455, 82, 58, 16, 4357, 402, 13, 1455, 82, 58, 16, 60, 35514, 198, 220, 220, 220, 220, 220, 220, 220, 412, 796, 3684, 1904, 1455, 7, 82, 9, 85, 11, 362, 11, 357, 32, 13, 1455, 82, 58, 18, 4357, 347, 13, 1455, 82, 58, 18, 60, 4008, 198, 220, 220, 220, 886, 198, 220, 220, 220, 317, 796, 285, 862, 16, 13, 1722, 58, 75, 87, 60, 198, 220, 220, 220, 347, 796, 285, 862, 17, 13, 1722, 58, 75, 87, 60, 198, 220, 220, 220, 327, 796, 2775, 7, 28484, 7, 28484, 7, 36, 11, 357, 16, 12095, 16, 11, 362, 828, 317, 11, 13841, 16, 11, 513, 11, 604, 36911, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 16, 11, 362, 11, 532, 16, 11, 604, 828, 402, 11, 357, 18, 11, 532, 16, 11, 642, 36911, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 16, 12095, 16, 11, 362, 11, 513, 12095, 17, 828, 347, 11, 13841, 16, 12095, 17, 11, 604, 4008, 628, 220, 220, 220, 4574, 0, 7, 6759, 45977, 11, 3975, 34948, 7, 87, 3784, 7146, 7, 87, 11, 17, 828, 32738, 1455, 82, 7, 34, 11, 513, 11, 362, 22305, 628, 220, 220, 220, 1441, 4904, 9012, 90, 56, 92, 7, 75, 87, 11, 362, 11, 5391, 82, 11, 2603, 45977, 11, 300, 87, 8, 198, 437, 198, 198, 8818, 4808, 13344, 392, 70, 27839, 86, 4665, 62, 37, 1954, 0, 7, 76, 862, 16, 3712, 7378, 9012, 90, 56, 5512, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 285, 862, 17, 3712, 7378, 9012, 90, 56, 19629, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 40122, 341, 3712, 33, 970, 28, 7942, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3509, 27740, 3712, 5317, 2414, 28, 2167, 8, 810, 1391, 56, 92, 198, 220, 220, 220, 1303, 31, 30493, 285, 862, 16, 13, 67, 6624, 285, 862, 17, 13, 67, 6624, 362, 198, 220, 220, 220, 300, 87, 796, 4129, 7, 76, 862, 16, 8, 198, 220, 220, 220, 2488, 30493, 4129, 7, 76, 862, 17, 8, 6624, 300, 87, 628, 220, 220, 220, 3641, 62, 265, 0, 7, 76, 862, 16, 11, 352, 8, 198, 220, 220, 220, 3641, 62, 265, 0, 7, 76, 862, 17, 11, 352, 8, 628, 220, 220, 220, 285, 862, 796, 4904, 9012, 90, 56, 92, 3419, 628, 220, 220, 220, 22492, 24550, 25, 287, 1502, 284, 787, 262, 12500, 89, 86, 4665, 43396, 2461, 262, 471, 16, 198, 220, 220, 220, 22492, 40686, 356, 761, 284, 466, 262, 22752, 21638, 278, 13, 2195, 2454, 262, 717, 285, 862, 198, 220, 220, 220, 22492, 24866, 284, 24935, 393, 352, 290, 1218, 285, 862, 284, 17804, 241, 393, 532, 16, 13, 198, 220, 220, 220, 309, 796, 1288, 4906, 7, 56, 8, 198, 220, 220, 220, 311, 796, 410, 4906, 7, 56, 8, 628, 220, 220, 220, 569, 67, 796, 20650, 14106, 90, 50, 92, 7, 15, 14804, 16, 11, 352, 14804, 16, 8, 198, 220, 220, 220, 402, 796, 6070, 7, 505, 7, 51, 828, 357, 646, 282, 7, 53, 67, 828, 3975, 34948, 7, 87, 3784, 17, 9, 87, 12, 16, 11, 569, 67, 828, 569, 67, 4008, 628, 220, 220, 220, 569, 67, 13513, 796, 20650, 14106, 90, 50, 92, 7, 15, 14804, 16, 8, 198, 220, 220, 220, 412, 796, 6070, 7, 505, 7, 51, 828, 357, 53, 67, 13513, 11, 10668, 7, 53, 67, 13513, 828, 569, 67, 13513, 4008, 628, 220, 220, 220, 334, 11, 82, 11, 85, 796, 4808, 82, 20306, 41052, 25379, 7, 51, 11, 569, 67, 13513, 4008, 198, 220, 220, 220, 329, 300, 28, 16, 25, 75, 87, 12, 16, 198, 220, 220, 220, 220, 220, 220, 220, 317, 796, 285, 862, 16, 13, 1722, 58, 75, 60, 198, 220, 220, 220, 220, 220, 220, 220, 347, 796, 10668, 7, 76, 862, 17, 13, 1722, 58, 75, 4357, 11644, 1018, 378, 28, 9562, 8, 628, 220, 220, 220, 220, 220, 220, 220, 277, 2032, 499, 796, 277, 7780, 507, 86, 499, 10494, 7, 32, 13, 13200, 58, 17, 4357, 347, 13, 13200, 58, 16, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 22492, 16580, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 29148, 357, 36, 18, 11, 317, 16, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 3274, 11192, 273, 468, 19814, 796, 412, 16, 412, 17, 317, 17, 317, 18, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 29148, 351, 16075, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 1218, 11192, 273, 468, 19814, 55, 796, 412, 16, 1395, 32, 17, 412, 18, 317, 18, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 29148, 357, 32, 17, 11, 402, 17, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 10467, 11192, 273, 468, 412, 4760, 796, 412, 16, 402, 16, 402, 18, 412, 18, 317, 18, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 29148, 357, 36, 18, 11, 347, 16, 8, 290, 357, 38, 18, 11, 347, 17, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 8125, 11192, 273, 468, 412, 16, 402, 16, 317, 18, 347, 18, 198, 220, 220, 220, 220, 220, 220, 220, 327, 796, 2775, 7, 28484, 7, 28484, 7, 28484, 7, 36, 11, 357, 16, 11, 362, 11, 532, 16, 828, 317, 11, 13841, 16, 11, 513, 11, 604, 36911, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 16, 11, 532, 16, 11, 532, 17, 11, 604, 828, 277, 2032, 499, 11, 13841, 16, 11, 362, 11, 513, 11, 532, 17, 36911, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 16, 11, 532, 16, 11, 604, 11, 642, 828, 402, 11, 13841, 16, 11, 362, 11, 513, 36911, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 16, 11, 17, 11, 532, 17, 11, 532, 16, 11, 604, 828, 347, 11, 13841, 16, 12095, 17, 11, 513, 4008, 628, 220, 220, 220, 220, 220, 220, 220, 611, 40122, 341, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 334, 11, 82, 11, 85, 796, 264, 20306, 2213, 19524, 7, 43094, 46912, 7, 34, 11, 685, 16, 11, 17, 4357, 685, 18, 11, 19, 46570, 3509, 27740, 28, 9806, 27740, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 334, 11, 82, 11, 85, 796, 4808, 82, 20306, 41052, 43094, 46912, 7, 34, 11, 685, 16, 11, 17, 4357, 685, 18, 11, 19, 60, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 886, 198, 220, 220, 220, 220, 220, 220, 220, 3487, 1096, 0, 7, 82, 8, 628, 220, 220, 220, 220, 220, 220, 220, 277, 21283, 796, 2124, 3784, 7146, 7, 87, 10, 75, 12, 16, 11, 362, 8, 198, 220, 220, 220, 220, 220, 220, 220, 277, 358, 796, 2124, 3784, 7146, 7, 87, 10, 16, 11, 362, 8, 198, 220, 220, 220, 220, 220, 220, 220, 24714, 81, 796, 2124, 3784, 7146, 7, 87, 10, 75, 11, 362, 8, 198, 220, 220, 220, 220, 220, 220, 220, 4574, 0, 7, 76, 862, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3975, 34948, 19510, 69, 21283, 11, 69, 358, 11, 22184, 81, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6626, 1455, 7, 84, 11, 352, 11, 357, 36, 13, 13200, 58, 16, 4357, 402, 13, 13200, 58, 17, 60, 35514, 198, 220, 220, 220, 220, 220, 220, 220, 412, 796, 6626, 1455, 7, 82, 9, 85, 11, 362, 11, 357, 33, 13, 13200, 58, 18, 4357, 317, 13, 13200, 58, 18, 60, 4008, 198, 220, 220, 220, 886, 198, 220, 220, 220, 317, 796, 285, 862, 16, 13, 1722, 58, 75, 87, 60, 198, 220, 220, 220, 347, 796, 220, 10668, 7, 76, 862, 17, 13, 1722, 58, 75, 87, 4357, 11644, 1018, 378, 28, 9562, 8, 198, 220, 220, 220, 277, 2032, 499, 796, 277, 7780, 507, 86, 499, 10494, 7, 32, 13, 13200, 58, 17, 4357, 347, 13, 13200, 58, 16, 12962, 198, 220, 220, 220, 327, 796, 2775, 7, 28484, 7, 28484, 7, 28484, 7, 36, 11, 357, 16, 11, 362, 11, 532, 16, 828, 317, 11, 13841, 16, 11, 513, 11, 604, 36911, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 16, 11, 532, 16, 11, 532, 17, 11, 604, 828, 277, 2032, 499, 11, 13841, 16, 11, 362, 11, 513, 11, 532, 17, 36911, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 16, 11, 532, 16, 11, 604, 11, 642, 828, 402, 11, 13841, 16, 11, 362, 11, 513, 36911, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 16, 11, 17, 11, 532, 17, 11, 532, 16, 11, 604, 828, 347, 11, 13841, 16, 12095, 17, 11, 513, 4008, 628, 220, 220, 220, 611, 40122, 341, 198, 220, 220, 220, 220, 220, 220, 220, 334, 11, 82, 11, 85, 796, 264, 20306, 2213, 19524, 7, 43094, 46912, 7, 34, 11, 685, 16, 11, 17, 4357, 685, 18, 11, 19, 46570, 3509, 27740, 28, 9806, 27740, 8, 198, 220, 220, 220, 2073, 198, 220, 220, 220, 220, 220, 220, 220, 334, 11, 82, 11, 85, 796, 4808, 82, 20306, 41052, 43094, 46912, 7, 34, 11, 685, 16, 11, 17, 4357, 685, 18, 11, 19, 60, 4008, 198, 220, 220, 220, 886, 198, 220, 220, 220, 3487, 1096, 0, 7, 82, 8, 628, 220, 220, 220, 327, 796, 6626, 1455, 7, 84, 9, 82, 9, 85, 11, 352, 11, 357, 36, 13, 13200, 58, 16, 4357, 402, 13, 13200, 58, 17, 60, 4008, 198, 220, 220, 220, 277, 21283, 796, 2124, 3784, 7146, 7, 87, 10, 75, 87, 12, 16, 11, 362, 8, 198, 220, 220, 220, 277, 358, 796, 2124, 3784, 7146, 7, 87, 10, 16, 11, 362, 8, 198, 220, 220, 220, 24714, 81, 796, 2124, 3784, 7146, 7, 87, 10, 75, 87, 11, 362, 8, 198, 220, 220, 220, 4574, 0, 7, 76, 862, 11, 3975, 34948, 19510, 69, 21283, 11, 69, 358, 11, 22184, 81, 828, 327, 4008, 628, 220, 220, 220, 1303, 714, 262, 2174, 3436, 307, 262, 2071, 12248, 198, 220, 220, 220, 1303, 318, 428, 3376, 357, 31227, 7468, 290, 3404, 8, 198, 220, 220, 220, 285, 862, 13, 16159, 796, 300, 87, 198, 220, 220, 220, 285, 862, 198, 437, 198, 198, 8818, 12500, 89, 86, 8270, 21510, 529, 7, 76, 862, 16, 3712, 7378, 9012, 90, 56, 5512, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 285, 862, 17, 3712, 7378, 9012, 90, 56, 19629, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4235, 3712, 13940, 23650, 28, 25, 37, 1954, 8, 810, 1391, 56, 92, 198, 220, 220, 220, 4808, 13344, 392, 70, 27839, 86, 4665, 62, 37, 1954, 7, 76, 862, 16, 11, 285, 862, 17, 11, 40122, 341, 28, 9562, 8, 198, 437, 198, 198, 8818, 4808, 83, 22854, 11167, 13344, 0, 7, 76, 862, 16, 3712, 7378, 9012, 90, 56, 5512, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 285, 862, 17, 3712, 7378, 9012, 90, 56, 19629, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 40122, 341, 3712, 33, 970, 28, 7942, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3509, 27740, 3712, 5317, 2414, 28, 2167, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 15942, 577, 3712, 33, 970, 28, 7942, 8, 810, 1391, 56, 92, 628, 220, 220, 220, 1303, 31, 30493, 285, 862, 16, 13, 67, 6624, 285, 862, 17, 13, 67, 6624, 362, 198, 220, 220, 220, 300, 87, 796, 4129, 7, 76, 862, 16, 8, 198, 220, 220, 220, 2488, 30493, 4129, 7, 76, 862, 17, 8, 6624, 300, 87, 628, 220, 220, 220, 3641, 62, 265, 0, 7, 76, 862, 16, 11, 352, 8, 198, 220, 220, 220, 3641, 62, 265, 0, 7, 76, 862, 17, 11, 352, 8, 628, 220, 220, 220, 285, 862, 796, 4904, 9012, 90, 56, 92, 3419, 628, 220, 220, 220, 22492, 24550, 25, 287, 1502, 284, 787, 262, 12500, 89, 86, 4665, 43396, 2461, 262, 471, 16, 198, 220, 220, 220, 22492, 40686, 356, 761, 284, 466, 262, 22752, 21638, 278, 13, 2195, 2454, 262, 717, 285, 862, 198, 220, 220, 220, 22492, 24866, 284, 24935, 393, 352, 290, 1218, 285, 862, 284, 17804, 241, 393, 532, 16, 13, 198, 220, 220, 220, 309, 796, 1288, 4906, 7, 56, 8, 198, 220, 220, 220, 311, 796, 410, 4906, 7, 56, 8, 628, 220, 220, 220, 569, 67, 13513, 796, 20650, 14106, 90, 50, 92, 7, 15, 14804, 16, 8, 198, 220, 220, 220, 412, 796, 6070, 7, 505, 7, 51, 828, 357, 53, 67, 13513, 11, 10668, 7, 53, 67, 13513, 828, 569, 67, 13513, 4008, 628, 220, 220, 220, 334, 11, 82, 11, 85, 796, 4808, 82, 20306, 41052, 25379, 7, 51, 11, 569, 67, 13513, 4008, 198, 220, 220, 220, 329, 300, 28, 16, 25, 75, 87, 12, 16, 198, 220, 220, 220, 220, 220, 220, 220, 317, 796, 285, 862, 16, 13, 1722, 58, 75, 60, 198, 220, 220, 220, 220, 220, 220, 220, 347, 796, 10668, 7, 76, 862, 17, 13, 1722, 58, 75, 4357, 11644, 1018, 378, 28, 9562, 8, 628, 220, 220, 220, 220, 220, 220, 220, 277, 2032, 499, 796, 277, 7780, 507, 86, 499, 10494, 7, 32, 13, 13200, 58, 17, 4357, 347, 13, 13200, 58, 16, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 22492, 16580, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 29148, 357, 36, 18, 11, 317, 16, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 3274, 11192, 273, 468, 19814, 796, 412, 16, 412, 17, 317, 17, 317, 18, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 29148, 351, 16075, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 1218, 11192, 273, 468, 19814, 55, 796, 412, 16, 1395, 32, 17, 412, 17, 317, 18, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 29148, 357, 6369, 17, 11, 347, 16, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 8125, 11192, 273, 468, 412, 16, 1395, 32, 17, 347, 17, 347, 18, 317, 18, 198, 220, 220, 220, 220, 220, 220, 220, 327, 796, 2775, 7, 28484, 7, 28484, 7, 36, 11, 357, 16, 11, 362, 11, 532, 16, 828, 317, 11, 13841, 16, 11, 513, 11, 604, 36911, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 16, 11, 532, 16, 11, 532, 17, 11, 604, 828, 277, 2032, 499, 11, 13841, 16, 11, 362, 11, 513, 11, 532, 17, 36911, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 16, 11, 362, 11, 532, 16, 11, 642, 828, 347, 11, 13841, 16, 11, 513, 11, 604, 4008, 628, 220, 220, 220, 220, 220, 220, 220, 611, 40122, 341, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 334, 11, 82, 11, 85, 796, 264, 20306, 2213, 19524, 7, 43094, 46912, 7, 34, 11, 685, 16, 11, 17, 11, 18, 4357, 685, 19, 11, 20, 46570, 3509, 27740, 28, 9806, 27740, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 334, 11, 82, 11, 85, 796, 4808, 82, 20306, 41052, 43094, 46912, 7, 34, 11, 685, 16, 11, 17, 11, 18, 4357, 685, 19, 11, 20, 60, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 886, 198, 220, 220, 220, 220, 220, 220, 220, 3487, 1096, 0, 7, 82, 8, 628, 220, 220, 220, 220, 220, 220, 220, 4574, 0, 7, 76, 862, 11, 32738, 1455, 82, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6626, 1455, 7, 84, 11, 352, 11, 357, 36, 13, 13200, 58, 16, 4357, 317, 13, 13200, 58, 17, 4357, 347, 13, 13200, 58, 17, 12962, 828, 362, 11, 362, 4008, 628, 220, 220, 220, 220, 220, 220, 220, 412, 796, 6626, 1455, 7, 82, 9, 85, 11, 362, 11, 357, 33, 13, 13200, 58, 18, 4357, 317, 13, 13200, 58, 18, 60, 4008, 198, 220, 220, 220, 886, 198, 220, 220, 220, 317, 796, 285, 862, 16, 13, 1722, 58, 75, 87, 60, 198, 220, 220, 220, 347, 796, 10668, 7, 76, 862, 17, 13, 1722, 58, 75, 87, 4357, 11644, 1018, 378, 28, 9562, 8, 198, 220, 220, 220, 277, 2032, 499, 796, 277, 7780, 507, 86, 499, 10494, 7, 32, 13, 13200, 58, 17, 4357, 347, 13, 13200, 58, 16, 12962, 198, 220, 220, 220, 327, 796, 2775, 7, 28484, 7, 28484, 7, 36, 11, 357, 16, 11, 362, 11, 532, 16, 828, 317, 11, 13841, 16, 11, 513, 11, 604, 36911, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 16, 11, 532, 16, 11, 532, 17, 11, 604, 828, 277, 2032, 499, 11, 13841, 16, 11, 362, 11, 513, 11, 532, 17, 36911, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 16, 11, 362, 11, 532, 16, 11, 642, 828, 347, 11, 13841, 16, 11, 513, 11, 604, 4008, 628, 220, 220, 220, 4574, 0, 7, 76, 862, 11, 32738, 1455, 82, 7, 69, 1904, 1455, 82, 7, 34, 11, 362, 11, 362, 828, 513, 11, 362, 4008, 198, 220, 220, 220, 285, 862, 13, 16159, 796, 300, 87, 198, 220, 220, 220, 285, 862, 198, 437, 198, 198, 8818, 4808, 39014, 70, 27839, 86, 4665, 13344, 0, 7, 76, 862, 3712, 7378, 9012, 90, 56, 30072, 810, 90, 56, 92, 198, 220, 220, 220, 309, 796, 1288, 4906, 7, 76, 862, 8, 198, 220, 220, 220, 402, 796, 309, 22854, 7, 1952, 11, 6632, 7, 52, 16, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 52, 16, 14106, 26933, 12, 16, 14804, 16, 11, 352, 14804, 16, 46570, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10668, 7, 52, 16, 14106, 26933, 12, 16, 14804, 16, 11, 657, 14804, 17, 11, 352, 14804, 16, 60, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 15306, 628, 220, 220, 220, 285, 862, 70, 27839, 796, 4904, 9012, 90, 56, 92, 3419, 628, 220, 220, 220, 3641, 62, 265, 0, 7, 76, 862, 11, 352, 8, 198, 220, 220, 220, 327, 796, 2775, 7, 38, 11, 357, 17, 11, 532, 16, 828, 285, 862, 13, 1722, 58, 16, 4357, 357, 16, 11, 532, 16, 11, 513, 4008, 198, 220, 220, 220, 329, 300, 28, 16, 25, 75, 87, 12, 16, 198, 220, 220, 220, 220, 220, 220, 220, 334, 11, 82, 11, 85, 796, 264, 20306, 2213, 19524, 7, 69, 1904, 1455, 82, 7, 34, 11, 352, 11, 362, 4008, 628, 220, 220, 220, 220, 220, 220, 220, 277, 21283, 796, 2124, 3784, 7146, 7, 87, 10, 75, 87, 12, 16, 11, 362, 8, 198, 220, 220, 220, 220, 220, 220, 220, 277, 358, 796, 2124, 3784, 7146, 7, 87, 10, 16, 11, 362, 8, 198, 220, 220, 220, 220, 220, 220, 220, 24714, 81, 796, 2124, 3784, 7146, 7, 87, 10, 75, 87, 11, 362, 8, 198, 220, 220, 220, 220, 220, 220, 220, 4574, 0, 7, 76, 862, 70, 27839, 11, 3975, 34948, 19510, 69, 21283, 11, 69, 358, 11, 22184, 81, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6626, 1455, 7, 84, 11, 352, 11, 357, 34, 13, 13200, 58, 16, 4357, 402, 13, 13200, 58, 16, 60, 35514, 198, 220, 220, 220, 220, 220, 220, 220, 412, 796, 264, 9, 85, 198, 220, 220, 220, 220, 220, 220, 220, 327, 796, 2775, 7, 36, 11, 357, 16, 11, 532, 16, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2775, 7, 38, 11, 357, 17, 11, 532, 16, 828, 285, 862, 13, 1722, 58, 75, 10, 16, 4357, 357, 16, 11, 532, 16, 11, 513, 36911, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 13841, 16, 11, 17, 11, 18, 4008, 198, 220, 220, 220, 886, 198, 220, 220, 220, 4574, 0, 7, 76, 862, 70, 27839, 11, 327, 8, 628, 220, 220, 220, 285, 862, 70, 27839, 198, 437, 198, 198, 8818, 4808, 13344, 392, 70, 27839, 86, 4665, 62, 37, 1954, 62, 20930, 0, 7, 76, 862, 16, 3712, 7378, 9012, 90, 56, 5512, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 285, 862, 17, 3712, 7378, 9012, 90, 56, 19629, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3509, 27740, 3712, 5317, 2414, 28, 2167, 8, 810, 1391, 56, 92, 628, 220, 220, 220, 300, 87, 796, 4129, 7, 76, 862, 16, 8, 198, 220, 220, 220, 2488, 30493, 4129, 7, 76, 862, 17, 8, 6624, 300, 87, 628, 220, 220, 220, 3641, 62, 265, 0, 7, 76, 862, 16, 11, 352, 8, 198, 220, 220, 220, 3641, 62, 265, 0, 7, 76, 862, 17, 11, 352, 8, 628, 220, 220, 220, 285, 862, 796, 4904, 9012, 90, 56, 92, 3419, 198, 220, 220, 220, 22492, 24550, 25, 287, 1502, 284, 787, 262, 12500, 89, 86, 4665, 43396, 2461, 262, 471, 16, 198, 220, 220, 220, 22492, 40686, 356, 761, 284, 466, 262, 22752, 21638, 278, 13, 2195, 2454, 262, 717, 285, 862, 198, 220, 220, 220, 22492, 24866, 284, 24935, 393, 352, 290, 1218, 285, 862, 284, 17804, 241, 393, 532, 16, 13, 198, 220, 220, 220, 309, 796, 1288, 4906, 7, 56, 8, 198, 220, 220, 220, 311, 796, 410, 4906, 7, 56, 8, 628, 220, 220, 220, 569, 67, 796, 20650, 14106, 90, 50, 92, 7, 15, 14804, 16, 11, 352, 14804, 16, 8, 198, 220, 220, 220, 402, 796, 6070, 7, 505, 7, 51, 828, 357, 646, 282, 7, 53, 67, 828, 3975, 34948, 7, 87, 3784, 17, 9, 87, 12, 16, 11, 569, 67, 828, 569, 67, 4008, 628, 220, 220, 220, 569, 67, 13513, 796, 20650, 14106, 90, 50, 92, 7, 15, 14804, 16, 8, 628, 220, 220, 220, 44386, 16427, 262, 376, 11192, 669, 198, 220, 220, 220, 44220, 16, 796, 2489, 10223, 7, 76, 862, 16, 8, 198, 220, 220, 220, 44220, 17, 796, 2489, 10223, 7, 76, 862, 17, 8, 198, 220, 220, 220, 376, 82, 796, 20650, 90, 43094, 51, 22854, 90, 50, 11, 51, 11, 18, 11709, 7, 917, 891, 11, 300, 87, 8, 198, 220, 220, 220, 376, 796, 6070, 7, 505, 7, 51, 828, 357, 53, 437, 16, 11, 10668, 7, 53, 437, 17, 828, 32738, 7, 7942, 11, 10668, 7, 53, 437, 16, 828, 44220, 17, 22305, 198, 220, 220, 220, 329, 300, 28, 75, 87, 21912, 16, 25, 17, 198, 220, 220, 220, 220, 220, 220, 220, 317, 796, 285, 862, 16, 13, 1722, 58, 75, 60, 198, 220, 220, 220, 220, 220, 220, 220, 347, 796, 10668, 7, 76, 862, 17, 13, 1722, 58, 75, 4357, 11644, 1018, 378, 28, 9562, 8, 198, 220, 220, 220, 220, 220, 220, 220, 277, 2032, 499, 796, 277, 7780, 507, 86, 499, 10494, 7, 32, 13, 13200, 58, 17, 4357, 347, 13, 13200, 58, 16, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 327, 796, 2775, 7, 28484, 7, 28484, 7, 28484, 7, 32, 11, 357, 16, 11, 362, 11, 532, 16, 828, 376, 11, 13841, 16, 11, 513, 11, 604, 36911, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 16, 11, 362, 11, 532, 16, 11, 642, 828, 347, 11, 357, 18, 11, 604, 11, 532, 16, 36911, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 16, 11, 532, 17, 11, 532, 16, 11, 604, 11, 642, 828, 277, 2032, 499, 11, 357, 17, 11, 513, 11, 532, 16, 11, 532, 17, 36911, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 16, 11, 362, 11, 532, 16, 11, 532, 17, 11, 604, 828, 402, 11, 13841, 16, 11, 513, 11, 532, 17, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 334, 11, 82, 11, 85, 796, 4808, 82, 20306, 41052, 43094, 46912, 7, 34, 11, 685, 16, 11, 17, 4357, 685, 18, 11, 19, 60, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 3487, 1096, 0, 7, 82, 8, 198, 220, 220, 220, 220, 220, 220, 220, 376, 796, 6626, 1455, 7, 84, 9, 82, 11, 352, 11, 357, 34, 13, 13200, 58, 16, 4357, 327, 13, 13200, 58, 17, 60, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 376, 82, 58, 75, 60, 796, 376, 198, 220, 220, 220, 886, 628, 220, 220, 220, 4049, 62, 1506, 78, 796, 20650, 90, 43879, 2414, 92, 3419, 198, 220, 220, 220, 4049, 62, 1039, 796, 20650, 90, 43879, 2414, 92, 3419, 198, 220, 220, 220, 412, 796, 6070, 7, 505, 7, 51, 828, 357, 53, 67, 13513, 11, 569, 67, 13513, 11, 10668, 7, 53, 67, 13513, 22305, 198, 220, 220, 220, 329, 300, 28, 16, 25, 75, 87, 12, 16, 198, 220, 220, 220, 220, 220, 220, 220, 317, 796, 285, 862, 16, 13, 1722, 58, 75, 60, 198, 220, 220, 220, 220, 220, 220, 220, 347, 796, 10668, 7, 76, 862, 17, 13, 1722, 58, 75, 4357, 11644, 1018, 378, 28, 9562, 8, 628, 220, 220, 220, 220, 220, 220, 220, 277, 2032, 499, 796, 277, 7780, 507, 86, 499, 10494, 7, 32, 13, 13200, 58, 17, 4357, 347, 13, 13200, 58, 16, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 22492, 16580, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 29148, 357, 36, 18, 11, 317, 16, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 3274, 11192, 273, 468, 19814, 796, 412, 16, 412, 17, 317, 17, 317, 18, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 29148, 351, 16075, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 1218, 11192, 273, 468, 19814, 55, 796, 412, 16, 1395, 32, 17, 412, 18, 317, 18, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 29148, 357, 32, 17, 11, 402, 17, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 10467, 11192, 273, 468, 412, 4760, 796, 412, 16, 402, 16, 402, 18, 412, 18, 317, 18, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 29148, 357, 36, 18, 11, 347, 16, 8, 290, 357, 38, 18, 11, 347, 17, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 8125, 11192, 273, 468, 412, 16, 402, 16, 317, 18, 347, 18, 198, 220, 220, 220, 220, 220, 220, 220, 327, 796, 2775, 7, 28484, 7, 28484, 7, 28484, 7, 36, 11, 357, 16, 11, 362, 11, 532, 16, 828, 317, 11, 13841, 16, 11, 513, 11, 604, 36911, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 16, 11, 532, 16, 11, 532, 17, 11, 604, 828, 277, 2032, 499, 11, 13841, 16, 11, 362, 11, 513, 11, 532, 17, 36911, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 16, 11, 532, 16, 11, 604, 11, 642, 828, 402, 11, 13841, 16, 11, 362, 11, 513, 36911, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 16, 11, 17, 11, 532, 17, 11, 532, 16, 11, 604, 828, 347, 11, 13841, 16, 12095, 17, 11, 513, 4008, 628, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 4036, 19974, 70, 27839, 1429, 198, 220, 220, 220, 220, 220, 220, 220, 334, 11, 82, 11, 85, 796, 264, 20306, 2213, 19524, 7, 43094, 46912, 7, 34, 11, 685, 16, 11, 17, 4357, 685, 18, 11, 19, 46570, 3509, 27740, 28, 9806, 27740, 8, 198, 220, 220, 220, 220, 220, 220, 220, 3487, 1096, 0, 7, 82, 8, 198, 220, 220, 220, 220, 220, 220, 220, 44872, 7, 27237, 7, 43094, 46912, 7, 34, 11, 685, 16, 11, 17, 4357, 685, 18, 11, 19, 60, 22305, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 383, 29617, 78, 3641, 17593, 198, 220, 220, 220, 220, 220, 220, 220, 18551, 6759, 796, 15845, 46912, 7, 28484, 7, 34, 11, 357, 16, 11, 17, 12095, 16, 12095, 17, 828, 376, 82, 58, 75, 10, 16, 4357, 13841, 17, 12095, 16, 11, 513, 36911, 685, 16, 11, 362, 4357, 685, 18, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 44872, 7, 27237, 7, 43094, 46912, 7, 42388, 58, 75, 10, 16, 4357, 685, 17, 11, 16, 4357, 685, 18, 60, 22305, 198, 220, 220, 220, 220, 220, 220, 220, 2593, 62, 22495, 6759, 796, 2593, 7, 22495, 6759, 8, 198, 220, 220, 220, 220, 220, 220, 220, 44872, 7, 27237, 62, 22495, 6759, 8, 198, 220, 220, 220, 220, 220, 220, 220, 44872, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 267, 400, 261, 6636, 40122, 341, 4049, 198, 220, 220, 220, 220, 220, 220, 220, 4808, 84, 11, 62, 82, 11, 62, 85, 796, 264, 20306, 2213, 19524, 7, 22495, 6759, 11, 3509, 27740, 28, 9806, 27740, 8, 198, 220, 220, 220, 220, 220, 220, 220, 3487, 1096, 0, 28264, 82, 8, 198, 220, 220, 220, 220, 220, 220, 220, 4574, 0, 7, 18224, 62, 1506, 78, 11, 16605, 28264, 84, 9, 62, 82, 9, 62, 85, 11, 18551, 6759, 8, 1220, 2593, 62, 22495, 6759, 8, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 19974, 70, 27839, 40122, 341, 4049, 198, 220, 220, 220, 220, 220, 220, 220, 327, 2213, 37, 6759, 796, 357, 84, 9, 82, 9, 85, 8, 1635, 15845, 46912, 7, 42388, 58, 75, 10, 16, 4357, 685, 17, 11, 16, 4357, 685, 18, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 2593, 62, 34, 2213, 37, 6759, 796, 2593, 7, 34, 2213, 37, 6759, 8, 198, 220, 220, 220, 220, 220, 220, 220, 4574, 0, 7, 18224, 62, 1039, 11, 16605, 7, 34, 2213, 37, 6759, 11, 18551, 6759, 8, 1220, 357, 27237, 62, 22495, 6759, 9, 27237, 62, 34, 2213, 37, 6759, 4008, 628, 220, 220, 220, 220, 220, 220, 220, 277, 21283, 796, 2124, 3784, 7146, 7, 87, 10, 75, 12, 16, 11, 362, 8, 198, 220, 220, 220, 220, 220, 220, 220, 277, 358, 796, 2124, 3784, 7146, 7, 87, 10, 16, 11, 362, 8, 198, 220, 220, 220, 220, 220, 220, 220, 24714, 81, 796, 2124, 3784, 7146, 7, 87, 10, 75, 11, 362, 8, 198, 220, 220, 220, 220, 220, 220, 220, 4574, 0, 7, 76, 862, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3975, 34948, 19510, 69, 21283, 11, 69, 358, 11, 22184, 81, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6626, 1455, 7, 84, 11, 352, 11, 357, 36, 13, 13200, 58, 16, 4357, 402, 13, 13200, 58, 17, 60, 35514, 198, 220, 220, 220, 220, 220, 220, 220, 412, 796, 6626, 1455, 7, 82, 9, 85, 11, 362, 11, 357, 33, 13, 13200, 58, 18, 4357, 317, 13, 13200, 58, 18, 60, 4008, 198, 220, 220, 220, 886, 198, 220, 220, 220, 317, 796, 285, 862, 16, 13, 1722, 58, 75, 87, 60, 198, 220, 220, 220, 347, 796, 220, 10668, 7, 76, 862, 17, 13, 1722, 58, 75, 87, 4357, 11644, 1018, 378, 28, 9562, 8, 198, 220, 220, 220, 277, 2032, 499, 796, 277, 7780, 507, 86, 499, 10494, 7, 32, 13, 13200, 58, 17, 4357, 347, 13, 13200, 58, 16, 12962, 198, 220, 220, 220, 327, 796, 2775, 7, 28484, 7, 28484, 7, 28484, 7, 36, 11, 357, 16, 11, 362, 11, 532, 16, 828, 317, 11, 13841, 16, 11, 513, 11, 604, 36911, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 16, 11, 532, 16, 11, 532, 17, 11, 604, 828, 277, 2032, 499, 11, 13841, 16, 11, 362, 11, 513, 11, 532, 17, 36911, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 16, 11, 532, 16, 11, 604, 11, 642, 828, 402, 11, 13841, 16, 11, 362, 11, 513, 36911, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 16, 11, 17, 12095, 17, 12095, 16, 11, 19, 828, 347, 11, 13841, 16, 12095, 17, 11, 513, 4008, 628, 220, 220, 220, 334, 11, 82, 11, 85, 796, 264, 20306, 2213, 19524, 7, 43094, 46912, 7, 34, 11, 685, 16, 11, 17, 4357, 685, 18, 11, 19, 46570, 3509, 27740, 28, 9806, 27740, 8, 198, 220, 220, 220, 3487, 1096, 0, 7, 82, 8, 628, 220, 220, 220, 4574, 0, 7, 18224, 62, 1506, 78, 11, 352, 13, 15, 8, 198, 220, 220, 220, 4574, 0, 7, 18224, 62, 1039, 11, 352, 13, 15, 8, 628, 220, 220, 220, 327, 796, 6626, 1455, 7, 84, 9, 82, 9, 85, 11, 352, 11, 357, 36, 13, 13200, 58, 16, 4357, 402, 13, 13200, 58, 17, 60, 4008, 198, 220, 220, 220, 277, 21283, 796, 2124, 3784, 7146, 7, 87, 10, 75, 87, 12, 16, 11, 362, 8, 198, 220, 220, 220, 277, 358, 796, 2124, 3784, 7146, 7, 87, 10, 16, 11, 362, 8, 198, 220, 220, 220, 24714, 81, 796, 2124, 3784, 7146, 7, 87, 10, 75, 87, 11, 362, 8, 198, 220, 220, 220, 4574, 0, 7, 76, 862, 11, 3975, 34948, 19510, 69, 21283, 11, 69, 358, 11, 22184, 81, 828, 327, 4008, 628, 220, 220, 220, 285, 862, 13, 16159, 796, 300, 87, 198, 220, 220, 220, 285, 862, 11, 4049, 62, 1506, 78, 11, 4049, 62, 1039, 198, 437, 198 ]
1.696393
8,567
<gh_stars>1-10 using RecordedArrays using Random using EvolutionaryModelingTools using EvolutionaryModelingTools.Scalar # parameters const T = 10.0 # max time const r = 0.5 # growth rate const d = 0.1 # death rate const K = 100 # carrying capacity const n = 10 # initial population size @cfunc growth_c(r, n) = r * n @ufunc growth_u!(ind, n) = n[ind] += 1 @cfunc death_c(d, n) = d * n @ufunc death_u!(ind, n) = n[ind] -= 1 @cfunc comp_c(r, K, n) = r * n * n' / K @ufunc comp_u!(ind::CartesianIndex{0}, n) = n[ind] -= 1 # the ind must be CartesianIndex{0}, this is just for test @ufunc check_extinction(ind::CartesianIndex{0}, n) = n[ind] == 0 ? :extinct : :finnish growth = Reaction(growth_c, growth_u!) death = Reaction(death_c, death_u!) competition = Reaction(comp_c, comp_u!) _maybe_scalar(n::Number) = scalar(n) _maybe_scalar(n) = n function run_gillespie(rng=Random.GLOBAL_RNG, T=T, r=r, d=d, K=K, n=n) ps = (; r, d, K, n=_maybe_scalar(n)) rs = (growth, death, competition) return gillespie(check_extinction, rng, T, ps, rs) end function run_gillespie_record(rng=Random.GLOBAL_RNG, T=T, r=r, d=d, K=K, n=n) clock = ContinuousClock(T) ps = (; r, d, K, n= recorded(DynamicEntry, clock, n)) rs = (growth, death, competition) return gillespie(check_extinction, rng, clock, ps, rs) end function run_manually(rng=Random.GLOBAL_RNG, T=T, r=r, d=d, K=K, n=n) t = 0 while t <= T # calculate rate growth_rate = r * n # intrinsic growth death_rate = d * n # intrinsic death competition_rate = r * n * n / K # resource competition summed = growth_rate + death_rate + competition_rate # sum a_i # break if summed is zero summed == 0 && break # update current time t += -log(rand(rng)) / summed # sample a reaction and adjust population size rn = rand(rng) * summed if rn < growth_rate n += 1 else n -= 1 end end return n end function run_manually_record(rng=Random.GLOBAL_RNG, T=T, r=r, d=d, K=K, n=n) clock = ContinuousClock(T) n = recorded(DynamicEntry, clock, n) for _ in clock # calculate rate growth_rate = r * n # intrinsic growth death_rate = d * n # intrinsic death competition_rate = r * n * n / K # resource competition summed = growth_rate + death_rate + competition_rate # sum a_i # break if summed is zero summed == 0 && break # update current time increase!(clock, -log(rand(rng)) / summed) # sample a reaction and adjust population size rn = rand(rng) * summed if rn < growth_rate n[] += 1 else n[] -= 1 end end return n end
[ 27, 456, 62, 30783, 29, 16, 12, 940, 198, 3500, 50096, 3163, 20477, 198, 3500, 14534, 198, 3500, 15815, 560, 5841, 10809, 33637, 198, 3500, 15815, 560, 5841, 10809, 33637, 13, 3351, 282, 283, 198, 198, 2, 10007, 198, 9979, 309, 796, 838, 13, 15, 1303, 3509, 640, 198, 9979, 374, 796, 657, 13, 20, 220, 220, 1303, 3349, 2494, 198, 9979, 288, 796, 657, 13, 16, 220, 220, 1303, 1918, 2494, 198, 9979, 509, 796, 1802, 220, 220, 1303, 6872, 5339, 198, 9979, 299, 796, 838, 220, 220, 220, 1303, 4238, 3265, 2546, 198, 198, 31, 66, 20786, 3349, 62, 66, 7, 81, 11, 299, 8, 796, 374, 1635, 299, 198, 31, 3046, 19524, 3349, 62, 84, 0, 7, 521, 11, 299, 8, 796, 299, 58, 521, 60, 15853, 352, 198, 198, 31, 66, 20786, 1918, 62, 66, 7, 67, 11, 299, 8, 796, 288, 1635, 299, 198, 31, 3046, 19524, 1918, 62, 84, 0, 7, 521, 11, 299, 8, 796, 299, 58, 521, 60, 48185, 352, 198, 198, 31, 66, 20786, 552, 62, 66, 7, 81, 11, 509, 11, 299, 8, 796, 374, 1635, 299, 1635, 299, 6, 1220, 509, 198, 31, 3046, 19524, 552, 62, 84, 0, 7, 521, 3712, 43476, 35610, 15732, 90, 15, 5512, 299, 8, 796, 299, 58, 521, 60, 48185, 352, 198, 198, 2, 262, 773, 1276, 307, 13690, 35610, 15732, 90, 15, 5512, 428, 318, 655, 329, 1332, 198, 31, 3046, 19524, 2198, 62, 2302, 9438, 7, 521, 3712, 43476, 35610, 15732, 90, 15, 5512, 299, 8, 796, 299, 58, 521, 60, 6624, 657, 5633, 1058, 2302, 4612, 1058, 1058, 69, 3732, 680, 198, 198, 27922, 796, 39912, 7, 27922, 62, 66, 11, 3349, 62, 84, 8133, 198, 22595, 796, 39912, 7, 22595, 62, 66, 11, 1918, 62, 84, 8133, 198, 5589, 15620, 796, 39912, 7, 5589, 62, 66, 11, 552, 62, 84, 8133, 198, 198, 62, 25991, 62, 1416, 282, 283, 7, 77, 3712, 15057, 8, 796, 16578, 283, 7, 77, 8, 198, 62, 25991, 62, 1416, 282, 283, 7, 77, 8, 796, 299, 198, 198, 8818, 1057, 62, 70, 359, 42120, 7, 81, 782, 28, 29531, 13, 8763, 9864, 1847, 62, 49, 10503, 11, 309, 28, 51, 11, 374, 28, 81, 11, 288, 28, 67, 11, 509, 28, 42, 11, 299, 28, 77, 8, 198, 220, 220, 220, 26692, 796, 357, 26, 374, 11, 288, 11, 509, 11, 299, 28, 62, 25991, 62, 1416, 282, 283, 7, 77, 4008, 198, 220, 220, 220, 44608, 796, 357, 27922, 11, 1918, 11, 5449, 8, 198, 220, 220, 220, 1441, 308, 359, 42120, 7, 9122, 62, 2302, 9438, 11, 374, 782, 11, 309, 11, 26692, 11, 44608, 8, 198, 437, 198, 198, 8818, 1057, 62, 70, 359, 42120, 62, 22105, 7, 81, 782, 28, 29531, 13, 8763, 9864, 1847, 62, 49, 10503, 11, 309, 28, 51, 11, 374, 28, 81, 11, 288, 28, 67, 11, 509, 28, 42, 11, 299, 28, 77, 8, 198, 220, 220, 220, 8801, 796, 45012, 44758, 7, 51, 8, 198, 220, 220, 220, 26692, 796, 357, 26, 374, 11, 288, 11, 509, 11, 299, 28, 6264, 7, 44090, 30150, 11, 8801, 11, 299, 4008, 198, 220, 220, 220, 44608, 796, 357, 27922, 11, 1918, 11, 5449, 8, 198, 220, 220, 220, 1441, 308, 359, 42120, 7, 9122, 62, 2302, 9438, 11, 374, 782, 11, 8801, 11, 26692, 11, 44608, 8, 198, 437, 198, 198, 8818, 1057, 62, 805, 935, 7, 81, 782, 28, 29531, 13, 8763, 9864, 1847, 62, 49, 10503, 11, 309, 28, 51, 11, 374, 28, 81, 11, 288, 28, 67, 11, 509, 28, 42, 11, 299, 28, 77, 8, 198, 220, 220, 220, 256, 796, 657, 198, 220, 220, 220, 981, 256, 19841, 309, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 15284, 2494, 198, 220, 220, 220, 220, 220, 220, 220, 3349, 62, 4873, 796, 374, 1635, 299, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 28327, 3349, 198, 220, 220, 220, 220, 220, 220, 220, 1918, 62, 4873, 796, 288, 1635, 299, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 28327, 1918, 198, 220, 220, 220, 220, 220, 220, 220, 5449, 62, 4873, 796, 374, 1635, 299, 1635, 299, 1220, 509, 1303, 8271, 5449, 198, 220, 220, 220, 220, 220, 220, 220, 32794, 796, 3349, 62, 4873, 1343, 1918, 62, 4873, 1343, 5449, 62, 4873, 220, 1303, 2160, 257, 62, 72, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 2270, 611, 32794, 318, 6632, 198, 220, 220, 220, 220, 220, 220, 220, 32794, 6624, 657, 11405, 2270, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 4296, 1459, 640, 198, 220, 220, 220, 220, 220, 220, 220, 256, 15853, 532, 6404, 7, 25192, 7, 81, 782, 4008, 1220, 32794, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 6291, 257, 6317, 290, 4532, 3265, 2546, 198, 220, 220, 220, 220, 220, 220, 220, 374, 77, 796, 43720, 7, 81, 782, 8, 1635, 32794, 198, 220, 220, 220, 220, 220, 220, 220, 611, 374, 77, 1279, 3349, 62, 4873, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 299, 15853, 352, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 299, 48185, 352, 198, 220, 220, 220, 220, 220, 220, 220, 886, 198, 220, 220, 220, 886, 198, 220, 220, 220, 1441, 299, 198, 437, 198, 198, 8818, 1057, 62, 805, 935, 62, 22105, 7, 81, 782, 28, 29531, 13, 8763, 9864, 1847, 62, 49, 10503, 11, 309, 28, 51, 11, 374, 28, 81, 11, 288, 28, 67, 11, 509, 28, 42, 11, 299, 28, 77, 8, 198, 220, 220, 220, 8801, 796, 45012, 44758, 7, 51, 8, 198, 220, 220, 220, 299, 796, 6264, 7, 44090, 30150, 11, 8801, 11, 299, 8, 198, 220, 220, 220, 329, 4808, 287, 8801, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 15284, 2494, 198, 220, 220, 220, 220, 220, 220, 220, 3349, 62, 4873, 796, 374, 1635, 299, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 28327, 3349, 198, 220, 220, 220, 220, 220, 220, 220, 1918, 62, 4873, 796, 288, 1635, 299, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 28327, 1918, 198, 220, 220, 220, 220, 220, 220, 220, 5449, 62, 4873, 796, 374, 1635, 299, 1635, 299, 1220, 509, 1303, 8271, 5449, 198, 220, 220, 220, 220, 220, 220, 220, 32794, 796, 3349, 62, 4873, 1343, 1918, 62, 4873, 1343, 5449, 62, 4873, 220, 1303, 2160, 257, 62, 72, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 2270, 611, 32794, 318, 6632, 198, 220, 220, 220, 220, 220, 220, 220, 32794, 6624, 657, 11405, 2270, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 4296, 1459, 640, 198, 220, 220, 220, 220, 220, 220, 220, 2620, 0, 7, 15750, 11, 532, 6404, 7, 25192, 7, 81, 782, 4008, 1220, 32794, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 6291, 257, 6317, 290, 4532, 3265, 2546, 198, 220, 220, 220, 220, 220, 220, 220, 374, 77, 796, 43720, 7, 81, 782, 8, 1635, 32794, 198, 220, 220, 220, 220, 220, 220, 220, 611, 374, 77, 1279, 3349, 62, 4873, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 299, 21737, 15853, 352, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 299, 21737, 48185, 352, 198, 220, 220, 220, 220, 220, 220, 220, 886, 198, 220, 220, 220, 886, 198, 220, 220, 220, 1441, 299, 198, 437, 198 ]
2.212286
1,286
module PanX using Printf using JSON, GZip using PanGraph struct Gene id :: Int tag :: String low :: Int high :: Int strand :: Bool end function find(database, tag) for (i,cluster) in enumerate(database) tag ∈ cluster && return i end return nothing end askey(name,tag) = "$(name)|$(tag)" function gene(line, name, database) elt = split(line) strand = elt[1] == "+" low, high = parse.(Int, split(elt[2],"..")) tag = elt[3] id = find(database,askey(name,tag)) id !== nothing || return nothing return Gene(id, tag, low, high, strand) end struct Genome name :: String sequence :: Array{UInt8,1} gene :: Array{Gene,1} end Genome(name::String, sequence::Array{UInt8,1}) = Genome(name, sequence, Gene[]) function database(path) data = Set{String}[] meta = String[] re = r"(N[A-Z]_[A-Z0-9]+)_" sub = s"\1|" open(path) do io genes = JSON.parse(io) for (i,gene) in enumerate(genes) loci = map(split(gene["locus"])) do g replace(g, re => sub) end push!(data, Set(loci)) push!(meta, gene["msa"]) end end return ( loci=data, meta=meta, path=dirname(path), ) end function alignment(io::IO) record = [ (name=rec.name, seq=rec.seq) for rec in PanGraph.Utility.read_fasta(io)] return hcat(map(r->r.seq,record)...), map(record) do r entry = split(r.name, "-") return "$(entry[1])|$(entry[2])" end end function pangraph(genomes, genes) vertex = [ let path = "$(genes.path)/geneCluster/$(base)_na_aln.fa.gz" aln, isos = GZip.open(alignment, path) ref = PanGraph.Utility.make_consensus(aln) blk = PanGraph.Graphs.Block(ref) iso = [ PanGraph.Graphs.Node(blk, true) for _ in isos ] blk.uuid = @sprintf("Gene_%05d", i) blk.gaps, blk.mutate, blk.delete, blk.insert, blk.sequence = PanGraph.Utility.alignment_alleles(ref, aln, iso) (block=blk, node=Dict( name => node for (name,node) in zip(isos,iso))) end for (i,(gene,base)) in enumerate(zip(genes.loci,genes.meta)) ] path = [ let nodes = [ let node = pop!(vertex[gene.id].node, askey(genome.name, gene.tag)) node.strand = gene.strand node end for gene in genome.gene ] breaks = [ x for gene in genome.gene for x in [gene.low, gene.high] ] PanGraph.Graphs.Path(genome.name, nodes, 0, true, breaks) end for genome in values(genomes) ] # remove any unpaired nodes we initially added # delete empty blocks index = Int[] for (i,v) in enumerate(vertex) for n in values(v.node) pop!(v.block, n) end if length(v.block.mutate) == 0 push!(index, i) end end deleteat!(vertex, index) block = map(v->v.block, vertex) graph = PanGraph.Graph(Dict(b.uuid => b for b in block), Dict(p.name => p for p in path) ) return graph end function main(database) genomes = Dict{String,Genome}() while !eof(stdin) line = readline(stdin) line[1] == '>' || error("invalid stream detected") name = line[2:end] sbuf = IOBuffer() # grab sequence @label moreseq line = readline(stdin) if line != "ENDSEQ" print(sbuf, line) @goto moreseq end genome = Genome(name, take!(sbuf)) # grab loci @label moregene line = readline(stdin) if line != "ENDGENE" g = gene(line, name, database.loci) g !== nothing && push!(genome.gene, g) @goto moregene end genomes[name] = genome end return pangraph(genomes, database) end # NOTE: just for debugging function echo() while !eof(stdin) println(readline(stdin)) end end if abspath(PROGRAM_FILE) == @__FILE__ database(ARGS[1]) |> main |> (G) -> PanGraph.Graphs.marshal(stdout, G; fmt=:json) end end
[ 21412, 5961, 55, 198, 198, 3500, 12578, 69, 198, 3500, 19449, 11, 402, 41729, 198, 3500, 5961, 37065, 198, 198, 7249, 13005, 198, 220, 220, 220, 4686, 220, 220, 220, 220, 7904, 2558, 198, 220, 220, 220, 7621, 220, 220, 220, 7904, 10903, 198, 220, 220, 220, 1877, 220, 220, 220, 7904, 2558, 198, 220, 220, 220, 1029, 220, 220, 7904, 2558, 198, 220, 220, 220, 37923, 7904, 347, 970, 198, 437, 198, 198, 8818, 1064, 7, 48806, 11, 7621, 8, 198, 220, 220, 220, 329, 357, 72, 11, 565, 5819, 8, 287, 27056, 378, 7, 48806, 8, 198, 220, 220, 220, 220, 220, 220, 220, 7621, 18872, 230, 13946, 11405, 1441, 1312, 198, 220, 220, 220, 886, 198, 220, 220, 220, 1441, 2147, 198, 437, 198, 198, 292, 2539, 7, 3672, 11, 12985, 8, 796, 17971, 7, 3672, 14726, 3, 7, 12985, 16725, 198, 198, 8818, 9779, 7, 1370, 11, 1438, 11, 6831, 8, 198, 220, 220, 220, 1288, 83, 796, 6626, 7, 1370, 8, 628, 220, 220, 220, 37923, 796, 1288, 83, 58, 16, 60, 6624, 43825, 1, 198, 220, 220, 220, 1877, 11, 1029, 796, 21136, 12195, 5317, 11, 6626, 7, 2120, 58, 17, 17241, 492, 48774, 198, 220, 220, 220, 7621, 796, 1288, 83, 58, 18, 60, 198, 220, 220, 220, 4686, 220, 796, 1064, 7, 48806, 11, 292, 2539, 7, 3672, 11, 12985, 4008, 198, 220, 220, 220, 4686, 5145, 855, 2147, 8614, 1441, 2147, 628, 220, 220, 220, 1441, 13005, 7, 312, 11, 7621, 11, 1877, 11, 1029, 11, 37923, 8, 198, 437, 198, 198, 7249, 5215, 462, 198, 220, 220, 220, 1438, 220, 220, 220, 220, 7904, 10903, 198, 220, 220, 220, 8379, 7904, 15690, 90, 52, 5317, 23, 11, 16, 92, 198, 220, 220, 220, 9779, 220, 220, 220, 220, 7904, 15690, 90, 39358, 11, 16, 92, 198, 437, 198, 198, 13746, 462, 7, 3672, 3712, 10100, 11, 8379, 3712, 19182, 90, 52, 5317, 23, 11, 16, 30072, 796, 5215, 462, 7, 3672, 11, 8379, 11, 13005, 58, 12962, 198, 198, 8818, 6831, 7, 6978, 8, 198, 220, 220, 220, 1366, 796, 5345, 90, 10100, 92, 21737, 198, 220, 220, 220, 13634, 796, 10903, 21737, 198, 220, 220, 220, 302, 220, 220, 796, 374, 18109, 45, 58, 32, 12, 57, 60, 62, 58, 32, 12, 57, 15, 12, 24, 60, 28988, 62, 1, 198, 220, 220, 220, 850, 220, 796, 264, 1, 59, 16, 91, 1, 198, 220, 220, 220, 1280, 7, 6978, 8, 466, 33245, 198, 220, 220, 220, 220, 220, 220, 220, 10812, 796, 19449, 13, 29572, 7, 952, 8, 198, 220, 220, 220, 220, 220, 220, 220, 329, 357, 72, 11, 70, 1734, 8, 287, 27056, 378, 7, 5235, 274, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1179, 72, 796, 3975, 7, 35312, 7, 70, 1734, 14692, 75, 10901, 8973, 4008, 466, 308, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6330, 7, 70, 11, 302, 5218, 850, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 886, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4574, 0, 7, 7890, 11, 5345, 7, 75, 1733, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4574, 0, 7, 28961, 11, 9779, 14692, 907, 64, 8973, 8, 198, 220, 220, 220, 220, 220, 220, 220, 886, 198, 220, 220, 220, 886, 198, 220, 220, 220, 1441, 357, 198, 220, 220, 220, 220, 220, 220, 220, 1179, 72, 28, 7890, 11, 198, 220, 220, 220, 220, 220, 220, 220, 13634, 28, 28961, 11, 198, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 15908, 3672, 7, 6978, 828, 198, 220, 220, 220, 1267, 198, 437, 198, 198, 8818, 19114, 7, 952, 3712, 9399, 8, 198, 220, 220, 220, 1700, 796, 685, 357, 3672, 28, 8344, 13, 3672, 11, 33756, 28, 8344, 13, 41068, 8, 329, 664, 287, 5961, 37065, 13, 18274, 879, 13, 961, 62, 7217, 64, 7, 952, 15437, 198, 220, 220, 220, 1441, 289, 9246, 7, 8899, 7, 81, 3784, 81, 13, 41068, 11, 22105, 26513, 828, 3975, 7, 22105, 8, 466, 374, 198, 220, 220, 220, 220, 220, 220, 220, 5726, 796, 6626, 7, 81, 13, 3672, 11, 27444, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 17971, 7, 13000, 58, 16, 12962, 91, 3, 7, 13000, 58, 17, 12962, 1, 198, 220, 220, 220, 886, 198, 437, 198, 198, 8818, 279, 648, 1470, 7, 5235, 2586, 11, 10812, 8, 198, 220, 220, 220, 37423, 796, 685, 198, 220, 220, 220, 220, 220, 220, 220, 1309, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 796, 17971, 7, 5235, 274, 13, 6978, 20679, 70, 1734, 2601, 5819, 32624, 7, 8692, 8, 62, 2616, 62, 282, 77, 13, 13331, 13, 34586, 1, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 435, 77, 11, 318, 418, 796, 402, 41729, 13, 9654, 7, 282, 16747, 11, 3108, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1006, 796, 5961, 37065, 13, 18274, 879, 13, 15883, 62, 5936, 7314, 7, 282, 77, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 698, 74, 796, 5961, 37065, 13, 37065, 82, 13, 12235, 7, 5420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 47279, 796, 685, 5961, 37065, 13, 37065, 82, 13, 19667, 7, 2436, 74, 11, 2081, 8, 329, 4808, 287, 318, 418, 2361, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 698, 74, 13, 12303, 312, 796, 2488, 82, 37435, 7203, 39358, 62, 4, 2713, 67, 1600, 1312, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 698, 74, 13, 70, 1686, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 698, 74, 13, 21973, 378, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 698, 74, 13, 33678, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 698, 74, 13, 28463, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 698, 74, 13, 43167, 796, 5961, 37065, 13, 18274, 879, 13, 282, 16747, 62, 6765, 829, 7, 5420, 11, 435, 77, 11, 47279, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 9967, 28, 2436, 74, 11, 10139, 28, 35, 713, 7, 1438, 5218, 10139, 329, 357, 3672, 11, 17440, 8, 287, 19974, 7, 271, 418, 11, 26786, 22305, 198, 220, 220, 220, 220, 220, 220, 220, 886, 329, 357, 72, 11, 7, 70, 1734, 11, 8692, 4008, 287, 27056, 378, 7, 13344, 7, 5235, 274, 13, 75, 1733, 11, 5235, 274, 13, 28961, 4008, 198, 220, 220, 220, 2361, 628, 220, 220, 220, 3108, 796, 685, 198, 220, 220, 220, 220, 220, 220, 220, 1309, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 13760, 796, 685, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1309, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10139, 796, 1461, 0, 7, 332, 16886, 58, 70, 1734, 13, 312, 4083, 17440, 11, 355, 2539, 7, 5235, 462, 13, 3672, 11, 9779, 13, 12985, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10139, 13, 2536, 392, 796, 9779, 13, 2536, 392, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10139, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 886, 329, 9779, 287, 19270, 13, 70, 1734, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2361, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9457, 796, 685, 2124, 329, 9779, 287, 19270, 13, 70, 1734, 329, 2124, 287, 685, 70, 1734, 13, 9319, 11, 9779, 13, 8929, 60, 2361, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5961, 37065, 13, 37065, 82, 13, 15235, 7, 5235, 462, 13, 3672, 11, 13760, 11, 657, 11, 2081, 11, 9457, 8, 198, 220, 220, 220, 220, 220, 220, 220, 886, 329, 19270, 287, 3815, 7, 5235, 2586, 8, 198, 220, 220, 220, 2361, 628, 220, 220, 220, 1303, 4781, 597, 8593, 9820, 13760, 356, 7317, 2087, 198, 220, 220, 220, 1303, 12233, 6565, 7021, 198, 220, 220, 220, 6376, 796, 2558, 21737, 198, 220, 220, 220, 329, 357, 72, 11, 85, 8, 287, 27056, 378, 7, 332, 16886, 8, 198, 220, 220, 220, 220, 220, 220, 220, 329, 299, 287, 3815, 7, 85, 13, 17440, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1461, 0, 7, 85, 13, 9967, 11, 299, 8, 198, 220, 220, 220, 220, 220, 220, 220, 886, 628, 220, 220, 220, 220, 220, 220, 220, 611, 4129, 7, 85, 13, 9967, 13, 21973, 378, 8, 6624, 657, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4574, 0, 7, 9630, 11, 1312, 8, 198, 220, 220, 220, 220, 220, 220, 220, 886, 198, 220, 220, 220, 886, 198, 220, 220, 220, 12233, 265, 0, 7, 332, 16886, 11, 6376, 8, 628, 220, 220, 220, 2512, 796, 3975, 7, 85, 3784, 85, 13, 9967, 11, 37423, 8, 198, 220, 220, 220, 4823, 796, 5961, 37065, 13, 37065, 7, 35, 713, 7, 65, 13, 12303, 312, 5218, 275, 329, 275, 287, 2512, 828, 360, 713, 7, 79, 13, 3672, 5218, 279, 329, 279, 287, 3108, 8, 1267, 628, 220, 220, 220, 1441, 4823, 198, 437, 198, 198, 8818, 1388, 7, 48806, 8, 198, 220, 220, 220, 42136, 796, 360, 713, 90, 10100, 11, 13746, 462, 92, 3419, 198, 220, 220, 220, 981, 5145, 68, 1659, 7, 19282, 259, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1627, 796, 1100, 1370, 7, 19282, 259, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1627, 58, 16, 60, 6624, 705, 29, 6, 8614, 4049, 7203, 259, 12102, 4269, 12326, 4943, 628, 220, 220, 220, 220, 220, 220, 220, 1438, 796, 1627, 58, 17, 25, 437, 60, 198, 220, 220, 220, 220, 220, 220, 220, 264, 29325, 796, 314, 9864, 13712, 3419, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 5552, 8379, 198, 220, 220, 220, 220, 220, 220, 220, 2488, 18242, 517, 41068, 198, 220, 220, 220, 220, 220, 220, 220, 1627, 796, 1100, 1370, 7, 19282, 259, 8, 198, 220, 220, 220, 220, 220, 220, 220, 611, 1627, 14512, 366, 10619, 5188, 48, 1, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 82, 29325, 11, 1627, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2488, 70, 2069, 517, 41068, 198, 220, 220, 220, 220, 220, 220, 220, 886, 198, 220, 220, 220, 220, 220, 220, 220, 19270, 796, 5215, 462, 7, 3672, 11, 1011, 0, 7, 82, 29325, 4008, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 5552, 1179, 72, 198, 220, 220, 220, 220, 220, 220, 220, 2488, 18242, 517, 70, 1734, 198, 220, 220, 220, 220, 220, 220, 220, 1627, 796, 1100, 1370, 7, 19282, 259, 8, 198, 220, 220, 220, 220, 220, 220, 220, 611, 1627, 14512, 366, 10619, 35353, 36, 1, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 308, 796, 9779, 7, 1370, 11, 1438, 11, 6831, 13, 75, 1733, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 308, 5145, 855, 2147, 11405, 4574, 0, 7, 5235, 462, 13, 70, 1734, 11, 308, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2488, 70, 2069, 517, 70, 1734, 198, 220, 220, 220, 220, 220, 220, 220, 886, 628, 220, 220, 220, 220, 220, 220, 220, 42136, 58, 3672, 60, 796, 19270, 198, 220, 220, 220, 886, 628, 220, 220, 220, 1441, 279, 648, 1470, 7, 5235, 2586, 11, 6831, 8, 198, 437, 198, 198, 2, 24550, 25, 655, 329, 28769, 198, 8818, 9809, 3419, 198, 220, 220, 220, 981, 5145, 68, 1659, 7, 19282, 259, 8, 198, 220, 220, 220, 220, 220, 220, 220, 44872, 7, 961, 1370, 7, 19282, 259, 4008, 198, 220, 220, 220, 886, 198, 437, 198, 198, 361, 2352, 6978, 7, 4805, 7730, 24115, 62, 25664, 8, 6624, 2488, 834, 25664, 834, 198, 220, 220, 220, 6831, 7, 1503, 14313, 58, 16, 12962, 930, 29, 1388, 930, 29, 357, 38, 8, 4613, 5961, 37065, 13, 37065, 82, 13, 76, 5406, 282, 7, 19282, 448, 11, 402, 26, 46996, 28, 25, 17752, 8, 198, 437, 198, 198, 437, 198 ]
1.995316
2,135
<reponame>hmatuschek/ContinuousWavelet.jl @doc raw""" detrend!(y::AbstractVector{V}, x::AbstractVector{U}=(1:length(y))) In-place detrends the given time-series. That is, fitting a linear function into `y` given `x` and subtracting the fit from the data in `y`. """ function detrend!(y::AbstractVector{V}, x::AbstractVector{U}=(1:length(y))) where {U,V} (length(x) != length(y)) && error("x & y must have the same length!") N = length(x) X = Matrix(zeros(Float64, N, 2)) for i in 1:N X[i,:] = [1, x[i]] end res = transpose(X) * y res = (transpose(X) * X) \ res y[:] -= (res[1] .+ (res[2] .* x)) end @doc raw""" detrend!(y::AbstractArray{V,2}, x::AbstractVector{U}=(1:length(y))) In-place detrends the given time-series. That is, fitting a linear function into every columns of `y` given `x` and subtracting the fit from the data in the corresponding column of `y`. """ function detrend!(y::AbstractArray{V,2}, x::AbstractVector{U}=(1:length(y))) where {U,V} N,M = size(y) for i in 1:M y[:,i] = detrend!(y[:,i]) end y end @doc raw""" detrend(y::AbstractVector{V}, x::AbstractVector{U}=(1:length(y))) Detrends the given time-series. That is, fitting a linear function into `y` given `x` and subtracting the fit from the data in `y`. The function returns the detrended time-series. """ function detrend(y::AbstractVector{V}, x::AbstractVector{U}=(1:length(y))) where {U,V} Y = copy(y) detrend!(Y) Y end @doc raw""" detrend!(y::AbstractArray{V,2}, x::AbstractVector{U}=(1:length(y))) Detrends the given time-series. That is, fitting a linear function into every columns of `y` given `x` and subtracting the fit from the data in the corresponding column of `y`. The fuction returns the detrended time-series. """ function detrend(y::AbstractArray{V,2}, x::AbstractVector{U}=(1:length(y))) where {U,V} Y = copy(y) detrend!(Y) Y end
[ 27, 7856, 261, 480, 29, 71, 6759, 385, 2395, 74, 14, 17875, 5623, 39709, 1616, 13, 20362, 198, 31, 15390, 8246, 37811, 198, 220, 220, 220, 1062, 10920, 0, 7, 88, 3712, 23839, 38469, 90, 53, 5512, 2124, 3712, 23839, 38469, 90, 52, 92, 16193, 16, 25, 13664, 7, 88, 22305, 198, 198, 818, 12, 5372, 1062, 10920, 82, 262, 1813, 640, 12, 25076, 13, 1320, 318, 11, 15830, 257, 14174, 2163, 656, 4600, 88, 63, 1813, 4600, 87, 63, 290, 198, 7266, 83, 974, 278, 262, 4197, 422, 262, 1366, 287, 4600, 88, 44646, 198, 37811, 198, 8818, 1062, 10920, 0, 7, 88, 3712, 23839, 38469, 90, 53, 5512, 2124, 3712, 23839, 38469, 90, 52, 92, 16193, 16, 25, 13664, 7, 88, 22305, 810, 1391, 52, 11, 53, 92, 198, 220, 220, 220, 357, 13664, 7, 87, 8, 14512, 4129, 7, 88, 4008, 11405, 4049, 7203, 87, 1222, 331, 1276, 423, 262, 976, 4129, 2474, 8, 198, 220, 220, 220, 399, 796, 4129, 7, 87, 8, 628, 220, 220, 220, 1395, 796, 24936, 7, 9107, 418, 7, 43879, 2414, 11, 399, 11, 362, 4008, 198, 220, 220, 220, 329, 1312, 287, 352, 25, 45, 198, 220, 220, 220, 220, 220, 220, 220, 1395, 58, 72, 11, 47715, 796, 685, 16, 11, 2124, 58, 72, 11907, 198, 220, 220, 220, 886, 628, 220, 220, 220, 581, 796, 1007, 3455, 7, 55, 8, 1635, 331, 198, 220, 220, 220, 581, 796, 357, 7645, 3455, 7, 55, 8, 1635, 220, 1395, 8, 3467, 581, 198, 220, 220, 220, 331, 58, 47715, 48185, 357, 411, 58, 16, 60, 764, 10, 357, 411, 58, 17, 60, 764, 9, 2124, 4008, 198, 437, 198, 198, 31, 15390, 8246, 37811, 198, 220, 220, 220, 1062, 10920, 0, 7, 88, 3712, 23839, 19182, 90, 53, 11, 17, 5512, 2124, 3712, 23839, 38469, 90, 52, 92, 16193, 16, 25, 13664, 7, 88, 22305, 198, 198, 818, 12, 5372, 1062, 10920, 82, 262, 1813, 640, 12, 25076, 13, 1320, 318, 11, 15830, 257, 14174, 2163, 656, 790, 15180, 286, 198, 63, 88, 63, 1813, 4600, 87, 63, 290, 34128, 278, 262, 4197, 422, 262, 1366, 287, 262, 11188, 5721, 286, 4600, 88, 44646, 198, 37811, 198, 8818, 1062, 10920, 0, 7, 88, 3712, 23839, 19182, 90, 53, 11, 17, 5512, 2124, 3712, 23839, 38469, 90, 52, 92, 16193, 16, 25, 13664, 7, 88, 22305, 810, 1391, 52, 11, 53, 92, 198, 220, 220, 220, 399, 11, 44, 796, 2546, 7, 88, 8, 198, 220, 220, 220, 329, 1312, 287, 352, 25, 44, 198, 220, 220, 220, 220, 220, 220, 220, 331, 58, 45299, 72, 60, 796, 1062, 10920, 0, 7, 88, 58, 45299, 72, 12962, 198, 220, 220, 220, 886, 198, 220, 220, 220, 331, 198, 437, 198, 198, 31, 15390, 8246, 37811, 198, 220, 220, 220, 1062, 10920, 7, 88, 3712, 23839, 38469, 90, 53, 5512, 2124, 3712, 23839, 38469, 90, 52, 92, 16193, 16, 25, 13664, 7, 88, 22305, 198, 198, 11242, 10920, 82, 262, 1813, 640, 12, 25076, 13, 1320, 318, 11, 15830, 257, 14174, 2163, 656, 4600, 88, 63, 1813, 4600, 87, 63, 290, 198, 7266, 83, 974, 278, 262, 4197, 422, 262, 1366, 287, 4600, 88, 44646, 383, 2163, 5860, 262, 1062, 10920, 276, 640, 12, 25076, 13, 198, 37811, 198, 8818, 1062, 10920, 7, 88, 3712, 23839, 38469, 90, 53, 5512, 2124, 3712, 23839, 38469, 90, 52, 92, 16193, 16, 25, 13664, 7, 88, 22305, 810, 1391, 52, 11, 53, 92, 198, 220, 220, 220, 575, 796, 4866, 7, 88, 8, 198, 220, 220, 220, 1062, 10920, 0, 7, 56, 8, 198, 220, 220, 220, 575, 198, 437, 198, 198, 31, 15390, 8246, 37811, 198, 220, 220, 220, 1062, 10920, 0, 7, 88, 3712, 23839, 19182, 90, 53, 11, 17, 5512, 2124, 3712, 23839, 38469, 90, 52, 92, 16193, 16, 25, 13664, 7, 88, 22305, 198, 198, 11242, 10920, 82, 262, 1813, 640, 12, 25076, 13, 1320, 318, 11, 15830, 257, 14174, 2163, 656, 790, 15180, 286, 198, 63, 88, 63, 1813, 4600, 87, 63, 290, 34128, 278, 262, 4197, 422, 262, 1366, 287, 262, 11188, 5721, 286, 4600, 88, 44646, 383, 277, 8110, 198, 7783, 82, 262, 1062, 10920, 276, 640, 12, 25076, 13, 198, 37811, 198, 8818, 1062, 10920, 7, 88, 3712, 23839, 19182, 90, 53, 11, 17, 5512, 2124, 3712, 23839, 38469, 90, 52, 92, 16193, 16, 25, 13664, 7, 88, 22305, 810, 1391, 52, 11, 53, 92, 198, 220, 220, 220, 575, 796, 4866, 7, 88, 8, 198, 220, 220, 220, 1062, 10920, 0, 7, 56, 8, 198, 220, 220, 220, 575, 198, 437, 198 ]
2.532637
766
struct Transvection <: GSymbol id::Symbol i::UInt16 j::UInt16 inv::Bool function Transvection(id::Symbol, i::Integer, j::Integer, inv = false) @assert id in (:ϱ, :λ) return new(id, i, j, inv) end end ϱ(i, j) = Transvection(:ϱ, i, j) λ(i, j) = Transvection(:λ, i, j) function Base.show(io::IO, t::Transvection) id = if t.id === :ϱ 'ϱ' else # if t.id === :λ 'λ' end print(io, id, subscriptify(t.i), '.', subscriptify(t.j)) t.inv && print(io, "^-1") end Base.inv(t::Transvection) = Transvection(t.id, t.i, t.j, !t.inv) Base.:(==)(t::Transvection, s::Transvection) = t.id === s.id && t.i == s.i && t.j == s.j && t.inv == s.inv Base.hash(t::Transvection, h::UInt) = hash(hash(t.id, hash(t.i)), hash(t.j, hash(t.inv, h))) Base.@propagate_inbounds @inline function evaluate!( v::NTuple{T,N}, t::Transvection, tmp = one(first(v)), ) where {T,N} i, j = t.i, t.j @assert 1 ≤ i ≤ length(v) && 1 ≤ j ≤ length(v) A = alphabet(parent(first(v))) @inbounds begin if t.id === :ϱ if !t.inv append!(word(v[i]), word(v[j])) else # append!(word(v[i]), inv(A, word(v[j]))) for l in Iterators.reverse(word(v[j])) push!(word(v[i]), inv(A, l)) end end else # if t.id === :λ if !t.inv # prepend!(word(v[i]), word(v[j])) for l in Iterators.reverse(word(v[j])) pushfirst!(word(v[i]), l) end else # prepend!(word(v[i]), inv(A, word(v[j]))) for l in word(v[j]) pushfirst!(word(v[i]), inv(A, l)) end end end _setnormalform!(v[i], false) _setvalidhash!(v[i], false) end normalform!(tmp, v[i]) copyto!(v[i], tmp) return v end struct PermRightAut <: GSymbol perm::Vector{UInt8} function PermRightAut(p::AbstractVector{<:Integer}) @assert sort(p) == 1:length(p) return new(p) end end function Base.show(io::IO, p::PermRightAut) print(io, 'σ') join(io, (subscriptify(Int(i)) for i in p.perm)) end Base.inv(p::PermRightAut) = PermRightAut(invperm(p.perm)) Base.:(==)(p::PermRightAut, q::PermRightAut) = p.perm == q.perm Base.hash(p::PermRightAut, h::UInt) = hash(p.perm, hash(PermRightAut, h)) evaluate!(v::NTuple{T,N}, p::PermRightAut, tmp = nothing) where {T,N} = v[p.perm]
[ 7249, 3602, 303, 596, 1279, 25, 402, 13940, 23650, 198, 220, 220, 220, 4686, 3712, 13940, 23650, 198, 220, 220, 220, 1312, 3712, 52, 5317, 1433, 198, 220, 220, 220, 474, 3712, 52, 5317, 1433, 198, 220, 220, 220, 800, 3712, 33, 970, 628, 220, 220, 220, 2163, 3602, 303, 596, 7, 312, 3712, 13940, 23650, 11, 1312, 3712, 46541, 11, 474, 3712, 46541, 11, 800, 796, 3991, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2488, 30493, 4686, 287, 357, 25, 139, 109, 11, 1058, 39377, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 649, 7, 312, 11, 1312, 11, 474, 11, 800, 8, 198, 220, 220, 220, 886, 198, 437, 198, 198, 139, 109, 7, 72, 11, 474, 8, 796, 3602, 303, 596, 7, 25, 139, 109, 11, 1312, 11, 474, 8, 198, 39377, 7, 72, 11, 474, 8, 796, 3602, 303, 596, 7, 25, 39377, 11, 1312, 11, 474, 8, 198, 198, 8818, 7308, 13, 12860, 7, 952, 3712, 9399, 11, 256, 3712, 8291, 303, 596, 8, 198, 220, 220, 220, 4686, 796, 611, 256, 13, 312, 24844, 1058, 139, 109, 198, 220, 220, 220, 220, 220, 220, 220, 705, 139, 109, 6, 198, 220, 220, 220, 2073, 1303, 611, 256, 13, 312, 24844, 1058, 39377, 198, 220, 220, 220, 220, 220, 220, 220, 705, 39377, 6, 198, 220, 220, 220, 886, 198, 220, 220, 220, 3601, 7, 952, 11, 4686, 11, 32891, 1958, 7, 83, 13, 72, 828, 705, 2637, 11, 32891, 1958, 7, 83, 13, 73, 4008, 198, 220, 220, 220, 256, 13, 16340, 11405, 3601, 7, 952, 11, 366, 61, 12, 16, 4943, 198, 437, 198, 198, 14881, 13, 16340, 7, 83, 3712, 8291, 303, 596, 8, 796, 3602, 303, 596, 7, 83, 13, 312, 11, 256, 13, 72, 11, 256, 13, 73, 11, 5145, 83, 13, 16340, 8, 198, 198, 14881, 11207, 7, 855, 5769, 83, 3712, 8291, 303, 596, 11, 264, 3712, 8291, 303, 596, 8, 796, 198, 220, 220, 220, 256, 13, 312, 24844, 264, 13, 312, 11405, 256, 13, 72, 6624, 264, 13, 72, 11405, 256, 13, 73, 6624, 264, 13, 73, 11405, 256, 13, 16340, 6624, 264, 13, 16340, 198, 198, 14881, 13, 17831, 7, 83, 3712, 8291, 303, 596, 11, 289, 3712, 52, 5317, 8, 796, 12234, 7, 17831, 7, 83, 13, 312, 11, 12234, 7, 83, 13, 72, 36911, 12234, 7, 83, 13, 73, 11, 12234, 7, 83, 13, 16340, 11, 289, 22305, 198, 198, 14881, 13, 31, 22930, 37861, 62, 259, 65, 3733, 2488, 45145, 2163, 13446, 0, 7, 198, 220, 220, 220, 410, 3712, 11251, 29291, 90, 51, 11, 45, 5512, 198, 220, 220, 220, 256, 3712, 8291, 303, 596, 11, 198, 220, 220, 220, 45218, 796, 530, 7, 11085, 7, 85, 36911, 198, 8, 810, 1391, 51, 11, 45, 92, 198, 220, 220, 220, 1312, 11, 474, 796, 256, 13, 72, 11, 256, 13, 73, 198, 220, 220, 220, 2488, 30493, 352, 41305, 1312, 41305, 4129, 7, 85, 8, 11405, 352, 41305, 474, 41305, 4129, 7, 85, 8, 628, 220, 220, 220, 317, 796, 24830, 7, 8000, 7, 11085, 7, 85, 22305, 628, 220, 220, 220, 2488, 259, 65, 3733, 2221, 198, 220, 220, 220, 220, 220, 220, 220, 611, 256, 13, 312, 24844, 1058, 139, 109, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 5145, 83, 13, 16340, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 24443, 0, 7, 4775, 7, 85, 58, 72, 46570, 1573, 7, 85, 58, 73, 60, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2073, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 24443, 0, 7, 4775, 7, 85, 58, 72, 46570, 800, 7, 32, 11, 1573, 7, 85, 58, 73, 60, 22305, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 300, 287, 40806, 2024, 13, 50188, 7, 4775, 7, 85, 58, 73, 60, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4574, 0, 7, 4775, 7, 85, 58, 72, 46570, 800, 7, 32, 11, 300, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 886, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 886, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 1303, 611, 256, 13, 312, 24844, 1058, 39377, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 5145, 83, 13, 16340, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 3143, 437, 0, 7, 4775, 7, 85, 58, 72, 46570, 1573, 7, 85, 58, 73, 60, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 300, 287, 40806, 2024, 13, 50188, 7, 4775, 7, 85, 58, 73, 60, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4574, 11085, 0, 7, 4775, 7, 85, 58, 72, 46570, 300, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 886, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2073, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 3143, 437, 0, 7, 4775, 7, 85, 58, 72, 46570, 800, 7, 32, 11, 1573, 7, 85, 58, 73, 60, 22305, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 300, 287, 1573, 7, 85, 58, 73, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4574, 11085, 0, 7, 4775, 7, 85, 58, 72, 46570, 800, 7, 32, 11, 300, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 886, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 886, 198, 220, 220, 220, 220, 220, 220, 220, 886, 628, 220, 220, 220, 220, 220, 220, 220, 4808, 2617, 11265, 687, 0, 7, 85, 58, 72, 4357, 3991, 8, 198, 220, 220, 220, 220, 220, 220, 220, 4808, 2617, 12102, 17831, 0, 7, 85, 58, 72, 4357, 3991, 8, 198, 220, 220, 220, 886, 198, 220, 220, 220, 3487, 687, 0, 7, 22065, 11, 410, 58, 72, 12962, 198, 220, 220, 220, 4866, 1462, 0, 7, 85, 58, 72, 4357, 45218, 8, 628, 220, 220, 220, 1441, 410, 198, 437, 198, 198, 7249, 2448, 76, 11028, 16541, 1279, 25, 402, 13940, 23650, 198, 220, 220, 220, 9943, 3712, 38469, 90, 52, 5317, 23, 92, 628, 220, 220, 220, 2163, 2448, 76, 11028, 16541, 7, 79, 3712, 23839, 38469, 90, 27, 25, 46541, 30072, 198, 220, 220, 220, 220, 220, 220, 220, 2488, 30493, 3297, 7, 79, 8, 6624, 352, 25, 13664, 7, 79, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 649, 7, 79, 8, 198, 220, 220, 220, 886, 198, 437, 198, 198, 8818, 7308, 13, 12860, 7, 952, 3712, 9399, 11, 279, 3712, 5990, 76, 11028, 16541, 8, 198, 220, 220, 220, 3601, 7, 952, 11, 705, 38392, 11537, 198, 220, 220, 220, 4654, 7, 952, 11, 357, 7266, 12048, 1958, 7, 5317, 7, 72, 4008, 329, 1312, 287, 279, 13, 16321, 4008, 198, 437, 198, 198, 14881, 13, 16340, 7, 79, 3712, 5990, 76, 11028, 16541, 8, 796, 2448, 76, 11028, 16541, 7, 16340, 16321, 7, 79, 13, 16321, 4008, 198, 198, 14881, 11207, 7, 855, 5769, 79, 3712, 5990, 76, 11028, 16541, 11, 10662, 3712, 5990, 76, 11028, 16541, 8, 796, 279, 13, 16321, 6624, 10662, 13, 16321, 198, 14881, 13, 17831, 7, 79, 3712, 5990, 76, 11028, 16541, 11, 289, 3712, 52, 5317, 8, 796, 12234, 7, 79, 13, 16321, 11, 12234, 7, 5990, 76, 11028, 16541, 11, 289, 4008, 198, 198, 49786, 0, 7, 85, 3712, 11251, 29291, 90, 51, 11, 45, 5512, 279, 3712, 5990, 76, 11028, 16541, 11, 45218, 796, 2147, 8, 810, 1391, 51, 11, 45, 92, 796, 410, 58, 79, 13, 16321, 60, 198 ]
1.837058
1,387
<filename>src/AstrodynamicalModels.jl """ Provides astrodynamical models as `ModelingToolkit.ODESystems`. Check out the `ModelingToolkit` docs to learn how to use these systems for orbit propagation with `DifferentialEquations`, or see `GeneralAstrodynamics` for some convenient orbit propagation wrappers. # Extended help ## Exports $(EXPORTS) ## Imports $(IMPORTS) """ module AstrodynamicalModels # Export every model! export R2BP, CR3BP, NBP # Export every `ODEFunction`! export R2BPFunction, CR3BPFunction, NBPFunction using Symbolics using StaticArrays using LinearAlgebra using ModelingToolkit import Memoize: @memoize using DocStringExtensions @template (FUNCTIONS, METHODS, MACROS) = """ $(SIGNATURES) $(DOCSTRING) """ @template (TYPES, CONSTANTS) = """ $(TYPEDEF) $(DOCSTRING) """ include("R2BP.jl") include("CR3BP.jl") include("NBP.jl") end # module
[ 27, 34345, 29, 10677, 14, 33751, 14892, 4989, 605, 5841, 1424, 13, 20362, 198, 37811, 198, 15946, 1460, 6468, 14892, 4989, 605, 4981, 355, 4600, 5841, 10809, 25391, 15813, 13, 3727, 1546, 6781, 82, 44646, 220, 198, 9787, 503, 262, 4600, 5841, 10809, 25391, 15813, 63, 34165, 284, 2193, 703, 284, 779, 777, 220, 198, 10057, 82, 329, 13066, 43594, 351, 4600, 40341, 498, 23588, 602, 47671, 393, 198, 3826, 4600, 12218, 33751, 14892, 4989, 873, 63, 329, 617, 11282, 13066, 43594, 220, 198, 29988, 11799, 13, 198, 198, 2, 24204, 1037, 198, 198, 2235, 1475, 3742, 198, 198, 3, 7, 49864, 33002, 8, 198, 198, 2235, 1846, 3742, 198, 198, 3, 7, 3955, 47, 33002, 8, 198, 37811, 198, 21412, 8304, 14892, 4989, 605, 5841, 1424, 198, 198, 2, 36472, 790, 2746, 0, 198, 39344, 371, 17, 20866, 11, 8740, 18, 20866, 11, 399, 20866, 198, 198, 2, 36472, 790, 4600, 16820, 22203, 63, 0, 198, 39344, 371, 17, 20866, 22203, 11, 8740, 18, 20866, 22203, 11, 399, 20866, 22203, 198, 198, 3500, 41327, 19615, 198, 3500, 36125, 3163, 20477, 198, 3500, 44800, 2348, 29230, 198, 3500, 9104, 278, 25391, 15813, 198, 198, 11748, 4942, 78, 1096, 25, 2488, 11883, 78, 1096, 198, 198, 3500, 14432, 10100, 11627, 5736, 198, 31, 28243, 357, 42296, 4177, 11053, 11, 337, 36252, 50, 11, 20582, 49, 2640, 8, 796, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 29568, 46224, 47471, 8, 628, 220, 220, 220, 29568, 38715, 18601, 2751, 8, 198, 220, 220, 220, 37227, 198, 198, 31, 28243, 357, 9936, 47, 1546, 11, 7102, 2257, 1565, 4694, 8, 796, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 29568, 9936, 47, 1961, 25425, 8, 628, 220, 220, 220, 29568, 38715, 18601, 2751, 8, 198, 220, 220, 220, 37227, 198, 198, 17256, 7203, 49, 17, 20866, 13, 20362, 4943, 198, 17256, 7203, 9419, 18, 20866, 13, 20362, 4943, 198, 17256, 7203, 45, 20866, 13, 20362, 4943, 198, 198, 437, 1303, 8265, 198 ]
2.749245
331
<gh_stars>0 abstract type Order end """ Trait container for dimension and array ordering in AlignedGrid. The default is `Ordered(Forward()`, `Forward())` All combinations of forward and reverse order for data and indices seem to occurr in real datasets, as strange as that seems. We cover these possibilities by specifying the order of both explicitly. Knowing the order of indices is important for using methods like `searchsortedfirst()` to find indices in sorted lists of values. Knowing the order of the data is then required to map to the actual indices. It's also used to plot the data later - which always happens in smallest to largest order. Base also defines Forward and Reverse, but they seem overly complicated for our purposes. """ struct Ordered{D,A,R} <: Order index::D array::A relation::R end Ordered(; index=Forward(), array=Forward(), relation=Forward()) = Ordered(index, array, relation) indexorder(order::Ordered) = order.index arrayorder(order::Ordered) = order.array relationorder(order::Ordered) = order.relation """ Trait indicating that the array or dimension has no order. """ struct Unordered{R} <: Order relation::R end Unordered() = Unordered(Forward()) indexorder(order::Unordered) = order arrayorder(order::Unordered) = order relationorder(order::Unordered) = order.relation """ Trait indicating that the array or dimension is in the normal forward order. """ struct Forward <: Order end """ Trait indicating that the array or dimension is in the reverse order. Selector lookup or plotting will be reversed. """ struct Reverse <: Order end Base.reverse(::Reverse) = Forward() Base.reverse(::Forward) = Reverse() # Base.reverse(o::Ordered) = # Ordered(indexorder(o), reverse(relationorder(o)), reverse(arrayorder(o))) # Base.reverse(o::Unordered) = # Unordered(reverse(relationorder(o))) reverseindex(o::Unordered) = Unordered(reverse(relationorder(o))) reverseindex(o::Ordered) = Ordered(reverse(indexorder(o)), arrayorder(o), reverse(relationorder(o))) reversearray(o::Unordered) = Unordered(reverse(relationorder(o))) reversearray(o::Ordered) = Ordered(indexorder(o), reverse(arrayorder(o)), reverse(relationorder(o))) isrev(::Forward) = false isrev(::Reverse) = true """ Indicates wether the cell value is specific to the locus point or is related to the whole the span. The span may contain a value if the distance between locii if known. This will often be identical to the distance between any two sequential cell values, but may be distinct due to rounding errors in a vector index, or context-dependent spans such as `Month`. """ abstract type Sampling end """ Each cell value represents a siegle discrete sample taken at the index location. """ struct SingleSample <: Sampling end """ Multiple samples from the span combined using method `M`, where `M` is `typeof(mean)`, `typeof(sum)` etc. """ struct MultiSample{M} <: Sampling end MultiSample() = MultiSample{Nothing}() """ The sampling method is unknown. """ struct UnknownSampling <: Sampling end """ Indicate the position of index values in grid cells. This is frequently `Start` for time series, but may be `Center` for spatial data. """ abstract type Locus end """ Indicates dimensions that are defined by their center coordinates/time/position. """ struct Center <: Locus end """ Indicates dimensions that are defined by their start coordinates/time/position. """ struct Start <: Locus end """ Indicates dimensions that are defined by their end coordinates/time/position. """ struct End <: Locus end struct UnknownLocus <: Locus end """ Traits describing the grid type of a dimension. """ abstract type Grid end dims(g::Grid) = nothing arrayorder(grid::Grid) = arrayorder(order(grid)) indexorder(grid::Grid) = indexorder(order(grid)) relationorder(grid::Grid) = relationorder(order(grid)) Base.reverse(g::Grid) = rebuild(g, reverse(order(g))) reversearray(g::Grid) = rebuild(g, reversearray(order(g))) reverseindex(g::Grid) = rebuild(g, reverseindex(order(g))) slicegrid(grid::Grid, index, I) = grid """ Fallback grid type """ struct UnknownGrid <: Grid end order(::UnknownGrid) = Unordered() # TODO handle unordered in all grids bounds(grid::UnknownGrid, dim) = first(dim), last(dim) """ A grid dimension that is independent of other grid dimensions. """ abstract type IndependentGrid{O} <: Grid end """ A grid dimension aligned exactly with a standard dimension, such as lattitude or longitude. """ abstract type AbstractAlignedGrid{O,L,Sa} <: IndependentGrid{O} end order(g::AbstractAlignedGrid) = g.order locus(g::AbstractAlignedGrid) = g.locus sampling(g::AbstractAlignedGrid) = g.sampling """ An [`AlignedGrid`](@ref) grid without known regular spacing. These grids will generally be paired with a vector of coordinates along the dimension, instead of a range. Bounds are given as the first and last points, which omits the span of one cell, as it is not known. To fix this use either a [`BoundedGrid`](@ref) with specified starting bounds or a [`RegularGrid`](@ref) with a known constand cell span. ## Fields - `order::Order`: `Order` trait indicating array and index order - `locus::Locus`: `Locus` trait indicating the position of the indexed point within the cell span - `sampling::Sampling`: `Sampling` trait indicating wether the grid cells are single samples or means """ struct AlignedGrid{O<:Order,L<:Locus,Sa<:Sampling} <: AbstractAlignedGrid{O,L,Sa} order::O locus::L sampling::Sa end AlignedGrid(; order=Ordered(), locus=Start(), sampling=UnknownSampling()) = AlignedGrid(order, locus, sampling) rebuild(g::AlignedGrid, order=order(g), locus=locus(g), sampling=sampling(g)) = AlignedGrid(order, locus, sampling) bounds(grid::AlignedGrid, dim) = first(dim), last(dim) """ An alligned grid without known regular spacing and tracked bounds. These grids will generally be paired with a vector of coordinates along the dimension, instead of a range. As the size of the cells is not known, the bounds must be actively tracked. ## Fields - `order::Order`: `Order` trait indicating array and index order - `locus::Locus`: `Locus` trait indicating the position of the indexed point within the cell span - `sampling::Sampling`: `Sampling` trait indicating wether the grid cells are single samples or means - `bounds`: the outer edges of the grid (different to the first and last coordinate). """ struct BoundedGrid{O<:Order,L<:Locus,Sa<:Sampling,B} <: AbstractAlignedGrid{O,L,Sa} order::O locus::L sampling::Sa bounds::B end BoundedGrid(; order=Ordered(), locus=Start(), sampling=UnknownSampling(), bounds=nothing) = BoundedGrid(order, locus, sampling, bounds) bounds(g::BoundedGrid) = g.bounds rebuild(g::BoundedGrid, order=order(g), locus=locus(g), sampling=sampling(g), bounds=bounds(g)) = BoundedGrid(order, locus, sampling, bounds) # TODO: deal with unordered AbstractArray slicegrid(g::BoundedGrid, index, I) = rebuild(g, order(g), locus(g), sampling(g), slicebounds(locus(g), bounds(g), index, I)) slicebounds(loci::Start, bounds, index, I) = index[first(I)], last(I) >= lastindex(index) ? bounds[2] : index[last(I) + 1] slicebounds(loci::End, bounds, index, I) = first(I) <= firstindex(index) ? bounds[1] : index[first(I) - 1], index[last(I)] slicebounds(loci::Center, bounds, index, I) = first(I) <= firstindex(index) ? bounds[1] : (index[first(I) - 1] + index[first(I)]) / 2, last(I) >= lastindex(index) ? bounds[2] : (index[last(I) + 1] + index[last(I)]) / 2 abstract type AbstractRegularGrid{O,L,Sa,Sp} <: AbstractAlignedGrid{O,L,Sa} end """ An [`AlignedGrid`](@ref) where all cells are the same size and evenly spaced. ## Fields - `order::Order`: `Order` trait indicating array and index order - `locus::Locus`: `Locus` trait indicating the position of the indexed point within the cell span - `sampling::Sampling`: `Sampling` trait indicating wether the grid cells are single samples or means - `span::Number`: the size of a grid step, such as 1u"km" or `Month(1)` """ struct RegularGrid{O<:Order,L<:Locus,Sa<:Sampling,Sp} <: AbstractRegularGrid{O,L,Sa,Sp} order::O locus::L sampling::Sa span::Sp end RegularGrid(; order=Ordered(), locus=Start(), sampling=UnknownSampling(), span=nothing) = RegularGrid(order, locus, sampling, span) span(grid::RegularGrid) = grid.span rebuild(g::RegularGrid, order=order(g), locus=locus(g), sampling=sampling(g), span=span(g)) = RegularGrid(order, locus, sampling, span) bounds(grid::RegularGrid, dim) = bounds(indexorder(grid), locus(grid), grid, dim) bounds(::Forward, ::Start, grid, dim) = first(dim), last(dim) + span(grid) bounds(::Reverse, ::Start, grid, dim) = last(dim), first(dim) + span(grid) bounds(::Forward, ::Center, grid, dim) = first(dim) - span(grid) / 2, last(dim) + span(grid) / 2 bounds(::Reverse, ::Center, grid, dim) = last(dim) - span(grid) / 2, first(dim) + span(grid) / 2 bounds(::Forward, ::End, grid, dim) = first(dim) - span(grid), last(dim) bounds(::Reverse, ::End, grid, dim) = last(dim) - span(grid), first(dim) abstract type AbstractCategoricalGrid{O} <: IndependentGrid{O} end """ A grid dimension where the values are categories. ## Fields - `order`: `Order` trait indicating array and index order """ struct CategoricalGrid{O<:Order} <: AbstractCategoricalGrid{O} order::O end CategoricalGrid(; order=Ordered()) = CategoricalGrid(order) order(g::CategoricalGrid) = g.order rebuild(g::CategoricalGrid, order=order(g)) = CategoricalGrid(order) bounds(grid::CategoricalGrid, dim) = bounds(indexorder(grid), grid, dim) bounds(::Forward, grid, dim) = first(dim), last(dim) bounds(::Reverse, grid, dim) = last(dim), first(dim) bounds(::Unordered, grid, dim) = error("Cannot call `bounds` on an unordered grid") """ Traits describing a grid dimension that is dependent on other grid dimensions. Indexing into a dependent dimension must provide all other dependent dimensions. """ abstract type DependentGrid <: Grid end locus(g::DependentGrid) = g.locus dims(g::DependentGrid) = g.dims sampling(g::DependentGrid) = g.sampling """ Grid type using an affine transformation to convert dimension from `dim(grid)` to `dims(array)`. ## Fields - `dims`: a tuple containing dimenension types or symbols matching the order needed by the transform function. - `sampling`: a `Sampling` trait indicating wether the grid cells are sampled points or means """ struct TransformedGrid{D,L,Sa<:Sampling} <: DependentGrid dims::D locus::L sampling::Sa end TransformedGrid(dims=(), locus=Start(), sampling=UnknownSampling()) = TransformedGrid(dims, locus, sampling) rebuild(g::TransformedGrid, dims=dims(g), locus=locus(g), sampling=sampling(g)) = TransformedGrid(dims, locus, sampling) """ A grid dimension that uses an array lookup to convert dimension from `dim(grid)` to `dims(array)`. ## Fields - `dims`: a tuple containing dimenension types or symbols matching the order needed to index the lookup matrix. - `sampling`: a `Sampling` trait indicating wether the grid cells are sampled points or means """ struct LookupGrid{D,L,Sa<:Sampling} <: DependentGrid dims::D locus::L sampling::Sa end LookupGrid(dims=(), locus=Start(), sampling=UnknownSampling()) = LookupGrid(dims, locus, sampling) rebuild(g::LookupGrid; dims=dims(g), locus=locus(g), sampling=sampling(g)) = LookupGrid(dims, locus, sampling)
[ 27, 456, 62, 30783, 29, 15, 198, 397, 8709, 2099, 8284, 886, 198, 198, 37811, 198, 51, 12907, 9290, 329, 15793, 290, 7177, 16216, 287, 978, 3916, 41339, 13, 198, 198, 464, 4277, 318, 4600, 35422, 1068, 7, 39746, 3419, 47671, 4600, 39746, 28955, 63, 198, 198, 3237, 17790, 286, 2651, 290, 9575, 1502, 329, 1366, 290, 36525, 1283, 284, 3051, 81, 198, 259, 1103, 40522, 11, 355, 6283, 355, 326, 2331, 13, 775, 3002, 777, 12779, 416, 31577, 198, 1169, 1502, 286, 1111, 11777, 13, 198, 198, 45648, 262, 1502, 286, 36525, 318, 1593, 329, 1262, 5050, 588, 4600, 12947, 82, 9741, 11085, 3419, 63, 198, 1462, 1064, 36525, 287, 23243, 8341, 286, 3815, 13, 29154, 262, 1502, 286, 262, 1366, 318, 788, 198, 35827, 284, 3975, 284, 262, 4036, 36525, 13, 632, 338, 635, 973, 284, 7110, 262, 1366, 1568, 532, 543, 198, 33770, 4325, 287, 18197, 284, 4387, 1502, 13, 198, 198, 14881, 635, 15738, 19530, 290, 31849, 11, 475, 484, 1283, 17698, 8253, 329, 674, 4959, 13, 198, 37811, 198, 7249, 14230, 1068, 90, 35, 11, 32, 11, 49, 92, 1279, 25, 8284, 198, 220, 220, 220, 6376, 3712, 35, 198, 220, 220, 220, 7177, 3712, 32, 198, 220, 220, 220, 8695, 3712, 49, 198, 437, 198, 35422, 1068, 7, 26, 6376, 28, 39746, 22784, 7177, 28, 39746, 22784, 8695, 28, 39746, 28955, 796, 198, 220, 220, 220, 14230, 1068, 7, 9630, 11, 7177, 11, 8695, 8, 198, 198, 9630, 2875, 7, 2875, 3712, 35422, 1068, 8, 796, 1502, 13, 9630, 198, 18747, 2875, 7, 2875, 3712, 35422, 1068, 8, 796, 1502, 13, 18747, 198, 49501, 2875, 7, 2875, 3712, 35422, 1068, 8, 796, 1502, 13, 49501, 198, 198, 37811, 198, 51, 12907, 12739, 326, 262, 7177, 393, 15793, 468, 645, 1502, 13, 198, 37811, 198, 7249, 791, 24071, 90, 49, 92, 1279, 25, 8284, 198, 220, 220, 220, 8695, 3712, 49, 198, 437, 198, 3118, 24071, 3419, 796, 791, 24071, 7, 39746, 28955, 198, 198, 9630, 2875, 7, 2875, 3712, 3118, 24071, 8, 796, 1502, 198, 18747, 2875, 7, 2875, 3712, 3118, 24071, 8, 796, 1502, 198, 49501, 2875, 7, 2875, 3712, 3118, 24071, 8, 796, 1502, 13, 49501, 198, 198, 37811, 198, 51, 12907, 12739, 326, 262, 7177, 393, 15793, 318, 287, 262, 3487, 2651, 1502, 13, 198, 37811, 198, 7249, 19530, 1279, 25, 8284, 886, 198, 198, 37811, 198, 51, 12907, 12739, 326, 262, 7177, 393, 15793, 318, 287, 262, 9575, 1502, 13, 198, 17563, 273, 35847, 393, 29353, 481, 307, 17687, 13, 198, 37811, 198, 7249, 31849, 1279, 25, 8284, 886, 198, 198, 14881, 13, 50188, 7, 3712, 49, 964, 325, 8, 796, 19530, 3419, 198, 14881, 13, 50188, 7, 3712, 39746, 8, 796, 31849, 3419, 198, 2, 7308, 13, 50188, 7, 78, 3712, 35422, 1068, 8, 796, 198, 220, 220, 220, 1303, 14230, 1068, 7, 9630, 2875, 7, 78, 828, 9575, 7, 49501, 2875, 7, 78, 36911, 9575, 7, 18747, 2875, 7, 78, 22305, 198, 2, 7308, 13, 50188, 7, 78, 3712, 3118, 24071, 8, 796, 198, 220, 220, 220, 1303, 791, 24071, 7, 50188, 7, 49501, 2875, 7, 78, 22305, 198, 198, 50188, 9630, 7, 78, 3712, 3118, 24071, 8, 796, 198, 220, 220, 220, 791, 24071, 7, 50188, 7, 49501, 2875, 7, 78, 22305, 198, 50188, 9630, 7, 78, 3712, 35422, 1068, 8, 796, 198, 220, 220, 220, 14230, 1068, 7, 50188, 7, 9630, 2875, 7, 78, 36911, 7177, 2875, 7, 78, 828, 9575, 7, 49501, 2875, 7, 78, 22305, 198, 198, 50188, 18747, 7, 78, 3712, 3118, 24071, 8, 796, 198, 220, 220, 220, 791, 24071, 7, 50188, 7, 49501, 2875, 7, 78, 22305, 198, 50188, 18747, 7, 78, 3712, 35422, 1068, 8, 796, 198, 220, 220, 220, 14230, 1068, 7, 9630, 2875, 7, 78, 828, 9575, 7, 18747, 2875, 7, 78, 36911, 9575, 7, 49501, 2875, 7, 78, 22305, 198, 198, 271, 18218, 7, 3712, 39746, 8, 796, 3991, 198, 271, 18218, 7, 3712, 49, 964, 325, 8, 796, 2081, 628, 198, 37811, 198, 5497, 16856, 266, 6750, 262, 2685, 1988, 318, 2176, 284, 262, 1179, 385, 966, 198, 273, 318, 3519, 284, 262, 2187, 262, 11506, 13, 198, 198, 464, 11506, 743, 3994, 257, 1988, 611, 262, 5253, 1022, 1179, 4178, 611, 1900, 13, 198, 1212, 481, 1690, 307, 10411, 284, 262, 5253, 1022, 597, 734, 35582, 198, 3846, 3815, 11, 475, 743, 307, 7310, 2233, 284, 38185, 8563, 287, 257, 15879, 6376, 11, 198, 273, 4732, 12, 21186, 32727, 884, 355, 4600, 31948, 44646, 198, 37811, 198, 397, 8709, 2099, 3409, 11347, 886, 198, 198, 37811, 198, 10871, 2685, 1988, 6870, 257, 264, 15702, 293, 28810, 6291, 2077, 379, 262, 6376, 4067, 13, 198, 37811, 198, 7249, 14206, 36674, 1279, 25, 3409, 11347, 886, 198, 198, 37811, 198, 31217, 8405, 422, 262, 11506, 5929, 1262, 2446, 4600, 44, 47671, 198, 3003, 4600, 44, 63, 318, 4600, 4906, 1659, 7, 32604, 8, 47671, 4600, 4906, 1659, 7, 16345, 8, 63, 3503, 13, 198, 37811, 198, 7249, 15237, 36674, 90, 44, 92, 1279, 25, 3409, 11347, 886, 198, 29800, 36674, 3419, 796, 15237, 36674, 90, 18465, 92, 3419, 198, 198, 37811, 198, 464, 19232, 2446, 318, 6439, 13, 198, 37811, 198, 7249, 16185, 16305, 11347, 1279, 25, 3409, 11347, 886, 198, 198, 37811, 198, 5497, 5344, 262, 2292, 286, 6376, 3815, 287, 10706, 4778, 13, 198, 198, 1212, 318, 6777, 4600, 10434, 63, 329, 640, 2168, 11, 475, 743, 307, 4600, 23656, 63, 198, 1640, 21739, 1366, 13, 198, 37811, 198, 397, 8709, 2099, 406, 10901, 886, 198, 198, 37811, 198, 5497, 16856, 15225, 326, 389, 5447, 416, 511, 3641, 22715, 14, 2435, 14, 9150, 13, 198, 37811, 198, 7249, 3337, 1279, 25, 406, 10901, 886, 198, 198, 37811, 198, 5497, 16856, 15225, 326, 389, 5447, 416, 511, 923, 22715, 14, 2435, 14, 9150, 13, 198, 37811, 198, 7249, 7253, 1279, 25, 406, 10901, 886, 198, 198, 37811, 198, 5497, 16856, 15225, 326, 389, 5447, 416, 511, 886, 22715, 14, 2435, 14, 9150, 13, 198, 37811, 198, 7249, 5268, 1279, 25, 406, 10901, 886, 198, 198, 7249, 16185, 43, 10901, 1279, 25, 406, 10901, 886, 628, 198, 198, 37811, 198, 15721, 896, 12059, 262, 10706, 2099, 286, 257, 15793, 13, 198, 37811, 198, 397, 8709, 2099, 24846, 886, 198, 198, 67, 12078, 7, 70, 3712, 41339, 8, 796, 2147, 198, 18747, 2875, 7, 25928, 3712, 41339, 8, 796, 7177, 2875, 7, 2875, 7, 25928, 4008, 198, 9630, 2875, 7, 25928, 3712, 41339, 8, 796, 6376, 2875, 7, 2875, 7, 25928, 4008, 198, 49501, 2875, 7, 25928, 3712, 41339, 8, 796, 8695, 2875, 7, 2875, 7, 25928, 4008, 198, 198, 14881, 13, 50188, 7, 70, 3712, 41339, 8, 796, 17884, 7, 70, 11, 9575, 7, 2875, 7, 70, 22305, 198, 50188, 18747, 7, 70, 3712, 41339, 8, 796, 17884, 7, 70, 11, 9575, 18747, 7, 2875, 7, 70, 22305, 198, 50188, 9630, 7, 70, 3712, 41339, 8, 796, 17884, 7, 70, 11, 9575, 9630, 7, 2875, 7, 70, 22305, 198, 198, 48369, 25928, 7, 25928, 3712, 41339, 11, 6376, 11, 314, 8, 796, 10706, 198, 198, 37811, 198, 24750, 1891, 10706, 2099, 198, 37811, 198, 7249, 16185, 41339, 1279, 25, 24846, 886, 198, 198, 2875, 7, 3712, 20035, 41339, 8, 796, 791, 24071, 3419, 198, 198, 2, 16926, 46, 5412, 555, 24071, 287, 477, 50000, 198, 65, 3733, 7, 25928, 3712, 20035, 41339, 11, 5391, 8, 796, 717, 7, 27740, 828, 938, 7, 27740, 8, 198, 198, 37811, 198, 32, 10706, 15793, 326, 318, 4795, 286, 584, 10706, 15225, 13, 198, 37811, 198, 397, 8709, 2099, 13362, 41339, 90, 46, 92, 1279, 25, 24846, 886, 198, 198, 37811, 198, 32, 10706, 15793, 19874, 3446, 351, 257, 3210, 15793, 11, 884, 355, 47240, 3984, 393, 890, 3984, 13, 198, 37811, 198, 397, 8709, 2099, 27741, 2348, 3916, 41339, 90, 46, 11, 43, 11, 33890, 92, 1279, 25, 13362, 41339, 90, 46, 92, 886, 198, 198, 2875, 7, 70, 3712, 23839, 2348, 3916, 41339, 8, 796, 308, 13, 2875, 198, 75, 10901, 7, 70, 3712, 23839, 2348, 3916, 41339, 8, 796, 308, 13, 75, 10901, 198, 37687, 11347, 7, 70, 3712, 23839, 2348, 3916, 41339, 8, 796, 308, 13, 37687, 11347, 198, 198, 37811, 198, 2025, 685, 63, 2348, 3916, 41339, 63, 16151, 31, 5420, 8, 10706, 1231, 1900, 3218, 31050, 13, 2312, 50000, 481, 4143, 307, 20312, 198, 4480, 257, 15879, 286, 22715, 1863, 262, 15793, 11, 2427, 286, 257, 2837, 13, 198, 198, 33, 3733, 389, 1813, 355, 262, 717, 290, 938, 2173, 11, 543, 267, 24883, 262, 11506, 286, 530, 2685, 11, 220, 198, 292, 340, 318, 407, 1900, 13, 1675, 4259, 428, 779, 2035, 257, 685, 63, 33, 6302, 41339, 63, 16151, 31, 5420, 8, 351, 7368, 220, 198, 38690, 22303, 393, 257, 685, 63, 40164, 41339, 63, 16151, 31, 5420, 8, 351, 257, 1900, 369, 1481, 2685, 11506, 13, 198, 198, 2235, 23948, 198, 12, 4600, 2875, 3712, 18743, 63, 25, 4600, 18743, 63, 16708, 12739, 7177, 290, 6376, 1502, 198, 12, 4600, 75, 10901, 3712, 43, 10901, 63, 25, 4600, 43, 10901, 63, 16708, 12739, 262, 2292, 286, 262, 41497, 966, 1626, 262, 2685, 11506, 198, 12, 4600, 37687, 11347, 3712, 16305, 11347, 63, 25, 4600, 16305, 11347, 63, 16708, 12739, 266, 6750, 262, 10706, 4778, 389, 2060, 8405, 393, 1724, 198, 37811, 198, 7249, 978, 3916, 41339, 90, 46, 27, 25, 18743, 11, 43, 27, 25, 43, 10901, 11, 33890, 27, 25, 16305, 11347, 92, 1279, 25, 27741, 2348, 3916, 41339, 90, 46, 11, 43, 11, 33890, 92, 198, 220, 220, 220, 1502, 3712, 46, 198, 220, 220, 220, 1179, 385, 3712, 43, 198, 220, 220, 220, 19232, 3712, 33890, 198, 437, 198, 2348, 3916, 41339, 7, 26, 1502, 28, 35422, 1068, 22784, 1179, 385, 28, 10434, 22784, 19232, 28, 20035, 16305, 11347, 28955, 796, 198, 220, 220, 220, 978, 3916, 41339, 7, 2875, 11, 1179, 385, 11, 19232, 8, 198, 198, 260, 11249, 7, 70, 3712, 2348, 3916, 41339, 11, 1502, 28, 2875, 7, 70, 828, 1179, 385, 28, 75, 10901, 7, 70, 828, 19232, 28, 37687, 11347, 7, 70, 4008, 796, 198, 220, 220, 220, 978, 3916, 41339, 7, 2875, 11, 1179, 385, 11, 19232, 8, 198, 198, 65, 3733, 7, 25928, 3712, 2348, 3916, 41339, 11, 5391, 8, 796, 717, 7, 27740, 828, 938, 7, 27740, 8, 198, 198, 37811, 198, 2025, 477, 3916, 10706, 1231, 1900, 3218, 31050, 290, 18283, 22303, 13, 198, 4711, 50000, 481, 4143, 307, 20312, 351, 257, 15879, 286, 22715, 1863, 262, 198, 46156, 11, 2427, 286, 257, 2837, 13, 198, 198, 1722, 262, 2546, 286, 262, 4778, 318, 407, 1900, 11, 262, 22303, 1276, 307, 10630, 18283, 13, 198, 198, 2235, 23948, 198, 12, 4600, 2875, 3712, 18743, 63, 25, 4600, 18743, 63, 16708, 12739, 7177, 290, 6376, 1502, 198, 12, 4600, 75, 10901, 3712, 43, 10901, 63, 25, 4600, 43, 10901, 63, 16708, 12739, 262, 2292, 286, 262, 41497, 966, 1626, 262, 2685, 11506, 198, 12, 4600, 37687, 11347, 3712, 16305, 11347, 63, 25, 4600, 16305, 11347, 63, 16708, 12739, 266, 6750, 262, 10706, 4778, 389, 2060, 8405, 393, 1724, 198, 12, 4600, 65, 3733, 63, 25, 262, 12076, 13015, 286, 262, 10706, 357, 39799, 284, 262, 717, 290, 938, 20435, 737, 198, 37811, 198, 7249, 347, 6302, 41339, 90, 46, 27, 25, 18743, 11, 43, 27, 25, 43, 10901, 11, 33890, 27, 25, 16305, 11347, 11, 33, 92, 1279, 25, 27741, 2348, 3916, 41339, 90, 46, 11, 43, 11, 33890, 92, 198, 220, 220, 220, 1502, 3712, 46, 198, 220, 220, 220, 1179, 385, 3712, 43, 198, 220, 220, 220, 19232, 3712, 33890, 198, 220, 220, 220, 22303, 3712, 33, 198, 437, 198, 33, 6302, 41339, 7, 26, 1502, 28, 35422, 1068, 22784, 1179, 385, 28, 10434, 22784, 19232, 28, 20035, 16305, 11347, 22784, 22303, 28, 22366, 8, 796, 198, 220, 220, 220, 347, 6302, 41339, 7, 2875, 11, 1179, 385, 11, 19232, 11, 22303, 8, 198, 198, 65, 3733, 7, 70, 3712, 33, 6302, 41339, 8, 796, 308, 13, 65, 3733, 198, 198, 260, 11249, 7, 70, 3712, 33, 6302, 41339, 11, 1502, 28, 2875, 7, 70, 828, 1179, 385, 28, 75, 10901, 7, 70, 828, 19232, 28, 37687, 11347, 7, 70, 828, 22303, 28, 65, 3733, 7, 70, 4008, 796, 198, 220, 220, 220, 347, 6302, 41339, 7, 2875, 11, 1179, 385, 11, 19232, 11, 22303, 8, 198, 198, 2, 16926, 46, 25, 1730, 351, 555, 24071, 27741, 19182, 198, 48369, 25928, 7, 70, 3712, 33, 6302, 41339, 11, 6376, 11, 314, 8, 796, 198, 220, 220, 220, 17884, 7, 70, 11, 1502, 7, 70, 828, 1179, 385, 7, 70, 828, 19232, 7, 70, 828, 16416, 65, 3733, 7, 75, 10901, 7, 70, 828, 22303, 7, 70, 828, 6376, 11, 314, 4008, 198, 198, 48369, 65, 3733, 7, 75, 1733, 3712, 10434, 11, 22303, 11, 6376, 11, 314, 8, 796, 198, 220, 220, 220, 6376, 58, 11085, 7, 40, 8, 4357, 220, 198, 220, 220, 220, 938, 7, 40, 8, 18189, 938, 9630, 7, 9630, 8, 220, 5633, 22303, 58, 17, 60, 1058, 6376, 58, 12957, 7, 40, 8, 1343, 352, 60, 198, 48369, 65, 3733, 7, 75, 1733, 3712, 12915, 11, 22303, 11, 6376, 11, 314, 8, 796, 198, 220, 220, 220, 717, 7, 40, 8, 19841, 717, 9630, 7, 9630, 8, 5633, 22303, 58, 16, 60, 1058, 6376, 58, 11085, 7, 40, 8, 532, 352, 4357, 220, 220, 198, 220, 220, 220, 6376, 58, 12957, 7, 40, 15437, 198, 48369, 65, 3733, 7, 75, 1733, 3712, 23656, 11, 22303, 11, 6376, 11, 314, 8, 796, 198, 220, 220, 220, 717, 7, 40, 8, 19841, 717, 9630, 7, 9630, 8, 5633, 22303, 58, 16, 60, 1058, 357, 9630, 58, 11085, 7, 40, 8, 532, 352, 60, 220, 220, 1343, 6376, 58, 11085, 7, 40, 8, 12962, 1220, 362, 11, 198, 220, 220, 220, 938, 7, 40, 8, 220, 18189, 938, 9630, 7, 9630, 8, 220, 5633, 22303, 58, 17, 60, 1058, 357, 9630, 58, 12957, 7, 40, 8, 1343, 352, 60, 1343, 6376, 58, 12957, 7, 40, 8, 12962, 1220, 362, 628, 198, 397, 8709, 2099, 27741, 40164, 41339, 90, 46, 11, 43, 11, 33890, 11, 4561, 92, 1279, 25, 27741, 2348, 3916, 41339, 90, 46, 11, 43, 11, 33890, 92, 886, 198, 198, 37811, 198, 2025, 685, 63, 2348, 3916, 41339, 63, 16151, 31, 5420, 8, 810, 477, 4778, 389, 262, 976, 2546, 290, 21894, 38980, 13, 198, 198, 2235, 23948, 198, 12, 4600, 2875, 3712, 18743, 63, 25, 4600, 18743, 63, 16708, 12739, 7177, 290, 6376, 1502, 198, 12, 4600, 75, 10901, 3712, 43, 10901, 63, 25, 4600, 43, 10901, 63, 16708, 12739, 262, 2292, 286, 262, 41497, 966, 1626, 262, 2685, 11506, 198, 12, 4600, 37687, 11347, 3712, 16305, 11347, 63, 25, 4600, 16305, 11347, 63, 16708, 12739, 266, 6750, 262, 10706, 4778, 389, 2060, 8405, 393, 1724, 198, 12, 4600, 12626, 3712, 15057, 63, 25, 262, 2546, 286, 257, 10706, 2239, 11, 884, 355, 352, 84, 1, 13276, 1, 393, 4600, 31948, 7, 16, 8, 63, 198, 37811, 198, 7249, 23603, 41339, 90, 46, 27, 25, 18743, 11, 43, 27, 25, 43, 10901, 11, 33890, 27, 25, 16305, 11347, 11, 4561, 92, 1279, 25, 27741, 40164, 41339, 90, 46, 11, 43, 11, 33890, 11, 4561, 92, 198, 220, 220, 220, 1502, 3712, 46, 198, 220, 220, 220, 1179, 385, 3712, 43, 198, 220, 220, 220, 19232, 3712, 33890, 198, 220, 220, 220, 11506, 3712, 4561, 198, 437, 198, 40164, 41339, 7, 26, 1502, 28, 35422, 1068, 22784, 1179, 385, 28, 10434, 22784, 19232, 28, 20035, 16305, 11347, 22784, 11506, 28, 22366, 8, 796, 198, 220, 220, 220, 23603, 41339, 7, 2875, 11, 1179, 385, 11, 19232, 11, 11506, 8, 198, 198, 12626, 7, 25928, 3712, 40164, 41339, 8, 796, 10706, 13, 12626, 198, 198, 260, 11249, 7, 70, 3712, 40164, 41339, 11, 1502, 28, 2875, 7, 70, 828, 1179, 385, 28, 75, 10901, 7, 70, 828, 19232, 28, 37687, 11347, 7, 70, 828, 11506, 28, 12626, 7, 70, 4008, 796, 198, 220, 220, 220, 23603, 41339, 7, 2875, 11, 1179, 385, 11, 19232, 11, 11506, 8, 198, 198, 65, 3733, 7, 25928, 3712, 40164, 41339, 11, 5391, 8, 796, 22303, 7, 9630, 2875, 7, 25928, 828, 1179, 385, 7, 25928, 828, 10706, 11, 5391, 8, 198, 65, 3733, 7, 3712, 39746, 11, 7904, 10434, 11, 10706, 11, 5391, 8, 796, 717, 7, 27740, 828, 938, 7, 27740, 8, 1343, 11506, 7, 25928, 8, 198, 65, 3733, 7, 3712, 49, 964, 325, 11, 7904, 10434, 11, 10706, 11, 5391, 8, 796, 938, 7, 27740, 828, 717, 7, 27740, 8, 1343, 11506, 7, 25928, 8, 198, 65, 3733, 7, 3712, 39746, 11, 7904, 23656, 11, 10706, 11, 5391, 8, 796, 717, 7, 27740, 8, 532, 11506, 7, 25928, 8, 1220, 362, 11, 938, 7, 27740, 8, 1343, 11506, 7, 25928, 8, 1220, 362, 198, 65, 3733, 7, 3712, 49, 964, 325, 11, 7904, 23656, 11, 10706, 11, 5391, 8, 796, 938, 7, 27740, 8, 532, 11506, 7, 25928, 8, 1220, 362, 11, 717, 7, 27740, 8, 1343, 11506, 7, 25928, 8, 1220, 362, 198, 65, 3733, 7, 3712, 39746, 11, 7904, 12915, 11, 10706, 11, 5391, 8, 796, 717, 7, 27740, 8, 532, 11506, 7, 25928, 828, 938, 7, 27740, 8, 198, 65, 3733, 7, 3712, 49, 964, 325, 11, 7904, 12915, 11, 10706, 11, 5391, 8, 796, 938, 7, 27740, 8, 532, 11506, 7, 25928, 828, 717, 7, 27740, 8, 628, 198, 397, 8709, 2099, 27741, 34, 2397, 12409, 41339, 90, 46, 92, 1279, 25, 13362, 41339, 90, 46, 92, 886, 198, 198, 37811, 198, 32, 10706, 15793, 810, 262, 3815, 389, 9376, 13, 198, 198, 2235, 23948, 198, 12, 4600, 2875, 63, 25, 4600, 18743, 63, 16708, 12739, 7177, 290, 6376, 1502, 198, 37811, 198, 7249, 327, 2397, 12409, 41339, 90, 46, 27, 25, 18743, 92, 1279, 25, 27741, 34, 2397, 12409, 41339, 90, 46, 92, 198, 220, 220, 220, 1502, 3712, 46, 198, 437, 198, 34, 2397, 12409, 41339, 7, 26, 1502, 28, 35422, 1068, 28955, 796, 327, 2397, 12409, 41339, 7, 2875, 8, 198, 198, 2875, 7, 70, 3712, 34, 2397, 12409, 41339, 8, 796, 308, 13, 2875, 198, 198, 260, 11249, 7, 70, 3712, 34, 2397, 12409, 41339, 11, 1502, 28, 2875, 7, 70, 4008, 796, 327, 2397, 12409, 41339, 7, 2875, 8, 198, 198, 65, 3733, 7, 25928, 3712, 34, 2397, 12409, 41339, 11, 5391, 8, 796, 22303, 7, 9630, 2875, 7, 25928, 828, 10706, 11, 5391, 8, 198, 65, 3733, 7, 3712, 39746, 11, 10706, 11, 5391, 8, 796, 717, 7, 27740, 828, 938, 7, 27740, 8, 198, 65, 3733, 7, 3712, 49, 964, 325, 11, 10706, 11, 5391, 8, 796, 938, 7, 27740, 828, 717, 7, 27740, 8, 198, 65, 3733, 7, 3712, 3118, 24071, 11, 10706, 11, 5391, 8, 796, 4049, 7203, 34, 34574, 869, 4600, 65, 3733, 63, 319, 281, 555, 24071, 10706, 4943, 628, 198, 198, 37811, 198, 15721, 896, 12059, 257, 10706, 15793, 326, 318, 10795, 319, 584, 10706, 15225, 13, 198, 198, 15732, 278, 656, 257, 10795, 15793, 1276, 2148, 477, 584, 10795, 15225, 13, 198, 37811, 198, 397, 8709, 2099, 37947, 298, 41339, 1279, 25, 24846, 886, 198, 198, 75, 10901, 7, 70, 3712, 35, 8682, 41339, 8, 796, 308, 13, 75, 10901, 198, 67, 12078, 7, 70, 3712, 35, 8682, 41339, 8, 796, 308, 13, 67, 12078, 198, 37687, 11347, 7, 70, 3712, 35, 8682, 41339, 8, 796, 308, 13, 37687, 11347, 198, 198, 37811, 198, 41339, 2099, 1262, 281, 1527, 500, 13389, 284, 10385, 15793, 422, 198, 63, 27740, 7, 25928, 8, 63, 284, 4600, 67, 12078, 7, 18747, 8, 44646, 198, 198, 2235, 23948, 198, 12, 4600, 67, 12078, 63, 25, 257, 46545, 7268, 5391, 268, 3004, 3858, 393, 14354, 12336, 262, 1502, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2622, 416, 262, 6121, 2163, 13, 198, 12, 4600, 37687, 11347, 63, 25, 257, 4600, 16305, 11347, 63, 16708, 12739, 266, 6750, 262, 10706, 4778, 389, 35846, 2173, 393, 1724, 198, 37811, 198, 7249, 3602, 12214, 41339, 90, 35, 11, 43, 11, 33890, 27, 25, 16305, 11347, 92, 1279, 25, 37947, 298, 41339, 198, 220, 220, 220, 5391, 82, 3712, 35, 198, 220, 220, 220, 1179, 385, 3712, 43, 198, 220, 220, 220, 19232, 3712, 33890, 198, 437, 198, 8291, 12214, 41339, 7, 67, 12078, 16193, 828, 1179, 385, 28, 10434, 22784, 19232, 28, 20035, 16305, 11347, 28955, 796, 198, 220, 220, 220, 3602, 12214, 41339, 7, 67, 12078, 11, 1179, 385, 11, 19232, 8, 198, 198, 260, 11249, 7, 70, 3712, 8291, 12214, 41339, 11, 5391, 82, 28, 67, 12078, 7, 70, 828, 1179, 385, 28, 75, 10901, 7, 70, 828, 19232, 28, 37687, 11347, 7, 70, 4008, 796, 198, 220, 220, 220, 3602, 12214, 41339, 7, 67, 12078, 11, 1179, 385, 11, 19232, 8, 198, 198, 37811, 198, 32, 10706, 15793, 326, 3544, 281, 7177, 35847, 284, 10385, 15793, 422, 198, 63, 27740, 7, 25928, 8, 63, 284, 4600, 67, 12078, 7, 18747, 8, 44646, 198, 198, 2235, 23948, 198, 12, 4600, 67, 12078, 63, 25, 257, 46545, 7268, 5391, 268, 3004, 3858, 393, 14354, 12336, 262, 1502, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2622, 284, 6376, 262, 35847, 17593, 13, 198, 12, 4600, 37687, 11347, 63, 25, 257, 4600, 16305, 11347, 63, 16708, 12739, 266, 6750, 262, 10706, 4778, 389, 35846, 2173, 393, 1724, 198, 37811, 198, 7249, 6803, 929, 41339, 90, 35, 11, 43, 11, 33890, 27, 25, 16305, 11347, 92, 1279, 25, 37947, 298, 41339, 198, 220, 220, 220, 5391, 82, 3712, 35, 198, 220, 220, 220, 1179, 385, 3712, 43, 198, 220, 220, 220, 19232, 3712, 33890, 198, 437, 198, 8567, 929, 41339, 7, 67, 12078, 16193, 828, 1179, 385, 28, 10434, 22784, 19232, 28, 20035, 16305, 11347, 28955, 796, 198, 220, 220, 220, 6803, 929, 41339, 7, 67, 12078, 11, 1179, 385, 11, 19232, 8, 198, 198, 260, 11249, 7, 70, 3712, 8567, 929, 41339, 26, 5391, 82, 28, 67, 12078, 7, 70, 828, 1179, 385, 28, 75, 10901, 7, 70, 828, 19232, 28, 37687, 11347, 7, 70, 4008, 796, 198, 220, 220, 220, 6803, 929, 41339, 7, 67, 12078, 11, 1179, 385, 11, 19232, 8, 198 ]
3.09646
3,701
<reponame>ericphanson/Wandb.jl module Wandb using PyCall, Conda, Random, Requires const wandb = PyNULL() function __init__() copy!(wandb, pyimport("wandb")) @info "Using Wandb version $(wandb.__version__)" msg = Wandb.wandb.sdk.internal.update.check_available(wandb.__version__) if msg !== nothing @info "Trying to update Wandb to the latest stable release" run(`$(PyCall.pyprogramname) -m pip install wandb --upgrade`) end @require FluxTraining = "7bf95e4d-ca32-48da-9824-f0dc5310474f" begin include("fluxtraining.jl") end @require MPI = "da04e1cc-30fd-572f-bb4f-1f8673147195" begin include("mpi.jl") end end using Base.CoreLogging: CoreLogging, AbstractLogger, LogLevel, Info, handle_message, shouldlog, min_enabled_level, catch_exceptions # Base functions like `log`, `Image`, etc. include("main.jl") # Wandb Artifacts API include("artifacts.jl") # AbstractLogger interface include("corelogging.jl") # HyperParameter Tuning: Sweep/Agent API include("sweep.jl") export WandbLogger, WandbArtifact, WandbHyperParameterSweep, update_config!, get_config, save end
[ 27, 7856, 261, 480, 29, 35626, 746, 23103, 14, 54, 392, 65, 13, 20362, 198, 21412, 22420, 65, 198, 198, 3500, 9485, 14134, 11, 9724, 64, 11, 14534, 11, 26848, 198, 198, 9979, 11569, 65, 796, 9485, 33991, 3419, 198, 198, 8818, 11593, 15003, 834, 3419, 198, 220, 220, 220, 4866, 0, 7, 86, 392, 65, 11, 12972, 11748, 7203, 86, 392, 65, 48774, 198, 220, 220, 220, 2488, 10951, 366, 12814, 22420, 65, 2196, 29568, 86, 392, 65, 13, 834, 9641, 834, 16725, 628, 220, 220, 220, 31456, 796, 22420, 65, 13, 86, 392, 65, 13, 21282, 74, 13, 32538, 13, 19119, 13, 9122, 62, 15182, 7, 86, 392, 65, 13, 834, 9641, 834, 8, 198, 220, 220, 220, 611, 31456, 5145, 855, 2147, 198, 220, 220, 220, 220, 220, 220, 220, 2488, 10951, 366, 51, 14992, 284, 4296, 22420, 65, 284, 262, 3452, 8245, 2650, 1, 198, 220, 220, 220, 220, 220, 220, 220, 1057, 7, 63, 3, 7, 20519, 14134, 13, 9078, 23065, 3672, 8, 532, 76, 7347, 2721, 11569, 65, 1377, 929, 9526, 63, 8, 198, 220, 220, 220, 886, 628, 220, 220, 220, 2488, 46115, 1610, 2821, 44357, 796, 366, 22, 19881, 3865, 68, 19, 67, 12, 6888, 2624, 12, 2780, 6814, 12, 4089, 1731, 12, 69, 15, 17896, 4310, 940, 38652, 69, 1, 2221, 198, 220, 220, 220, 220, 220, 220, 220, 2291, 7203, 35522, 742, 24674, 13, 20362, 4943, 198, 220, 220, 220, 886, 628, 220, 220, 220, 2488, 46115, 4904, 40, 796, 366, 6814, 3023, 68, 16, 535, 12, 1270, 16344, 12, 48724, 69, 12, 11848, 19, 69, 12, 16, 69, 23, 45758, 20198, 22186, 1, 2221, 198, 220, 220, 220, 220, 220, 220, 220, 2291, 7203, 3149, 72, 13, 20362, 4943, 198, 220, 220, 220, 886, 198, 437, 198, 198, 3500, 7308, 13, 14055, 11187, 2667, 25, 7231, 11187, 2667, 11, 27741, 11187, 1362, 11, 5972, 4971, 11, 14151, 11, 5412, 62, 20500, 11, 815, 6404, 11, 949, 62, 25616, 62, 5715, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4929, 62, 1069, 11755, 198, 198, 2, 7308, 5499, 588, 4600, 6404, 47671, 4600, 5159, 47671, 3503, 13, 198, 17256, 7203, 12417, 13, 20362, 4943, 198, 2, 22420, 65, 3683, 37199, 7824, 198, 17256, 7203, 50179, 13, 20362, 4943, 198, 2, 27741, 11187, 1362, 7071, 198, 17256, 7203, 7295, 6404, 2667, 13, 20362, 4943, 198, 2, 15079, 36301, 13932, 278, 25, 42818, 14, 36772, 7824, 198, 17256, 7203, 46280, 538, 13, 20362, 4943, 198, 198, 39344, 22420, 65, 11187, 1362, 11, 22420, 65, 8001, 29660, 11, 22420, 65, 38197, 36301, 40783, 538, 11, 4296, 62, 11250, 28265, 651, 62, 11250, 11, 3613, 198, 198, 437, 198 ]
2.519481
462
using MPI testdir = @__DIR__ mpiexec() do cmd run(`$cmd -n 3 $(Base.julia_cmd()) $(joinpath(testdir, "mpi_queue.jl"))`) end for file in readdir() if endswith(file, "log") rm(file) end end mpiexec() do cmd run(`$cmd -n 4 $(Base.julia_cmd()) $(joinpath(testdir, "mpi_updates.jl"))`) end
[ 3500, 4904, 40, 198, 198, 9288, 15908, 796, 2488, 834, 34720, 834, 198, 198, 3149, 494, 87, 721, 3419, 466, 23991, 198, 220, 220, 220, 1057, 7, 63, 3, 28758, 532, 77, 513, 29568, 14881, 13, 73, 43640, 62, 28758, 28955, 29568, 22179, 6978, 7, 9288, 15908, 11, 366, 3149, 72, 62, 36560, 13, 20362, 48774, 63, 8, 198, 437, 198, 198, 1640, 2393, 287, 1100, 15908, 3419, 198, 220, 220, 220, 611, 886, 2032, 342, 7, 7753, 11, 366, 6404, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 42721, 7, 7753, 8, 198, 220, 220, 220, 886, 198, 437, 198, 198, 3149, 494, 87, 721, 3419, 466, 23991, 198, 220, 220, 220, 1057, 7, 63, 3, 28758, 532, 77, 604, 29568, 14881, 13, 73, 43640, 62, 28758, 28955, 29568, 22179, 6978, 7, 9288, 15908, 11, 366, 3149, 72, 62, 929, 19581, 13, 20362, 48774, 63, 8, 198, 437 ]
2.08
150
# generates array of arrays for a mesh, useful when interpolating the FEM solution # L is the length of a single cell # # index of femCLmap corresponds to cell index # values of femCLmap[jj] correspond to index of elements inside cell jj function generate_femap(mesh::M,totalBounds::Vector{Float64},L::Float64) where M<:eFEM.AbstractMesh Nnodes = length(mesh.xy) numNodesPerElm = (mesh.order == :Linear ? 4 : 9) # generate particle List for FEM nodes particleList = [Particle2D(Point2D(mesh.xy[i].x,mesh.xy[i].y),0.0,0) for i=1:Nnodes] tempCL = StokesParticles.generate_cell_list(particleList,totalBounds,L) femap = Array{Array{Int}}(undef,length(tempCL.cells)) # initialize element array elementArray = Array{Int}(undef,numNodesPerElm) # convert all point indices to corresponding element indices for cellInd = 1:length(tempCL.cells) tempArr = Array{Int}(undef,0) #for each node in that cell for nodeInd in tempCL.cells[cellInd].particleIDList fill!(elementArray,zero(Int)) # map node index to element getElementFromNode!(elementArray,mesh,nodeInd) for ti=1:numNodesPerElm if elementArray[ti] != 0 push!(tempArr,elementArray[ti]) end end end # assign elements to femCL as 'nodes' femap[cellInd] = unique(tempArr) end return femap end """ interpFGT!(v,pList,mesh,h,ε,x,y,q) Takes in particle position and FEM mesh to interpolate values. Also updates particle possitoin arrays in-place to reduce memory consumption POSSIBLE IMPROVEMENTS: 1. add another function that updates the target array only once the first time this code is run. Maybe some sort of interp object that does this for me INPUTS: v: [Vector{Float64}, M] interpolated values at targets pList: [ParticleList] Array of particles, acts as sources mesh: [Mesh] Finite Element mesh, acts as targets h: [Float64] bandwidth, h=sqrt(2)*stddev if standard deviation is known ε: [Float64] maximum absolute error x: [Vector{Float64}, d*N] list of sources -- updated in-place within function y: [Vector{Float64}, d*M] list of targets -- updated in-place within function q: [Vector{Float64}, N] weights on sources -- updated in-place within function W: [Int] number of weight functions (e.g. if W=2, then length(q) = 2N) """ function interpFGT!(v::Array{Float64},pList,mesh,h::Float64,ε::Float64, x::Array{Float64},y::Array{Float64},q::Array{Float64}) N = length(pList) # sources -- needed for fgt function M = length(mesh.xy) # targets -- needed for fgt function d = 2 # dimension of data -- needed for fgt function W = 1 # number of different weights -- needed for fgt function # update source array for ti=1:N x[2*ti-1] = pList[ti].pos.x x[2*ti] = pList[ti].pos.y end # update target array -- really should only have to do this once! room for improvement for ti=1:M y[2*ti-1] = mesh.xy[ti].x # xval of source y[2*ti] = mesh.xy[ti].y end # run interpolation routine StokesParticles.fgt!(v,d,M,N,h,ε,x,y,q,W) # return nothing -- updates in-place nothing end function getElementFromNode!(elementArray::Vector{Int},mesh::M,nodeInd::Int) where M<:eFEM.AbstractMesh nElm = length(mesh.cm) tk = 1 for elmInd=1:nElm if nodeInd in mesh.cm[elmInd].NodeList elementArray[tk] = elmInd tk += 1 end end nothing end
[ 2, 18616, 7177, 286, 26515, 329, 257, 19609, 11, 4465, 618, 39555, 803, 262, 376, 3620, 4610, 198, 2, 406, 318, 262, 4129, 286, 257, 2060, 2685, 198, 2, 198, 2, 6376, 286, 2796, 5097, 8899, 24866, 284, 2685, 6376, 198, 2, 3815, 286, 2796, 5097, 8899, 58, 41098, 60, 6053, 284, 6376, 286, 4847, 2641, 2685, 474, 73, 198, 8818, 7716, 62, 69, 368, 499, 7, 76, 5069, 3712, 44, 11, 23350, 33, 3733, 3712, 38469, 90, 43879, 2414, 5512, 43, 3712, 43879, 2414, 8, 810, 337, 27, 25, 68, 37, 3620, 13, 23839, 37031, 198, 220, 220, 220, 399, 77, 4147, 796, 4129, 7, 76, 5069, 13, 5431, 8, 198, 220, 220, 220, 997, 45, 4147, 5990, 9527, 76, 796, 357, 76, 5069, 13, 2875, 6624, 1058, 14993, 451, 5633, 604, 1058, 860, 8, 628, 220, 220, 220, 1303, 7716, 18758, 7343, 329, 376, 3620, 13760, 198, 220, 220, 220, 18758, 8053, 796, 685, 7841, 1548, 17, 35, 7, 12727, 17, 35, 7, 76, 5069, 13, 5431, 58, 72, 4083, 87, 11, 76, 5069, 13, 5431, 58, 72, 4083, 88, 828, 15, 13, 15, 11, 15, 8, 329, 1312, 28, 16, 25, 45, 77, 4147, 60, 628, 220, 220, 220, 20218, 5097, 796, 520, 3369, 7841, 2983, 13, 8612, 378, 62, 3846, 62, 4868, 7, 3911, 1548, 8053, 11, 23350, 33, 3733, 11, 43, 8, 198, 220, 220, 220, 2796, 499, 796, 15690, 90, 19182, 90, 5317, 11709, 7, 917, 891, 11, 13664, 7, 29510, 5097, 13, 46342, 4008, 628, 220, 220, 220, 1303, 41216, 5002, 7177, 198, 220, 220, 220, 5002, 19182, 796, 15690, 90, 5317, 92, 7, 917, 891, 11, 22510, 45, 4147, 5990, 9527, 76, 8, 628, 220, 220, 220, 1303, 10385, 477, 966, 36525, 284, 11188, 5002, 36525, 198, 220, 220, 220, 329, 2685, 5497, 796, 352, 25, 13664, 7, 29510, 5097, 13, 46342, 8, 198, 220, 220, 220, 220, 220, 220, 220, 20218, 3163, 81, 796, 15690, 90, 5317, 92, 7, 917, 891, 11, 15, 8, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 1640, 1123, 10139, 287, 326, 2685, 198, 220, 220, 220, 220, 220, 220, 220, 329, 10139, 5497, 287, 20218, 5097, 13, 46342, 58, 3846, 5497, 4083, 3911, 1548, 2389, 8053, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6070, 0, 7, 30854, 19182, 11, 22570, 7, 5317, 4008, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 3975, 10139, 6376, 284, 5002, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 651, 20180, 4863, 19667, 0, 7, 30854, 19182, 11, 76, 5069, 11, 17440, 5497, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 46668, 28, 16, 25, 22510, 45, 4147, 5990, 9527, 76, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 5002, 19182, 58, 20259, 60, 14512, 657, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4574, 0, 7, 29510, 3163, 81, 11, 30854, 19182, 58, 20259, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 886, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 886, 198, 220, 220, 220, 220, 220, 220, 220, 886, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 8333, 4847, 284, 2796, 5097, 355, 705, 77, 4147, 6, 198, 220, 220, 220, 220, 220, 220, 220, 2796, 499, 58, 3846, 5497, 60, 796, 3748, 7, 29510, 3163, 81, 8, 198, 220, 220, 220, 886, 628, 220, 220, 220, 1441, 2796, 499, 198, 437, 220, 198, 198, 37811, 198, 220, 220, 220, 987, 79, 37, 19555, 0, 7, 85, 11, 79, 8053, 11, 76, 5069, 11, 71, 11, 30950, 11, 87, 11, 88, 11, 80, 8, 198, 198, 51, 1124, 287, 18758, 2292, 290, 376, 3620, 19609, 284, 39555, 378, 3815, 13, 198, 7583, 5992, 18758, 1184, 10094, 259, 26515, 287, 12, 5372, 284, 4646, 4088, 7327, 198, 198, 47, 18420, 34563, 8959, 41283, 12529, 50, 25, 198, 16, 13, 751, 1194, 2163, 326, 5992, 262, 2496, 7177, 691, 1752, 262, 717, 640, 198, 220, 220, 220, 220, 220, 220, 428, 2438, 318, 1057, 13, 6674, 617, 3297, 286, 987, 79, 2134, 326, 857, 428, 329, 502, 198, 198, 1268, 30076, 50, 25, 198, 85, 25, 220, 220, 220, 220, 685, 38469, 90, 43879, 2414, 5512, 337, 60, 39555, 515, 3815, 379, 6670, 198, 79, 8053, 25, 685, 7841, 1548, 8053, 60, 15690, 286, 13166, 11, 6529, 355, 4237, 198, 76, 5069, 25, 220, 685, 37031, 60, 4463, 578, 11703, 19609, 11, 6529, 355, 6670, 198, 71, 25, 220, 220, 220, 220, 685, 43879, 2414, 60, 19484, 11, 289, 28, 31166, 17034, 7, 17, 27493, 301, 1860, 1990, 611, 3210, 28833, 318, 1900, 198, 30950, 25, 220, 220, 220, 220, 685, 43879, 2414, 60, 5415, 4112, 4049, 198, 87, 25, 220, 220, 220, 220, 685, 38469, 90, 43879, 2414, 5512, 288, 9, 45, 60, 1351, 286, 4237, 1377, 6153, 287, 12, 5372, 1626, 2163, 198, 88, 25, 220, 220, 220, 220, 685, 38469, 90, 43879, 2414, 5512, 288, 9, 44, 60, 1351, 286, 6670, 1377, 6153, 287, 12, 5372, 1626, 2163, 198, 80, 25, 220, 220, 220, 220, 685, 38469, 90, 43879, 2414, 5512, 399, 60, 19590, 319, 4237, 1377, 6153, 287, 12, 5372, 1626, 2163, 198, 54, 25, 220, 220, 220, 220, 685, 5317, 60, 1271, 286, 3463, 5499, 357, 68, 13, 70, 13, 611, 370, 28, 17, 11, 788, 4129, 7, 80, 8, 796, 362, 45, 8, 198, 37811, 198, 8818, 987, 79, 37, 19555, 0, 7, 85, 3712, 19182, 90, 43879, 2414, 5512, 79, 8053, 11, 76, 5069, 11, 71, 3712, 43879, 2414, 11, 30950, 3712, 43879, 2414, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2124, 3712, 19182, 90, 43879, 2414, 5512, 88, 3712, 19182, 90, 43879, 2414, 5512, 80, 3712, 19182, 90, 43879, 2414, 30072, 198, 220, 220, 220, 399, 796, 4129, 7, 79, 8053, 8, 220, 220, 220, 220, 220, 220, 1303, 4237, 1377, 2622, 329, 277, 13655, 2163, 198, 220, 220, 220, 337, 796, 4129, 7, 76, 5069, 13, 5431, 8, 220, 220, 220, 220, 1303, 6670, 1377, 2622, 329, 277, 13655, 2163, 198, 220, 220, 220, 288, 796, 362, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 15793, 286, 1366, 1377, 2622, 329, 277, 13655, 2163, 198, 220, 220, 220, 370, 796, 352, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 1271, 286, 1180, 19590, 1377, 2622, 329, 277, 13655, 2163, 628, 220, 220, 220, 1303, 4296, 2723, 7177, 198, 220, 220, 220, 329, 46668, 28, 16, 25, 45, 198, 220, 220, 220, 220, 220, 220, 220, 2124, 58, 17, 9, 20259, 12, 16, 60, 796, 279, 8053, 58, 20259, 4083, 1930, 13, 87, 198, 220, 220, 220, 220, 220, 220, 220, 2124, 58, 17, 9, 20259, 60, 220, 220, 796, 279, 8053, 58, 20259, 4083, 1930, 13, 88, 198, 220, 220, 220, 886, 628, 220, 220, 220, 1303, 4296, 2496, 7177, 1377, 1107, 815, 691, 423, 284, 466, 428, 1752, 0, 2119, 329, 9025, 198, 220, 220, 220, 329, 46668, 28, 16, 25, 44, 198, 220, 220, 220, 220, 220, 220, 220, 331, 58, 17, 9, 20259, 12, 16, 60, 796, 19609, 13, 5431, 58, 20259, 4083, 87, 220, 220, 220, 220, 220, 220, 1303, 2124, 2100, 286, 2723, 198, 220, 220, 220, 220, 220, 220, 220, 331, 58, 17, 9, 20259, 60, 220, 220, 796, 19609, 13, 5431, 58, 20259, 4083, 88, 198, 220, 220, 220, 886, 628, 220, 220, 220, 1303, 1057, 39555, 341, 8027, 198, 220, 220, 220, 520, 3369, 7841, 2983, 13, 69, 13655, 0, 7, 85, 11, 67, 11, 44, 11, 45, 11, 71, 11, 30950, 11, 87, 11, 88, 11, 80, 11, 54, 8, 628, 220, 220, 220, 1303, 1441, 2147, 1377, 5992, 287, 12, 5372, 198, 220, 220, 220, 2147, 198, 437, 198, 198, 8818, 651, 20180, 4863, 19667, 0, 7, 30854, 19182, 3712, 38469, 90, 5317, 5512, 76, 5069, 3712, 44, 11, 17440, 5497, 3712, 5317, 8, 810, 337, 27, 25, 68, 37, 3620, 13, 23839, 37031, 198, 220, 220, 220, 299, 9527, 76, 796, 4129, 7, 76, 5069, 13, 11215, 8, 198, 220, 220, 198, 220, 220, 220, 256, 74, 796, 352, 198, 220, 220, 220, 329, 1288, 76, 5497, 28, 16, 25, 77, 9527, 76, 198, 220, 220, 220, 220, 220, 611, 10139, 5497, 287, 19609, 13, 11215, 58, 417, 76, 5497, 4083, 19667, 8053, 198, 220, 220, 220, 220, 220, 220, 220, 5002, 19182, 58, 30488, 60, 796, 1288, 76, 5497, 198, 220, 220, 220, 220, 220, 220, 220, 256, 74, 15853, 352, 198, 220, 220, 220, 220, 220, 886, 198, 220, 220, 220, 886, 198, 220, 220, 198, 220, 220, 220, 2147, 198, 220, 886 ]
2.415782
1,508
<gh_stars>0 include("CalcNumCTEC.jl") # f(x,y) = 2x*y + 2x - x^2 - 2y^2 + 72 # # f(x,y) = 1 + x + y # a = 0. # b = 8. # c = 0. # d = 6. # t0 = time() # I_ap = IntegralDupla_Trapezio(f, (a,b), (c,d)) # t1 = time() # I_ex = 2816. # println("Integral aproximada: ", I_ap) # println("Integral exata.....: ", I_ex) # println("Erro absoluto......: ", abs(I_ap - I_ex)) # println("Tempo de execução..: ", round(t1-t0, digits=4), "s") v1 = Vertex2d(1,2) println(v)
[ 27, 456, 62, 30783, 29, 15, 198, 17256, 7203, 9771, 66, 33111, 4177, 2943, 13, 20362, 4943, 198, 198, 2, 277, 7, 87, 11, 88, 8, 796, 362, 87, 9, 88, 1343, 362, 87, 532, 2124, 61, 17, 532, 362, 88, 61, 17, 1343, 7724, 198, 2, 1303, 277, 7, 87, 11, 88, 8, 796, 352, 1343, 2124, 1343, 331, 198, 198, 2, 257, 796, 657, 13, 198, 2, 275, 796, 807, 13, 198, 198, 2, 269, 796, 657, 13, 198, 2, 288, 796, 718, 13, 198, 198, 2, 256, 15, 796, 640, 3419, 198, 2, 314, 62, 499, 796, 15995, 1373, 35660, 489, 64, 62, 51, 13484, 89, 952, 7, 69, 11, 357, 64, 11, 65, 828, 357, 66, 11, 67, 4008, 198, 2, 256, 16, 796, 640, 3419, 198, 2, 314, 62, 1069, 796, 2579, 1433, 13, 198, 198, 2, 44872, 7203, 34500, 1373, 257, 1676, 87, 320, 4763, 25, 33172, 314, 62, 499, 8, 198, 2, 44872, 7203, 34500, 1373, 409, 1045, 12359, 25, 33172, 314, 62, 1069, 8, 198, 2, 44872, 7203, 9139, 305, 2352, 349, 9390, 16317, 25, 33172, 2352, 7, 40, 62, 499, 532, 314, 62, 1069, 4008, 198, 2, 44872, 7203, 12966, 7501, 390, 2452, 84, 16175, 28749, 492, 25, 33172, 2835, 7, 83, 16, 12, 83, 15, 11, 19561, 28, 19, 828, 366, 82, 4943, 198, 198, 85, 16, 796, 4643, 16886, 17, 67, 7, 16, 11, 17, 8, 198, 35235, 7, 85, 8 ]
1.909091
242
<reponame>JuliaPackageMirrors/SpikingNetworks.jl export @reset_str macro reset_str(reset) reset=replace(reset,r"(.+)(?=\[)", s"net.\1") reset=replace(reset,"i","net.i") str="function reset!(net::Network$timestr)\n" str*="$(reset)\n" str*="end\n" print(str) eval(parse(str)) end
[ 27, 7856, 261, 480, 29, 16980, 544, 27813, 27453, 5965, 14, 4561, 14132, 7934, 5225, 13, 20362, 198, 39344, 2488, 42503, 62, 2536, 198, 198, 20285, 305, 13259, 62, 2536, 7, 42503, 8, 198, 220, 13259, 28, 33491, 7, 42503, 11, 81, 18109, 13, 10, 5769, 30, 28, 59, 58, 42501, 264, 1, 3262, 13, 59, 16, 4943, 198, 220, 13259, 28, 33491, 7, 42503, 553, 72, 2430, 3262, 13, 72, 4943, 198, 220, 965, 2625, 8818, 13259, 0, 7, 3262, 3712, 26245, 3, 16514, 395, 81, 19415, 77, 1, 198, 220, 965, 9, 2625, 3, 7, 42503, 19415, 77, 1, 198, 220, 965, 9, 2625, 437, 59, 77, 1, 198, 220, 3601, 7, 2536, 8, 198, 220, 5418, 7, 29572, 7, 2536, 4008, 198, 437 ]
2.31746
126
# Gurobi environment and other supporting facilities mutable struct Env ptr_env::Ptr{Cvoid} end # Note: `Env()` is an outer constructor because sometimes we want to # make an `Env` object from a pointer returned from `GRBgetenv`, and # sometimes we want to create a new `Env`. function Env() a = Ref{Ptr{Cvoid}}() ret = @grb_ccall( loadenv, Cint, (Ptr{Ptr{Cvoid}}, Ptr{UInt8}), a, C_NULL ) if ret == 10009 error("Invalid Gurobi license") elseif ret != 0 error("Failed to create environment (error $ret).") end # TODO(odow): no finalizer is set for Env, because when a model + Env # falls out of scope, Julia's GC will sometimes GC the env first, and # then the model. This causes an error. Thus, `Env`'s are finalized in # the `Model` constructor. # We should probably add a flag to differentiate between envs created # manually, and envs created by `Model()`. CPLEX.jl does something # similar. # finalizer(env, free_env) return Env(a[]) end Base.unsafe_convert(ty::Type{Ptr{Cvoid}}, env::Env) = env.ptr_env::Ptr{Cvoid} function is_valid(env::Env) env.ptr_env != C_NULL end function free_env(env::Env) if env.ptr_env != C_NULL @grb_ccall(freeenv, Nothing, (Ptr{Cvoid},), env.ptr_env) env.ptr_env = C_NULL end end function get_error_msg(env::Env) @assert env.ptr_env != C_NULL sz = @grb_ccall(geterrormsg, Ptr{UInt8}, (Ptr{Cvoid},), env.ptr_env) unsafe_string(sz) end # error mutable struct GurobiError <: Exception code::Int msg::String function GurobiError(env::Env, code::Integer) new(convert(Int, code), get_error_msg(env)) end end
[ 2, 402, 1434, 8482, 2858, 290, 584, 6493, 7291, 198, 198, 76, 18187, 2878, 2039, 85, 198, 220, 220, 220, 50116, 62, 24330, 3712, 46745, 90, 34, 19382, 92, 198, 437, 198, 198, 2, 5740, 25, 4600, 4834, 85, 3419, 63, 318, 281, 12076, 23772, 780, 3360, 356, 765, 284, 198, 2, 787, 281, 4600, 4834, 85, 63, 2134, 422, 257, 17562, 4504, 422, 4600, 10761, 33, 1136, 24330, 47671, 290, 198, 2, 3360, 356, 765, 284, 2251, 257, 649, 4600, 4834, 85, 44646, 198, 8818, 2039, 85, 3419, 198, 220, 220, 220, 257, 796, 6524, 90, 46745, 90, 34, 19382, 11709, 3419, 198, 220, 220, 220, 1005, 796, 2488, 2164, 65, 62, 535, 439, 7, 198, 220, 220, 220, 220, 220, 220, 220, 3440, 24330, 11, 198, 220, 220, 220, 220, 220, 220, 220, 327, 600, 11, 198, 220, 220, 220, 220, 220, 220, 220, 357, 46745, 90, 46745, 90, 34, 19382, 92, 5512, 350, 2213, 90, 52, 5317, 23, 92, 828, 198, 220, 220, 220, 220, 220, 220, 220, 257, 11, 327, 62, 33991, 198, 220, 220, 220, 1267, 198, 220, 220, 220, 611, 1005, 6624, 8576, 24, 198, 220, 220, 220, 220, 220, 220, 220, 4049, 7203, 44651, 402, 1434, 8482, 5964, 4943, 198, 220, 220, 220, 2073, 361, 1005, 14512, 657, 198, 220, 220, 220, 220, 220, 220, 220, 4049, 7203, 37, 6255, 284, 2251, 2858, 357, 18224, 720, 1186, 8, 19570, 198, 220, 220, 220, 886, 198, 220, 220, 220, 1303, 16926, 46, 7, 375, 322, 2599, 645, 2457, 7509, 318, 900, 329, 2039, 85, 11, 780, 618, 257, 2746, 1343, 2039, 85, 198, 220, 220, 220, 1303, 8953, 503, 286, 8354, 11, 22300, 338, 20145, 481, 3360, 20145, 262, 17365, 717, 11, 290, 198, 220, 220, 220, 1303, 788, 262, 2746, 13, 770, 5640, 281, 4049, 13, 6660, 11, 4600, 4834, 85, 63, 6, 82, 389, 32013, 287, 198, 220, 220, 220, 1303, 262, 4600, 17633, 63, 23772, 13, 198, 220, 220, 220, 1303, 775, 815, 2192, 751, 257, 6056, 284, 28754, 1022, 551, 14259, 2727, 198, 220, 220, 220, 1303, 14500, 11, 290, 551, 14259, 2727, 416, 4600, 17633, 3419, 44646, 327, 16437, 55, 13, 20362, 857, 1223, 198, 220, 220, 220, 1303, 2092, 13, 198, 220, 220, 220, 1303, 2457, 7509, 7, 24330, 11, 1479, 62, 24330, 8, 198, 220, 220, 220, 1441, 2039, 85, 7, 64, 58, 12962, 198, 437, 198, 198, 14881, 13, 13271, 8635, 62, 1102, 1851, 7, 774, 3712, 6030, 90, 46745, 90, 34, 19382, 92, 5512, 17365, 3712, 4834, 85, 8, 796, 17365, 13, 20692, 62, 24330, 3712, 46745, 90, 34, 19382, 92, 198, 198, 8818, 318, 62, 12102, 7, 24330, 3712, 4834, 85, 8, 198, 220, 220, 220, 17365, 13, 20692, 62, 24330, 14512, 327, 62, 33991, 198, 437, 198, 198, 8818, 1479, 62, 24330, 7, 24330, 3712, 4834, 85, 8, 198, 220, 220, 220, 611, 17365, 13, 20692, 62, 24330, 14512, 327, 62, 33991, 198, 220, 220, 220, 220, 220, 220, 220, 2488, 2164, 65, 62, 535, 439, 7, 5787, 24330, 11, 10528, 11, 357, 46745, 90, 34, 19382, 5512, 828, 17365, 13, 20692, 62, 24330, 8, 198, 220, 220, 220, 220, 220, 220, 220, 17365, 13, 20692, 62, 24330, 796, 327, 62, 33991, 198, 220, 220, 220, 886, 198, 437, 198, 198, 8818, 651, 62, 18224, 62, 19662, 7, 24330, 3712, 4834, 85, 8, 198, 220, 220, 220, 2488, 30493, 17365, 13, 20692, 62, 24330, 14512, 327, 62, 33991, 198, 220, 220, 220, 264, 89, 796, 2488, 2164, 65, 62, 535, 439, 7, 1136, 8056, 579, 45213, 11, 350, 2213, 90, 52, 5317, 23, 5512, 357, 46745, 90, 34, 19382, 5512, 828, 17365, 13, 20692, 62, 24330, 8, 198, 220, 220, 220, 21596, 62, 8841, 7, 82, 89, 8, 198, 437, 198, 198, 2, 4049, 198, 198, 76, 18187, 2878, 402, 1434, 8482, 12331, 1279, 25, 35528, 198, 220, 220, 220, 2438, 3712, 5317, 198, 220, 220, 220, 31456, 3712, 10100, 628, 220, 220, 220, 2163, 402, 1434, 8482, 12331, 7, 24330, 3712, 4834, 85, 11, 2438, 3712, 46541, 8, 198, 220, 220, 220, 220, 220, 220, 220, 649, 7, 1102, 1851, 7, 5317, 11, 2438, 828, 651, 62, 18224, 62, 19662, 7, 24330, 4008, 198, 220, 220, 220, 886, 198, 437, 198 ]
2.427362
709
# recipe.jl using RecipesBase @recipe function g(f::TaylorModel1) ffp = fp_rpa(f) fT = polynomial(ffp) Δ = remainder(ffp) ξ0 = ffp.x0 seriesalpha --> 0.3 seriestype := :shape xs = range(f.dom.lo, stop=f.dom.hi, length=100) evals = fT.(xs .- ξ0) .+ Δ # make polygon: xs = [xs; reverse(xs); xs[1]] ys = [inf.(evals); reverse(sup.(evals)); inf(evals[1])] xs, ys end @recipe function g(f::RTaylorModel1) ffp = fp_rpa(f) fT = polynomial(ffp) Δ = remainder(ffp) ξ0 = ffp.x0 order = get_order(f)+1 seriesalpha --> 0.5 seriestype := :shape xs = range(f.dom.lo, stop=f.dom.hi, length=100) evals = fT.(xs .- ξ0) corrs = (xs .- ξ0) .^ order Δrel = Δ .* corrs evalslo = inf.(evals + Δrel) evalshi = sup.(evals + Δrel) xs = [xs; reverse(xs); xs[1]] ys = [evalslo; reverse(evalshi); evalslo[1]] xs, ys end @recipe function g(sol::TMSol; vars=(0,1), timediv=1) @assert length(vars) == length(unique(vars)) == 2 "`vars` must have 2 distinct integer indices" return _plot_intvbox(sol, vars=vars, timediv=timediv) end function _plot_intvbox(sol::TMSol; vars=(0,1), timediv=1) domT = mince_in_time(sol, var=0, timediv=timediv) if 0 ∈ vars tup0 = findfirst(0 ∈ vars) var1 = vars[3-tup0] v1 = _mince_in_time(sol, domT, var1, timediv) if tup0 == 1 return @. IntervalBox(domT, v1) else return @. IntervalBox(v1, domT) end end var1, var2 = vars v1 = _mince_in_time(sol, domT, var1, timediv) v2 = _mince_in_time(sol, domT, var2, timediv) return @. IntervalBox(v1, v2) end """ mince_in_time(sol::TMSol; var=0, timediv=1) --> ::Vector{Interval} For `var=0`, this function divides the time domain of each entry of `sol` in `timediv` parts (`timediv==1` is the initial domain), and returns the time intervals where the solution holds. This is useful for plotting or finding specific events. For `var ≥ 1`, this function evaluates the flowpipes at the split domain intervals, which is useful to decrease the overapproximations associated to the whole time domain. """ function mince_in_time(sol::TMSol; var::Int=0, timediv::Int=1) @assert timediv > 0 "`timediv must be 1 or larger" @assert 0 ≤ var ≤ get_numvars(sol) domT = _mince_in_time(sol, Val(true), timediv) var == 0 && return domT return _mince_in_time(sol, domT, var, timediv) end # Mince in time var (var == 0) function _mince_in_time(sol::TMSol, ::Val{true}, timediv::Int=1) # Case timediv == 1 if timediv == 1 return expansion_point(sol) .+ domain(sol) end # Case timediv > 1 domT = Vector{typeof(domain(sol,1))}(undef, timediv*length(sol)) i0 = 1 @inbounds for indT in eachindex(sol) i1 = indT*timediv domT[i0:i1] .= expansion_point(sol,indT) .+ mince(domain(sol,indT), timediv) i0 = i1 + 1 end return domT end # Mince other var (var > 0) function _mince_in_time(sol::TMSol, domT::Vector{Interval{T}}, var::Int, timediv::Int=1) where {T} N = get_numvars(sol) @assert 1 ≤ var ≤ N # Case timediv == 1 if timediv == 1 return getindex.(flowpipe(sol), var) end # Case timediv > 1 vv = similar(domT) normalized_box = symmetric_box(N, Float64) δt = mince(domain(sol,1), timediv) i0 = 1 @inbounds for indT in eachindex(sol) i1 = indT*timediv δt .= mince(domain(sol,indT), timediv) @. vv[i0:i1] = evaluate(evaluate(sol[indT,var], δt), (normalized_box,)) i0 = i1 + 1 end return vv end
[ 2, 8364, 13, 20362, 198, 198, 3500, 44229, 14881, 198, 198, 31, 29102, 431, 2163, 308, 7, 69, 3712, 29907, 17633, 16, 8, 198, 220, 220, 220, 31246, 79, 796, 277, 79, 62, 81, 8957, 7, 69, 8, 198, 220, 220, 220, 277, 51, 796, 745, 6213, 49070, 7, 487, 79, 8, 198, 220, 220, 220, 37455, 796, 17675, 7, 487, 79, 8, 198, 220, 220, 220, 7377, 122, 15, 796, 31246, 79, 13, 87, 15, 628, 220, 220, 220, 2168, 26591, 14610, 657, 13, 18, 198, 220, 220, 220, 1055, 6386, 2981, 19039, 1058, 43358, 628, 220, 220, 220, 2124, 82, 796, 2837, 7, 69, 13, 3438, 13, 5439, 11, 2245, 28, 69, 13, 3438, 13, 5303, 11, 4129, 28, 3064, 8, 198, 220, 220, 220, 819, 874, 796, 277, 51, 12195, 34223, 764, 12, 7377, 122, 15, 8, 764, 10, 37455, 628, 220, 220, 220, 1303, 787, 7514, 14520, 25, 198, 220, 220, 220, 2124, 82, 796, 685, 34223, 26, 9575, 7, 34223, 1776, 2124, 82, 58, 16, 11907, 198, 220, 220, 220, 331, 82, 796, 685, 10745, 12195, 1990, 874, 1776, 9575, 7, 37330, 12195, 1990, 874, 18125, 1167, 7, 1990, 874, 58, 16, 12962, 60, 628, 220, 220, 220, 2124, 82, 11, 331, 82, 198, 437, 198, 198, 31, 29102, 431, 2163, 308, 7, 69, 3712, 14181, 7167, 17633, 16, 8, 198, 220, 220, 220, 31246, 79, 796, 277, 79, 62, 81, 8957, 7, 69, 8, 198, 220, 220, 220, 277, 51, 796, 745, 6213, 49070, 7, 487, 79, 8, 198, 220, 220, 220, 37455, 796, 17675, 7, 487, 79, 8, 198, 220, 220, 220, 7377, 122, 15, 796, 31246, 79, 13, 87, 15, 198, 220, 220, 220, 1502, 796, 651, 62, 2875, 7, 69, 47762, 16, 628, 220, 220, 220, 2168, 26591, 14610, 657, 13, 20, 198, 220, 220, 220, 1055, 6386, 2981, 19039, 1058, 43358, 628, 220, 220, 220, 2124, 82, 796, 2837, 7, 69, 13, 3438, 13, 5439, 11, 2245, 28, 69, 13, 3438, 13, 5303, 11, 4129, 28, 3064, 8, 198, 220, 220, 220, 819, 874, 796, 277, 51, 12195, 34223, 764, 12, 7377, 122, 15, 8, 628, 220, 220, 220, 1162, 3808, 796, 357, 34223, 764, 12, 7377, 122, 15, 8, 764, 61, 1502, 198, 220, 220, 220, 37455, 2411, 796, 37455, 764, 9, 1162, 3808, 198, 220, 220, 220, 819, 874, 5439, 796, 1167, 12195, 1990, 874, 1343, 37455, 2411, 8, 198, 220, 220, 220, 819, 874, 5303, 796, 7418, 12195, 1990, 874, 1343, 37455, 2411, 8, 628, 220, 220, 220, 2124, 82, 796, 685, 34223, 26, 9575, 7, 34223, 1776, 2124, 82, 58, 16, 11907, 198, 220, 220, 220, 331, 82, 796, 685, 1990, 874, 5439, 26, 9575, 7, 1990, 874, 5303, 1776, 819, 874, 5439, 58, 16, 11907, 628, 220, 220, 220, 2124, 82, 11, 331, 82, 198, 437, 198, 198, 31, 29102, 431, 2163, 308, 7, 34453, 3712, 51, 5653, 349, 26, 410, 945, 16193, 15, 11, 16, 828, 28805, 452, 28, 16, 8, 198, 220, 220, 220, 2488, 30493, 4129, 7, 85, 945, 8, 6624, 4129, 7, 34642, 7, 85, 945, 4008, 6624, 362, 366, 63, 85, 945, 63, 1276, 423, 362, 7310, 18253, 36525, 1, 628, 220, 220, 220, 1441, 4808, 29487, 62, 600, 85, 3524, 7, 34453, 11, 410, 945, 28, 85, 945, 11, 28805, 452, 28, 16514, 276, 452, 8, 198, 437, 198, 198, 8818, 4808, 29487, 62, 600, 85, 3524, 7, 34453, 3712, 51, 5653, 349, 26, 410, 945, 16193, 15, 11, 16, 828, 28805, 452, 28, 16, 8, 198, 220, 220, 220, 2401, 51, 796, 285, 924, 62, 259, 62, 2435, 7, 34453, 11, 1401, 28, 15, 11, 28805, 452, 28, 16514, 276, 452, 8, 628, 220, 220, 220, 611, 657, 18872, 230, 410, 945, 198, 220, 220, 220, 220, 220, 220, 220, 256, 929, 15, 796, 1064, 11085, 7, 15, 18872, 230, 410, 945, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1401, 16, 796, 410, 945, 58, 18, 12, 83, 929, 15, 60, 198, 220, 220, 220, 220, 220, 220, 220, 410, 16, 796, 4808, 76, 924, 62, 259, 62, 2435, 7, 34453, 11, 2401, 51, 11, 1401, 16, 11, 28805, 452, 8, 198, 220, 220, 220, 220, 220, 220, 220, 611, 256, 929, 15, 6624, 352, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 2488, 13, 4225, 2100, 14253, 7, 3438, 51, 11, 410, 16, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 2488, 13, 4225, 2100, 14253, 7, 85, 16, 11, 2401, 51, 8, 198, 220, 220, 220, 220, 220, 220, 220, 886, 198, 220, 220, 220, 886, 628, 220, 220, 220, 1401, 16, 11, 1401, 17, 796, 410, 945, 198, 220, 220, 220, 410, 16, 796, 4808, 76, 924, 62, 259, 62, 2435, 7, 34453, 11, 2401, 51, 11, 1401, 16, 11, 28805, 452, 8, 198, 220, 220, 220, 410, 17, 796, 4808, 76, 924, 62, 259, 62, 2435, 7, 34453, 11, 2401, 51, 11, 1401, 17, 11, 28805, 452, 8, 198, 220, 220, 220, 1441, 2488, 13, 4225, 2100, 14253, 7, 85, 16, 11, 410, 17, 8, 198, 437, 198, 198, 37811, 198, 220, 220, 220, 285, 924, 62, 259, 62, 2435, 7, 34453, 3712, 51, 5653, 349, 26, 1401, 28, 15, 11, 28805, 452, 28, 16, 8, 14610, 7904, 38469, 90, 9492, 2100, 92, 198, 198, 1890, 4600, 7785, 28, 15, 47671, 428, 2163, 36319, 262, 640, 7386, 286, 1123, 5726, 286, 4600, 34453, 63, 287, 198, 63, 16514, 276, 452, 63, 3354, 357, 63, 16514, 276, 452, 855, 16, 63, 318, 262, 4238, 7386, 828, 290, 5860, 262, 640, 198, 3849, 12786, 810, 262, 4610, 6622, 13, 770, 318, 4465, 329, 29353, 393, 4917, 220, 198, 11423, 2995, 13, 198, 1890, 4600, 7785, 26870, 352, 47671, 428, 2163, 47850, 262, 5202, 79, 18636, 379, 262, 6626, 7386, 220, 198, 3849, 12786, 11, 543, 318, 4465, 284, 10070, 262, 625, 1324, 13907, 320, 602, 3917, 198, 1462, 262, 2187, 640, 7386, 13, 198, 37811, 198, 8818, 285, 924, 62, 259, 62, 2435, 7, 34453, 3712, 51, 5653, 349, 26, 1401, 3712, 5317, 28, 15, 11, 28805, 452, 3712, 5317, 28, 16, 8, 198, 220, 220, 220, 2488, 30493, 28805, 452, 1875, 657, 366, 63, 16514, 276, 452, 1276, 307, 352, 393, 4025, 1, 198, 220, 220, 220, 2488, 30493, 657, 41305, 1401, 41305, 651, 62, 22510, 85, 945, 7, 34453, 8, 628, 220, 220, 220, 2401, 51, 796, 4808, 76, 924, 62, 259, 62, 2435, 7, 34453, 11, 3254, 7, 7942, 828, 28805, 452, 8, 198, 220, 220, 220, 1401, 6624, 657, 11405, 1441, 2401, 51, 198, 220, 220, 220, 1441, 4808, 76, 924, 62, 259, 62, 2435, 7, 34453, 11, 2401, 51, 11, 1401, 11, 28805, 452, 8, 198, 437, 198, 198, 2, 337, 924, 287, 640, 1401, 357, 7785, 6624, 657, 8, 198, 8818, 4808, 76, 924, 62, 259, 62, 2435, 7, 34453, 3712, 51, 5653, 349, 11, 7904, 7762, 90, 7942, 5512, 28805, 452, 3712, 5317, 28, 16, 8, 198, 220, 220, 220, 1303, 8913, 28805, 452, 6624, 352, 198, 220, 220, 220, 611, 28805, 452, 6624, 352, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 7118, 62, 4122, 7, 34453, 8, 764, 10, 7386, 7, 34453, 8, 198, 220, 220, 220, 886, 628, 220, 220, 220, 1303, 8913, 28805, 452, 1875, 352, 198, 220, 220, 220, 2401, 51, 796, 20650, 90, 4906, 1659, 7, 27830, 7, 34453, 11, 16, 4008, 92, 7, 917, 891, 11, 28805, 452, 9, 13664, 7, 34453, 4008, 198, 220, 220, 220, 1312, 15, 796, 352, 198, 220, 220, 220, 2488, 259, 65, 3733, 329, 773, 51, 287, 1123, 9630, 7, 34453, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1312, 16, 796, 773, 51, 9, 16514, 276, 452, 198, 220, 220, 220, 220, 220, 220, 220, 2401, 51, 58, 72, 15, 25, 72, 16, 60, 764, 28, 7118, 62, 4122, 7, 34453, 11, 521, 51, 8, 764, 10, 285, 924, 7, 27830, 7, 34453, 11, 521, 51, 828, 28805, 452, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1312, 15, 796, 1312, 16, 1343, 352, 198, 220, 220, 220, 886, 628, 220, 220, 220, 1441, 2401, 51, 198, 437, 198, 198, 2, 337, 924, 584, 1401, 357, 7785, 1875, 657, 8, 198, 8818, 4808, 76, 924, 62, 259, 62, 2435, 7, 34453, 3712, 51, 5653, 349, 11, 2401, 51, 3712, 38469, 90, 9492, 2100, 90, 51, 92, 5512, 1401, 3712, 5317, 11, 220, 198, 220, 220, 220, 220, 220, 220, 220, 28805, 452, 3712, 5317, 28, 16, 8, 810, 1391, 51, 92, 198, 220, 220, 220, 399, 796, 651, 62, 22510, 85, 945, 7, 34453, 8, 198, 220, 220, 220, 2488, 30493, 352, 41305, 1401, 41305, 399, 628, 220, 220, 220, 1303, 8913, 28805, 452, 6624, 352, 198, 220, 220, 220, 611, 28805, 452, 6624, 352, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 651, 9630, 12195, 11125, 34360, 7, 34453, 828, 1401, 8, 198, 220, 220, 220, 886, 628, 220, 220, 220, 1303, 8913, 28805, 452, 1875, 352, 198, 220, 220, 220, 410, 85, 796, 2092, 7, 3438, 51, 8, 198, 220, 220, 220, 39279, 62, 3524, 796, 23606, 19482, 62, 3524, 7, 45, 11, 48436, 2414, 8, 198, 220, 220, 220, 7377, 112, 83, 796, 285, 924, 7, 27830, 7, 34453, 11, 16, 828, 28805, 452, 8, 628, 220, 220, 220, 1312, 15, 796, 352, 198, 220, 220, 220, 2488, 259, 65, 3733, 329, 773, 51, 287, 1123, 9630, 7, 34453, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1312, 16, 796, 773, 51, 9, 16514, 276, 452, 198, 220, 220, 220, 220, 220, 220, 220, 7377, 112, 83, 764, 28, 285, 924, 7, 27830, 7, 34453, 11, 521, 51, 828, 28805, 452, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2488, 13, 410, 85, 58, 72, 15, 25, 72, 16, 60, 796, 13446, 7, 49786, 7, 34453, 58, 521, 51, 11, 7785, 4357, 7377, 112, 83, 828, 357, 11265, 1143, 62, 3524, 11, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 1312, 15, 796, 1312, 16, 1343, 352, 198, 220, 220, 220, 886, 628, 220, 220, 220, 1441, 410, 85, 220, 220, 220, 220, 198, 437, 198 ]
2.1331
1,713
#!/usr/bin/env julia using Luxor, Colors function drawbbox(apoly) gsave() setline(0.3) setdash("dotted") box(polybbox(apoly), :stroke) grestore() end function test1(p, x, y) prettypoly(p, :fill, # all these commands are executed for each vertex of the polygon :( scale(0.5, 0.5); randomhue(); opacity = currentdrawing.alpha; setopacity(rand(5:10)/10); ngon(0, 0, 15, rand(3:12), 0, :fill); setopacity(opacity); sethue("black"); # we can pass the origin for the whole polygon into the expression like this # but the current vertex is 0/0 textcentred(string($(x)) * "/" * string($(y))))) end function test2(p) prettypoly(p, :fill, :( ## all these commands are executed for each vertex of the polygon randomhue(); scale(0.5, 0.5); rotate(pi/2); prettypoly($(p), :fill, :( # and all these commands are executed for each vertex of that polygon randomhue(); scale(0.25, 0.25); rotate(pi/2); prettypoly($($(p)), :fill))))) end function get_png_files(folder) cd(folder) imagelist = filter(f -> !startswith(f, ".") && endswith(f, "png"), readdir(folder)) imagelist = filter(f -> !startswith(f, "tiled-images"), imagelist) # don't recurse... :) return map(realpath, imagelist) end function test3(p) imagelist = get_png_files(dirname(@__FILE__)) shuffle!(imagelist) img = readpng(imagelist[1]) w = img.width h = img.height prettypoly(p, :fill, :( ## all these commands are executed for each vertex of the polygon # to make it "through" the expression to the base drawing functions, these have to be made literal using $ placeimage($readpng($imagelist[rand(1:end)]), -$w/2, -$h/2) )) end function draw_lots_of_polys(pagewidth, pageheight) setopacity(0.75) pagetiles = Tiler(width, height, 9, 9, margin=20) for (pos, n) in pagetiles if rand(Bool) p = randompointarray(rand(-140:-10), rand(-140:-10), rand(10:140), rand(10:140), rand(5:12)) else p = ngon(0, 0, rand(50:100), rand(3:12), vertices=true) end gsave() translate(pos) setline(1) randomhue() @eval [test1($p, $pos.x, $pos.y), test2($p), test3($p)][rand(1:end)] # choose a test at random drawbbox(p) grestore() end end width, height = 3000, 3000 fname = "/tmp/pretty-poly-test.pdf" Drawing(width, height, fname) origin() background("ivory") draw_lots_of_polys(width, height) finish() println("finished test: output in $(fname)")
[ 2, 48443, 14629, 14, 8800, 14, 24330, 474, 43640, 198, 198, 3500, 17145, 273, 11, 29792, 198, 198, 8818, 3197, 65, 3524, 7, 499, 3366, 8, 198, 220, 220, 220, 308, 21928, 3419, 198, 220, 220, 220, 900, 1370, 7, 15, 13, 18, 8, 198, 220, 220, 220, 900, 42460, 7203, 67, 8426, 4943, 198, 220, 220, 220, 3091, 7, 35428, 65, 3524, 7, 499, 3366, 828, 1058, 30757, 8, 198, 220, 220, 220, 308, 2118, 382, 3419, 198, 437, 198, 198, 8818, 1332, 16, 7, 79, 11, 2124, 11, 331, 8, 198, 220, 220, 220, 2495, 35428, 7, 79, 11, 1058, 20797, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 477, 777, 9729, 389, 10945, 329, 1123, 37423, 286, 262, 7514, 14520, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 36147, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5046, 7, 15, 13, 20, 11, 657, 13, 20, 1776, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4738, 71, 518, 9783, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 45912, 796, 1459, 19334, 278, 13, 26591, 26, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 900, 404, 4355, 7, 25192, 7, 20, 25, 940, 20679, 940, 1776, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 299, 14520, 7, 15, 11, 657, 11, 1315, 11, 43720, 7, 18, 25, 1065, 828, 657, 11, 1058, 20797, 1776, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 900, 404, 4355, 7, 404, 4355, 1776, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 900, 71, 518, 7203, 13424, 15341, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 356, 460, 1208, 262, 8159, 329, 262, 2187, 7514, 14520, 656, 262, 5408, 588, 428, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 475, 262, 1459, 37423, 318, 657, 14, 15, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2420, 1087, 445, 7, 8841, 16763, 7, 87, 4008, 1635, 12813, 1, 1635, 220, 4731, 16763, 7, 88, 4008, 22305, 198, 437, 198, 198, 8818, 1332, 17, 7, 79, 8, 198, 220, 220, 220, 2495, 35428, 7, 79, 11, 1058, 20797, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 36147, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 22492, 477, 777, 9729, 389, 10945, 329, 1123, 37423, 286, 262, 7514, 14520, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4738, 71, 518, 9783, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5046, 7, 15, 13, 20, 11, 657, 13, 20, 1776, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 23064, 7, 14415, 14, 17, 1776, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2495, 35428, 16763, 7, 79, 828, 1058, 20797, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 36147, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 290, 477, 777, 9729, 389, 10945, 329, 1123, 37423, 286, 326, 7514, 14520, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4738, 71, 518, 9783, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5046, 7, 15, 13, 1495, 11, 657, 13, 1495, 1776, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 23064, 7, 14415, 14, 17, 1776, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2495, 35428, 16763, 16763, 7, 79, 36911, 1058, 20797, 4008, 22305, 198, 437, 198, 198, 8818, 651, 62, 11134, 62, 16624, 7, 43551, 8, 198, 220, 220, 220, 22927, 7, 43551, 8, 198, 220, 220, 220, 3590, 46331, 796, 8106, 7, 69, 4613, 5145, 9688, 2032, 342, 7, 69, 11, 366, 19570, 11405, 886, 2032, 342, 7, 69, 11, 366, 11134, 12340, 1100, 15908, 7, 43551, 4008, 198, 220, 220, 220, 3590, 46331, 796, 8106, 7, 69, 4613, 5145, 9688, 2032, 342, 7, 69, 11, 366, 83, 3902, 12, 17566, 12340, 3590, 46331, 8, 1303, 1849, 9099, 470, 664, 12321, 986, 14373, 198, 220, 220, 220, 1441, 3975, 7, 5305, 6978, 11, 3590, 46331, 8, 198, 437, 198, 198, 8818, 1332, 18, 7, 79, 8, 198, 220, 220, 220, 3590, 46331, 796, 651, 62, 11134, 62, 16624, 7, 15908, 3672, 7, 31, 834, 25664, 834, 4008, 198, 220, 220, 220, 36273, 0, 7, 48466, 46331, 8, 198, 220, 220, 220, 33705, 796, 1100, 11134, 7, 48466, 46331, 58, 16, 12962, 198, 220, 220, 220, 266, 796, 33705, 13, 10394, 198, 220, 220, 220, 289, 796, 33705, 13, 17015, 198, 220, 220, 220, 2495, 35428, 7, 79, 11, 1058, 20797, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 36147, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 22492, 477, 777, 9729, 389, 10945, 329, 1123, 37423, 286, 262, 7514, 14520, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 284, 787, 340, 366, 9579, 1, 262, 5408, 284, 262, 2779, 8263, 5499, 11, 777, 423, 284, 307, 925, 18875, 1262, 720, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1295, 9060, 16763, 961, 11134, 16763, 48466, 46331, 58, 25192, 7, 16, 25, 437, 15437, 828, 532, 3, 86, 14, 17, 11, 532, 3, 71, 14, 17, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 15306, 198, 437, 198, 198, 8818, 3197, 62, 75, 1747, 62, 1659, 62, 35428, 82, 7, 79, 363, 413, 5649, 11, 2443, 17015, 8, 198, 220, 220, 220, 900, 404, 4355, 7, 15, 13, 2425, 8, 198, 220, 220, 220, 42208, 316, 2915, 796, 309, 5329, 7, 10394, 11, 6001, 11, 860, 11, 860, 11, 10330, 28, 1238, 8, 198, 220, 220, 220, 329, 357, 1930, 11, 299, 8, 287, 42208, 316, 2915, 198, 220, 220, 220, 220, 220, 220, 220, 611, 43720, 7, 33, 970, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 279, 796, 43720, 3361, 1563, 18747, 7, 25192, 32590, 15187, 21912, 940, 828, 43720, 32590, 15187, 21912, 940, 828, 43720, 7, 940, 25, 15187, 828, 43720, 7, 940, 25, 15187, 828, 43720, 7, 20, 25, 1065, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 279, 796, 299, 14520, 7, 15, 11, 657, 11, 43720, 7, 1120, 25, 3064, 828, 43720, 7, 18, 25, 1065, 828, 9421, 1063, 28, 7942, 8, 198, 220, 220, 220, 220, 220, 220, 220, 886, 198, 220, 220, 220, 220, 220, 220, 220, 308, 21928, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 15772, 7, 1930, 8, 198, 220, 220, 220, 220, 220, 220, 220, 900, 1370, 7, 16, 8, 198, 220, 220, 220, 220, 220, 220, 220, 4738, 71, 518, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 2488, 18206, 685, 9288, 16, 16763, 79, 11, 720, 1930, 13, 87, 11, 720, 1930, 13, 88, 828, 1332, 17, 16763, 79, 828, 1332, 18, 16763, 79, 8, 7131, 25192, 7, 16, 25, 437, 15437, 1303, 3853, 257, 1332, 379, 4738, 198, 220, 220, 220, 220, 220, 220, 220, 3197, 65, 3524, 7, 79, 8, 198, 220, 220, 220, 220, 220, 220, 220, 308, 2118, 382, 3419, 198, 220, 220, 220, 886, 198, 437, 198, 198, 10394, 11, 6001, 796, 20343, 11, 20343, 198, 69, 3672, 796, 12813, 22065, 14, 37784, 12, 35428, 12, 9288, 13, 12315, 1, 198, 25302, 278, 7, 10394, 11, 6001, 11, 277, 3672, 8, 198, 47103, 3419, 198, 25249, 7203, 452, 652, 4943, 198, 19334, 62, 75, 1747, 62, 1659, 62, 35428, 82, 7, 10394, 11, 6001, 8, 198, 15643, 680, 3419, 198, 35235, 7203, 43952, 1332, 25, 5072, 287, 29568, 69, 3672, 8, 4943, 198 ]
1.997973
1,480
module Aligator export aligator, extract_loop, closed_forms, invariants using PyCall using SymPy using Singular using AlgebraicDependencies const AppliedUndef = PyCall.PyNULL() include("utils.jl") include("closedform.jl") include("recurrence.jl") include("loop.jl") include("invariants.jl") include("parse_julia.jl") include("ideals.jl") include("singular_imap.jl") function aligator(str::String) _, total = @timed begin loop, time = @timed extract_loop(str) @debug "Recurrence extraction" time cforms, time = @timed closed_forms(loop) @debug "Recurrence solving" time invs, time = @timed invariants(cforms) @debug "Ideal computation" time end @debug "Total time needed" total return InvariantIdeal(invs) end function __init__() copy!(AppliedUndef, PyCall.pyimport_conda("sympy.core.function", "sympy").AppliedUndef) include(joinpath(@__DIR__,"..", "benchmark", "singlepath.jl")) include(joinpath(@__DIR__,"..", "benchmark", "multipath.jl")) singlepath = [:cohencu, :freire1, :freire2, :(petter(1)), :(petter(2)), :(petter(3)), :(petter(4))] multipath = [:divbin, :euclidex, :fermat, :knuth, :lcm, :mannadiv, :wensley] end struct InvariantIdeal ideal::sideal end function Base.show(io::IO, I::InvariantIdeal) println(io, "Invariant ideal with $(ngens(I.ideal))-element basis:") Base.print_array(io, gens(I.ideal)) end end # module
[ 198, 21412, 978, 23823, 198, 198, 39344, 435, 23823, 11, 7925, 62, 26268, 11, 4838, 62, 23914, 11, 25275, 1187, 198, 198, 3500, 9485, 14134, 198, 3500, 15845, 20519, 198, 3500, 5573, 934, 198, 3500, 978, 29230, 291, 35, 2690, 3976, 198, 198, 9979, 27684, 31319, 891, 796, 9485, 14134, 13, 20519, 33991, 3419, 198, 198, 17256, 7203, 26791, 13, 20362, 4943, 198, 17256, 7203, 20225, 687, 13, 20362, 4943, 198, 17256, 7203, 8344, 33928, 13, 20362, 4943, 198, 17256, 7203, 26268, 13, 20362, 4943, 198, 17256, 7203, 16340, 2743, 1187, 13, 20362, 4943, 198, 17256, 7203, 29572, 62, 73, 43640, 13, 20362, 4943, 198, 17256, 7203, 485, 874, 13, 20362, 4943, 198, 17256, 7203, 12215, 934, 62, 320, 499, 13, 20362, 4943, 628, 198, 8818, 435, 23823, 7, 2536, 3712, 10100, 8, 198, 220, 220, 220, 4808, 11, 2472, 796, 2488, 16514, 276, 2221, 628, 220, 220, 220, 220, 220, 220, 220, 9052, 11, 640, 796, 2488, 16514, 276, 7925, 62, 26268, 7, 2536, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2488, 24442, 366, 6690, 33928, 22236, 1, 640, 628, 220, 220, 220, 220, 220, 220, 220, 269, 23914, 11, 640, 796, 2488, 16514, 276, 4838, 62, 23914, 7, 26268, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2488, 24442, 366, 6690, 33928, 18120, 1, 640, 198, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 800, 82, 11, 640, 796, 2488, 16514, 276, 25275, 1187, 7, 66, 23914, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2488, 24442, 366, 7390, 2287, 29964, 1, 640, 198, 220, 220, 220, 886, 198, 220, 220, 220, 2488, 24442, 366, 14957, 640, 2622, 1, 2472, 198, 220, 220, 220, 220, 198, 220, 220, 220, 1441, 10001, 2743, 415, 7390, 2287, 7, 259, 14259, 8, 198, 437, 198, 198, 8818, 11593, 15003, 834, 3419, 198, 220, 220, 220, 4866, 0, 7, 4677, 18511, 31319, 891, 11, 9485, 14134, 13, 9078, 11748, 62, 66, 13533, 7203, 1837, 3149, 88, 13, 7295, 13, 8818, 1600, 366, 1837, 3149, 88, 11074, 4677, 18511, 31319, 891, 8, 628, 220, 220, 220, 2291, 7, 22179, 6978, 7, 31, 834, 34720, 834, 553, 492, 1600, 366, 26968, 4102, 1600, 366, 29762, 6978, 13, 20362, 48774, 198, 220, 220, 220, 2291, 7, 22179, 6978, 7, 31, 834, 34720, 834, 553, 492, 1600, 366, 26968, 4102, 1600, 366, 16680, 541, 776, 13, 20362, 48774, 628, 220, 220, 220, 2060, 6978, 796, 685, 25, 1073, 831, 27399, 11, 1058, 19503, 557, 16, 11, 1058, 19503, 557, 17, 11, 36147, 6449, 353, 7, 16, 36911, 36147, 6449, 353, 7, 17, 36911, 36147, 6449, 353, 7, 18, 36911, 36147, 6449, 353, 7, 19, 4008, 60, 198, 220, 220, 220, 18540, 776, 796, 685, 25, 7146, 8800, 11, 1058, 12496, 565, 485, 87, 11, 1058, 2232, 6759, 11, 1058, 15418, 1071, 11, 1058, 75, 11215, 11, 1058, 9038, 324, 452, 11, 1058, 86, 641, 1636, 60, 198, 437, 198, 198, 7249, 10001, 2743, 415, 7390, 2287, 198, 220, 220, 220, 7306, 3712, 1589, 282, 198, 437, 198, 198, 8818, 7308, 13, 12860, 7, 952, 3712, 9399, 11, 314, 3712, 19904, 2743, 415, 7390, 2287, 8, 198, 220, 220, 220, 44872, 7, 952, 11, 366, 19904, 2743, 415, 7306, 351, 29568, 782, 641, 7, 40, 13, 485, 282, 4008, 12, 30854, 4308, 25, 4943, 198, 220, 220, 220, 7308, 13, 4798, 62, 18747, 7, 952, 11, 308, 641, 7, 40, 13, 485, 282, 4008, 198, 437, 198, 198, 437, 1303, 8265 ]
2.482935
586
<reponame>meteorologytoday/IOM include("IOM/src/share/LogSystem.jl") include("IOM/src/share/PolelikeCoordinate.jl") include("IOM/src/models/EMOM/ENGINE_EMOM.jl") include("IOM/src/driver/driver_working.jl") include("IOM/src/share/CyclicData.jl") include("DataLoader.jl") include("func_reinitModel.jl") include("func_data2SOM.jl") using MPI using CFTime, Dates using ArgParse using TOML using DataStructures using NCDatasets using .PolelikeCoordinate using .LogSystem using .CyclicData using .DataLoader function parse_commandline() s = ArgParseSettings() @add_arg_table s begin "--config-file" help = "Configuration file." arg_type = String required = true "--hist-dir" help = "Annual forcing file. It should contain: TAUX, TAUY, SWFLX, NSWFLX, VSFLX" arg_type = String required = true "--year-rng" help = "The year range that the user wants to run. The begin date will be set to 12/31 of the year before the first year." nargs = 2 required = true arg_type = Int64 "--SOM" help = "If set then HMXL will be set to the deepest z_w_bot. Remember to double check Nz_bot file." arg_type = Bool default = false end return parse_args(s) end parsed = parse_commandline() MPI.Init() comm = MPI.COMM_WORLD rank = MPI.Comm_rank(comm) is_master = rank == 0 config = nothing SOM_HMXL = nothing if is_master year_rng = parsed["year-rng"] config = TOML.parsefile(parsed["config-file"]) config["DRIVER"]["sync_thermo_state_before_stepping"] = true # We will strictly use a day Δt_float = 86400.0 Δt = Dates.Second(Δt_float) read_restart = false cfgmc = config["MODEL_CORE"] cfgmm = config["MODEL_MISC"] cfgmc["Qflx"] = "off" cfgmc["weak_restoring"] = "off" cfgmc["transform_vector_field"] = false Nz = length(cfgmc["z_w"])-1 first_run = true if parsed["SOM"] global SOM_HMXL = minimum(cfgmc["z_w"]) cfgmc["Ks_V"] = 0.0 println("`SOM` also set convective_adjustment = off and Ks_V = 0.0") println("HMXL will always be set to $(SOM_HMXL)") end dli = DataLoader.DataLoaderInfo( hist_dir = parsed["hist-dir"], casename = "paper2021_POP2_CTL", state_varnames = ["TEMP", "SALT", "HMXL",], forcing_varnames = ["SFWF", "TAUX", "TAUY", "SHF", "SHF_QSW",], year_rng = year_rng, layers = 1:Nz, ) pred_steps = 5 pred_cnt = 0 t_start = DateTimeNoLeap(year_rng[1], 1, 1, 0, 0, 0) - pred_steps*Δt t_end = DateTimeNoLeap(year_rng[2], 1, 1, 0, 0, 0) end global data = nothing global QFLXT = nothing global QFLXS = nothing global Nz_bot = nothing coupler_funcs = ( master_before_model_init = function() return read_restart, t_start end, master_after_model_init! = function(OMMODULE, OMDATA) # setup forcing println("# Model beg time: $(string(t_start))") println("# Model end time: $(string(t_end))") if parsed["SOM"] println("SOM specific: Load Nz_bot for later usage.") global Nz_bot = OMDATA.mb.ev.topo.Nz_bot_sT end end, master_before_model_run! = function(OMMODULE, OMDATA) global first_run, data, SOM_HMXL if first_run first_run = false # only put the TEMP and SALT of # the day before start date into the model data_init = DataLoader.loadInitDataAndForcing(dli, OMDATA.clock.time) if parsed["SOM"] println("SOM would propagate SST and SSS to the whole column") data2SOM!(data_init["TEMP"], Nz_bot) data2SOM!(data_init["SALT"], Nz_bot) end reinitModel!( OMDATA, data_init; forcing = true, thermal = true, SOM_HMXL = SOM_HMXL, ) global QFLXT = copy(data_init["TEMP"]) global QFLXS = copy(QFLXT) QFLXT .= 0.0 QFLXS .= 0.0 global pred_reinit = false global pred_cnt = 0 end write_restart = OMDATA.clock.time == t_end end_phase = OMDATA.clock.time > t_end if ! end_phase return_values = ( :RUN, Δt, write_restart ) else return_values = ( :END, 0.0, write_restart ) end return return_values end, master_after_model_run! = function(OMMODULE, OMDATA) global pred_reinit, pred_cnt, data fi = OMDATA.mb.fi data_next = DataLoader.loadInitDataAndForcing(dli, OMDATA.clock.time + Δt) if parsed["SOM"] println("SOM would propagate SST and SSS to the whole column") data2SOM!(data_next["TEMP"], Nz_bot) data2SOM!(data_next["SALT"], Nz_bot) end #_, m, d = DataLoader.getYMD(OMDATA.clock.time) pred_cnt += 1 #if any(d .== compute_qflx_dates[m]) if pred_cnt == pred_steps writeLog("# [Warning] Compare to OGCM, compute QFLX and reinitialize") # compute QFLX _Δt = Δt_float * pred_steps # @. fi.sv[:QFLXT] = (data_next["TEMP"] - fi.sv[:TEMP]) / _Δt # @. fi.sv[:QFLXS] = (data_next["SALT"] - fi.sv[:SALT]) / _Δt @. QFLXT = (data_next["TEMP"] - fi.sv[:TEMP]) / _Δt @. QFLXS = (data_next["SALT"] - fi.sv[:SALT]) / _Δt reinitModel!(OMDATA, data_next; forcing=true, thermal=true, SOM_HMXL=SOM_HMXL) pred_cnt = 0 else reinitModel!(OMDATA, data_next; forcing=true, thermal=false, SOM_HMXL=SOM_HMXL) #fi._QFLXX_ .= 0.0 end fi.sv[:QFLXT] .= QFLXT fi.sv[:QFLXS] .= QFLXS end, master_finalize! = function(OMMODULE, OMDATA) writeLog("[Coupler] Finalize") end, ) runModel( ENGINE_EMOM, coupler_funcs, config, )
[ 27, 7856, 261, 480, 29, 4164, 13492, 1435, 40838, 14, 40, 2662, 198, 17256, 7203, 40, 2662, 14, 10677, 14, 20077, 14, 11187, 11964, 13, 20362, 4943, 198, 17256, 7203, 40, 2662, 14, 10677, 14, 20077, 14, 47, 2305, 2339, 7222, 45480, 13, 20362, 4943, 198, 17256, 7203, 40, 2662, 14, 10677, 14, 27530, 14, 3620, 2662, 14, 26808, 8881, 62, 3620, 2662, 13, 20362, 4943, 198, 17256, 7203, 40, 2662, 14, 10677, 14, 26230, 14, 26230, 62, 16090, 13, 20362, 4943, 198, 17256, 7203, 40, 2662, 14, 10677, 14, 20077, 14, 20418, 565, 291, 6601, 13, 20362, 4943, 198, 17256, 7203, 6601, 17401, 13, 20362, 4943, 198, 17256, 7203, 20786, 62, 260, 15003, 17633, 13, 20362, 4943, 198, 17256, 7203, 20786, 62, 7890, 17, 50, 2662, 13, 20362, 4943, 198, 198, 3500, 4904, 40, 198, 3500, 18551, 7575, 11, 44712, 198, 3500, 20559, 10044, 325, 198, 3500, 41526, 43, 198, 3500, 6060, 44909, 942, 198, 3500, 399, 8610, 265, 292, 1039, 198, 3500, 764, 47, 2305, 2339, 7222, 45480, 198, 3500, 764, 11187, 11964, 198, 3500, 764, 20418, 565, 291, 6601, 198, 3500, 764, 6601, 17401, 198, 198, 8818, 21136, 62, 21812, 1370, 3419, 628, 220, 220, 220, 264, 796, 20559, 10044, 325, 26232, 3419, 628, 220, 220, 220, 2488, 2860, 62, 853, 62, 11487, 264, 2221, 628, 220, 220, 220, 220, 220, 220, 220, 366, 438, 11250, 12, 7753, 1, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1037, 796, 366, 38149, 2393, 526, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1822, 62, 4906, 796, 10903, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2672, 796, 2081, 628, 220, 220, 220, 220, 220, 220, 220, 366, 438, 10034, 12, 15908, 1, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1037, 796, 366, 18858, 723, 10833, 2393, 13, 632, 815, 3994, 25, 21664, 31235, 11, 21664, 52, 56, 11, 12672, 3697, 55, 11, 23438, 3697, 55, 11, 22269, 3697, 55, 1, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1822, 62, 4906, 796, 10903, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2672, 796, 2081, 628, 220, 220, 220, 220, 220, 220, 220, 366, 438, 1941, 12, 81, 782, 1, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1037, 796, 366, 464, 614, 2837, 326, 262, 2836, 3382, 284, 1057, 13, 383, 2221, 3128, 481, 307, 900, 284, 1105, 14, 3132, 286, 262, 614, 878, 262, 717, 614, 526, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 299, 22046, 796, 362, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2672, 796, 2081, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1822, 62, 4906, 796, 2558, 2414, 628, 220, 220, 220, 220, 220, 220, 220, 366, 438, 50, 2662, 1, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1037, 796, 366, 1532, 900, 788, 25904, 32457, 481, 307, 900, 284, 262, 25420, 1976, 62, 86, 62, 13645, 13, 11436, 284, 4274, 2198, 399, 89, 62, 13645, 2393, 526, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1822, 62, 4906, 796, 347, 970, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4277, 796, 3991, 628, 220, 220, 220, 886, 628, 220, 220, 220, 1441, 21136, 62, 22046, 7, 82, 8, 198, 437, 198, 198, 79, 945, 276, 796, 21136, 62, 21812, 1370, 3419, 198, 198, 7378, 40, 13, 31768, 3419, 198, 9503, 796, 4904, 40, 13, 9858, 44, 62, 45359, 11163, 198, 43027, 796, 4904, 40, 13, 6935, 62, 43027, 7, 9503, 8, 198, 271, 62, 9866, 796, 4279, 6624, 657, 198, 198, 11250, 796, 2147, 198, 50, 2662, 62, 36905, 32457, 796, 2147, 198, 361, 318, 62, 9866, 628, 220, 220, 220, 614, 62, 81, 782, 796, 44267, 14692, 1941, 12, 81, 782, 8973, 628, 198, 220, 220, 220, 4566, 796, 41526, 43, 13, 29572, 7753, 7, 79, 945, 276, 14692, 11250, 12, 7753, 8973, 8, 198, 220, 220, 220, 4566, 14692, 7707, 38757, 1, 7131, 1, 27261, 62, 490, 5908, 62, 5219, 62, 19052, 62, 4169, 2105, 8973, 796, 2081, 628, 220, 220, 220, 1303, 775, 481, 14084, 779, 257, 1110, 198, 220, 220, 220, 37455, 83, 62, 22468, 796, 807, 2414, 405, 13, 15, 198, 220, 220, 220, 37455, 83, 796, 44712, 13, 12211, 7, 138, 242, 83, 62, 22468, 8, 198, 220, 220, 220, 1100, 62, 2118, 433, 796, 3991, 628, 220, 220, 220, 30218, 70, 23209, 796, 4566, 14692, 33365, 3698, 62, 34, 6965, 8973, 198, 220, 220, 220, 30218, 70, 3020, 796, 4566, 14692, 33365, 3698, 62, 44, 37719, 8973, 628, 220, 220, 220, 30218, 70, 23209, 14692, 48, 2704, 87, 8973, 796, 366, 2364, 1, 198, 220, 220, 220, 30218, 70, 23209, 14692, 38695, 62, 2118, 3255, 8973, 796, 366, 2364, 1, 198, 220, 220, 220, 30218, 70, 23209, 14692, 35636, 62, 31364, 62, 3245, 8973, 796, 3991, 198, 220, 220, 220, 220, 198, 220, 220, 220, 399, 89, 796, 4129, 7, 37581, 23209, 14692, 89, 62, 86, 8973, 13219, 16, 628, 220, 220, 220, 717, 62, 5143, 796, 2081, 628, 198, 220, 220, 220, 611, 44267, 14692, 50, 2662, 8973, 198, 220, 220, 220, 220, 220, 220, 220, 3298, 42121, 62, 36905, 32457, 796, 5288, 7, 37581, 23209, 14692, 89, 62, 86, 8973, 8, 198, 220, 220, 220, 220, 220, 220, 220, 30218, 70, 23209, 14692, 42, 82, 62, 53, 8973, 796, 657, 13, 15, 628, 220, 220, 220, 220, 220, 220, 220, 44872, 7203, 63, 50, 2662, 63, 635, 900, 24748, 14070, 62, 23032, 434, 796, 572, 290, 509, 82, 62, 53, 796, 657, 13, 15, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 44872, 7203, 36905, 32457, 481, 1464, 307, 900, 284, 29568, 50, 2662, 62, 36905, 32457, 8, 4943, 628, 220, 220, 220, 886, 628, 220, 220, 220, 288, 4528, 796, 6060, 17401, 13, 6601, 17401, 12360, 7, 198, 220, 220, 220, 220, 220, 220, 220, 1554, 62, 15908, 796, 44267, 14692, 10034, 12, 15908, 33116, 198, 220, 220, 220, 220, 220, 220, 220, 6124, 12453, 796, 366, 20189, 1238, 2481, 62, 47, 3185, 17, 62, 4177, 43, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 1181, 62, 85, 1501, 1047, 796, 14631, 51, 39494, 1600, 366, 50, 31429, 1600, 366, 36905, 32457, 1600, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 10833, 62, 85, 1501, 1047, 796, 14631, 20802, 48397, 1600, 366, 5603, 31235, 1600, 366, 5603, 52, 56, 1600, 366, 9693, 37, 1600, 366, 9693, 37, 62, 48, 17887, 1600, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 614, 62, 81, 782, 796, 614, 62, 81, 782, 11, 198, 220, 220, 220, 220, 220, 220, 220, 11685, 796, 352, 25, 45, 89, 11, 198, 220, 220, 220, 1267, 628, 220, 220, 220, 2747, 62, 20214, 796, 642, 198, 220, 220, 220, 2747, 62, 66, 429, 796, 657, 628, 220, 220, 220, 256, 62, 9688, 796, 7536, 7575, 2949, 3123, 499, 7, 1941, 62, 81, 782, 58, 16, 4357, 352, 11, 352, 11, 657, 11, 657, 11, 657, 8, 532, 2747, 62, 20214, 9, 138, 242, 83, 198, 220, 220, 220, 256, 62, 437, 220, 220, 796, 7536, 7575, 2949, 3123, 499, 7, 1941, 62, 81, 782, 58, 17, 4357, 352, 11, 352, 11, 657, 11, 657, 11, 657, 8, 628, 198, 437, 628, 198, 20541, 1366, 796, 2147, 198, 20541, 1195, 3697, 25010, 796, 2147, 198, 20541, 1195, 3697, 55, 50, 796, 2147, 198, 20541, 399, 89, 62, 13645, 796, 2147, 198, 198, 66, 280, 20053, 62, 12543, 6359, 796, 357, 628, 220, 220, 220, 4958, 62, 19052, 62, 19849, 62, 15003, 796, 2163, 3419, 628, 220, 220, 220, 220, 220, 220, 220, 1441, 1100, 62, 2118, 433, 11, 256, 62, 9688, 198, 220, 220, 220, 886, 11, 628, 220, 220, 220, 4958, 62, 8499, 62, 19849, 62, 15003, 0, 796, 2163, 7, 2662, 33365, 24212, 11, 440, 12740, 13563, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 9058, 10833, 198, 220, 220, 220, 220, 220, 220, 220, 44872, 7203, 2, 9104, 4123, 640, 25, 29568, 8841, 7, 83, 62, 9688, 4008, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 44872, 7203, 2, 9104, 886, 640, 25, 29568, 8841, 7, 83, 62, 437, 4008, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 611, 44267, 14692, 50, 2662, 8973, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 44872, 7203, 50, 2662, 2176, 25, 8778, 399, 89, 62, 13645, 329, 1568, 8748, 19570, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3298, 399, 89, 62, 13645, 796, 440, 12740, 13563, 13, 2022, 13, 1990, 13, 4852, 78, 13, 45, 89, 62, 13645, 62, 82, 51, 198, 220, 220, 220, 220, 220, 220, 220, 886, 628, 220, 220, 220, 886, 11, 628, 220, 220, 220, 4958, 62, 19052, 62, 19849, 62, 5143, 0, 796, 2163, 7, 2662, 33365, 24212, 11, 440, 12740, 13563, 8, 628, 220, 220, 220, 220, 220, 220, 220, 3298, 717, 62, 5143, 11, 1366, 11, 42121, 62, 36905, 32457, 628, 220, 220, 220, 220, 220, 220, 220, 611, 717, 62, 5143, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 717, 62, 5143, 796, 3991, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 691, 1234, 262, 309, 39494, 290, 311, 31429, 286, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 262, 1110, 878, 923, 3128, 656, 262, 2746, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 15003, 796, 6060, 17401, 13, 2220, 31768, 6601, 1870, 1890, 2259, 7, 67, 4528, 11, 440, 12740, 13563, 13, 15750, 13, 2435, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 44267, 14692, 50, 2662, 8973, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 44872, 7203, 50, 2662, 561, 47933, 311, 2257, 290, 311, 5432, 284, 262, 2187, 5721, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 17, 50, 2662, 0, 7, 7890, 62, 15003, 14692, 51, 39494, 33116, 399, 89, 62, 13645, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 17, 50, 2662, 0, 7, 7890, 62, 15003, 14692, 50, 31429, 33116, 399, 89, 62, 13645, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 886, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6865, 270, 17633, 0, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 440, 12740, 13563, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 15003, 26, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10833, 796, 2081, 11, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 18411, 796, 2081, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 42121, 62, 36905, 32457, 796, 42121, 62, 36905, 32457, 11, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1267, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3298, 1195, 3697, 25010, 796, 4866, 7, 7890, 62, 15003, 14692, 51, 39494, 8973, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3298, 1195, 3697, 55, 50, 796, 4866, 7, 48, 3697, 25010, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1195, 3697, 25010, 764, 28, 657, 13, 15, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1195, 3697, 55, 50, 764, 28, 657, 13, 15, 628, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3298, 2747, 62, 260, 15003, 796, 3991, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3298, 2747, 62, 66, 429, 796, 657, 198, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 886, 628, 220, 220, 220, 220, 220, 220, 220, 3551, 62, 2118, 433, 796, 440, 12740, 13563, 13, 15750, 13, 2435, 6624, 256, 62, 437, 198, 220, 220, 220, 220, 220, 220, 220, 886, 62, 40715, 796, 440, 12740, 13563, 13, 15750, 13, 2435, 1875, 256, 62, 437, 628, 220, 220, 220, 220, 220, 220, 220, 611, 5145, 886, 62, 40715, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 62, 27160, 796, 357, 1058, 49, 4944, 11, 220, 37455, 83, 11, 3551, 62, 2118, 433, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 62, 27160, 796, 357, 1058, 10619, 11, 657, 13, 15, 11, 3551, 62, 2118, 433, 220, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 886, 628, 220, 220, 220, 220, 220, 220, 220, 1441, 1441, 62, 27160, 198, 220, 220, 220, 886, 11, 628, 220, 220, 220, 4958, 62, 8499, 62, 19849, 62, 5143, 0, 796, 2163, 7, 2662, 33365, 24212, 11, 440, 12740, 13563, 8, 628, 220, 220, 220, 220, 220, 220, 220, 3298, 2747, 62, 260, 15003, 11, 2747, 62, 66, 429, 11, 1366, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 25912, 796, 440, 12740, 13563, 13, 2022, 13, 12463, 628, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 19545, 796, 6060, 17401, 13, 2220, 31768, 6601, 1870, 1890, 2259, 7, 67, 4528, 11, 440, 12740, 13563, 13, 15750, 13, 2435, 1343, 37455, 83, 8, 198, 220, 220, 220, 220, 220, 220, 220, 611, 44267, 14692, 50, 2662, 8973, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 44872, 7203, 50, 2662, 561, 47933, 311, 2257, 290, 311, 5432, 284, 262, 2187, 5721, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 17, 50, 2662, 0, 7, 7890, 62, 19545, 14692, 51, 39494, 33116, 399, 89, 62, 13645, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 17, 50, 2662, 0, 7, 7890, 62, 19545, 14692, 50, 31429, 33116, 399, 89, 62, 13645, 8, 198, 220, 220, 220, 220, 220, 220, 220, 886, 628, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 62, 11, 285, 11, 288, 796, 6060, 17401, 13, 1136, 56, 12740, 7, 2662, 26947, 13, 15750, 13, 2435, 8, 628, 220, 220, 220, 220, 220, 220, 220, 2747, 62, 66, 429, 15853, 352, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 361, 597, 7, 67, 764, 855, 24061, 62, 80, 2704, 87, 62, 19581, 58, 76, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 611, 2747, 62, 66, 429, 6624, 2747, 62, 20214, 220, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3551, 11187, 7203, 2, 685, 20361, 60, 27814, 284, 440, 15916, 44, 11, 24061, 1195, 3697, 55, 290, 6865, 6847, 1096, 4943, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 24061, 1195, 3697, 55, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4808, 138, 242, 83, 796, 37455, 83, 62, 22468, 1635, 2747, 62, 20214, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2488, 13, 25912, 13, 21370, 58, 25, 48, 3697, 25010, 60, 796, 357, 7890, 62, 19545, 14692, 51, 39494, 8973, 532, 25912, 13, 21370, 58, 25, 51, 39494, 12962, 1220, 4808, 138, 242, 83, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2488, 13, 25912, 13, 21370, 58, 25, 48, 3697, 55, 50, 60, 796, 357, 7890, 62, 19545, 14692, 50, 31429, 8973, 532, 25912, 13, 21370, 58, 25, 50, 31429, 12962, 1220, 4808, 138, 242, 83, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2488, 13, 1195, 3697, 25010, 796, 357, 7890, 62, 19545, 14692, 51, 39494, 8973, 532, 25912, 13, 21370, 58, 25, 51, 39494, 12962, 1220, 4808, 138, 242, 83, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2488, 13, 1195, 3697, 55, 50, 796, 357, 7890, 62, 19545, 14692, 50, 31429, 8973, 532, 25912, 13, 21370, 58, 25, 50, 31429, 12962, 1220, 4808, 138, 242, 83, 628, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6865, 270, 17633, 0, 7, 2662, 26947, 11, 1366, 62, 19545, 26, 10833, 28, 7942, 11, 18411, 28, 7942, 11, 42121, 62, 36905, 32457, 28, 50, 2662, 62, 36905, 32457, 8, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2747, 62, 66, 429, 796, 657, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6865, 270, 17633, 0, 7, 2662, 26947, 11, 1366, 62, 19545, 26, 10833, 28, 7942, 11, 18411, 28, 9562, 11, 42121, 62, 36905, 32457, 28, 50, 2662, 62, 36905, 32457, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 12463, 13557, 48, 3697, 8051, 62, 764, 28, 657, 13, 15, 198, 220, 220, 220, 220, 220, 220, 220, 886, 628, 220, 220, 220, 220, 220, 220, 220, 25912, 13, 21370, 58, 25, 48, 3697, 25010, 60, 764, 28, 1195, 3697, 25010, 198, 220, 220, 220, 220, 220, 220, 220, 25912, 13, 21370, 58, 25, 48, 3697, 55, 50, 60, 764, 28, 1195, 3697, 55, 50, 628, 220, 220, 220, 886, 11, 628, 220, 220, 220, 4958, 62, 20311, 1096, 0, 796, 2163, 7, 2662, 33365, 24212, 11, 440, 12740, 13563, 8, 198, 220, 220, 220, 220, 220, 220, 220, 3551, 11187, 7203, 58, 34, 280, 20053, 60, 8125, 1096, 4943, 198, 220, 220, 220, 886, 11, 220, 198, 8, 198, 198, 5143, 17633, 7, 198, 220, 220, 220, 36924, 8881, 62, 3620, 2662, 11, 220, 198, 220, 220, 220, 2284, 20053, 62, 12543, 6359, 11, 198, 220, 220, 220, 4566, 11, 220, 198, 8, 198 ]
1.97381
3,131
using SparseArrays using Distributions using StatsBase using GVFHordes import GVFHordes: AbstractHorde using MinimalRLCore mutable struct Agent{#IR<:IntrinsicReward, # H, # BH, # DL<:Learner, # BL<:Learner, O, Φ, SC} <: AbstractAgent behaviour_learner::Learner behaviour_demons::Union{AbstractHorde,Nothing} # Round Robin learners have behaviour demons set to nothing behaviour_gamma::Float64 demons::AbstractHorde demon_learner::Learner last_obs::O last_state::Φ last_action::Int num_actions::Int intrinsic_reward::IntrinsicReward state_constructor::SC use_external_reward::Bool exploration::ExplorationStrategy random_first_action::Bool end function Agent(horde, behaviour_feature_size::Int, behaviour_learner, behaviour_horde, behaviour_gamma, demon_learner, observation_size::Int, num_actions::Int, intrinsic_reward_type, state_constructor, use_external_reward, exploration_strategy, random_first_action) behaviour_weight_dims = (num_actions, behaviour_feature_size) intrinsic_reward = if intrinsic_reward_type == "weight_change" #TODO: The intrinsic reward is defined by how the components of the agent are put together. For example, an intrinsic reward # could be the model error, which would then require different components that are assembled in the agent # Not sure how the construction of intrinisic reward could be abstracted out of this constructor WeightChange(demon_learner) elseif intrinsic_reward_type == "no_reward" NoReward() else throw(ArgumentError("Not a valid intrinsic reward")) end Agent(behaviour_learner, behaviour_horde, behaviour_gamma, horde, demon_learner, zeros(observation_size), spzeros(behaviour_feature_size), 0, # last_action num_actions, intrinsic_reward, state_constructor, use_external_reward, exploration_strategy, random_first_action) end function proc_input(agent, obs) return agent.state_constructor(obs) end function get_action(agent, state, obs) action_probs = if agent.behaviour_learner isa OneDTMazeUtils.RoundRobinPolicy || agent.behaviour_learner isa TwoDGridWorldUtils.RoundRobinPolicy get_action_probs(agent.behaviour_learner, state, obs) elseif agent.behaviour_learner.update isa TabularRoundRobin get_action_probs(agent.behaviour_learner.update, state, obs) elseif agent.behaviour_learner isa BaselineUtils.FollowDemon agent.behaviour_learner(obs) elseif agent.behaviour_learner isa BaselineUtils.RandomDemons qs = agent.behaviour_learner(obs) agent.exploration(qs) else qs = agent.behaviour_learner(state) agent.exploration(qs) end action = sample(1:agent.num_actions, Weights(action_probs)) return action, action_probs end function assign_horde!(agent, horde) agent.demons = horde end MinimalRLCore.end!(agent, obs, reward, is_terminal) = MinimalRLCore.step!(agent, obs, reward, is_terminal) function MinimalRLCore.start!(agent::Agent, obs, args...) next_state = proc_input(agent, obs) #Always exploring starts step!(agent.exploration) next_action = if agent.random_first_action sample(1:agent.num_actions, Weights(ones(agent.num_actions))) else a, probs = get_action(agent,next_state, obs) a end # NOTE: IS THIS RIGHT, seems wierd!? _, discounts, _ = get(agent.demons; state_t = obs, action_t = next_action, state_tp1 = obs, action_tp1 = next_action) agent.last_state = next_state agent.last_action = next_action agent.last_obs = obs zero_eligibility_traces!(agent.demon_learner) return next_action end function MinimalRLCore.step!(agent::Agent, obs, r, is_terminal, args...) next_state = proc_input(agent, obs) step!(agent.exploration) next_action, next_action_probs = get_action(agent, next_state, obs) update_demons!(agent, agent.last_obs, obs, agent.last_state, agent.last_action, next_state, next_action, is_terminal, r) #get intrinssic reward r_int = update_reward!(agent.intrinsic_reward, agent) total_reward = agent.use_external_reward ? r_int + r : r_int update_behaviour!(agent, agent.last_obs, obs, agent.last_state, agent.last_action, next_state, next_action, is_terminal, total_reward) agent.last_state = next_state agent.last_action = next_action agent.last_obs = obs return next_action end get_behaviour_pis(agent::Agent, state, obs) = get_action(agent, state, obs)[2] function μ_π(agent::Agent, obs) state = proc_input(agent, obs) get_behaviour_pis(agent,state,obs) end function update_demons!(agent,obs, next_obs, state, action, next_state, next_action, is_terminal, env_reward) update!(agent.demon_learner, agent.demons, obs, next_obs, state, action, next_state, next_action, is_terminal, (state, obs) -> get_behaviour_pis(agent, state, obs), env_reward) end function update_behaviour!(agent, obs, next_obs, state, action, next_state, next_action, is_terminal, reward) # behaviour_pis = get_behaviour_pis(agent, state, obs) # next_behaviour_pis = get_behaviour_pis(agent, next_state, next_obs) #NOTE: Different call than demon updates as the reward and environment pseudotermination function update!(agent.behaviour_learner, agent.behaviour_demons, obs, next_obs, state, action, next_state, next_action, is_terminal, (state, obs) -> get_behaviour_pis(agent, state, obs), reward) end function get_demon_prediction(agent::Agent, obs, action) ϕ = agent.state_constructor(obs) agent.demon_learner(ϕ, action) end
[ 3500, 1338, 17208, 3163, 20477, 198, 3500, 46567, 507, 198, 3500, 20595, 14881, 198, 3500, 402, 53, 44602, 35770, 198, 11748, 402, 53, 44602, 35770, 25, 27741, 39, 17531, 198, 3500, 1855, 4402, 49, 5639, 382, 198, 198, 76, 18187, 2878, 15906, 90, 2, 4663, 27, 25, 5317, 81, 1040, 291, 48123, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 367, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 347, 39, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 23641, 27, 25, 14961, 1008, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 9878, 27, 25, 14961, 1008, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 440, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7377, 99, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6374, 92, 1279, 25, 27741, 36772, 628, 198, 220, 220, 220, 9172, 62, 3238, 1008, 3712, 14961, 1008, 198, 220, 220, 220, 9172, 62, 9536, 684, 3712, 38176, 90, 23839, 39, 17531, 11, 18465, 92, 1303, 10485, 12325, 46184, 423, 9172, 17708, 900, 284, 2147, 198, 220, 220, 220, 9172, 62, 28483, 2611, 3712, 43879, 2414, 628, 220, 220, 220, 17708, 3712, 23839, 39, 17531, 198, 220, 220, 220, 3222, 62, 3238, 1008, 3712, 14961, 1008, 628, 220, 220, 220, 938, 62, 8158, 3712, 46, 198, 220, 220, 220, 938, 62, 5219, 3712, 138, 99, 628, 220, 220, 220, 938, 62, 2673, 3712, 5317, 198, 220, 220, 220, 997, 62, 4658, 3712, 5317, 628, 220, 220, 220, 28327, 62, 260, 904, 3712, 5317, 81, 1040, 291, 48123, 198, 220, 220, 220, 1181, 62, 41571, 273, 3712, 6173, 198, 220, 220, 220, 779, 62, 22615, 62, 260, 904, 3712, 33, 970, 198, 220, 220, 220, 13936, 3712, 18438, 6944, 13290, 4338, 628, 220, 220, 220, 4738, 62, 11085, 62, 2673, 3712, 33, 970, 198, 198, 437, 198, 198, 8818, 15906, 7, 71, 17531, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9172, 62, 30053, 62, 7857, 3712, 5317, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9172, 62, 3238, 1008, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9172, 62, 71, 17531, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9172, 62, 28483, 2611, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3222, 62, 3238, 1008, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 13432, 62, 7857, 3712, 5317, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 997, 62, 4658, 3712, 5317, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 28327, 62, 260, 904, 62, 4906, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1181, 62, 41571, 273, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 779, 62, 22615, 62, 260, 904, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 13936, 62, 2536, 4338, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4738, 62, 11085, 62, 2673, 8, 628, 220, 220, 220, 9172, 62, 6551, 62, 67, 12078, 796, 357, 22510, 62, 4658, 11, 9172, 62, 30053, 62, 7857, 8, 628, 220, 220, 220, 28327, 62, 260, 904, 796, 611, 28327, 62, 260, 904, 62, 4906, 6624, 366, 6551, 62, 3803, 1, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 51, 3727, 46, 25, 383, 28327, 6721, 318, 5447, 416, 703, 262, 6805, 286, 262, 5797, 389, 1234, 1978, 13, 1114, 1672, 11, 281, 28327, 6721, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 714, 307, 262, 2746, 4049, 11, 543, 561, 788, 2421, 1180, 6805, 326, 389, 16030, 287, 262, 5797, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 1892, 1654, 703, 262, 5103, 286, 9913, 16661, 291, 6721, 714, 307, 12531, 276, 503, 286, 428, 23772, 198, 220, 220, 220, 220, 220, 220, 220, 14331, 19400, 7, 26567, 62, 3238, 1008, 8, 198, 220, 220, 220, 2073, 361, 28327, 62, 260, 904, 62, 4906, 6624, 366, 3919, 62, 260, 904, 1, 198, 220, 220, 220, 220, 220, 220, 220, 1400, 48123, 3419, 198, 220, 220, 220, 2073, 198, 220, 220, 220, 220, 220, 220, 220, 3714, 7, 28100, 1713, 12331, 7203, 3673, 257, 4938, 28327, 6721, 48774, 198, 220, 220, 220, 886, 628, 220, 220, 220, 15906, 7, 20709, 37716, 62, 3238, 1008, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9172, 62, 71, 17531, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9172, 62, 28483, 2611, 11, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 43940, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3222, 62, 3238, 1008, 11, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1976, 27498, 7, 672, 3168, 341, 62, 7857, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 599, 9107, 418, 7, 20709, 37716, 62, 30053, 62, 7857, 828, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 657, 11, 1303, 938, 62, 2673, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 997, 62, 4658, 11, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 28327, 62, 260, 904, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1181, 62, 41571, 273, 11, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 779, 62, 22615, 62, 260, 904, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 13936, 62, 2536, 4338, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4738, 62, 11085, 62, 2673, 8, 198, 198, 437, 198, 198, 8818, 13834, 62, 15414, 7, 25781, 11, 10201, 8, 198, 220, 220, 220, 1441, 5797, 13, 5219, 62, 41571, 273, 7, 8158, 8, 198, 437, 198, 198, 8818, 651, 62, 2673, 7, 25781, 11, 1181, 11, 10201, 8, 198, 220, 220, 220, 2223, 62, 1676, 1443, 796, 611, 5797, 13, 20709, 37716, 62, 3238, 1008, 318, 64, 1881, 35, 15972, 6201, 18274, 4487, 13, 22685, 40656, 36727, 8614, 5797, 13, 20709, 37716, 62, 3238, 1008, 318, 64, 4930, 35, 41339, 10603, 18274, 4487, 13, 22685, 40656, 36727, 198, 220, 220, 220, 220, 220, 220, 220, 651, 62, 2673, 62, 1676, 1443, 7, 25781, 13, 20709, 37716, 62, 3238, 1008, 11, 1181, 11, 10201, 8, 198, 220, 220, 220, 2073, 361, 5797, 13, 20709, 37716, 62, 3238, 1008, 13, 19119, 318, 64, 16904, 934, 22685, 40656, 198, 220, 220, 220, 220, 220, 220, 220, 651, 62, 2673, 62, 1676, 1443, 7, 25781, 13, 20709, 37716, 62, 3238, 1008, 13, 19119, 11, 1181, 11, 10201, 8, 198, 220, 220, 220, 2073, 361, 5797, 13, 20709, 37716, 62, 3238, 1008, 318, 64, 6455, 4470, 18274, 4487, 13, 7155, 35477, 198, 220, 220, 220, 220, 220, 220, 220, 5797, 13, 20709, 37716, 62, 3238, 1008, 7, 8158, 8, 198, 220, 220, 220, 2073, 361, 5797, 13, 20709, 37716, 62, 3238, 1008, 318, 64, 6455, 4470, 18274, 4487, 13, 29531, 11522, 684, 198, 220, 220, 220, 220, 220, 220, 220, 10662, 82, 796, 5797, 13, 20709, 37716, 62, 3238, 1008, 7, 8158, 8, 198, 220, 220, 220, 220, 220, 220, 220, 5797, 13, 20676, 6944, 7, 48382, 8, 198, 220, 220, 220, 2073, 198, 220, 220, 220, 220, 220, 220, 220, 10662, 82, 796, 5797, 13, 20709, 37716, 62, 3238, 1008, 7, 5219, 8, 198, 220, 220, 220, 220, 220, 220, 220, 5797, 13, 20676, 6944, 7, 48382, 8, 198, 220, 220, 220, 886, 198, 220, 220, 220, 2223, 796, 6291, 7, 16, 25, 25781, 13, 22510, 62, 4658, 11, 775, 2337, 7, 2673, 62, 1676, 1443, 4008, 198, 220, 220, 220, 1441, 2223, 11, 2223, 62, 1676, 1443, 198, 437, 198, 198, 8818, 8333, 62, 71, 17531, 0, 7, 25781, 11, 43940, 8, 198, 220, 220, 220, 5797, 13, 9536, 684, 796, 43940, 198, 437, 198, 198, 9452, 4402, 49, 5639, 382, 13, 437, 0, 7, 25781, 11, 10201, 11, 6721, 11, 318, 62, 23705, 282, 8, 796, 198, 220, 220, 220, 1855, 4402, 49, 5639, 382, 13, 9662, 0, 7, 25781, 11, 10201, 11, 6721, 11, 318, 62, 23705, 282, 8, 628, 198, 8818, 1855, 4402, 49, 5639, 382, 13, 9688, 0, 7, 25781, 3712, 36772, 11, 10201, 11, 26498, 23029, 198, 220, 220, 220, 1306, 62, 5219, 796, 13834, 62, 15414, 7, 25781, 11, 10201, 8, 198, 220, 220, 220, 1303, 30374, 13504, 4940, 198, 220, 220, 220, 2239, 0, 7, 25781, 13, 20676, 6944, 8, 198, 220, 220, 220, 1306, 62, 2673, 796, 611, 5797, 13, 25120, 62, 11085, 62, 2673, 198, 220, 220, 220, 220, 220, 220, 220, 6291, 7, 16, 25, 25781, 13, 22510, 62, 4658, 11, 775, 2337, 7, 1952, 7, 25781, 13, 22510, 62, 4658, 22305, 198, 220, 220, 220, 2073, 198, 220, 220, 220, 220, 220, 220, 220, 257, 11, 386, 1443, 796, 651, 62, 2673, 7, 25781, 11, 19545, 62, 5219, 11, 10201, 8, 198, 220, 220, 220, 220, 220, 220, 220, 257, 198, 220, 220, 220, 886, 628, 220, 220, 220, 1303, 24550, 25, 3180, 12680, 33621, 11, 2331, 266, 959, 67, 22857, 198, 220, 220, 220, 4808, 11, 25684, 11, 4808, 796, 651, 7, 25781, 13, 9536, 684, 26, 1181, 62, 83, 796, 10201, 11, 2223, 62, 83, 796, 1306, 62, 2673, 11, 1181, 62, 34788, 16, 796, 10201, 11, 2223, 62, 34788, 16, 796, 1306, 62, 2673, 8, 628, 220, 220, 220, 5797, 13, 12957, 62, 5219, 796, 1306, 62, 5219, 198, 220, 220, 220, 5797, 13, 12957, 62, 2673, 796, 1306, 62, 2673, 198, 220, 220, 220, 5797, 13, 12957, 62, 8158, 796, 10201, 198, 220, 220, 220, 6632, 62, 417, 328, 2247, 62, 2213, 2114, 0, 7, 25781, 13, 26567, 62, 3238, 1008, 8, 628, 220, 220, 220, 1441, 1306, 62, 2673, 198, 437, 198, 198, 8818, 1855, 4402, 49, 5639, 382, 13, 9662, 0, 7, 25781, 3712, 36772, 11, 10201, 11, 374, 11, 318, 62, 23705, 282, 11, 26498, 23029, 198, 220, 220, 220, 1306, 62, 5219, 796, 13834, 62, 15414, 7, 25781, 11, 10201, 8, 198, 220, 220, 220, 2239, 0, 7, 25781, 13, 20676, 6944, 8, 198, 220, 220, 220, 1306, 62, 2673, 11, 1306, 62, 2673, 62, 1676, 1443, 796, 651, 62, 2673, 7, 25781, 11, 1306, 62, 5219, 11, 10201, 8, 628, 220, 220, 220, 4296, 62, 9536, 684, 0, 7, 25781, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5797, 13, 12957, 62, 8158, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10201, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5797, 13, 12957, 62, 5219, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5797, 13, 12957, 62, 2673, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1306, 62, 5219, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1306, 62, 2673, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 318, 62, 23705, 282, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 374, 8, 628, 220, 220, 220, 1303, 1136, 9913, 259, 824, 291, 6721, 198, 220, 220, 220, 374, 62, 600, 796, 4296, 62, 260, 904, 0, 7, 25781, 13, 600, 81, 1040, 291, 62, 260, 904, 11, 5797, 8, 198, 220, 220, 220, 2472, 62, 260, 904, 796, 5797, 13, 1904, 62, 22615, 62, 260, 904, 5633, 374, 62, 600, 1343, 374, 1058, 374, 62, 600, 198, 220, 220, 220, 4296, 62, 20709, 37716, 0, 7, 25781, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5797, 13, 12957, 62, 8158, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10201, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5797, 13, 12957, 62, 5219, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5797, 13, 12957, 62, 2673, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1306, 62, 5219, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1306, 62, 2673, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 318, 62, 23705, 282, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2472, 62, 260, 904, 8, 628, 220, 220, 220, 5797, 13, 12957, 62, 5219, 796, 1306, 62, 5219, 198, 220, 220, 220, 5797, 13, 12957, 62, 2673, 796, 1306, 62, 2673, 198, 220, 220, 220, 5797, 13, 12957, 62, 8158, 796, 10201, 198, 220, 220, 220, 1441, 1306, 62, 2673, 198, 437, 198, 198, 1136, 62, 20709, 37716, 62, 79, 271, 7, 25781, 3712, 36772, 11, 1181, 11, 10201, 8, 796, 198, 220, 220, 220, 651, 62, 2673, 7, 25781, 11, 1181, 11, 10201, 38381, 17, 60, 198, 198, 8818, 18919, 62, 46582, 7, 25781, 3712, 36772, 11, 10201, 8, 198, 220, 220, 220, 1181, 796, 13834, 62, 15414, 7, 25781, 11, 10201, 8, 198, 220, 220, 220, 651, 62, 20709, 37716, 62, 79, 271, 7, 25781, 11, 5219, 11, 8158, 8, 198, 437, 198, 8818, 4296, 62, 9536, 684, 0, 7, 25781, 11, 8158, 11, 1306, 62, 8158, 11, 1181, 11, 2223, 11, 1306, 62, 5219, 11, 1306, 62, 2673, 11, 318, 62, 23705, 282, 11, 17365, 62, 260, 904, 8, 628, 220, 220, 220, 4296, 0, 7, 25781, 13, 26567, 62, 3238, 1008, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5797, 13, 9536, 684, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10201, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1306, 62, 8158, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1181, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2223, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1306, 62, 5219, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1306, 62, 2673, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 318, 62, 23705, 282, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 5219, 11, 10201, 8, 4613, 651, 62, 20709, 37716, 62, 79, 271, 7, 25781, 11, 1181, 11, 10201, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 17365, 62, 260, 904, 8, 198, 198, 437, 198, 198, 8818, 4296, 62, 20709, 37716, 0, 7, 25781, 11, 10201, 11, 1306, 62, 8158, 11, 1181, 11, 2223, 11, 1306, 62, 5219, 11, 1306, 62, 2673, 11, 318, 62, 23705, 282, 11, 6721, 8, 628, 220, 220, 220, 1303, 9172, 62, 79, 271, 796, 651, 62, 20709, 37716, 62, 79, 271, 7, 25781, 11, 1181, 11, 10201, 8, 198, 220, 220, 220, 1303, 1306, 62, 20709, 37716, 62, 79, 271, 796, 651, 62, 20709, 37716, 62, 79, 271, 7, 25781, 11, 1306, 62, 5219, 11, 1306, 62, 8158, 8, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 16580, 25, 20615, 869, 621, 3222, 5992, 355, 262, 6721, 290, 2858, 25038, 19543, 17928, 2163, 198, 220, 220, 220, 4296, 0, 7, 25781, 13, 20709, 37716, 62, 3238, 1008, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5797, 13, 20709, 37716, 62, 9536, 684, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10201, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1306, 62, 8158, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1181, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2223, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1306, 62, 5219, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1306, 62, 2673, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 318, 62, 23705, 282, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 5219, 11, 10201, 8, 4613, 651, 62, 20709, 37716, 62, 79, 271, 7, 25781, 11, 1181, 11, 10201, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6721, 8, 198, 437, 198, 198, 8818, 651, 62, 26567, 62, 28764, 2867, 7, 25781, 3712, 36772, 11, 10201, 11, 2223, 8, 198, 220, 220, 220, 18074, 243, 796, 5797, 13, 5219, 62, 41571, 273, 7, 8158, 8, 198, 220, 220, 220, 5797, 13, 26567, 62, 3238, 1008, 7, 139, 243, 11, 2223, 8, 198, 437, 198 ]
2.163465
3,071
<filename>src/types/reference_frames.jl # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # Description # ============================================================================== # # Structures related to reference frames. # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # export T_ECEFs, T_ECIs, T_ECIs_of_date, T_ECEFs_IAU_2006, T_ECIs_IAU_2006, T_ECIs_IAU_2006_Equinox_of_date, T_ROT """ T_ECEFs Union of all Earth-Centered Earth-Fixed (ECEF) frames supported by the IAU-76/FK5 theory. """ T_ECEFs = Union{Val{:ITRF}, Val{:PEF}} """ T_ECIs Union of all Earth-Centered Inertial (ECI) frames supported by the IAU-76/FK5 theory. """ T_ECIs = Union{Val{:GCRF}, Val{:J2000}, Val{:TOD}, Val{:MOD}, Val{:TEME}} """ T_ECIs_of_date Union of all *of date* Earth-Centered Inertial (ECI) frames supported by the IAU-76/FK5 theory. """ T_ECIs_of_date = Union{Val{:TOD}, Val{:MOD}, Val{:TEME}} """ T_ECEFs_IAU_2006 Union of all Earth-Centered Earth-Fixed (ECEF) frames supported by IAU-2006/2010 theory. """ T_ECEFs_IAU_2006 = Union{Val{:ITRF}, Val{:TIRS}} """ T_ECIs_IAU_2006_CIO Union of all Earth-Centered Inertial (ECI) frames supported by CIO-based IAU-2006/2010 theory. """ T_ECIs_IAU_2006_CIO = Union{Val{:GCRF}, Val{:CIRS}} """ T_ECIs_IAU_2006_Equinox Union of all Earth-Centered Inertial (ECI) frames supported by Equinox-based IAU-2006/2010 theory. """ T_ECIs_IAU_2006_Equinox = Union{Val{:GCRF}, Val{:MJ2000}, Val{:MOD06}, Val{:ERS}} """ T_ECIs_IAU_2006 Union of all Earth-Centered Inertial (ECI) frames supported by IAU-2006/2010 theory. """ T_ECIs_IAU_2006 = Union{T_ECIs_IAU_2006_CIO, T_ECIs_IAU_2006_Equinox} """ T_ECIs_IAU_2006_Equinox_of_date Union of all *of date* Earth-Centered Inertial (ECI) frames supported by the equinox-based IAU-2006/2010 theory. """ T_ECIs_IAU_2006_Equinox_of_date = Union{Val{:MOD06}, Val{:ERS}} """ T_ROT Union of all supported rotation descriptions. """ T_ROT = Union{Type{DCM}, Type{Quaternion}}
[ 27, 34345, 29, 10677, 14, 19199, 14, 35790, 62, 37805, 13, 20362, 198, 2, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 198, 2, 198, 2, 12489, 198, 2, 38093, 25609, 28, 198, 2, 198, 2, 220, 220, 32112, 942, 3519, 284, 4941, 13431, 13, 198, 2, 198, 2, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 198, 198, 39344, 309, 62, 2943, 25425, 82, 11, 309, 62, 2943, 3792, 11, 309, 62, 2943, 3792, 62, 1659, 62, 4475, 11, 309, 62, 2943, 25425, 82, 62, 3539, 52, 62, 13330, 11, 309, 62, 2943, 3792, 62, 3539, 52, 62, 13330, 11, 198, 220, 220, 220, 220, 220, 220, 309, 62, 2943, 3792, 62, 3539, 52, 62, 13330, 62, 36, 21915, 1140, 62, 1659, 62, 4475, 11, 309, 62, 49, 2394, 198, 198, 37811, 198, 220, 220, 220, 309, 62, 2943, 25425, 82, 198, 198, 38176, 286, 477, 3668, 12, 19085, 1068, 3668, 12, 13715, 357, 2943, 25425, 8, 13431, 4855, 416, 262, 198, 3539, 52, 12, 4304, 14, 26236, 20, 4583, 13, 198, 198, 37811, 198, 51, 62, 2943, 25425, 82, 796, 4479, 90, 7762, 90, 25, 2043, 32754, 5512, 3254, 90, 25, 11401, 37, 11709, 198, 198, 37811, 198, 220, 220, 220, 309, 62, 2943, 3792, 198, 198, 38176, 286, 477, 3668, 12, 19085, 1068, 554, 861, 498, 357, 2943, 40, 8, 13431, 4855, 416, 262, 314, 26830, 12, 4304, 14, 26236, 20, 198, 1169, 652, 13, 198, 198, 37811, 198, 51, 62, 2943, 3792, 796, 4479, 90, 7762, 90, 25, 38, 9419, 37, 5512, 3254, 90, 25, 41, 11024, 5512, 3254, 90, 25, 51, 3727, 5512, 3254, 90, 25, 33365, 5512, 3254, 90, 25, 51, 3620, 36, 11709, 198, 198, 37811, 198, 220, 220, 220, 309, 62, 2943, 3792, 62, 1659, 62, 4475, 198, 198, 38176, 286, 477, 1635, 1659, 3128, 9, 3668, 12, 19085, 1068, 554, 861, 498, 357, 2943, 40, 8, 13431, 4855, 416, 262, 198, 3539, 52, 12, 4304, 14, 26236, 20, 4583, 13, 198, 198, 37811, 198, 51, 62, 2943, 3792, 62, 1659, 62, 4475, 796, 4479, 90, 7762, 90, 25, 51, 3727, 5512, 3254, 90, 25, 33365, 5512, 3254, 90, 25, 51, 3620, 36, 11709, 198, 198, 37811, 198, 220, 220, 220, 309, 62, 2943, 25425, 82, 62, 3539, 52, 62, 13330, 198, 198, 38176, 286, 477, 3668, 12, 19085, 1068, 3668, 12, 13715, 357, 2943, 25425, 8, 13431, 4855, 416, 314, 26830, 12, 13330, 14, 10333, 198, 1169, 652, 13, 198, 198, 37811, 198, 51, 62, 2943, 25425, 82, 62, 3539, 52, 62, 13330, 796, 4479, 90, 7762, 90, 25, 2043, 32754, 5512, 3254, 90, 25, 51, 4663, 50, 11709, 198, 198, 37811, 198, 220, 220, 220, 309, 62, 2943, 3792, 62, 3539, 52, 62, 13330, 62, 34, 9399, 198, 198, 38176, 286, 477, 3668, 12, 19085, 1068, 554, 861, 498, 357, 2943, 40, 8, 13431, 4855, 416, 327, 9399, 12, 3106, 198, 3539, 52, 12, 13330, 14, 10333, 4583, 13, 198, 198, 37811, 198, 51, 62, 2943, 3792, 62, 3539, 52, 62, 13330, 62, 34, 9399, 796, 4479, 90, 7762, 90, 25, 38, 9419, 37, 5512, 3254, 90, 25, 34, 4663, 50, 11709, 198, 198, 37811, 198, 220, 220, 220, 309, 62, 2943, 3792, 62, 3539, 52, 62, 13330, 62, 36, 21915, 1140, 198, 198, 38176, 286, 477, 3668, 12, 19085, 1068, 554, 861, 498, 357, 2943, 40, 8, 13431, 4855, 416, 7889, 259, 1140, 12, 3106, 198, 3539, 52, 12, 13330, 14, 10333, 4583, 13, 198, 198, 37811, 198, 51, 62, 2943, 3792, 62, 3539, 52, 62, 13330, 62, 36, 21915, 1140, 796, 4479, 90, 7762, 90, 25, 38, 9419, 37, 5512, 3254, 90, 25, 43421, 11024, 5512, 3254, 90, 25, 33365, 3312, 5512, 3254, 90, 25, 4877, 11709, 198, 198, 37811, 198, 220, 220, 220, 309, 62, 2943, 3792, 62, 3539, 52, 62, 13330, 198, 198, 38176, 286, 477, 3668, 12, 19085, 1068, 554, 861, 498, 357, 2943, 40, 8, 13431, 4855, 416, 314, 26830, 12, 13330, 14, 10333, 198, 1169, 652, 13, 198, 198, 37811, 198, 51, 62, 2943, 3792, 62, 3539, 52, 62, 13330, 796, 4479, 90, 51, 62, 2943, 3792, 62, 3539, 52, 62, 13330, 62, 34, 9399, 11, 309, 62, 2943, 3792, 62, 3539, 52, 62, 13330, 62, 36, 21915, 1140, 92, 198, 198, 37811, 198, 220, 220, 220, 309, 62, 2943, 3792, 62, 3539, 52, 62, 13330, 62, 36, 21915, 1140, 62, 1659, 62, 4475, 198, 198, 38176, 286, 477, 1635, 1659, 3128, 9, 3668, 12, 19085, 1068, 554, 861, 498, 357, 2943, 40, 8, 13431, 4855, 416, 262, 198, 4853, 259, 1140, 12, 3106, 314, 26830, 12, 13330, 14, 10333, 4583, 13, 198, 198, 37811, 198, 51, 62, 2943, 3792, 62, 3539, 52, 62, 13330, 62, 36, 21915, 1140, 62, 1659, 62, 4475, 796, 4479, 90, 7762, 90, 25, 33365, 3312, 5512, 3254, 90, 25, 4877, 11709, 198, 198, 37811, 198, 220, 220, 220, 309, 62, 49, 2394, 198, 198, 38176, 286, 477, 4855, 13179, 16969, 13, 198, 198, 37811, 198, 51, 62, 49, 2394, 796, 4479, 90, 6030, 90, 9697, 44, 5512, 5994, 90, 4507, 9205, 295, 11709, 198 ]
2.283828
909
<gh_stars>10-100 is_constraint(::typeof(voltage_magnitude_constraints)) = true is_linear(polar::PolarForm, ::typeof(voltage_magnitude_constraints)) = true # We add constraint only on vmag_pq function voltage_magnitude_constraints(polar::PolarForm, cons, vm, va, pinj, qinj) index_pq = polar.indexing.index_pq cons .= @view vm[index_pq] return end function voltage_magnitude_constraints(polar::PolarForm, cons, buffer) index_pq = polar.indexing.index_pq cons .= @view buffer.vmag[index_pq] return end function size_constraint(polar::PolarForm, ::typeof(voltage_magnitude_constraints)) return PS.get(polar.network, PS.NumberOfPQBuses()) end function bounds(polar::PolarForm, ::typeof(voltage_magnitude_constraints)) npv = PS.get(polar.network, PS.NumberOfPVBuses()) npq = PS.get(polar.network, PS.NumberOfPQBuses()) fr_ = npq + npv + 1 to_ = 2*npq + npv return polar.x_min[fr_:to_], polar.x_max[fr_:to_] end function adjoint!( polar::PolarForm, pbm::AutoDiff.TapeMemory{F, S, I}, cons, ∂cons, vm, ∂vm, va, ∂va, pinj, ∂pinj, ) where {F<:typeof(voltage_magnitude_constraints), S, I} index_pq = polar.indexing.index_pq ∂vm[index_pq] .= ∂cons end function matpower_jacobian( polar::PolarForm, X::Union{State,Control}, cons::typeof(voltage_magnitude_constraints), V, ) m = size_constraint(polar, cons) nᵤ = get(polar, NumberOfControl()) nₓ = get(polar, NumberOfState()) npv = PS.get(polar.network, PS.NumberOfPVBuses()) npq = PS.get(polar.network, PS.NumberOfPQBuses()) shift = npq + npv I = 1:m J = (shift+1):(shift+npq) V = ones(m) if isa(X, State) return sparse(I, J, V, m, nₓ) elseif isa(X, Control) return spzeros(m, nᵤ) end end function matpower_hessian(polar::PolarForm, ::typeof(voltage_magnitude_constraints), buffer, λ) nu = get(polar, NumberOfControl()) nx = get(polar, NumberOfState()) return FullSpaceHessian( spzeros(nx, nx), spzeros(nu, nx), spzeros(nu, nu), ) end
[ 27, 456, 62, 30783, 29, 940, 12, 3064, 198, 271, 62, 1102, 2536, 2913, 7, 3712, 4906, 1659, 7, 37764, 496, 62, 76, 4660, 3984, 62, 1102, 2536, 6003, 4008, 796, 2081, 198, 198, 271, 62, 29127, 7, 79, 6192, 3712, 47, 6192, 8479, 11, 7904, 4906, 1659, 7, 37764, 496, 62, 76, 4660, 3984, 62, 1102, 2536, 6003, 4008, 796, 2081, 198, 198, 2, 775, 751, 32315, 691, 319, 410, 19726, 62, 79, 80, 198, 8818, 15004, 62, 76, 4660, 3984, 62, 1102, 2536, 6003, 7, 79, 6192, 3712, 47, 6192, 8479, 11, 762, 11, 45887, 11, 46935, 11, 6757, 73, 11, 10662, 259, 73, 8, 198, 220, 220, 220, 6376, 62, 79, 80, 796, 13559, 13, 9630, 278, 13, 9630, 62, 79, 80, 198, 220, 220, 220, 762, 764, 28, 2488, 1177, 45887, 58, 9630, 62, 79, 80, 60, 198, 220, 220, 220, 1441, 198, 437, 198, 8818, 15004, 62, 76, 4660, 3984, 62, 1102, 2536, 6003, 7, 79, 6192, 3712, 47, 6192, 8479, 11, 762, 11, 11876, 8, 198, 220, 220, 220, 6376, 62, 79, 80, 796, 13559, 13, 9630, 278, 13, 9630, 62, 79, 80, 198, 220, 220, 220, 762, 764, 28, 2488, 1177, 11876, 13, 14761, 363, 58, 9630, 62, 79, 80, 60, 198, 220, 220, 220, 1441, 198, 437, 198, 198, 8818, 2546, 62, 1102, 2536, 2913, 7, 79, 6192, 3712, 47, 6192, 8479, 11, 7904, 4906, 1659, 7, 37764, 496, 62, 76, 4660, 3984, 62, 1102, 2536, 6003, 4008, 198, 220, 220, 220, 1441, 6599, 13, 1136, 7, 79, 6192, 13, 27349, 11, 6599, 13, 15057, 5189, 47, 40291, 2664, 28955, 198, 437, 198, 198, 8818, 22303, 7, 79, 6192, 3712, 47, 6192, 8479, 11, 7904, 4906, 1659, 7, 37764, 496, 62, 76, 4660, 3984, 62, 1102, 2536, 6003, 4008, 198, 220, 220, 220, 45941, 85, 796, 6599, 13, 1136, 7, 79, 6192, 13, 27349, 11, 6599, 13, 15057, 5189, 47, 44526, 2664, 28955, 198, 220, 220, 220, 45941, 80, 796, 6599, 13, 1136, 7, 79, 6192, 13, 27349, 11, 6599, 13, 15057, 5189, 47, 40291, 2664, 28955, 198, 220, 220, 220, 1216, 62, 796, 45941, 80, 1343, 45941, 85, 1343, 352, 198, 220, 220, 220, 284, 62, 796, 362, 9, 37659, 80, 1343, 45941, 85, 198, 220, 220, 220, 1441, 13559, 13, 87, 62, 1084, 58, 8310, 62, 25, 1462, 62, 4357, 13559, 13, 87, 62, 9806, 58, 8310, 62, 25, 1462, 62, 60, 198, 437, 198, 198, 8818, 9224, 1563, 0, 7, 198, 220, 220, 220, 13559, 3712, 47, 6192, 8479, 11, 198, 220, 220, 220, 279, 20475, 3712, 27722, 28813, 13, 51, 1758, 30871, 90, 37, 11, 311, 11, 314, 5512, 198, 220, 220, 220, 762, 11, 18872, 224, 5936, 11, 198, 220, 220, 220, 45887, 11, 18872, 224, 14761, 11, 198, 220, 220, 220, 46935, 11, 18872, 224, 6862, 11, 198, 220, 220, 220, 6757, 73, 11, 18872, 224, 11635, 73, 11, 198, 8, 810, 1391, 37, 27, 25, 4906, 1659, 7, 37764, 496, 62, 76, 4660, 3984, 62, 1102, 2536, 6003, 828, 311, 11, 314, 92, 198, 220, 220, 220, 6376, 62, 79, 80, 796, 13559, 13, 9630, 278, 13, 9630, 62, 79, 80, 198, 220, 220, 220, 18872, 224, 14761, 58, 9630, 62, 79, 80, 60, 764, 28, 18872, 224, 5936, 198, 437, 198, 198, 8818, 2603, 6477, 62, 30482, 672, 666, 7, 198, 220, 220, 220, 13559, 3712, 47, 6192, 8479, 11, 198, 220, 220, 220, 1395, 3712, 38176, 90, 9012, 11, 15988, 5512, 198, 220, 220, 220, 762, 3712, 4906, 1659, 7, 37764, 496, 62, 76, 4660, 3984, 62, 1102, 2536, 6003, 828, 198, 220, 220, 220, 569, 11, 198, 8, 198, 220, 220, 220, 285, 796, 2546, 62, 1102, 2536, 2913, 7, 79, 6192, 11, 762, 8, 198, 220, 220, 220, 299, 39611, 97, 796, 651, 7, 79, 6192, 11, 7913, 5189, 15988, 28955, 198, 220, 220, 220, 299, 158, 224, 241, 796, 651, 7, 79, 6192, 11, 7913, 5189, 9012, 28955, 198, 220, 220, 220, 45941, 85, 796, 6599, 13, 1136, 7, 79, 6192, 13, 27349, 11, 6599, 13, 15057, 5189, 47, 44526, 2664, 28955, 198, 220, 220, 220, 45941, 80, 796, 6599, 13, 1136, 7, 79, 6192, 13, 27349, 11, 6599, 13, 15057, 5189, 47, 40291, 2664, 28955, 198, 220, 220, 220, 6482, 796, 45941, 80, 1343, 45941, 85, 628, 220, 220, 220, 314, 796, 352, 25, 76, 198, 220, 220, 220, 449, 796, 357, 30846, 10, 16, 2599, 7, 30846, 10, 37659, 80, 8, 198, 220, 220, 220, 569, 796, 3392, 7, 76, 8, 198, 220, 220, 220, 611, 318, 64, 7, 55, 11, 1812, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 29877, 7, 40, 11, 449, 11, 569, 11, 285, 11, 299, 158, 224, 241, 8, 198, 220, 220, 220, 2073, 361, 318, 64, 7, 55, 11, 6779, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 599, 9107, 418, 7, 76, 11, 299, 39611, 97, 8, 198, 220, 220, 220, 886, 198, 437, 198, 198, 8818, 2603, 6477, 62, 33979, 666, 7, 79, 6192, 3712, 47, 6192, 8479, 11, 7904, 4906, 1659, 7, 37764, 496, 62, 76, 4660, 3984, 62, 1102, 2536, 6003, 828, 11876, 11, 7377, 119, 8, 198, 220, 220, 220, 14364, 796, 651, 7, 79, 6192, 11, 7913, 5189, 15988, 28955, 198, 220, 220, 220, 299, 87, 796, 651, 7, 79, 6192, 11, 7913, 5189, 9012, 28955, 198, 220, 220, 220, 1441, 6462, 14106, 39, 408, 666, 7, 198, 220, 220, 220, 220, 220, 220, 220, 599, 9107, 418, 7, 77, 87, 11, 299, 87, 828, 198, 220, 220, 220, 220, 220, 220, 220, 599, 9107, 418, 7, 28803, 11, 299, 87, 828, 198, 220, 220, 220, 220, 220, 220, 220, 599, 9107, 418, 7, 28803, 11, 14364, 828, 198, 220, 220, 220, 1267, 198, 437, 198 ]
2.156477
965
<gh_stars>1-10 using WAVI function MISMIP_PLUS_Ice1r(initial_thickness) #Grid and boundary conditions nx = 80 ny = 10 nσ = 4 x0 = 0.0 y0 = -40000.0 dx = 8000.0 dy = 8000.0 h_mask=trues(nx,ny) u_iszero = falses(nx+1,ny); u_iszero[1,:].=true v_iszero=falses(nx,ny+1); v_iszero[:,1].=true; v_iszero[:,end].=true grid = Grid(nx = nx, ny = ny, nσ = nσ, x0 = x0, y0 = y0, dx = dx, dy = dy, h_mask = h_mask, u_iszero = u_iszero, v_iszero = v_iszero) #Bed bed = WAVI.mismip_plus_bed #function definition #solver parameters maxiter_picard = 30 solver_params = SolverParams(maxiter_picard = maxiter_picard) #Physical parameters accumulation_rate = 0.3 params = Params(default_thickness = default_thickness, accumulation_rate = accumulation_rate) #initial conditions initial_conditions = InitialConditions(initial_thickness = initial_thickness) #make the model model = Model(grid = grid, bed_elevation = bed, params = params, solver_params = solver_params, initial_conditions = initial_conditions) #embed the model with melt rate model function m1(h, b) draft = -(918.0 / 1028.0) * h cavity_thickness = draft .- b cavity_thickness = max.(cavity_thickness, 0) m = 0.2*tanh.(cavity_thickness./75).*max.((-100 .- draft), 0) return m end arguments = (h = model.fields.gh.h, b = model.fields.gh.b) melt_rate_model = AnalyticMeltRate(melt_partial_cell = true, melt_rate_function = m1, function_arguments = arguments) add_melt_rate_model!(model,melt_rate_model) #timestepping parameters dt = 0.1 end_time = 100. timestepping_params = TimesteppingParams(dt = dt, end_time = end_time) simulation = Simulation(model = model, timestepping_params = timestepping_params) #perform the simulation run_simulation!(simulation) return simulation end #@time simulation = MISMIP_PLUS_test();
[ 27, 456, 62, 30783, 29, 16, 12, 940, 198, 3500, 370, 10116, 40, 220, 198, 8818, 337, 31125, 4061, 62, 6489, 2937, 62, 23709, 16, 81, 7, 36733, 62, 400, 624, 1108, 8, 198, 220, 220, 220, 1303, 41339, 290, 18645, 3403, 198, 220, 220, 220, 299, 87, 796, 4019, 198, 220, 220, 220, 299, 88, 796, 838, 198, 220, 220, 220, 299, 38392, 796, 604, 198, 220, 220, 220, 2124, 15, 796, 657, 13, 15, 198, 220, 220, 220, 331, 15, 796, 532, 19, 2388, 13, 15, 198, 220, 220, 220, 44332, 796, 38055, 13, 15, 198, 220, 220, 220, 20268, 796, 38055, 13, 15, 198, 220, 220, 220, 289, 62, 27932, 28, 83, 622, 274, 7, 77, 87, 11, 3281, 8, 198, 220, 220, 220, 334, 62, 271, 22570, 796, 27807, 274, 7, 77, 87, 10, 16, 11, 3281, 1776, 334, 62, 271, 22570, 58, 16, 11, 25, 4083, 28, 7942, 198, 220, 220, 220, 410, 62, 271, 22570, 28, 69, 874, 274, 7, 77, 87, 11, 3281, 10, 16, 1776, 410, 62, 271, 22570, 58, 45299, 16, 4083, 28, 7942, 26, 410, 62, 271, 22570, 58, 45299, 437, 4083, 28, 7942, 198, 220, 220, 220, 10706, 796, 24846, 7, 77, 87, 796, 299, 87, 11, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 299, 88, 796, 299, 88, 11, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 299, 38392, 796, 299, 38392, 11, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2124, 15, 796, 2124, 15, 11, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 331, 15, 796, 331, 15, 11, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 44332, 796, 44332, 11, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 20268, 796, 20268, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 289, 62, 27932, 796, 289, 62, 27932, 11, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 334, 62, 271, 22570, 796, 334, 62, 271, 22570, 11, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 410, 62, 271, 22570, 796, 410, 62, 271, 22570, 8, 628, 220, 220, 220, 1303, 45896, 220, 198, 220, 220, 220, 3996, 796, 370, 10116, 40, 13, 76, 1042, 541, 62, 9541, 62, 3077, 1303, 8818, 6770, 628, 220, 220, 220, 1303, 82, 14375, 10007, 198, 220, 220, 220, 3509, 2676, 62, 16564, 446, 796, 1542, 198, 220, 220, 220, 1540, 332, 62, 37266, 796, 4294, 332, 10044, 4105, 7, 9806, 2676, 62, 16564, 446, 796, 3509, 2676, 62, 16564, 446, 8, 628, 220, 220, 220, 1303, 31611, 10007, 198, 220, 220, 220, 24106, 62, 4873, 796, 657, 13, 18, 198, 220, 220, 220, 42287, 796, 2547, 4105, 7, 12286, 62, 400, 624, 1108, 796, 4277, 62, 400, 624, 1108, 11, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 24106, 62, 4873, 796, 24106, 62, 4873, 8, 628, 220, 220, 220, 1303, 36733, 3403, 198, 220, 220, 220, 4238, 62, 17561, 1756, 796, 20768, 25559, 1756, 7, 36733, 62, 400, 624, 1108, 796, 4238, 62, 400, 624, 1108, 8, 628, 220, 220, 220, 1303, 15883, 262, 2746, 198, 220, 220, 220, 2746, 796, 9104, 7, 25928, 796, 10706, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3996, 62, 68, 2768, 341, 796, 3996, 11, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 42287, 796, 42287, 11, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1540, 332, 62, 37266, 796, 1540, 332, 62, 37266, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4238, 62, 17561, 1756, 796, 4238, 62, 17561, 1756, 8, 628, 220, 220, 220, 1303, 20521, 262, 2746, 351, 16867, 2494, 2746, 198, 220, 220, 220, 2163, 285, 16, 7, 71, 11, 275, 8, 198, 220, 220, 220, 220, 220, 220, 220, 4538, 796, 532, 7, 24, 1507, 13, 15, 1220, 838, 2078, 13, 15, 8, 1635, 289, 198, 220, 220, 220, 220, 220, 220, 220, 31643, 62, 400, 624, 1108, 796, 4538, 764, 12, 275, 198, 220, 220, 220, 220, 220, 220, 220, 31643, 62, 400, 624, 1108, 796, 3509, 12195, 66, 615, 414, 62, 400, 624, 1108, 11, 657, 8, 198, 220, 220, 220, 220, 220, 220, 220, 285, 796, 220, 657, 13, 17, 9, 38006, 71, 12195, 66, 615, 414, 62, 400, 624, 1108, 19571, 2425, 737, 9, 9806, 12195, 32590, 3064, 764, 12, 4538, 828, 657, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 285, 198, 220, 220, 220, 886, 198, 220, 220, 220, 7159, 796, 357, 71, 796, 2746, 13, 25747, 13, 456, 13, 71, 11, 275, 796, 2746, 13, 25747, 13, 456, 13, 65, 8, 198, 220, 220, 220, 16867, 62, 4873, 62, 19849, 796, 16213, 13370, 44, 2120, 32184, 7, 76, 2120, 62, 47172, 62, 3846, 796, 2081, 11, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 16867, 62, 4873, 62, 8818, 796, 285, 16, 11, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2163, 62, 853, 2886, 796, 7159, 8, 198, 220, 220, 220, 751, 62, 76, 2120, 62, 4873, 62, 19849, 0, 7, 19849, 11, 76, 2120, 62, 4873, 62, 19849, 8, 628, 220, 220, 220, 1303, 16514, 29872, 2105, 10007, 198, 220, 220, 220, 288, 83, 796, 657, 13, 16, 198, 220, 220, 220, 886, 62, 2435, 796, 1802, 13, 198, 220, 220, 220, 4628, 29872, 2105, 62, 37266, 796, 5045, 29872, 2105, 10044, 4105, 7, 28664, 796, 288, 83, 11, 886, 62, 2435, 796, 886, 62, 2435, 8, 198, 220, 220, 220, 220, 198, 220, 220, 220, 18640, 796, 41798, 7, 19849, 796, 2746, 11, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4628, 29872, 2105, 62, 37266, 796, 4628, 29872, 2105, 62, 37266, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 1303, 525, 687, 262, 18640, 198, 220, 220, 220, 1057, 62, 14323, 1741, 0, 7, 14323, 1741, 8, 198, 220, 220, 220, 1441, 18640, 198, 437, 198, 198, 2, 31, 2435, 18640, 796, 337, 31125, 4061, 62, 6489, 2937, 62, 9288, 9783 ]
1.928336
1,214
# Automatically generated using Clang.jl wrap_c, version 0.0.0 using Compat const VULKAN_H_ = 1 const VK_VERSION_1_0 = 1 # Skipping MacroDefinition: VK_MAKE_VERSION ( major , minor , patch ) ( ( ( major ) << 22 ) | ( ( minor ) << 12 ) | ( patch ) ) # Skipping MacroDefinition: VK_API_VERSION_1_0 VK_MAKE_VERSION ( 1 , 0 , 0 ) # Skipping MacroDefinition: VK_VERSION_MAJOR ( version ) ( ( uint32_t ) ( version ) >> 22 ) # Skipping MacroDefinition: VK_VERSION_MINOR ( version ) ( ( ( uint32_t ) ( version ) >> 12 ) & 0x3ff ) # Skipping MacroDefinition: VK_VERSION_PATCH ( version ) ( ( uint32_t ) ( version ) & 0xfff ) const VK_HEADER_VERSION = 8 const VK_NULL_HANDLE = 0 # Skipping MacroDefinition: VK_DEFINE_HANDLE ( object ) typedef struct object ## _T * object ; # Skipping MacroDefinition: VK_DEFINE_NON_DISPATCHABLE_HANDLE ( object ) typedef struct object ## _T * object ; const VK_LOD_CLAMP_NONE = Float32(1000.0) const VK_REMAINING_MIP_LEVELS = ~(UInt32(0)) const VK_REMAINING_ARRAY_LAYERS = ~(UInt32(0)) const VK_WHOLE_SIZE = ~(UInt64(0)) const VK_ATTACHMENT_UNUSED = ~(UInt32(0)) const VK_TRUE = 1 const VK_FALSE = 0 const VK_QUEUE_FAMILY_IGNORED = ~(UInt32(0)) const VK_SUBPASS_EXTERNAL = ~(UInt32(0)) const VK_MAX_PHYSICAL_DEVICE_NAME_SIZE = 256 const VK_UUID_SIZE = 16 const VK_MAX_MEMORY_TYPES = 32 const VK_MAX_MEMORY_HEAPS = 16 const VK_MAX_EXTENSION_NAME_SIZE = 256 const VK_MAX_DESCRIPTION_SIZE = 256 const VK_KHR_surface = 1 const VK_KHR_SURFACE_SPEC_VERSION = 25 const VK_KHR_SURFACE_EXTENSION_NAME = "VK_KHR_surface" const VK_KHR_swapchain = 1 const VK_KHR_SWAPCHAIN_SPEC_VERSION = 67 const VK_KHR_SWAPCHAIN_EXTENSION_NAME = "VK_KHR_swapchain" const VK_KHR_display = 1 const VK_KHR_DISPLAY_SPEC_VERSION = 21 const VK_KHR_DISPLAY_EXTENSION_NAME = "VK_KHR_display" const VK_KHR_display_swapchain = 1 const VK_KHR_DISPLAY_SWAPCHAIN_SPEC_VERSION = 9 const VK_KHR_DISPLAY_SWAPCHAIN_EXTENSION_NAME = "VK_KHR_display_swapchain" const VK_KHR_xcb_surface = 1 const VK_KHR_XCB_SURFACE_SPEC_VERSION = 6 const VK_KHR_XCB_SURFACE_EXTENSION_NAME = "VK_KHR_xcb_surface" const VK_KHR_wayland_surface = 1 const VK_KHR_WAYLAND_SURFACE_SPEC_VERSION = 5 const VK_KHR_WAYLAND_SURFACE_EXTENSION_NAME = "VK_KHR_wayland_surface" const VK_KHR_mir_surface = 1 const VK_KHR_MIR_SURFACE_SPEC_VERSION = 4 const VK_KHR_MIR_SURFACE_EXTENSION_NAME = "VK_KHR_mir_surface" const VK_KHR_win32_surface = 1 const VK_KHR_WIN32_SURFACE_SPEC_VERSION = 5 const VK_KHR_WIN32_SURFACE_EXTENSION_NAME = "VK_KHR_win32_surface" const VK_KHR_sampler_mirror_clamp_to_edge = 1 const VK_KHR_SAMPLER_MIRROR_CLAMP_TO_EDGE_SPEC_VERSION = 1 const VK_KHR_SAMPLER_MIRROR_CLAMP_TO_EDGE_EXTENSION_NAME = "VK_KHR_sampler_mirror_clamp_to_edge" const VK_EXT_debug_report = 1 const VK_EXT_DEBUG_REPORT_SPEC_VERSION = 2 const VK_EXT_DEBUG_REPORT_EXTENSION_NAME = "VK_EXT_debug_report" @cenum(VkStructureType, VK_STRUCTURE_TYPE_APPLICATION_INFO = 0, VK_STRUCTURE_TYPE_INSTANCE_CREATE_INFO = 1, VK_STRUCTURE_TYPE_DEVICE_QUEUE_CREATE_INFO = 2, VK_STRUCTURE_TYPE_DEVICE_CREATE_INFO = 3, VK_STRUCTURE_TYPE_SUBMIT_INFO = 4, VK_STRUCTURE_TYPE_MEMORY_ALLOCATE_INFO = 5, VK_STRUCTURE_TYPE_MAPPED_MEMORY_RANGE = 6, VK_STRUCTURE_TYPE_BIND_SPARSE_INFO = 7, VK_STRUCTURE_TYPE_FENCE_CREATE_INFO = 8, VK_STRUCTURE_TYPE_SEMAPHORE_CREATE_INFO = 9, VK_STRUCTURE_TYPE_EVENT_CREATE_INFO = 10, VK_STRUCTURE_TYPE_QUERY_POOL_CREATE_INFO = 11, VK_STRUCTURE_TYPE_BUFFER_CREATE_INFO = 12, VK_STRUCTURE_TYPE_BUFFER_VIEW_CREATE_INFO = 13, VK_STRUCTURE_TYPE_IMAGE_CREATE_INFO = 14, VK_STRUCTURE_TYPE_IMAGE_VIEW_CREATE_INFO = 15, VK_STRUCTURE_TYPE_SHADER_MODULE_CREATE_INFO = 16, VK_STRUCTURE_TYPE_PIPELINE_CACHE_CREATE_INFO = 17, VK_STRUCTURE_TYPE_PIPELINE_SHADER_STAGE_CREATE_INFO = 18, VK_STRUCTURE_TYPE_PIPELINE_VERTEX_INPUT_STATE_CREATE_INFO = 19, VK_STRUCTURE_TYPE_PIPELINE_INPUT_ASSEMBLY_STATE_CREATE_INFO = 20, VK_STRUCTURE_TYPE_PIPELINE_TESSELLATION_STATE_CREATE_INFO = 21, VK_STRUCTURE_TYPE_PIPELINE_VIEWPORT_STATE_CREATE_INFO = 22, VK_STRUCTURE_TYPE_PIPELINE_RASTERIZATION_STATE_CREATE_INFO = 23, VK_STRUCTURE_TYPE_PIPELINE_MULTISAMPLE_STATE_CREATE_INFO = 24, VK_STRUCTURE_TYPE_PIPELINE_DEPTH_STENCIL_STATE_CREATE_INFO = 25, VK_STRUCTURE_TYPE_PIPELINE_COLOR_BLEND_STATE_CREATE_INFO = 26, VK_STRUCTURE_TYPE_PIPELINE_DYNAMIC_STATE_CREATE_INFO = 27, VK_STRUCTURE_TYPE_GRAPHICS_PIPELINE_CREATE_INFO = 28, VK_STRUCTURE_TYPE_COMPUTE_PIPELINE_CREATE_INFO = 29, VK_STRUCTURE_TYPE_PIPELINE_LAYOUT_CREATE_INFO = 30, VK_STRUCTURE_TYPE_SAMPLER_CREATE_INFO = 31, VK_STRUCTURE_TYPE_DESCRIPTOR_SET_LAYOUT_CREATE_INFO = 32, VK_STRUCTURE_TYPE_DESCRIPTOR_POOL_CREATE_INFO = 33, VK_STRUCTURE_TYPE_DESCRIPTOR_SET_ALLOCATE_INFO = 34, VK_STRUCTURE_TYPE_WRITE_DESCRIPTOR_SET = 35, VK_STRUCTURE_TYPE_COPY_DESCRIPTOR_SET = 36, VK_STRUCTURE_TYPE_FRAMEBUFFER_CREATE_INFO = 37, VK_STRUCTURE_TYPE_RENDER_PASS_CREATE_INFO = 38, VK_STRUCTURE_TYPE_COMMAND_POOL_CREATE_INFO = 39, VK_STRUCTURE_TYPE_COMMAND_BUFFER_ALLOCATE_INFO = 40, VK_STRUCTURE_TYPE_COMMAND_BUFFER_INHERITANCE_INFO = 41, VK_STRUCTURE_TYPE_COMMAND_BUFFER_BEGIN_INFO = 42, VK_STRUCTURE_TYPE_RENDER_PASS_BEGIN_INFO = 43, VK_STRUCTURE_TYPE_BUFFER_MEMORY_BARRIER = 44, VK_STRUCTURE_TYPE_IMAGE_MEMORY_BARRIER = 45, VK_STRUCTURE_TYPE_MEMORY_BARRIER = 46, VK_STRUCTURE_TYPE_LOADER_INSTANCE_CREATE_INFO = 47, VK_STRUCTURE_TYPE_LOADER_DEVICE_CREATE_INFO = 48, VK_STRUCTURE_TYPE_SWAPCHAIN_CREATE_INFO_KHR = 1000001000, VK_STRUCTURE_TYPE_PRESENT_INFO_KHR = 1000001001, VK_STRUCTURE_TYPE_DISPLAY_MODE_CREATE_INFO_KHR = 1000002000, VK_STRUCTURE_TYPE_DISPLAY_SURFACE_CREATE_INFO_KHR = 1000002001, VK_STRUCTURE_TYPE_DISPLAY_PRESENT_INFO_KHR = 1000003000, VK_STRUCTURE_TYPE_XLIB_SURFACE_CREATE_INFO_KHR = 1000004000, VK_STRUCTURE_TYPE_XCB_SURFACE_CREATE_INFO_KHR = 1000005000, VK_STRUCTURE_TYPE_WAYLAND_SURFACE_CREATE_INFO_KHR = 1000006000, VK_STRUCTURE_TYPE_MIR_SURFACE_CREATE_INFO_KHR = 1000007000, VK_STRUCTURE_TYPE_ANDROID_SURFACE_CREATE_INFO_KHR = 1000008000, VK_STRUCTURE_TYPE_WIN32_SURFACE_CREATE_INFO_KHR = 1000009000, VK_STRUCTURE_TYPE_DEBUG_REPORT_CALLBACK_CREATE_INFO_EXT = 1000011000, VK_STRUCTURE_TYPE_BEGIN_RANGE = 0, VK_STRUCTURE_TYPE_END_RANGE = 48, VK_STRUCTURE_TYPE_RANGE_SIZE = 49, VK_STRUCTURE_TYPE_MAX_ENUM = 2147483647, ) const VK_STRUCTURE_TYPE_DEBUG_REPORT_CREATE_INFO_EXT = VK_STRUCTURE_TYPE_DEBUG_REPORT_CALLBACK_CREATE_INFO_EXT const VK_NV_glsl_shader = 1 const VK_NV_GLSL_SHADER_SPEC_VERSION = 1 const VK_NV_GLSL_SHADER_EXTENSION_NAME = "VK_NV_glsl_shader" const VK_IMG_filter_cubic = 1 const VK_IMG_FILTER_CUBIC_SPEC_VERSION = 1 const VK_IMG_FILTER_CUBIC_EXTENSION_NAME = "VK_IMG_filter_cubic" typealias VkFlags UInt32 typealias VkBool32 UInt32 typealias VkDeviceSize UInt64 typealias VkSampleMask UInt32 typealias VkInstance_T Void typealias VkInstance Ptr{VkInstance_T} typealias VkPhysicalDevice_T Void typealias VkPhysicalDevice Ptr{VkPhysicalDevice_T} typealias VkDevice_T Void typealias VkDevice Ptr{VkDevice_T} typealias VkQueue_T Void typealias VkQueue Ptr{VkQueue_T} typealias VkSemaphore_T Void typealias VkSemaphore Ptr{VkSemaphore_T} typealias VkCommandBuffer_T Void typealias VkCommandBuffer Ptr{VkCommandBuffer_T} typealias VkFence_T Void typealias VkFence Ptr{VkFence_T} typealias VkDeviceMemory_T Void typealias VkDeviceMemory Ptr{VkDeviceMemory_T} typealias VkBuffer_T Void typealias VkBuffer Ptr{VkBuffer_T} typealias VkImage_T Void typealias VkImage Ptr{VkImage_T} typealias VkEvent_T Void typealias VkEvent Ptr{VkEvent_T} typealias VkQueryPool_T Void typealias VkQueryPool Ptr{VkQueryPool_T} typealias VkBufferView_T Void typealias VkBufferView Ptr{VkBufferView_T} typealias VkImageView_T Void typealias VkImageView Ptr{VkImageView_T} typealias VkShaderModule_T Void typealias VkShaderModule Ptr{VkShaderModule_T} typealias VkPipelineCache_T Void typealias VkPipelineCache Ptr{VkPipelineCache_T} typealias VkPipelineLayout_T Void typealias VkPipelineLayout Ptr{VkPipelineLayout_T} typealias VkRenderPass_T Void typealias VkRenderPass Ptr{VkRenderPass_T} typealias VkPipeline_T Void typealias VkPipeline Ptr{VkPipeline_T} typealias VkDescriptorSetLayout_T Void typealias VkDescriptorSetLayout Ptr{VkDescriptorSetLayout_T} typealias VkSampler_T Void typealias VkSampler Ptr{VkSampler_T} typealias VkDescriptorPool_T Void typealias VkDescriptorPool Ptr{VkDescriptorPool_T} typealias VkDescriptorSet_T Void typealias VkDescriptorSet Ptr{VkDescriptorSet_T} typealias VkFramebuffer_T Void typealias VkFramebuffer Ptr{VkFramebuffer_T} typealias VkCommandPool_T Void typealias VkCommandPool Ptr{VkCommandPool_T} @cenum(VkPipelineCacheHeaderVersion, VK_PIPELINE_CACHE_HEADER_VERSION_ONE = 1, VK_PIPELINE_CACHE_HEADER_VERSION_BEGIN_RANGE = 1, VK_PIPELINE_CACHE_HEADER_VERSION_END_RANGE = 1, VK_PIPELINE_CACHE_HEADER_VERSION_RANGE_SIZE = 1, VK_PIPELINE_CACHE_HEADER_VERSION_MAX_ENUM = 2147483647, ) @cenum(VkResult, VK_SUCCESS = 0, VK_NOT_READY = 1, VK_TIMEOUT = 2, VK_EVENT_SET = 3, VK_EVENT_RESET = 4, VK_INCOMPLETE = 5, VK_ERROR_OUT_OF_HOST_MEMORY = -1, VK_ERROR_OUT_OF_DEVICE_MEMORY = -2, VK_ERROR_INITIALIZATION_FAILED = -3, VK_ERROR_DEVICE_LOST = -4, VK_ERROR_MEMORY_MAP_FAILED = -5, VK_ERROR_LAYER_NOT_PRESENT = -6, VK_ERROR_EXTENSION_NOT_PRESENT = -7, VK_ERROR_FEATURE_NOT_PRESENT = -8, VK_ERROR_INCOMPATIBLE_DRIVER = -9, VK_ERROR_TOO_MANY_OBJECTS = -10, VK_ERROR_FORMAT_NOT_SUPPORTED = -11, VK_ERROR_SURFACE_LOST_KHR = -1000000000, VK_ERROR_NATIVE_WINDOW_IN_USE_KHR = -1000000001, VK_SUBOPTIMAL_KHR = 1000001003, VK_ERROR_OUT_OF_DATE_KHR = -1000001004, VK_ERROR_INCOMPATIBLE_DISPLAY_KHR = -1000003001, VK_ERROR_VALIDATION_FAILED_EXT = -1000011001, VK_ERROR_INVALID_SHADER_NV = -1000012000, VK_RESULT_BEGIN_RANGE = -11, VK_RESULT_END_RANGE = 5, VK_RESULT_RANGE_SIZE = 17, VK_RESULT_MAX_ENUM = 2147483647, ) @cenum(VkSystemAllocationScope, VK_SYSTEM_ALLOCATION_SCOPE_COMMAND = 0, VK_SYSTEM_ALLOCATION_SCOPE_OBJECT = 1, VK_SYSTEM_ALLOCATION_SCOPE_CACHE = 2, VK_SYSTEM_ALLOCATION_SCOPE_DEVICE = 3, VK_SYSTEM_ALLOCATION_SCOPE_INSTANCE = 4, VK_SYSTEM_ALLOCATION_SCOPE_BEGIN_RANGE = 0, VK_SYSTEM_ALLOCATION_SCOPE_END_RANGE = 4, VK_SYSTEM_ALLOCATION_SCOPE_RANGE_SIZE = 5, VK_SYSTEM_ALLOCATION_SCOPE_MAX_ENUM = 2147483647, ) @cenum(VkInternalAllocationType, VK_INTERNAL_ALLOCATION_TYPE_EXECUTABLE = 0, VK_INTERNAL_ALLOCATION_TYPE_BEGIN_RANGE = 0, VK_INTERNAL_ALLOCATION_TYPE_END_RANGE = 0, VK_INTERNAL_ALLOCATION_TYPE_RANGE_SIZE = 1, VK_INTERNAL_ALLOCATION_TYPE_MAX_ENUM = 2147483647, ) @cenum(VkFormat, VK_FORMAT_UNDEFINED = 0, VK_FORMAT_R4G4_UNORM_PACK8 = 1, VK_FORMAT_R4G4B4A4_UNORM_PACK16 = 2, VK_FORMAT_B4G4R4A4_UNORM_PACK16 = 3, VK_FORMAT_R5G6B5_UNORM_PACK16 = 4, VK_FORMAT_B5G6R5_UNORM_PACK16 = 5, VK_FORMAT_R5G5B5A1_UNORM_PACK16 = 6, VK_FORMAT_B5G5R5A1_UNORM_PACK16 = 7, VK_FORMAT_A1R5G5B5_UNORM_PACK16 = 8, VK_FORMAT_R8_UNORM = 9, VK_FORMAT_R8_SNORM = 10, VK_FORMAT_R8_USCALED = 11, VK_FORMAT_R8_SSCALED = 12, VK_FORMAT_R8_UINT = 13, VK_FORMAT_R8_SINT = 14, VK_FORMAT_R8_SRGB = 15, VK_FORMAT_R8G8_UNORM = 16, VK_FORMAT_R8G8_SNORM = 17, VK_FORMAT_R8G8_USCALED = 18, VK_FORMAT_R8G8_SSCALED = 19, VK_FORMAT_R8G8_UINT = 20, VK_FORMAT_R8G8_SINT = 21, VK_FORMAT_R8G8_SRGB = 22, VK_FORMAT_R8G8B8_UNORM = 23, VK_FORMAT_R8G8B8_SNORM = 24, VK_FORMAT_R8G8B8_USCALED = 25, VK_FORMAT_R8G8B8_SSCALED = 26, VK_FORMAT_R8G8B8_UINT = 27, VK_FORMAT_R8G8B8_SINT = 28, VK_FORMAT_R8G8B8_SRGB = 29, VK_FORMAT_B8G8R8_UNORM = 30, VK_FORMAT_B8G8R8_SNORM = 31, VK_FORMAT_B8G8R8_USCALED = 32, VK_FORMAT_B8G8R8_SSCALED = 33, VK_FORMAT_B8G8R8_UINT = 34, VK_FORMAT_B8G8R8_SINT = 35, VK_FORMAT_B8G8R8_SRGB = 36, VK_FORMAT_R8G8B8A8_UNORM = 37, VK_FORMAT_R8G8B8A8_SNORM = 38, VK_FORMAT_R8G8B8A8_USCALED = 39, VK_FORMAT_R8G8B8A8_SSCALED = 40, VK_FORMAT_R8G8B8A8_UINT = 41, VK_FORMAT_R8G8B8A8_SINT = 42, VK_FORMAT_R8G8B8A8_SRGB = 43, VK_FORMAT_B8G8R8A8_UNORM = 44, VK_FORMAT_B8G8R8A8_SNORM = 45, VK_FORMAT_B8G8R8A8_USCALED = 46, VK_FORMAT_B8G8R8A8_SSCALED = 47, VK_FORMAT_B8G8R8A8_UINT = 48, VK_FORMAT_B8G8R8A8_SINT = 49, VK_FORMAT_B8G8R8A8_SRGB = 50, VK_FORMAT_A8B8G8R8_UNORM_PACK32 = 51, VK_FORMAT_A8B8G8R8_SNORM_PACK32 = 52, VK_FORMAT_A8B8G8R8_USCALED_PACK32 = 53, VK_FORMAT_A8B8G8R8_SSCALED_PACK32 = 54, VK_FORMAT_A8B8G8R8_UINT_PACK32 = 55, VK_FORMAT_A8B8G8R8_SINT_PACK32 = 56, VK_FORMAT_A8B8G8R8_SRGB_PACK32 = 57, VK_FORMAT_A2R10G10B10_UNORM_PACK32 = 58, VK_FORMAT_A2R10G10B10_SNORM_PACK32 = 59, VK_FORMAT_A2R10G10B10_USCALED_PACK32 = 60, VK_FORMAT_A2R10G10B10_SSCALED_PACK32 = 61, VK_FORMAT_A2R10G10B10_UINT_PACK32 = 62, VK_FORMAT_A2R10G10B10_SINT_PACK32 = 63, VK_FORMAT_A2B10G10R10_UNORM_PACK32 = 64, VK_FORMAT_A2B10G10R10_SNORM_PACK32 = 65, VK_FORMAT_A2B10G10R10_USCALED_PACK32 = 66, VK_FORMAT_A2B10G10R10_SSCALED_PACK32 = 67, VK_FORMAT_A2B10G10R10_UINT_PACK32 = 68, VK_FORMAT_A2B10G10R10_SINT_PACK32 = 69, VK_FORMAT_R16_UNORM = 70, VK_FORMAT_R16_SNORM = 71, VK_FORMAT_R16_USCALED = 72, VK_FORMAT_R16_SSCALED = 73, VK_FORMAT_R16_UINT = 74, VK_FORMAT_R16_SINT = 75, VK_FORMAT_R16_SFLOAT = 76, VK_FORMAT_R16G16_UNORM = 77, VK_FORMAT_R16G16_SNORM = 78, VK_FORMAT_R16G16_USCALED = 79, VK_FORMAT_R16G16_SSCALED = 80, VK_FORMAT_R16G16_UINT = 81, VK_FORMAT_R16G16_SINT = 82, VK_FORMAT_R16G16_SFLOAT = 83, VK_FORMAT_R16G16B16_UNORM = 84, VK_FORMAT_R16G16B16_SNORM = 85, VK_FORMAT_R16G16B16_USCALED = 86, VK_FORMAT_R16G16B16_SSCALED = 87, VK_FORMAT_R16G16B16_UINT = 88, VK_FORMAT_R16G16B16_SINT = 89, VK_FORMAT_R16G16B16_SFLOAT = 90, VK_FORMAT_R16G16B16A16_UNORM = 91, VK_FORMAT_R16G16B16A16_SNORM = 92, VK_FORMAT_R16G16B16A16_USCALED = 93, VK_FORMAT_R16G16B16A16_SSCALED = 94, VK_FORMAT_R16G16B16A16_UINT = 95, VK_FORMAT_R16G16B16A16_SINT = 96, VK_FORMAT_R16G16B16A16_SFLOAT = 97, VK_FORMAT_R32_UINT = 98, VK_FORMAT_R32_SINT = 99, VK_FORMAT_R32_SFLOAT = 100, VK_FORMAT_R32G32_UINT = 101, VK_FORMAT_R32G32_SINT = 102, VK_FORMAT_R32G32_SFLOAT = 103, VK_FORMAT_R32G32B32_UINT = 104, VK_FORMAT_R32G32B32_SINT = 105, VK_FORMAT_R32G32B32_SFLOAT = 106, VK_FORMAT_R32G32B32A32_UINT = 107, VK_FORMAT_R32G32B32A32_SINT = 108, VK_FORMAT_R32G32B32A32_SFLOAT = 109, VK_FORMAT_R64_UINT = 110, VK_FORMAT_R64_SINT = 111, VK_FORMAT_R64_SFLOAT = 112, VK_FORMAT_R64G64_UINT = 113, VK_FORMAT_R64G64_SINT = 114, VK_FORMAT_R64G64_SFLOAT = 115, VK_FORMAT_R64G64B64_UINT = 116, VK_FORMAT_R64G64B64_SINT = 117, VK_FORMAT_R64G64B64_SFLOAT = 118, VK_FORMAT_R64G64B64A64_UINT = 119, VK_FORMAT_R64G64B64A64_SINT = 120, VK_FORMAT_R64G64B64A64_SFLOAT = 121, VK_FORMAT_B10G11R11_UFLOAT_PACK32 = 122, VK_FORMAT_E5B9G9R9_UFLOAT_PACK32 = 123, VK_FORMAT_D16_UNORM = 124, VK_FORMAT_X8_D24_UNORM_PACK32 = 125, VK_FORMAT_D32_SFLOAT = 126, VK_FORMAT_S8_UINT = 127, VK_FORMAT_D16_UNORM_S8_UINT = 128, VK_FORMAT_D24_UNORM_S8_UINT = 129, VK_FORMAT_D32_SFLOAT_S8_UINT = 130, VK_FORMAT_BC1_RGB_UNORM_BLOCK = 131, VK_FORMAT_BC1_RGB_SRGB_BLOCK = 132, VK_FORMAT_BC1_RGBA_UNORM_BLOCK = 133, VK_FORMAT_BC1_RGBA_SRGB_BLOCK = 134, VK_FORMAT_BC2_UNORM_BLOCK = 135, VK_FORMAT_BC2_SRGB_BLOCK = 136, VK_FORMAT_BC3_UNORM_BLOCK = 137, VK_FORMAT_BC3_SRGB_BLOCK = 138, VK_FORMAT_BC4_UNORM_BLOCK = 139, VK_FORMAT_BC4_SNORM_BLOCK = 140, VK_FORMAT_BC5_UNORM_BLOCK = 141, VK_FORMAT_BC5_SNORM_BLOCK = 142, VK_FORMAT_BC6H_UFLOAT_BLOCK = 143, VK_FORMAT_BC6H_SFLOAT_BLOCK = 144, VK_FORMAT_BC7_UNORM_BLOCK = 145, VK_FORMAT_BC7_SRGB_BLOCK = 146, VK_FORMAT_ETC2_R8G8B8_UNORM_BLOCK = 147, VK_FORMAT_ETC2_R8G8B8_SRGB_BLOCK = 148, VK_FORMAT_ETC2_R8G8B8A1_UNORM_BLOCK = 149, VK_FORMAT_ETC2_R8G8B8A1_SRGB_BLOCK = 150, VK_FORMAT_ETC2_R8G8B8A8_UNORM_BLOCK = 151, VK_FORMAT_ETC2_R8G8B8A8_SRGB_BLOCK = 152, VK_FORMAT_EAC_R11_UNORM_BLOCK = 153, VK_FORMAT_EAC_R11_SNORM_BLOCK = 154, VK_FORMAT_EAC_R11G11_UNORM_BLOCK = 155, VK_FORMAT_EAC_R11G11_SNORM_BLOCK = 156, VK_FORMAT_ASTC_4x4_UNORM_BLOCK = 157, VK_FORMAT_ASTC_4x4_SRGB_BLOCK = 158, VK_FORMAT_ASTC_5x4_UNORM_BLOCK = 159, VK_FORMAT_ASTC_5x4_SRGB_BLOCK = 160, VK_FORMAT_ASTC_5x5_UNORM_BLOCK = 161, VK_FORMAT_ASTC_5x5_SRGB_BLOCK = 162, VK_FORMAT_ASTC_6x5_UNORM_BLOCK = 163, VK_FORMAT_ASTC_6x5_SRGB_BLOCK = 164, VK_FORMAT_ASTC_6x6_UNORM_BLOCK = 165, VK_FORMAT_ASTC_6x6_SRGB_BLOCK = 166, VK_FORMAT_ASTC_8x5_UNORM_BLOCK = 167, VK_FORMAT_ASTC_8x5_SRGB_BLOCK = 168, VK_FORMAT_ASTC_8x6_UNORM_BLOCK = 169, VK_FORMAT_ASTC_8x6_SRGB_BLOCK = 170, VK_FORMAT_ASTC_8x8_UNORM_BLOCK = 171, VK_FORMAT_ASTC_8x8_SRGB_BLOCK = 172, VK_FORMAT_ASTC_10x5_UNORM_BLOCK = 173, VK_FORMAT_ASTC_10x5_SRGB_BLOCK = 174, VK_FORMAT_ASTC_10x6_UNORM_BLOCK = 175, VK_FORMAT_ASTC_10x6_SRGB_BLOCK = 176, VK_FORMAT_ASTC_10x8_UNORM_BLOCK = 177, VK_FORMAT_ASTC_10x8_SRGB_BLOCK = 178, VK_FORMAT_ASTC_10x10_UNORM_BLOCK = 179, VK_FORMAT_ASTC_10x10_SRGB_BLOCK = 180, VK_FORMAT_ASTC_12x10_UNORM_BLOCK = 181, VK_FORMAT_ASTC_12x10_SRGB_BLOCK = 182, VK_FORMAT_ASTC_12x12_UNORM_BLOCK = 183, VK_FORMAT_ASTC_12x12_SRGB_BLOCK = 184, VK_FORMAT_BEGIN_RANGE = 0, VK_FORMAT_END_RANGE = 184, VK_FORMAT_RANGE_SIZE = 185, VK_FORMAT_MAX_ENUM = 2147483647, ) @cenum(VkImageType, VK_IMAGE_TYPE_1D = 0, VK_IMAGE_TYPE_2D = 1, VK_IMAGE_TYPE_3D = 2, VK_IMAGE_TYPE_BEGIN_RANGE = 0, VK_IMAGE_TYPE_END_RANGE = 2, VK_IMAGE_TYPE_RANGE_SIZE = 3, VK_IMAGE_TYPE_MAX_ENUM = 2147483647, ) @cenum(VkImageTiling, VK_IMAGE_TILING_OPTIMAL = 0, VK_IMAGE_TILING_LINEAR = 1, VK_IMAGE_TILING_BEGIN_RANGE = 0, VK_IMAGE_TILING_END_RANGE = 1, VK_IMAGE_TILING_RANGE_SIZE = 2, VK_IMAGE_TILING_MAX_ENUM = 2147483647, ) @cenum(VkPhysicalDeviceType, VK_PHYSICAL_DEVICE_TYPE_OTHER = 0, VK_PHYSICAL_DEVICE_TYPE_INTEGRATED_GPU = 1, VK_PHYSICAL_DEVICE_TYPE_DISCRETE_GPU = 2, VK_PHYSICAL_DEVICE_TYPE_VIRTUAL_GPU = 3, VK_PHYSICAL_DEVICE_TYPE_CPU = 4, VK_PHYSICAL_DEVICE_TYPE_BEGIN_RANGE = 0, VK_PHYSICAL_DEVICE_TYPE_END_RANGE = 4, VK_PHYSICAL_DEVICE_TYPE_RANGE_SIZE = 5, VK_PHYSICAL_DEVICE_TYPE_MAX_ENUM = 2147483647, ) @cenum(VkQueryType, VK_QUERY_TYPE_OCCLUSION = 0, VK_QUERY_TYPE_PIPELINE_STATISTICS = 1, VK_QUERY_TYPE_TIMESTAMP = 2, VK_QUERY_TYPE_BEGIN_RANGE = 0, VK_QUERY_TYPE_END_RANGE = 2, VK_QUERY_TYPE_RANGE_SIZE = 3, VK_QUERY_TYPE_MAX_ENUM = 2147483647, ) @cenum(VkSharingMode, VK_SHARING_MODE_EXCLUSIVE = 0, VK_SHARING_MODE_CONCURRENT = 1, VK_SHARING_MODE_BEGIN_RANGE = 0, VK_SHARING_MODE_END_RANGE = 1, VK_SHARING_MODE_RANGE_SIZE = 2, VK_SHARING_MODE_MAX_ENUM = 2147483647, ) @cenum(VkImageLayout, VK_IMAGE_LAYOUT_UNDEFINED = 0, VK_IMAGE_LAYOUT_GENERAL = 1, VK_IMAGE_LAYOUT_COLOR_ATTACHMENT_OPTIMAL = 2, VK_IMAGE_LAYOUT_DEPTH_STENCIL_ATTACHMENT_OPTIMAL = 3, VK_IMAGE_LAYOUT_DEPTH_STENCIL_READ_ONLY_OPTIMAL = 4, VK_IMAGE_LAYOUT_SHADER_READ_ONLY_OPTIMAL = 5, VK_IMAGE_LAYOUT_TRANSFER_SRC_OPTIMAL = 6, VK_IMAGE_LAYOUT_TRANSFER_DST_OPTIMAL = 7, VK_IMAGE_LAYOUT_PREINITIALIZED = 8, VK_IMAGE_LAYOUT_PRESENT_SRC_KHR = 1000001002, VK_IMAGE_LAYOUT_BEGIN_RANGE = 0, VK_IMAGE_LAYOUT_END_RANGE = 8, VK_IMAGE_LAYOUT_RANGE_SIZE = 9, VK_IMAGE_LAYOUT_MAX_ENUM = 2147483647, ) @cenum(VkImageViewType, VK_IMAGE_VIEW_TYPE_1D = 0, VK_IMAGE_VIEW_TYPE_2D = 1, VK_IMAGE_VIEW_TYPE_3D = 2, VK_IMAGE_VIEW_TYPE_CUBE = 3, VK_IMAGE_VIEW_TYPE_1D_ARRAY = 4, VK_IMAGE_VIEW_TYPE_2D_ARRAY = 5, VK_IMAGE_VIEW_TYPE_CUBE_ARRAY = 6, VK_IMAGE_VIEW_TYPE_BEGIN_RANGE = 0, VK_IMAGE_VIEW_TYPE_END_RANGE = 6, VK_IMAGE_VIEW_TYPE_RANGE_SIZE = 7, VK_IMAGE_VIEW_TYPE_MAX_ENUM = 2147483647, ) @cenum(VkComponentSwizzle, VK_COMPONENT_SWIZZLE_IDENTITY = 0, VK_COMPONENT_SWIZZLE_ZERO = 1, VK_COMPONENT_SWIZZLE_ONE = 2, VK_COMPONENT_SWIZZLE_R = 3, VK_COMPONENT_SWIZZLE_G = 4, VK_COMPONENT_SWIZZLE_B = 5, VK_COMPONENT_SWIZZLE_A = 6, VK_COMPONENT_SWIZZLE_BEGIN_RANGE = 0, VK_COMPONENT_SWIZZLE_END_RANGE = 6, VK_COMPONENT_SWIZZLE_RANGE_SIZE = 7, VK_COMPONENT_SWIZZLE_MAX_ENUM = 2147483647, ) @cenum(VkVertexInputRate, VK_VERTEX_INPUT_RATE_VERTEX = 0, VK_VERTEX_INPUT_RATE_INSTANCE = 1, VK_VERTEX_INPUT_RATE_BEGIN_RANGE = 0, VK_VERTEX_INPUT_RATE_END_RANGE = 1, VK_VERTEX_INPUT_RATE_RANGE_SIZE = 2, VK_VERTEX_INPUT_RATE_MAX_ENUM = 2147483647, ) @cenum(VkPrimitiveTopology, VK_PRIMITIVE_TOPOLOGY_POINT_LIST = 0, VK_PRIMITIVE_TOPOLOGY_LINE_LIST = 1, VK_PRIMITIVE_TOPOLOGY_LINE_STRIP = 2, VK_PRIMITIVE_TOPOLOGY_TRIANGLE_LIST = 3, VK_PRIMITIVE_TOPOLOGY_TRIANGLE_STRIP = 4, VK_PRIMITIVE_TOPOLOGY_TRIANGLE_FAN = 5, VK_PRIMITIVE_TOPOLOGY_LINE_LIST_WITH_ADJACENCY = 6, VK_PRIMITIVE_TOPOLOGY_LINE_STRIP_WITH_ADJACENCY = 7, VK_PRIMITIVE_TOPOLOGY_TRIANGLE_LIST_WITH_ADJACENCY = 8, VK_PRIMITIVE_TOPOLOGY_TRIANGLE_STRIP_WITH_ADJACENCY = 9, VK_PRIMITIVE_TOPOLOGY_PATCH_LIST = 10, VK_PRIMITIVE_TOPOLOGY_BEGIN_RANGE = 0, VK_PRIMITIVE_TOPOLOGY_END_RANGE = 10, VK_PRIMITIVE_TOPOLOGY_RANGE_SIZE = 11, VK_PRIMITIVE_TOPOLOGY_MAX_ENUM = 2147483647, ) @cenum(VkPolygonMode, VK_POLYGON_MODE_FILL = 0, VK_POLYGON_MODE_LINE = 1, VK_POLYGON_MODE_POINT = 2, VK_POLYGON_MODE_BEGIN_RANGE = 0, VK_POLYGON_MODE_END_RANGE = 2, VK_POLYGON_MODE_RANGE_SIZE = 3, VK_POLYGON_MODE_MAX_ENUM = 2147483647, ) @cenum(VkFrontFace, VK_FRONT_FACE_COUNTER_CLOCKWISE = 0, VK_FRONT_FACE_CLOCKWISE = 1, VK_FRONT_FACE_BEGIN_RANGE = 0, VK_FRONT_FACE_END_RANGE = 1, VK_FRONT_FACE_RANGE_SIZE = 2, VK_FRONT_FACE_MAX_ENUM = 2147483647, ) @cenum(VkCompareOp, VK_COMPARE_OP_NEVER = 0, VK_COMPARE_OP_LESS = 1, VK_COMPARE_OP_EQUAL = 2, VK_COMPARE_OP_LESS_OR_EQUAL = 3, VK_COMPARE_OP_GREATER = 4, VK_COMPARE_OP_NOT_EQUAL = 5, VK_COMPARE_OP_GREATER_OR_EQUAL = 6, VK_COMPARE_OP_ALWAYS = 7, VK_COMPARE_OP_BEGIN_RANGE = 0, VK_COMPARE_OP_END_RANGE = 7, VK_COMPARE_OP_RANGE_SIZE = 8, VK_COMPARE_OP_MAX_ENUM = 2147483647, ) @cenum(VkStencilOp, VK_STENCIL_OP_KEEP = 0, VK_STENCIL_OP_ZERO = 1, VK_STENCIL_OP_REPLACE = 2, VK_STENCIL_OP_INCREMENT_AND_CLAMP = 3, VK_STENCIL_OP_DECREMENT_AND_CLAMP = 4, VK_STENCIL_OP_INVERT = 5, VK_STENCIL_OP_INCREMENT_AND_WRAP = 6, VK_STENCIL_OP_DECREMENT_AND_WRAP = 7, VK_STENCIL_OP_BEGIN_RANGE = 0, VK_STENCIL_OP_END_RANGE = 7, VK_STENCIL_OP_RANGE_SIZE = 8, VK_STENCIL_OP_MAX_ENUM = 2147483647, ) @cenum(VkLogicOp, VK_LOGIC_OP_CLEAR = 0, VK_LOGIC_OP_AND = 1, VK_LOGIC_OP_AND_REVERSE = 2, VK_LOGIC_OP_COPY = 3, VK_LOGIC_OP_AND_INVERTED = 4, VK_LOGIC_OP_NO_OP = 5, VK_LOGIC_OP_XOR = 6, VK_LOGIC_OP_OR = 7, VK_LOGIC_OP_NOR = 8, VK_LOGIC_OP_EQUIVALENT = 9, VK_LOGIC_OP_INVERT = 10, VK_LOGIC_OP_OR_REVERSE = 11, VK_LOGIC_OP_COPY_INVERTED = 12, VK_LOGIC_OP_OR_INVERTED = 13, VK_LOGIC_OP_NAND = 14, VK_LOGIC_OP_SET = 15, VK_LOGIC_OP_BEGIN_RANGE = 0, VK_LOGIC_OP_END_RANGE = 15, VK_LOGIC_OP_RANGE_SIZE = 16, VK_LOGIC_OP_MAX_ENUM = 2147483647, ) @cenum(VkBlendFactor, VK_BLEND_FACTOR_ZERO = 0, VK_BLEND_FACTOR_ONE = 1, VK_BLEND_FACTOR_SRC_COLOR = 2, VK_BLEND_FACTOR_ONE_MINUS_SRC_COLOR = 3, VK_BLEND_FACTOR_DST_COLOR = 4, VK_BLEND_FACTOR_ONE_MINUS_DST_COLOR = 5, VK_BLEND_FACTOR_SRC_ALPHA = 6, VK_BLEND_FACTOR_ONE_MINUS_SRC_ALPHA = 7, VK_BLEND_FACTOR_DST_ALPHA = 8, VK_BLEND_FACTOR_ONE_MINUS_DST_ALPHA = 9, VK_BLEND_FACTOR_CONSTANT_COLOR = 10, VK_BLEND_FACTOR_ONE_MINUS_CONSTANT_COLOR = 11, VK_BLEND_FACTOR_CONSTANT_ALPHA = 12, VK_BLEND_FACTOR_ONE_MINUS_CONSTANT_ALPHA = 13, VK_BLEND_FACTOR_SRC_ALPHA_SATURATE = 14, VK_BLEND_FACTOR_SRC1_COLOR = 15, VK_BLEND_FACTOR_ONE_MINUS_SRC1_COLOR = 16, VK_BLEND_FACTOR_SRC1_ALPHA = 17, VK_BLEND_FACTOR_ONE_MINUS_SRC1_ALPHA = 18, VK_BLEND_FACTOR_BEGIN_RANGE = 0, VK_BLEND_FACTOR_END_RANGE = 18, VK_BLEND_FACTOR_RANGE_SIZE = 19, VK_BLEND_FACTOR_MAX_ENUM = 2147483647, ) @cenum(VkBlendOp, VK_BLEND_OP_ADD = 0, VK_BLEND_OP_SUBTRACT = 1, VK_BLEND_OP_REVERSE_SUBTRACT = 2, VK_BLEND_OP_MIN = 3, VK_BLEND_OP_MAX = 4, VK_BLEND_OP_BEGIN_RANGE = 0, VK_BLEND_OP_END_RANGE = 4, VK_BLEND_OP_RANGE_SIZE = 5, VK_BLEND_OP_MAX_ENUM = 2147483647, ) @cenum(VkDynamicState, VK_DYNAMIC_STATE_VIEWPORT = 0, VK_DYNAMIC_STATE_SCISSOR = 1, VK_DYNAMIC_STATE_LINE_WIDTH = 2, VK_DYNAMIC_STATE_DEPTH_BIAS = 3, VK_DYNAMIC_STATE_BLEND_CONSTANTS = 4, VK_DYNAMIC_STATE_DEPTH_BOUNDS = 5, VK_DYNAMIC_STATE_STENCIL_COMPARE_MASK = 6, VK_DYNAMIC_STATE_STENCIL_WRITE_MASK = 7, VK_DYNAMIC_STATE_STENCIL_REFERENCE = 8, VK_DYNAMIC_STATE_BEGIN_RANGE = 0, VK_DYNAMIC_STATE_END_RANGE = 8, VK_DYNAMIC_STATE_RANGE_SIZE = 9, VK_DYNAMIC_STATE_MAX_ENUM = 2147483647, ) @cenum(VkFilter, VK_FILTER_NEAREST = 0, VK_FILTER_LINEAR = 1, VK_FILTER_CUBIC_IMG = 1000015000, VK_FILTER_BEGIN_RANGE = 0, VK_FILTER_END_RANGE = 1, VK_FILTER_RANGE_SIZE = 2, VK_FILTER_MAX_ENUM = 2147483647, ) @cenum(VkSamplerMipmapMode, VK_SAMPLER_MIPMAP_MODE_NEAREST = 0, VK_SAMPLER_MIPMAP_MODE_LINEAR = 1, VK_SAMPLER_MIPMAP_MODE_BEGIN_RANGE = 0, VK_SAMPLER_MIPMAP_MODE_END_RANGE = 1, VK_SAMPLER_MIPMAP_MODE_RANGE_SIZE = 2, VK_SAMPLER_MIPMAP_MODE_MAX_ENUM = 2147483647, ) @cenum(VkSamplerAddressMode, VK_SAMPLER_ADDRESS_MODE_REPEAT = 0, VK_SAMPLER_ADDRESS_MODE_MIRRORED_REPEAT = 1, VK_SAMPLER_ADDRESS_MODE_CLAMP_TO_EDGE = 2, VK_SAMPLER_ADDRESS_MODE_CLAMP_TO_BORDER = 3, VK_SAMPLER_ADDRESS_MODE_MIRROR_CLAMP_TO_EDGE = 4, VK_SAMPLER_ADDRESS_MODE_BEGIN_RANGE = 0, VK_SAMPLER_ADDRESS_MODE_END_RANGE = 3, VK_SAMPLER_ADDRESS_MODE_RANGE_SIZE = 4, VK_SAMPLER_ADDRESS_MODE_MAX_ENUM = 2147483647, ) @cenum(VkBorderColor, VK_BORDER_COLOR_FLOAT_TRANSPARENT_BLACK = 0, VK_BORDER_COLOR_INT_TRANSPARENT_BLACK = 1, VK_BORDER_COLOR_FLOAT_OPAQUE_BLACK = 2, VK_BORDER_COLOR_INT_OPAQUE_BLACK = 3, VK_BORDER_COLOR_FLOAT_OPAQUE_WHITE = 4, VK_BORDER_COLOR_INT_OPAQUE_WHITE = 5, VK_BORDER_COLOR_BEGIN_RANGE = 0, VK_BORDER_COLOR_END_RANGE = 5, VK_BORDER_COLOR_RANGE_SIZE = 6, VK_BORDER_COLOR_MAX_ENUM = 2147483647, ) @cenum(VkDescriptorType, VK_DESCRIPTOR_TYPE_SAMPLER = 0, VK_DESCRIPTOR_TYPE_COMBINED_IMAGE_SAMPLER = 1, VK_DESCRIPTOR_TYPE_SAMPLED_IMAGE = 2, VK_DESCRIPTOR_TYPE_STORAGE_IMAGE = 3, VK_DESCRIPTOR_TYPE_UNIFORM_TEXEL_BUFFER = 4, VK_DESCRIPTOR_TYPE_STORAGE_TEXEL_BUFFER = 5, VK_DESCRIPTOR_TYPE_UNIFORM_BUFFER = 6, VK_DESCRIPTOR_TYPE_STORAGE_BUFFER = 7, VK_DESCRIPTOR_TYPE_UNIFORM_BUFFER_DYNAMIC = 8, VK_DESCRIPTOR_TYPE_STORAGE_BUFFER_DYNAMIC = 9, VK_DESCRIPTOR_TYPE_INPUT_ATTACHMENT = 10, VK_DESCRIPTOR_TYPE_BEGIN_RANGE = 0, VK_DESCRIPTOR_TYPE_END_RANGE = 10, VK_DESCRIPTOR_TYPE_RANGE_SIZE = 11, VK_DESCRIPTOR_TYPE_MAX_ENUM = 2147483647, ) @cenum(VkAttachmentLoadOp, VK_ATTACHMENT_LOAD_OP_LOAD = 0, VK_ATTACHMENT_LOAD_OP_CLEAR = 1, VK_ATTACHMENT_LOAD_OP_DONT_CARE = 2, VK_ATTACHMENT_LOAD_OP_BEGIN_RANGE = 0, VK_ATTACHMENT_LOAD_OP_END_RANGE = 2, VK_ATTACHMENT_LOAD_OP_RANGE_SIZE = 3, VK_ATTACHMENT_LOAD_OP_MAX_ENUM = 2147483647, ) @cenum(VkAttachmentStoreOp, VK_ATTACHMENT_STORE_OP_STORE = 0, VK_ATTACHMENT_STORE_OP_DONT_CARE = 1, VK_ATTACHMENT_STORE_OP_BEGIN_RANGE = 0, VK_ATTACHMENT_STORE_OP_END_RANGE = 1, VK_ATTACHMENT_STORE_OP_RANGE_SIZE = 2, VK_ATTACHMENT_STORE_OP_MAX_ENUM = 2147483647, ) @cenum(VkPipelineBindPoint, VK_PIPELINE_BIND_POINT_GRAPHICS = 0, VK_PIPELINE_BIND_POINT_COMPUTE = 1, VK_PIPELINE_BIND_POINT_BEGIN_RANGE = 0, VK_PIPELINE_BIND_POINT_END_RANGE = 1, VK_PIPELINE_BIND_POINT_RANGE_SIZE = 2, VK_PIPELINE_BIND_POINT_MAX_ENUM = 2147483647, ) @cenum(VkCommandBufferLevel, VK_COMMAND_BUFFER_LEVEL_PRIMARY = 0, VK_COMMAND_BUFFER_LEVEL_SECONDARY = 1, VK_COMMAND_BUFFER_LEVEL_BEGIN_RANGE = 0, VK_COMMAND_BUFFER_LEVEL_END_RANGE = 1, VK_COMMAND_BUFFER_LEVEL_RANGE_SIZE = 2, VK_COMMAND_BUFFER_LEVEL_MAX_ENUM = 2147483647, ) @cenum(VkIndexType, VK_INDEX_TYPE_UINT16 = 0, VK_INDEX_TYPE_UINT32 = 1, VK_INDEX_TYPE_BEGIN_RANGE = 0, VK_INDEX_TYPE_END_RANGE = 1, VK_INDEX_TYPE_RANGE_SIZE = 2, VK_INDEX_TYPE_MAX_ENUM = 2147483647, ) @cenum(VkSubpassContents, VK_SUBPASS_CONTENTS_INLINE = 0, VK_SUBPASS_CONTENTS_SECONDARY_COMMAND_BUFFERS = 1, VK_SUBPASS_CONTENTS_BEGIN_RANGE = 0, VK_SUBPASS_CONTENTS_END_RANGE = 1, VK_SUBPASS_CONTENTS_RANGE_SIZE = 2, VK_SUBPASS_CONTENTS_MAX_ENUM = 2147483647, ) typealias VkInstanceCreateFlags VkFlags @cenum(VkFormatFeatureFlagBits, VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT = 1, VK_FORMAT_FEATURE_STORAGE_IMAGE_BIT = 2, VK_FORMAT_FEATURE_STORAGE_IMAGE_ATOMIC_BIT = 4, VK_FORMAT_FEATURE_UNIFORM_TEXEL_BUFFER_BIT = 8, VK_FORMAT_FEATURE_STORAGE_TEXEL_BUFFER_BIT = 16, VK_FORMAT_FEATURE_STORAGE_TEXEL_BUFFER_ATOMIC_BIT = 32, VK_FORMAT_FEATURE_VERTEX_BUFFER_BIT = 64, VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT = 128, VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BLEND_BIT = 256, VK_FORMAT_FEATURE_DEPTH_STENCIL_ATTACHMENT_BIT = 512, VK_FORMAT_FEATURE_BLIT_SRC_BIT = 1024, VK_FORMAT_FEATURE_BLIT_DST_BIT = 2048, VK_FORMAT_FEATURE_SAMPLED_IMAGE_FILTER_LINEAR_BIT = 4096, VK_FORMAT_FEATURE_SAMPLED_IMAGE_FILTER_CUBIC_BIT_IMG = 8192, VK_FORMAT_FEATURE_FLAG_BITS_MAX_ENUM = 2147483647, ) typealias VkFormatFeatureFlags VkFlags @cenum(VkImageUsageFlagBits, VK_IMAGE_USAGE_TRANSFER_SRC_BIT = 1, VK_IMAGE_USAGE_TRANSFER_DST_BIT = 2, VK_IMAGE_USAGE_SAMPLED_BIT = 4, VK_IMAGE_USAGE_STORAGE_BIT = 8, VK_IMAGE_USAGE_COLOR_ATTACHMENT_BIT = 16, VK_IMAGE_USAGE_DEPTH_STENCIL_ATTACHMENT_BIT = 32, VK_IMAGE_USAGE_TRANSIENT_ATTACHMENT_BIT = 64, VK_IMAGE_USAGE_INPUT_ATTACHMENT_BIT = 128, VK_IMAGE_USAGE_FLAG_BITS_MAX_ENUM = 2147483647, ) typealias VkImageUsageFlags VkFlags @cenum(VkImageCreateFlagBits, VK_IMAGE_CREATE_SPARSE_BINDING_BIT = 1, VK_IMAGE_CREATE_SPARSE_RESIDENCY_BIT = 2, VK_IMAGE_CREATE_SPARSE_ALIASED_BIT = 4, VK_IMAGE_CREATE_MUTABLE_FORMAT_BIT = 8, VK_IMAGE_CREATE_CUBE_COMPATIBLE_BIT = 16, VK_IMAGE_CREATE_FLAG_BITS_MAX_ENUM = 2147483647, ) typealias VkImageCreateFlags VkFlags @cenum(VkSampleCountFlagBits, VK_SAMPLE_COUNT_1_BIT = 1, VK_SAMPLE_COUNT_2_BIT = 2, VK_SAMPLE_COUNT_4_BIT = 4, VK_SAMPLE_COUNT_8_BIT = 8, VK_SAMPLE_COUNT_16_BIT = 16, VK_SAMPLE_COUNT_32_BIT = 32, VK_SAMPLE_COUNT_64_BIT = 64, VK_SAMPLE_COUNT_FLAG_BITS_MAX_ENUM = 2147483647, ) typealias VkSampleCountFlags VkFlags @cenum(VkQueueFlagBits, VK_QUEUE_GRAPHICS_BIT = 1, VK_QUEUE_COMPUTE_BIT = 2, VK_QUEUE_TRANSFER_BIT = 4, VK_QUEUE_SPARSE_BINDING_BIT = 8, VK_QUEUE_FLAG_BITS_MAX_ENUM = 2147483647, ) typealias VkQueueFlags VkFlags @cenum(VkMemoryPropertyFlagBits, VK_MEMORY_PROPERTY_DEVICE_LOCAL_BIT = 1, VK_MEMORY_PROPERTY_HOST_VISIBLE_BIT = 2, VK_MEMORY_PROPERTY_HOST_COHERENT_BIT = 4, VK_MEMORY_PROPERTY_HOST_CACHED_BIT = 8, VK_MEMORY_PROPERTY_LAZILY_ALLOCATED_BIT = 16, VK_MEMORY_PROPERTY_FLAG_BITS_MAX_ENUM = 2147483647, ) typealias VkMemoryPropertyFlags VkFlags @cenum(VkMemoryHeapFlagBits, VK_MEMORY_HEAP_DEVICE_LOCAL_BIT = 1, VK_MEMORY_HEAP_FLAG_BITS_MAX_ENUM = 2147483647, ) typealias VkMemoryHeapFlags VkFlags typealias VkDeviceCreateFlags VkFlags typealias VkDeviceQueueCreateFlags VkFlags @cenum(VkPipelineStageFlagBits, VK_PIPELINE_STAGE_TOP_OF_PIPE_BIT = 1, VK_PIPELINE_STAGE_DRAW_INDIRECT_BIT = 2, VK_PIPELINE_STAGE_VERTEX_INPUT_BIT = 4, VK_PIPELINE_STAGE_VERTEX_SHADER_BIT = 8, VK_PIPELINE_STAGE_TESSELLATION_CONTROL_SHADER_BIT = 16, VK_PIPELINE_STAGE_TESSELLATION_EVALUATION_SHADER_BIT = 32, VK_PIPELINE_STAGE_GEOMETRY_SHADER_BIT = 64, VK_PIPELINE_STAGE_FRAGMENT_SHADER_BIT = 128, VK_PIPELINE_STAGE_EARLY_FRAGMENT_TESTS_BIT = 256, VK_PIPELINE_STAGE_LATE_FRAGMENT_TESTS_BIT = 512, VK_PIPELINE_STAGE_COLOR_ATTACHMENT_OUTPUT_BIT = 1024, VK_PIPELINE_STAGE_COMPUTE_SHADER_BIT = 2048, VK_PIPELINE_STAGE_TRANSFER_BIT = 4096, VK_PIPELINE_STAGE_BOTTOM_OF_PIPE_BIT = 8192, VK_PIPELINE_STAGE_HOST_BIT = 16384, VK_PIPELINE_STAGE_ALL_GRAPHICS_BIT = 32768, VK_PIPELINE_STAGE_ALL_COMMANDS_BIT = 65536, VK_PIPELINE_STAGE_FLAG_BITS_MAX_ENUM = 2147483647, ) typealias VkPipelineStageFlags VkFlags typealias VkMemoryMapFlags VkFlags @cenum(VkImageAspectFlagBits, VK_IMAGE_ASPECT_COLOR_BIT = 1, VK_IMAGE_ASPECT_DEPTH_BIT = 2, VK_IMAGE_ASPECT_STENCIL_BIT = 4, VK_IMAGE_ASPECT_METADATA_BIT = 8, VK_IMAGE_ASPECT_FLAG_BITS_MAX_ENUM = 2147483647, ) typealias VkImageAspectFlags VkFlags @cenum(VkSparseImageFormatFlagBits, VK_SPARSE_IMAGE_FORMAT_SINGLE_MIPTAIL_BIT = 1, VK_SPARSE_IMAGE_FORMAT_ALIGNED_MIP_SIZE_BIT = 2, VK_SPARSE_IMAGE_FORMAT_NONSTANDARD_BLOCK_SIZE_BIT = 4, VK_SPARSE_IMAGE_FORMAT_FLAG_BITS_MAX_ENUM = 2147483647, ) typealias VkSparseImageFormatFlags VkFlags @cenum(VkSparseMemoryBindFlagBits, VK_SPARSE_MEMORY_BIND_METADATA_BIT = 1, VK_SPARSE_MEMORY_BIND_FLAG_BITS_MAX_ENUM = 2147483647, ) typealias VkSparseMemoryBindFlags VkFlags @cenum(VkFenceCreateFlagBits, VK_FENCE_CREATE_SIGNALED_BIT = 1, VK_FENCE_CREATE_FLAG_BITS_MAX_ENUM = 2147483647, ) typealias VkFenceCreateFlags VkFlags typealias VkSemaphoreCreateFlags VkFlags typealias VkEventCreateFlags VkFlags typealias VkQueryPoolCreateFlags VkFlags @cenum(VkQueryPipelineStatisticFlagBits, VK_QUERY_PIPELINE_STATISTIC_INPUT_ASSEMBLY_VERTICES_BIT = 1, VK_QUERY_PIPELINE_STATISTIC_INPUT_ASSEMBLY_PRIMITIVES_BIT = 2, VK_QUERY_PIPELINE_STATISTIC_VERTEX_SHADER_INVOCATIONS_BIT = 4, VK_QUERY_PIPELINE_STATISTIC_GEOMETRY_SHADER_INVOCATIONS_BIT = 8, VK_QUERY_PIPELINE_STATISTIC_GEOMETRY_SHADER_PRIMITIVES_BIT = 16, VK_QUERY_PIPELINE_STATISTIC_CLIPPING_INVOCATIONS_BIT = 32, VK_QUERY_PIPELINE_STATISTIC_CLIPPING_PRIMITIVES_BIT = 64, VK_QUERY_PIPELINE_STATISTIC_FRAGMENT_SHADER_INVOCATIONS_BIT = 128, VK_QUERY_PIPELINE_STATISTIC_TESSELLATION_CONTROL_SHADER_PATCHES_BIT = 256, VK_QUERY_PIPELINE_STATISTIC_TESSELLATION_EVALUATION_SHADER_INVOCATIONS_BIT = 512, VK_QUERY_PIPELINE_STATISTIC_COMPUTE_SHADER_INVOCATIONS_BIT = 1024, VK_QUERY_PIPELINE_STATISTIC_FLAG_BITS_MAX_ENUM = 2147483647, ) typealias VkQueryPipelineStatisticFlags VkFlags @cenum(VkQueryResultFlagBits, VK_QUERY_RESULT_64_BIT = 1, VK_QUERY_RESULT_WAIT_BIT = 2, VK_QUERY_RESULT_WITH_AVAILABILITY_BIT = 4, VK_QUERY_RESULT_PARTIAL_BIT = 8, VK_QUERY_RESULT_FLAG_BITS_MAX_ENUM = 2147483647, ) typealias VkQueryResultFlags VkFlags @cenum(VkBufferCreateFlagBits, VK_BUFFER_CREATE_SPARSE_BINDING_BIT = 1, VK_BUFFER_CREATE_SPARSE_RESIDENCY_BIT = 2, VK_BUFFER_CREATE_SPARSE_ALIASED_BIT = 4, VK_BUFFER_CREATE_FLAG_BITS_MAX_ENUM = 2147483647, ) typealias VkBufferCreateFlags VkFlags @cenum(VkBufferUsageFlagBits, VK_BUFFER_USAGE_TRANSFER_SRC_BIT = 1, VK_BUFFER_USAGE_TRANSFER_DST_BIT = 2, VK_BUFFER_USAGE_UNIFORM_TEXEL_BUFFER_BIT = 4, VK_BUFFER_USAGE_STORAGE_TEXEL_BUFFER_BIT = 8, VK_BUFFER_USAGE_UNIFORM_BUFFER_BIT = 16, VK_BUFFER_USAGE_STORAGE_BUFFER_BIT = 32, VK_BUFFER_USAGE_INDEX_BUFFER_BIT = 64, VK_BUFFER_USAGE_VERTEX_BUFFER_BIT = 128, VK_BUFFER_USAGE_INDIRECT_BUFFER_BIT = 256, VK_BUFFER_USAGE_FLAG_BITS_MAX_ENUM = 2147483647, ) typealias VkBufferUsageFlags VkFlags typealias VkBufferViewCreateFlags VkFlags typealias VkImageViewCreateFlags VkFlags typealias VkShaderModuleCreateFlags VkFlags typealias VkPipelineCacheCreateFlags VkFlags @cenum(VkPipelineCreateFlagBits, VK_PIPELINE_CREATE_DISABLE_OPTIMIZATION_BIT = 1, VK_PIPELINE_CREATE_ALLOW_DERIVATIVES_BIT = 2, VK_PIPELINE_CREATE_DERIVATIVE_BIT = 4, VK_PIPELINE_CREATE_FLAG_BITS_MAX_ENUM = 2147483647, ) typealias VkPipelineCreateFlags VkFlags typealias VkPipelineShaderStageCreateFlags VkFlags @cenum(VkShaderStageFlagBits, VK_SHADER_STAGE_VERTEX_BIT = 1, VK_SHADER_STAGE_TESSELLATION_CONTROL_BIT = 2, VK_SHADER_STAGE_TESSELLATION_EVALUATION_BIT = 4, VK_SHADER_STAGE_GEOMETRY_BIT = 8, VK_SHADER_STAGE_FRAGMENT_BIT = 16, VK_SHADER_STAGE_COMPUTE_BIT = 32, VK_SHADER_STAGE_ALL_GRAPHICS = 31, VK_SHADER_STAGE_ALL = 2147483647, VK_SHADER_STAGE_FLAG_BITS_MAX_ENUM = 2147483647, ) typealias VkPipelineVertexInputStateCreateFlags VkFlags typealias VkPipelineInputAssemblyStateCreateFlags VkFlags typealias VkPipelineTessellationStateCreateFlags VkFlags typealias VkPipelineViewportStateCreateFlags VkFlags typealias VkPipelineRasterizationStateCreateFlags VkFlags @cenum(VkCullModeFlagBits, VK_CULL_MODE_NONE = 0, VK_CULL_MODE_FRONT_BIT = 1, VK_CULL_MODE_BACK_BIT = 2, VK_CULL_MODE_FRONT_AND_BACK = 3, VK_CULL_MODE_FLAG_BITS_MAX_ENUM = 2147483647, ) typealias VkCullModeFlags VkFlags typealias VkPipelineMultisampleStateCreateFlags VkFlags typealias VkPipelineDepthStencilStateCreateFlags VkFlags typealias VkPipelineColorBlendStateCreateFlags VkFlags @cenum(VkColorComponentFlagBits, VK_COLOR_COMPONENT_R_BIT = 1, VK_COLOR_COMPONENT_G_BIT = 2, VK_COLOR_COMPONENT_B_BIT = 4, VK_COLOR_COMPONENT_A_BIT = 8, VK_COLOR_COMPONENT_FLAG_BITS_MAX_ENUM = 2147483647, ) typealias VkColorComponentFlags VkFlags typealias VkPipelineDynamicStateCreateFlags VkFlags typealias VkPipelineLayoutCreateFlags VkFlags typealias VkShaderStageFlags VkFlags typealias VkSamplerCreateFlags VkFlags typealias VkDescriptorSetLayoutCreateFlags VkFlags @cenum(VkDescriptorPoolCreateFlagBits, VK_DESCRIPTOR_POOL_CREATE_FREE_DESCRIPTOR_SET_BIT = 1, VK_DESCRIPTOR_POOL_CREATE_FLAG_BITS_MAX_ENUM = 2147483647, ) typealias VkDescriptorPoolCreateFlags VkFlags typealias VkDescriptorPoolResetFlags VkFlags typealias VkFramebufferCreateFlags VkFlags typealias VkRenderPassCreateFlags VkFlags @cenum(VkAttachmentDescriptionFlagBits, VK_ATTACHMENT_DESCRIPTION_MAY_ALIAS_BIT = 1, VK_ATTACHMENT_DESCRIPTION_FLAG_BITS_MAX_ENUM = 2147483647, ) typealias VkAttachmentDescriptionFlags VkFlags typealias VkSubpassDescriptionFlags VkFlags @cenum(VkAccessFlagBits, VK_ACCESS_INDIRECT_COMMAND_READ_BIT = 1, VK_ACCESS_INDEX_READ_BIT = 2, VK_ACCESS_VERTEX_ATTRIBUTE_READ_BIT = 4, VK_ACCESS_UNIFORM_READ_BIT = 8, VK_ACCESS_INPUT_ATTACHMENT_READ_BIT = 16, VK_ACCESS_SHADER_READ_BIT = 32, VK_ACCESS_SHADER_WRITE_BIT = 64, VK_ACCESS_COLOR_ATTACHMENT_READ_BIT = 128, VK_ACCESS_COLOR_ATTACHMENT_WRITE_BIT = 256, VK_ACCESS_DEPTH_STENCIL_ATTACHMENT_READ_BIT = 512, VK_ACCESS_DEPTH_STENCIL_ATTACHMENT_WRITE_BIT = 1024, VK_ACCESS_TRANSFER_READ_BIT = 2048, VK_ACCESS_TRANSFER_WRITE_BIT = 4096, VK_ACCESS_HOST_READ_BIT = 8192, VK_ACCESS_HOST_WRITE_BIT = 16384, VK_ACCESS_MEMORY_READ_BIT = 32768, VK_ACCESS_MEMORY_WRITE_BIT = 65536, VK_ACCESS_FLAG_BITS_MAX_ENUM = 2147483647, ) typealias VkAccessFlags VkFlags @cenum(VkDependencyFlagBits, VK_DEPENDENCY_BY_REGION_BIT = 1, VK_DEPENDENCY_FLAG_BITS_MAX_ENUM = 2147483647, ) typealias VkDependencyFlags VkFlags @cenum(VkCommandPoolCreateFlagBits, VK_COMMAND_POOL_CREATE_TRANSIENT_BIT = 1, VK_COMMAND_POOL_CREATE_RESET_COMMAND_BUFFER_BIT = 2, VK_COMMAND_POOL_CREATE_FLAG_BITS_MAX_ENUM = 2147483647, ) typealias VkCommandPoolCreateFlags VkFlags @cenum(VkCommandPoolResetFlagBits, VK_COMMAND_POOL_RESET_RELEASE_RESOURCES_BIT = 1, VK_COMMAND_POOL_RESET_FLAG_BITS_MAX_ENUM = 2147483647, ) typealias VkCommandPoolResetFlags VkFlags @cenum(VkCommandBufferUsageFlagBits, VK_COMMAND_BUFFER_USAGE_ONE_TIME_SUBMIT_BIT = 1, VK_COMMAND_BUFFER_USAGE_RENDER_PASS_CONTINUE_BIT = 2, VK_COMMAND_BUFFER_USAGE_SIMULTANEOUS_USE_BIT = 4, VK_COMMAND_BUFFER_USAGE_FLAG_BITS_MAX_ENUM = 2147483647, ) typealias VkCommandBufferUsageFlags VkFlags @cenum(VkQueryControlFlagBits, VK_QUERY_CONTROL_PRECISE_BIT = 1, VK_QUERY_CONTROL_FLAG_BITS_MAX_ENUM = 2147483647, ) typealias VkQueryControlFlags VkFlags @cenum(VkCommandBufferResetFlagBits, VK_COMMAND_BUFFER_RESET_RELEASE_RESOURCES_BIT = 1, VK_COMMAND_BUFFER_RESET_FLAG_BITS_MAX_ENUM = 2147483647, ) typealias VkCommandBufferResetFlags VkFlags @cenum(VkStencilFaceFlagBits, VK_STENCIL_FACE_FRONT_BIT = 1, VK_STENCIL_FACE_BACK_BIT = 2, VK_STENCIL_FRONT_AND_BACK = 3, VK_STENCIL_FACE_FLAG_BITS_MAX_ENUM = 2147483647, ) typealias VkStencilFaceFlags VkFlags typealias PFN_vkAllocationFunction Ptr{Void} typealias PFN_vkReallocationFunction Ptr{Void} typealias PFN_vkFreeFunction Ptr{Void} typealias PFN_vkInternalAllocationNotification Ptr{Void} typealias PFN_vkInternalFreeNotification Ptr{Void} typealias PFN_vkVoidFunction Ptr{Void} immutable VkApplicationInfo sType::VkStructureType pNext::Ptr{Void} pApplicationName::Cstring applicationVersion::UInt32 pEngineName::Cstring engineVersion::UInt32 apiVersion::UInt32 end immutable VkInstanceCreateInfo sType::VkStructureType pNext::Ptr{Void} flags::VkInstanceCreateFlags pApplicationInfo::Ptr{VkApplicationInfo} enabledLayerCount::UInt32 ppEnabledLayerNames::Ptr{Cstring} enabledExtensionCount::UInt32 ppEnabledExtensionNames::Ptr{Cstring} end immutable VkAllocationCallbacks pUserData::Ptr{Void} pfnAllocation::PFN_vkAllocationFunction pfnReallocation::PFN_vkReallocationFunction pfnFree::PFN_vkFreeFunction pfnInternalAllocation::PFN_vkInternalAllocationNotification pfnInternalFree::PFN_vkInternalFreeNotification end immutable VkPhysicalDeviceFeatures robustBufferAccess::VkBool32 fullDrawIndexUint32::VkBool32 imageCubeArray::VkBool32 independentBlend::VkBool32 geometryShader::VkBool32 tessellationShader::VkBool32 sampleRateShading::VkBool32 dualSrcBlend::VkBool32 logicOp::VkBool32 multiDrawIndirect::VkBool32 drawIndirectFirstInstance::VkBool32 depthClamp::VkBool32 depthBiasClamp::VkBool32 fillModeNonSolid::VkBool32 depthBounds::VkBool32 wideLines::VkBool32 largePoints::VkBool32 alphaToOne::VkBool32 multiViewport::VkBool32 samplerAnisotropy::VkBool32 textureCompressionETC2::VkBool32 textureCompressionASTC_LDR::VkBool32 textureCompressionBC::VkBool32 occlusionQueryPrecise::VkBool32 pipelineStatisticsQuery::VkBool32 vertexPipelineStoresAndAtomics::VkBool32 fragmentStoresAndAtomics::VkBool32 shaderTessellationAndGeometryPointSize::VkBool32 shaderImageGatherExtended::VkBool32 shaderStorageImageExtendedFormats::VkBool32 shaderStorageImageMultisample::VkBool32 shaderStorageImageReadWithoutFormat::VkBool32 shaderStorageImageWriteWithoutFormat::VkBool32 shaderUniformBufferArrayDynamicIndexing::VkBool32 shaderSampledImageArrayDynamicIndexing::VkBool32 shaderStorageBufferArrayDynamicIndexing::VkBool32 shaderStorageImageArrayDynamicIndexing::VkBool32 shaderClipDistance::VkBool32 shaderCullDistance::VkBool32 shaderFloat64::VkBool32 shaderInt64::VkBool32 shaderInt16::VkBool32 shaderResourceResidency::VkBool32 shaderResourceMinLod::VkBool32 sparseBinding::VkBool32 sparseResidencyBuffer::VkBool32 sparseResidencyImage2D::VkBool32 sparseResidencyImage3D::VkBool32 sparseResidency2Samples::VkBool32 sparseResidency4Samples::VkBool32 sparseResidency8Samples::VkBool32 sparseResidency16Samples::VkBool32 sparseResidencyAliased::VkBool32 variableMultisampleRate::VkBool32 inheritedQueries::VkBool32 end immutable VkFormatProperties linearTilingFeatures::VkFormatFeatureFlags optimalTilingFeatures::VkFormatFeatureFlags bufferFeatures::VkFormatFeatureFlags end immutable VkExtent3D width::UInt32 height::UInt32 depth::UInt32 end immutable VkImageFormatProperties maxExtent::VkExtent3D maxMipLevels::UInt32 maxArrayLayers::UInt32 sampleCounts::VkSampleCountFlags maxResourceSize::VkDeviceSize end immutable VkPhysicalDeviceLimits maxImageDimension1D::UInt32 maxImageDimension2D::UInt32 maxImageDimension3D::UInt32 maxImageDimensionCube::UInt32 maxImageArrayLayers::UInt32 maxTexelBufferElements::UInt32 maxUniformBufferRange::UInt32 maxStorageBufferRange::UInt32 maxPushConstantsSize::UInt32 maxMemoryAllocationCount::UInt32 maxSamplerAllocationCount::UInt32 bufferImageGranularity::VkDeviceSize sparseAddressSpaceSize::VkDeviceSize maxBoundDescriptorSets::UInt32 maxPerStageDescriptorSamplers::UInt32 maxPerStageDescriptorUniformBuffers::UInt32 maxPerStageDescriptorStorageBuffers::UInt32 maxPerStageDescriptorSampledImages::UInt32 maxPerStageDescriptorStorageImages::UInt32 maxPerStageDescriptorInputAttachments::UInt32 maxPerStageResources::UInt32 maxDescriptorSetSamplers::UInt32 maxDescriptorSetUniformBuffers::UInt32 maxDescriptorSetUniformBuffersDynamic::UInt32 maxDescriptorSetStorageBuffers::UInt32 maxDescriptorSetStorageBuffersDynamic::UInt32 maxDescriptorSetSampledImages::UInt32 maxDescriptorSetStorageImages::UInt32 maxDescriptorSetInputAttachments::UInt32 maxVertexInputAttributes::UInt32 maxVertexInputBindings::UInt32 maxVertexInputAttributeOffset::UInt32 maxVertexInputBindingStride::UInt32 maxVertexOutputComponents::UInt32 maxTessellationGenerationLevel::UInt32 maxTessellationPatchSize::UInt32 maxTessellationControlPerVertexInputComponents::UInt32 maxTessellationControlPerVertexOutputComponents::UInt32 maxTessellationControlPerPatchOutputComponents::UInt32 maxTessellationControlTotalOutputComponents::UInt32 maxTessellationEvaluationInputComponents::UInt32 maxTessellationEvaluationOutputComponents::UInt32 maxGeometryShaderInvocations::UInt32 maxGeometryInputComponents::UInt32 maxGeometryOutputComponents::UInt32 maxGeometryOutputVertices::UInt32 maxGeometryTotalOutputComponents::UInt32 maxFragmentInputComponents::UInt32 maxFragmentOutputAttachments::UInt32 maxFragmentDualSrcAttachments::UInt32 maxFragmentCombinedOutputResources::UInt32 maxComputeSharedMemorySize::UInt32 maxComputeWorkGroupCount::NTuple{3,UInt32} maxComputeWorkGroupInvocations::UInt32 maxComputeWorkGroupSize::NTuple{3,UInt32} subPixelPrecisionBits::UInt32 subTexelPrecisionBits::UInt32 mipmapPrecisionBits::UInt32 maxDrawIndexedIndexValue::UInt32 maxDrawIndirectCount::UInt32 maxSamplerLodBias::Cfloat maxSamplerAnisotropy::Cfloat maxViewports::UInt32 maxViewportDimensions::NTuple{2,UInt32} viewportBoundsRange::NTuple{2,Cfloat} viewportSubPixelBits::UInt32 minMemoryMapAlignment::Csize_t minTexelBufferOffsetAlignment::VkDeviceSize minUniformBufferOffsetAlignment::VkDeviceSize minStorageBufferOffsetAlignment::VkDeviceSize minTexelOffset::Int32 maxTexelOffset::UInt32 minTexelGatherOffset::Int32 maxTexelGatherOffset::UInt32 minInterpolationOffset::Cfloat maxInterpolationOffset::Cfloat subPixelInterpolationOffsetBits::UInt32 maxFramebufferWidth::UInt32 maxFramebufferHeight::UInt32 maxFramebufferLayers::UInt32 framebufferColorSampleCounts::VkSampleCountFlags framebufferDepthSampleCounts::VkSampleCountFlags framebufferStencilSampleCounts::VkSampleCountFlags framebufferNoAttachmentsSampleCounts::VkSampleCountFlags maxColorAttachments::UInt32 sampledImageColorSampleCounts::VkSampleCountFlags sampledImageIntegerSampleCounts::VkSampleCountFlags sampledImageDepthSampleCounts::VkSampleCountFlags sampledImageStencilSampleCounts::VkSampleCountFlags storageImageSampleCounts::VkSampleCountFlags maxSampleMaskWords::UInt32 timestampComputeAndGraphics::VkBool32 timestampPeriod::Cfloat maxClipDistances::UInt32 maxCullDistances::UInt32 maxCombinedClipAndCullDistances::UInt32 discreteQueuePriorities::UInt32 pointSizeRange::NTuple{2,Cfloat} lineWidthRange::NTuple{2,Cfloat} pointSizeGranularity::Cfloat lineWidthGranularity::Cfloat strictLines::VkBool32 standardSampleLocations::VkBool32 optimalBufferCopyOffsetAlignment::VkDeviceSize optimalBufferCopyRowPitchAlignment::VkDeviceSize nonCoherentAtomSize::VkDeviceSize end immutable VkPhysicalDeviceSparseProperties residencyStandard2DBlockShape::VkBool32 residencyStandard2DMultisampleBlockShape::VkBool32 residencyStandard3DBlockShape::VkBool32 residencyAlignedMipSize::VkBool32 residencyNonResidentStrict::VkBool32 end immutable VkPhysicalDeviceProperties apiVersion::UInt32 driverVersion::UInt32 vendorID::UInt32 deviceID::UInt32 deviceType::VkPhysicalDeviceType deviceName::NTuple{256,UInt8} pipelineCacheUUID::NTuple{16,UInt8} limits::VkPhysicalDeviceLimits sparseProperties::VkPhysicalDeviceSparseProperties end immutable VkQueueFamilyProperties queueFlags::VkQueueFlags queueCount::UInt32 timestampValidBits::UInt32 minImageTransferGranularity::VkExtent3D end immutable VkMemoryType propertyFlags::VkMemoryPropertyFlags heapIndex::UInt32 end immutable VkMemoryHeap size::VkDeviceSize flags::VkMemoryHeapFlags end immutable VkPhysicalDeviceMemoryProperties memoryTypeCount::UInt32 memoryTypes::NTuple{32,VkMemoryType} memoryHeapCount::UInt32 memoryHeaps::NTuple{16,VkMemoryHeap} end immutable VkDeviceQueueCreateInfo sType::VkStructureType pNext::Ptr{Void} flags::VkDeviceQueueCreateFlags queueFamilyIndex::UInt32 queueCount::UInt32 pQueuePriorities::Ptr{Cfloat} end immutable VkDeviceCreateInfo sType::VkStructureType pNext::Ptr{Void} flags::VkDeviceCreateFlags queueCreateInfoCount::UInt32 pQueueCreateInfos::Ptr{VkDeviceQueueCreateInfo} enabledLayerCount::UInt32 ppEnabledLayerNames::Ptr{Cstring} enabledExtensionCount::UInt32 ppEnabledExtensionNames::Ptr{Cstring} pEnabledFeatures::Ptr{VkPhysicalDeviceFeatures} end immutable VkExtensionProperties extensionName::NTuple{256,UInt8} specVersion::UInt32 end immutable VkLayerProperties layerName::NTuple{256,UInt8} specVersion::UInt32 implementationVersion::UInt32 description::NTuple{256,UInt8} end immutable VkSubmitInfo sType::VkStructureType pNext::Ptr{Void} waitSemaphoreCount::UInt32 pWaitSemaphores::Ptr{VkSemaphore} pWaitDstStageMask::Ptr{VkPipelineStageFlags} commandBufferCount::UInt32 pCommandBuffers::Ptr{VkCommandBuffer} signalSemaphoreCount::UInt32 pSignalSemaphores::Ptr{VkSemaphore} end immutable VkMemoryAllocateInfo sType::VkStructureType pNext::Ptr{Void} allocationSize::VkDeviceSize memoryTypeIndex::UInt32 end immutable VkMappedMemoryRange sType::VkStructureType pNext::Ptr{Void} memory::VkDeviceMemory offset::VkDeviceSize size::VkDeviceSize end immutable VkMemoryRequirements size::VkDeviceSize alignment::VkDeviceSize memoryTypeBits::UInt32 end immutable VkSparseImageFormatProperties aspectMask::VkImageAspectFlags imageGranularity::VkExtent3D flags::VkSparseImageFormatFlags end immutable VkSparseImageMemoryRequirements formatProperties::VkSparseImageFormatProperties imageMipTailFirstLod::UInt32 imageMipTailSize::VkDeviceSize imageMipTailOffset::VkDeviceSize imageMipTailStride::VkDeviceSize end immutable VkSparseMemoryBind resourceOffset::VkDeviceSize size::VkDeviceSize memory::VkDeviceMemory memoryOffset::VkDeviceSize flags::VkSparseMemoryBindFlags end immutable VkSparseBufferMemoryBindInfo buffer::VkBuffer bindCount::UInt32 pBinds::Ptr{VkSparseMemoryBind} end immutable VkSparseImageOpaqueMemoryBindInfo image::VkImage bindCount::UInt32 pBinds::Ptr{VkSparseMemoryBind} end immutable VkImageSubresource aspectMask::VkImageAspectFlags mipLevel::UInt32 arrayLayer::UInt32 end immutable VkOffset3D x::Int32 y::Int32 z::Int32 end immutable VkSparseImageMemoryBind subresource::VkImageSubresource offset::VkOffset3D extent::VkExtent3D memory::VkDeviceMemory memoryOffset::VkDeviceSize flags::VkSparseMemoryBindFlags end immutable VkSparseImageMemoryBindInfo image::VkImage bindCount::UInt32 pBinds::Ptr{VkSparseImageMemoryBind} end immutable VkBindSparseInfo sType::VkStructureType pNext::Ptr{Void} waitSemaphoreCount::UInt32 pWaitSemaphores::Ptr{VkSemaphore} bufferBindCount::UInt32 pBufferBinds::Ptr{VkSparseBufferMemoryBindInfo} imageOpaqueBindCount::UInt32 pImageOpaqueBinds::Ptr{VkSparseImageOpaqueMemoryBindInfo} imageBindCount::UInt32 pImageBinds::Ptr{VkSparseImageMemoryBindInfo} signalSemaphoreCount::UInt32 pSignalSemaphores::Ptr{VkSemaphore} end immutable VkFenceCreateInfo sType::VkStructureType pNext::Ptr{Void} flags::VkFenceCreateFlags end immutable VkSemaphoreCreateInfo sType::VkStructureType pNext::Ptr{Void} flags::VkSemaphoreCreateFlags end immutable VkEventCreateInfo sType::VkStructureType pNext::Ptr{Void} flags::VkEventCreateFlags end immutable VkQueryPoolCreateInfo sType::VkStructureType pNext::Ptr{Void} flags::VkQueryPoolCreateFlags queryType::VkQueryType queryCount::UInt32 pipelineStatistics::VkQueryPipelineStatisticFlags end immutable VkBufferCreateInfo sType::VkStructureType pNext::Ptr{Void} flags::VkBufferCreateFlags size::VkDeviceSize usage::VkBufferUsageFlags sharingMode::VkSharingMode queueFamilyIndexCount::UInt32 pQueueFamilyIndices::Ptr{UInt32} end immutable VkBufferViewCreateInfo sType::VkStructureType pNext::Ptr{Void} flags::VkBufferViewCreateFlags buffer::VkBuffer format::VkFormat offset::VkDeviceSize range::VkDeviceSize end immutable VkImageCreateInfo sType::VkStructureType pNext::Ptr{Void} flags::VkImageCreateFlags imageType::VkImageType format::VkFormat extent::VkExtent3D mipLevels::UInt32 arrayLayers::UInt32 samples::VkSampleCountFlagBits tiling::VkImageTiling usage::VkImageUsageFlags sharingMode::VkSharingMode queueFamilyIndexCount::UInt32 pQueueFamilyIndices::Ptr{UInt32} initialLayout::VkImageLayout end immutable VkSubresourceLayout offset::VkDeviceSize size::VkDeviceSize rowPitch::VkDeviceSize arrayPitch::VkDeviceSize depthPitch::VkDeviceSize end immutable VkComponentMapping r::VkComponentSwizzle g::VkComponentSwizzle b::VkComponentSwizzle a::VkComponentSwizzle end immutable VkImageSubresourceRange aspectMask::VkImageAspectFlags baseMipLevel::UInt32 levelCount::UInt32 baseArrayLayer::UInt32 layerCount::UInt32 end immutable VkImageViewCreateInfo sType::VkStructureType pNext::Ptr{Void} flags::VkImageViewCreateFlags image::VkImage viewType::VkImageViewType format::VkFormat components::VkComponentMapping subresourceRange::VkImageSubresourceRange end immutable VkShaderModuleCreateInfo sType::VkStructureType pNext::Ptr{Void} flags::VkShaderModuleCreateFlags codeSize::Csize_t pCode::Ptr{UInt32} end immutable VkPipelineCacheCreateInfo sType::VkStructureType pNext::Ptr{Void} flags::VkPipelineCacheCreateFlags initialDataSize::Csize_t pInitialData::Ptr{Void} end immutable VkSpecializationMapEntry constantID::UInt32 offset::UInt32 size::Csize_t end immutable VkSpecializationInfo mapEntryCount::UInt32 pMapEntries::Ptr{VkSpecializationMapEntry} dataSize::Csize_t pData::Ptr{Void} end immutable VkPipelineShaderStageCreateInfo sType::VkStructureType pNext::Ptr{Void} flags::VkPipelineShaderStageCreateFlags stage::VkShaderStageFlagBits _module::VkShaderModule pName::Cstring pSpecializationInfo::Ptr{VkSpecializationInfo} end immutable VkVertexInputBindingDescription binding::UInt32 stride::UInt32 inputRate::VkVertexInputRate end immutable VkVertexInputAttributeDescription location::UInt32 binding::UInt32 format::VkFormat offset::UInt32 end immutable VkPipelineVertexInputStateCreateInfo sType::VkStructureType pNext::Ptr{Void} flags::VkPipelineVertexInputStateCreateFlags vertexBindingDescriptionCount::UInt32 pVertexBindingDescriptions::Ptr{VkVertexInputBindingDescription} vertexAttributeDescriptionCount::UInt32 pVertexAttributeDescriptions::Ptr{VkVertexInputAttributeDescription} end immutable VkPipelineInputAssemblyStateCreateInfo sType::VkStructureType pNext::Ptr{Void} flags::VkPipelineInputAssemblyStateCreateFlags topology::VkPrimitiveTopology primitiveRestartEnable::VkBool32 end immutable VkPipelineTessellationStateCreateInfo sType::VkStructureType pNext::Ptr{Void} flags::VkPipelineTessellationStateCreateFlags patchControlPoints::UInt32 end immutable VkViewport x::Cfloat y::Cfloat width::Cfloat height::Cfloat minDepth::Cfloat maxDepth::Cfloat end immutable VkOffset2D x::Int32 y::Int32 end immutable VkExtent2D width::UInt32 height::UInt32 end immutable VkRect2D offset::VkOffset2D extent::VkExtent2D end immutable VkPipelineViewportStateCreateInfo sType::VkStructureType pNext::Ptr{Void} flags::VkPipelineViewportStateCreateFlags viewportCount::UInt32 pViewports::Ptr{VkViewport} scissorCount::UInt32 pScissors::Ptr{VkRect2D} end immutable VkPipelineRasterizationStateCreateInfo sType::VkStructureType pNext::Ptr{Void} flags::VkPipelineRasterizationStateCreateFlags depthClampEnable::VkBool32 rasterizerDiscardEnable::VkBool32 polygonMode::VkPolygonMode cullMode::VkCullModeFlags frontFace::VkFrontFace depthBiasEnable::VkBool32 depthBiasConstantFactor::Cfloat depthBiasClamp::Cfloat depthBiasSlopeFactor::Cfloat lineWidth::Cfloat end immutable VkPipelineMultisampleStateCreateInfo sType::VkStructureType pNext::Ptr{Void} flags::VkPipelineMultisampleStateCreateFlags rasterizationSamples::VkSampleCountFlagBits sampleShadingEnable::VkBool32 minSampleShading::Cfloat pSampleMask::Ptr{VkSampleMask} alphaToCoverageEnable::VkBool32 alphaToOneEnable::VkBool32 end immutable VkStencilOpState failOp::VkStencilOp passOp::VkStencilOp depthFailOp::VkStencilOp compareOp::VkCompareOp compareMask::UInt32 writeMask::UInt32 reference::UInt32 end immutable VkPipelineDepthStencilStateCreateInfo sType::VkStructureType pNext::Ptr{Void} flags::VkPipelineDepthStencilStateCreateFlags depthTestEnable::VkBool32 depthWriteEnable::VkBool32 depthCompareOp::VkCompareOp depthBoundsTestEnable::VkBool32 stencilTestEnable::VkBool32 front::VkStencilOpState back::VkStencilOpState minDepthBounds::Cfloat maxDepthBounds::Cfloat end immutable VkPipelineColorBlendAttachmentState blendEnable::VkBool32 srcColorBlendFactor::VkBlendFactor dstColorBlendFactor::VkBlendFactor colorBlendOp::VkBlendOp srcAlphaBlendFactor::VkBlendFactor dstAlphaBlendFactor::VkBlendFactor alphaBlendOp::VkBlendOp colorWriteMask::VkColorComponentFlags end immutable VkPipelineColorBlendStateCreateInfo sType::VkStructureType pNext::Ptr{Void} flags::VkPipelineColorBlendStateCreateFlags logicOpEnable::VkBool32 logicOp::VkLogicOp attachmentCount::UInt32 pAttachments::Ptr{VkPipelineColorBlendAttachmentState} blendConstants::NTuple{4,Cfloat} end immutable VkPipelineDynamicStateCreateInfo sType::VkStructureType pNext::Ptr{Void} flags::VkPipelineDynamicStateCreateFlags dynamicStateCount::UInt32 pDynamicStates::Ptr{VkDynamicState} end immutable VkGraphicsPipelineCreateInfo sType::VkStructureType pNext::Ptr{Void} flags::VkPipelineCreateFlags stageCount::UInt32 pStages::Ptr{VkPipelineShaderStageCreateInfo} pVertexInputState::Ptr{VkPipelineVertexInputStateCreateInfo} pInputAssemblyState::Ptr{VkPipelineInputAssemblyStateCreateInfo} pTessellationState::Ptr{VkPipelineTessellationStateCreateInfo} pViewportState::Ptr{VkPipelineViewportStateCreateInfo} pRasterizationState::Ptr{VkPipelineRasterizationStateCreateInfo} pMultisampleState::Ptr{VkPipelineMultisampleStateCreateInfo} pDepthStencilState::Ptr{VkPipelineDepthStencilStateCreateInfo} pColorBlendState::Ptr{VkPipelineColorBlendStateCreateInfo} pDynamicState::Ptr{VkPipelineDynamicStateCreateInfo} layout::VkPipelineLayout renderPass::VkRenderPass subpass::UInt32 basePipelineHandle::VkPipeline basePipelineIndex::Int32 end immutable VkComputePipelineCreateInfo sType::VkStructureType pNext::Ptr{Void} flags::VkPipelineCreateFlags stage::VkPipelineShaderStageCreateInfo layout::VkPipelineLayout basePipelineHandle::VkPipeline basePipelineIndex::Int32 end immutable VkPushConstantRange stageFlags::VkShaderStageFlags offset::UInt32 size::UInt32 end immutable VkPipelineLayoutCreateInfo sType::VkStructureType pNext::Ptr{Void} flags::VkPipelineLayoutCreateFlags setLayoutCount::UInt32 pSetLayouts::Ptr{VkDescriptorSetLayout} pushConstantRangeCount::UInt32 pPushConstantRanges::Ptr{VkPushConstantRange} end immutable VkSamplerCreateInfo sType::VkStructureType pNext::Ptr{Void} flags::VkSamplerCreateFlags magFilter::VkFilter minFilter::VkFilter mipmapMode::VkSamplerMipmapMode addressModeU::VkSamplerAddressMode addressModeV::VkSamplerAddressMode addressModeW::VkSamplerAddressMode mipLodBias::Cfloat anisotropyEnable::VkBool32 maxAnisotropy::Cfloat compareEnable::VkBool32 compareOp::VkCompareOp minLod::Cfloat maxLod::Cfloat borderColor::VkBorderColor unnormalizedCoordinates::VkBool32 end immutable VkDescriptorSetLayoutBinding binding::UInt32 descriptorType::VkDescriptorType descriptorCount::UInt32 stageFlags::VkShaderStageFlags pImmutableSamplers::Ptr{VkSampler} end immutable VkDescriptorSetLayoutCreateInfo sType::VkStructureType pNext::Ptr{Void} flags::VkDescriptorSetLayoutCreateFlags bindingCount::UInt32 pBindings::Ptr{VkDescriptorSetLayoutBinding} end immutable VkDescriptorPoolSize _type::VkDescriptorType descriptorCount::UInt32 end immutable VkDescriptorPoolCreateInfo sType::VkStructureType pNext::Ptr{Void} flags::VkDescriptorPoolCreateFlags maxSets::UInt32 poolSizeCount::UInt32 pPoolSizes::Ptr{VkDescriptorPoolSize} end immutable VkDescriptorSetAllocateInfo sType::VkStructureType pNext::Ptr{Void} descriptorPool::VkDescriptorPool descriptorSetCount::UInt32 pSetLayouts::Ptr{VkDescriptorSetLayout} end immutable VkDescriptorImageInfo sampler::VkSampler imageView::VkImageView imageLayout::VkImageLayout end immutable VkDescriptorBufferInfo buffer::VkBuffer offset::VkDeviceSize range::VkDeviceSize end immutable VkWriteDescriptorSet sType::VkStructureType pNext::Ptr{Void} dstSet::VkDescriptorSet dstBinding::UInt32 dstArrayElement::UInt32 descriptorCount::UInt32 descriptorType::VkDescriptorType pImageInfo::Ptr{VkDescriptorImageInfo} pBufferInfo::Ptr{VkDescriptorBufferInfo} pTexelBufferView::Ptr{VkBufferView} end immutable VkCopyDescriptorSet sType::VkStructureType pNext::Ptr{Void} srcSet::VkDescriptorSet srcBinding::UInt32 srcArrayElement::UInt32 dstSet::VkDescriptorSet dstBinding::UInt32 dstArrayElement::UInt32 descriptorCount::UInt32 end immutable VkFramebufferCreateInfo sType::VkStructureType pNext::Ptr{Void} flags::VkFramebufferCreateFlags renderPass::VkRenderPass attachmentCount::UInt32 pAttachments::Ptr{VkImageView} width::UInt32 height::UInt32 layers::UInt32 end immutable VkAttachmentDescription flags::VkAttachmentDescriptionFlags format::VkFormat samples::VkSampleCountFlagBits loadOp::VkAttachmentLoadOp storeOp::VkAttachmentStoreOp stencilLoadOp::VkAttachmentLoadOp stencilStoreOp::VkAttachmentStoreOp initialLayout::VkImageLayout finalLayout::VkImageLayout end immutable VkAttachmentReference attachment::UInt32 layout::VkImageLayout end immutable VkSubpassDescription flags::VkSubpassDescriptionFlags pipelineBindPoint::VkPipelineBindPoint inputAttachmentCount::UInt32 pInputAttachments::Ptr{VkAttachmentReference} colorAttachmentCount::UInt32 pColorAttachments::Ptr{VkAttachmentReference} pResolveAttachments::Ptr{VkAttachmentReference} pDepthStencilAttachment::Ptr{VkAttachmentReference} preserveAttachmentCount::UInt32 pPreserveAttachments::Ptr{UInt32} end immutable VkSubpassDependency srcSubpass::UInt32 dstSubpass::UInt32 srcStageMask::VkPipelineStageFlags dstStageMask::VkPipelineStageFlags srcAccessMask::VkAccessFlags dstAccessMask::VkAccessFlags dependencyFlags::VkDependencyFlags end immutable VkRenderPassCreateInfo sType::VkStructureType pNext::Ptr{Void} flags::VkRenderPassCreateFlags attachmentCount::UInt32 pAttachments::Ptr{VkAttachmentDescription} subpassCount::UInt32 pSubpasses::Ptr{VkSubpassDescription} dependencyCount::UInt32 pDependencies::Ptr{VkSubpassDependency} end immutable VkCommandPoolCreateInfo sType::VkStructureType pNext::Ptr{Void} flags::VkCommandPoolCreateFlags queueFamilyIndex::UInt32 end immutable VkCommandBufferAllocateInfo sType::VkStructureType pNext::Ptr{Void} commandPool::VkCommandPool level::VkCommandBufferLevel commandBufferCount::UInt32 end immutable VkCommandBufferInheritanceInfo sType::VkStructureType pNext::Ptr{Void} renderPass::VkRenderPass subpass::UInt32 framebuffer::VkFramebuffer occlusionQueryEnable::VkBool32 queryFlags::VkQueryControlFlags pipelineStatistics::VkQueryPipelineStatisticFlags end immutable VkCommandBufferBeginInfo sType::VkStructureType pNext::Ptr{Void} flags::VkCommandBufferUsageFlags pInheritanceInfo::Ptr{VkCommandBufferInheritanceInfo} end immutable VkBufferCopy srcOffset::VkDeviceSize dstOffset::VkDeviceSize size::VkDeviceSize end immutable VkImageSubresourceLayers aspectMask::VkImageAspectFlags mipLevel::UInt32 baseArrayLayer::UInt32 layerCount::UInt32 end immutable VkImageCopy srcSubresource::VkImageSubresourceLayers srcOffset::VkOffset3D dstSubresource::VkImageSubresourceLayers dstOffset::VkOffset3D extent::VkExtent3D end immutable VkImageBlit srcSubresource::VkImageSubresourceLayers srcOffsets::NTuple{2,VkOffset3D} dstSubresource::VkImageSubresourceLayers dstOffsets::NTuple{2,VkOffset3D} end immutable VkBufferImageCopy bufferOffset::VkDeviceSize bufferRowLength::UInt32 bufferImageHeight::UInt32 imageSubresource::VkImageSubresourceLayers imageOffset::VkOffset3D imageExtent::VkExtent3D end immutable VkClearColorValue _VkClearColorValue::NTuple{4,Cfloat} end immutable VkClearDepthStencilValue depth::Cfloat stencil::UInt32 end immutable VkClearValue _VkClearValue::VkClearColorValue end immutable VkClearAttachment aspectMask::VkImageAspectFlags colorAttachment::UInt32 clearValue::VkClearValue end immutable VkClearRect rect::VkRect2D baseArrayLayer::UInt32 layerCount::UInt32 end immutable VkImageResolve srcSubresource::VkImageSubresourceLayers srcOffset::VkOffset3D dstSubresource::VkImageSubresourceLayers dstOffset::VkOffset3D extent::VkExtent3D end immutable VkMemoryBarrier sType::VkStructureType pNext::Ptr{Void} srcAccessMask::VkAccessFlags dstAccessMask::VkAccessFlags end immutable VkBufferMemoryBarrier sType::VkStructureType pNext::Ptr{Void} srcAccessMask::VkAccessFlags dstAccessMask::VkAccessFlags srcQueueFamilyIndex::UInt32 dstQueueFamilyIndex::UInt32 buffer::VkBuffer offset::VkDeviceSize size::VkDeviceSize end immutable VkImageMemoryBarrier sType::VkStructureType pNext::Ptr{Void} srcAccessMask::VkAccessFlags dstAccessMask::VkAccessFlags oldLayout::VkImageLayout newLayout::VkImageLayout srcQueueFamilyIndex::UInt32 dstQueueFamilyIndex::UInt32 image::VkImage subresourceRange::VkImageSubresourceRange end immutable VkRenderPassBeginInfo sType::VkStructureType pNext::Ptr{Void} renderPass::VkRenderPass framebuffer::VkFramebuffer renderArea::VkRect2D clearValueCount::UInt32 pClearValues::Ptr{VkClearValue} end immutable VkDispatchIndirectCommand x::UInt32 y::UInt32 z::UInt32 end immutable VkDrawIndexedIndirectCommand indexCount::UInt32 instanceCount::UInt32 firstIndex::UInt32 vertexOffset::Int32 firstInstance::UInt32 end immutable VkDrawIndirectCommand vertexCount::UInt32 instanceCount::UInt32 firstVertex::UInt32 firstInstance::UInt32 end typealias PFN_vkCreateInstance Ptr{Void} typealias PFN_vkDestroyInstance Ptr{Void} typealias PFN_vkEnumeratePhysicalDevices Ptr{Void} typealias PFN_vkGetPhysicalDeviceFeatures Ptr{Void} typealias PFN_vkGetPhysicalDeviceFormatProperties Ptr{Void} typealias PFN_vkGetPhysicalDeviceImageFormatProperties Ptr{Void} typealias PFN_vkGetPhysicalDeviceProperties Ptr{Void} typealias PFN_vkGetPhysicalDeviceQueueFamilyProperties Ptr{Void} typealias PFN_vkGetPhysicalDeviceMemoryProperties Ptr{Void} typealias PFN_vkGetInstanceProcAddr Ptr{Void} typealias PFN_vkGetDeviceProcAddr Ptr{Void} typealias PFN_vkCreateDevice Ptr{Void} typealias PFN_vkDestroyDevice Ptr{Void} typealias PFN_vkEnumerateInstanceExtensionProperties Ptr{Void} typealias PFN_vkEnumerateDeviceExtensionProperties Ptr{Void} typealias PFN_vkEnumerateInstanceLayerProperties Ptr{Void} typealias PFN_vkEnumerateDeviceLayerProperties Ptr{Void} typealias PFN_vkGetDeviceQueue Ptr{Void} typealias PFN_vkQueueSubmit Ptr{Void} typealias PFN_vkQueueWaitIdle Ptr{Void} typealias PFN_vkDeviceWaitIdle Ptr{Void} typealias PFN_vkAllocateMemory Ptr{Void} typealias PFN_vkFreeMemory Ptr{Void} typealias PFN_vkMapMemory Ptr{Void} typealias PFN_vkUnmapMemory Ptr{Void} typealias PFN_vkFlushMappedMemoryRanges Ptr{Void} typealias PFN_vkInvalidateMappedMemoryRanges Ptr{Void} typealias PFN_vkGetDeviceMemoryCommitment Ptr{Void} typealias PFN_vkBindBufferMemory Ptr{Void} typealias PFN_vkBindImageMemory Ptr{Void} typealias PFN_vkGetBufferMemoryRequirements Ptr{Void} typealias PFN_vkGetImageMemoryRequirements Ptr{Void} typealias PFN_vkGetImageSparseMemoryRequirements Ptr{Void} typealias PFN_vkGetPhysicalDeviceSparseImageFormatProperties Ptr{Void} typealias PFN_vkQueueBindSparse Ptr{Void} typealias PFN_vkCreateFence Ptr{Void} typealias PFN_vkDestroyFence Ptr{Void} typealias PFN_vkResetFences Ptr{Void} typealias PFN_vkGetFenceStatus Ptr{Void} typealias PFN_vkWaitForFences Ptr{Void} typealias PFN_vkCreateSemaphore Ptr{Void} typealias PFN_vkDestroySemaphore Ptr{Void} typealias PFN_vkCreateEvent Ptr{Void} typealias PFN_vkDestroyEvent Ptr{Void} typealias PFN_vkGetEventStatus Ptr{Void} typealias PFN_vkSetEvent Ptr{Void} typealias PFN_vkResetEvent Ptr{Void} typealias PFN_vkCreateQueryPool Ptr{Void} typealias PFN_vkDestroyQueryPool Ptr{Void} typealias PFN_vkGetQueryPoolResults Ptr{Void} typealias PFN_vkCreateBuffer Ptr{Void} typealias PFN_vkDestroyBuffer Ptr{Void} typealias PFN_vkCreateBufferView Ptr{Void} typealias PFN_vkDestroyBufferView Ptr{Void} typealias PFN_vkCreateImage Ptr{Void} typealias PFN_vkDestroyImage Ptr{Void} typealias PFN_vkGetImageSubresourceLayout Ptr{Void} typealias PFN_vkCreateImageView Ptr{Void} typealias PFN_vkDestroyImageView Ptr{Void} typealias PFN_vkCreateShaderModule Ptr{Void} typealias PFN_vkDestroyShaderModule Ptr{Void} typealias PFN_vkCreatePipelineCache Ptr{Void} typealias PFN_vkDestroyPipelineCache Ptr{Void} typealias PFN_vkGetPipelineCacheData Ptr{Void} typealias PFN_vkMergePipelineCaches Ptr{Void} typealias PFN_vkCreateGraphicsPipelines Ptr{Void} typealias PFN_vkCreateComputePipelines Ptr{Void} typealias PFN_vkDestroyPipeline Ptr{Void} typealias PFN_vkCreatePipelineLayout Ptr{Void} typealias PFN_vkDestroyPipelineLayout Ptr{Void} typealias PFN_vkCreateSampler Ptr{Void} typealias PFN_vkDestroySampler Ptr{Void} typealias PFN_vkCreateDescriptorSetLayout Ptr{Void} typealias PFN_vkDestroyDescriptorSetLayout Ptr{Void} typealias PFN_vkCreateDescriptorPool Ptr{Void} typealias PFN_vkDestroyDescriptorPool Ptr{Void} typealias PFN_vkResetDescriptorPool Ptr{Void} typealias PFN_vkAllocateDescriptorSets Ptr{Void} typealias PFN_vkFreeDescriptorSets Ptr{Void} typealias PFN_vkUpdateDescriptorSets Ptr{Void} typealias PFN_vkCreateFramebuffer Ptr{Void} typealias PFN_vkDestroyFramebuffer Ptr{Void} typealias PFN_vkCreateRenderPass Ptr{Void} typealias PFN_vkDestroyRenderPass Ptr{Void} typealias PFN_vkGetRenderAreaGranularity Ptr{Void} typealias PFN_vkCreateCommandPool Ptr{Void} typealias PFN_vkDestroyCommandPool Ptr{Void} typealias PFN_vkResetCommandPool Ptr{Void} typealias PFN_vkAllocateCommandBuffers Ptr{Void} typealias PFN_vkFreeCommandBuffers Ptr{Void} typealias PFN_vkBeginCommandBuffer Ptr{Void} typealias PFN_vkEndCommandBuffer Ptr{Void} typealias PFN_vkResetCommandBuffer Ptr{Void} typealias PFN_vkCmdBindPipeline Ptr{Void} typealias PFN_vkCmdSetViewport Ptr{Void} typealias PFN_vkCmdSetScissor Ptr{Void} typealias PFN_vkCmdSetLineWidth Ptr{Void} typealias PFN_vkCmdSetDepthBias Ptr{Void} typealias PFN_vkCmdSetBlendConstants Ptr{Void} typealias PFN_vkCmdSetDepthBounds Ptr{Void} typealias PFN_vkCmdSetStencilCompareMask Ptr{Void} typealias PFN_vkCmdSetStencilWriteMask Ptr{Void} typealias PFN_vkCmdSetStencilReference Ptr{Void} typealias PFN_vkCmdBindDescriptorSets Ptr{Void} typealias PFN_vkCmdBindIndexBuffer Ptr{Void} typealias PFN_vkCmdBindVertexBuffers Ptr{Void} typealias PFN_vkCmdDraw Ptr{Void} typealias PFN_vkCmdDrawIndexed Ptr{Void} typealias PFN_vkCmdDrawIndirect Ptr{Void} typealias PFN_vkCmdDrawIndexedIndirect Ptr{Void} typealias PFN_vkCmdDispatch Ptr{Void} typealias PFN_vkCmdDispatchIndirect Ptr{Void} typealias PFN_vkCmdCopyBuffer Ptr{Void} typealias PFN_vkCmdCopyImage Ptr{Void} typealias PFN_vkCmdBlitImage Ptr{Void} typealias PFN_vkCmdCopyBufferToImage Ptr{Void} typealias PFN_vkCmdCopyImageToBuffer Ptr{Void} typealias PFN_vkCmdUpdateBuffer Ptr{Void} typealias PFN_vkCmdFillBuffer Ptr{Void} typealias PFN_vkCmdClearColorImage Ptr{Void} typealias PFN_vkCmdClearDepthStencilImage Ptr{Void} typealias PFN_vkCmdClearAttachments Ptr{Void} typealias PFN_vkCmdResolveImage Ptr{Void} typealias PFN_vkCmdSetEvent Ptr{Void} typealias PFN_vkCmdResetEvent Ptr{Void} typealias PFN_vkCmdWaitEvents Ptr{Void} typealias PFN_vkCmdPipelineBarrier Ptr{Void} typealias PFN_vkCmdBeginQuery Ptr{Void} typealias PFN_vkCmdEndQuery Ptr{Void} typealias PFN_vkCmdResetQueryPool Ptr{Void} typealias PFN_vkCmdWriteTimestamp Ptr{Void} typealias PFN_vkCmdCopyQueryPoolResults Ptr{Void} typealias PFN_vkCmdPushConstants Ptr{Void} typealias PFN_vkCmdBeginRenderPass Ptr{Void} typealias PFN_vkCmdNextSubpass Ptr{Void} typealias PFN_vkCmdEndRenderPass Ptr{Void} typealias PFN_vkCmdExecuteCommands Ptr{Void} typealias VkSurfaceKHR_T Void typealias VkSurfaceKHR Ptr{VkSurfaceKHR_T} @cenum(VkColorSpaceKHR, VK_COLORSPACE_SRGB_NONLINEAR_KHR = 0, VK_COLOR_SPACE_BEGIN_RANGE_KHR = 0, VK_COLOR_SPACE_END_RANGE_KHR = 0, VK_COLOR_SPACE_RANGE_SIZE_KHR = 1, VK_COLOR_SPACE_MAX_ENUM_KHR = 2147483647, ) @cenum(VkPresentModeKHR, VK_PRESENT_MODE_IMMEDIATE_KHR = 0, VK_PRESENT_MODE_MAILBOX_KHR = 1, VK_PRESENT_MODE_FIFO_KHR = 2, VK_PRESENT_MODE_FIFO_RELAXED_KHR = 3, VK_PRESENT_MODE_BEGIN_RANGE_KHR = 0, VK_PRESENT_MODE_END_RANGE_KHR = 3, VK_PRESENT_MODE_RANGE_SIZE_KHR = 4, VK_PRESENT_MODE_MAX_ENUM_KHR = 2147483647, ) @cenum(VkSurfaceTransformFlagBitsKHR, VK_SURFACE_TRANSFORM_IDENTITY_BIT_KHR = 1, VK_SURFACE_TRANSFORM_ROTATE_90_BIT_KHR = 2, VK_SURFACE_TRANSFORM_ROTATE_180_BIT_KHR = 4, VK_SURFACE_TRANSFORM_ROTATE_270_BIT_KHR = 8, VK_SURFACE_TRANSFORM_HORIZONTAL_MIRROR_BIT_KHR = 16, VK_SURFACE_TRANSFORM_HORIZONTAL_MIRROR_ROTATE_90_BIT_KHR = 32, VK_SURFACE_TRANSFORM_HORIZONTAL_MIRROR_ROTATE_180_BIT_KHR = 64, VK_SURFACE_TRANSFORM_HORIZONTAL_MIRROR_ROTATE_270_BIT_KHR = 128, VK_SURFACE_TRANSFORM_INHERIT_BIT_KHR = 256, VK_SURFACE_TRANSFORM_FLAG_BITS_MAX_ENUM_KHR = 2147483647, ) typealias VkSurfaceTransformFlagsKHR VkFlags @cenum(VkCompositeAlphaFlagBitsKHR, VK_COMPOSITE_ALPHA_OPAQUE_BIT_KHR = 1, VK_COMPOSITE_ALPHA_PRE_MULTIPLIED_BIT_KHR = 2, VK_COMPOSITE_ALPHA_POST_MULTIPLIED_BIT_KHR = 4, VK_COMPOSITE_ALPHA_INHERIT_BIT_KHR = 8, VK_COMPOSITE_ALPHA_FLAG_BITS_MAX_ENUM_KHR = 2147483647, ) typealias VkCompositeAlphaFlagsKHR VkFlags immutable VkSurfaceCapabilitiesKHR minImageCount::UInt32 maxImageCount::UInt32 currentExtent::VkExtent2D minImageExtent::VkExtent2D maxImageExtent::VkExtent2D maxImageArrayLayers::UInt32 supportedTransforms::VkSurfaceTransformFlagsKHR currentTransform::VkSurfaceTransformFlagBitsKHR supportedCompositeAlpha::VkCompositeAlphaFlagsKHR supportedUsageFlags::VkImageUsageFlags end immutable VkSurfaceFormatKHR format::VkFormat colorSpace::VkColorSpaceKHR end typealias PFN_vkDestroySurfaceKHR Ptr{Void} typealias PFN_vkGetPhysicalDeviceSurfaceSupportKHR Ptr{Void} typealias PFN_vkGetPhysicalDeviceSurfaceCapabilitiesKHR Ptr{Void} typealias PFN_vkGetPhysicalDeviceSurfaceFormatsKHR Ptr{Void} typealias PFN_vkGetPhysicalDeviceSurfacePresentModesKHR Ptr{Void} typealias VkSwapchainKHR_T Void typealias VkSwapchainKHR Ptr{VkSwapchainKHR_T} typealias VkSwapchainCreateFlagsKHR VkFlags immutable VkSwapchainCreateInfoKHR sType::VkStructureType pNext::Ptr{Void} flags::VkSwapchainCreateFlagsKHR surface::VkSurfaceKHR minImageCount::UInt32 imageFormat::VkFormat imageColorSpace::VkColorSpaceKHR imageExtent::VkExtent2D imageArrayLayers::UInt32 imageUsage::VkImageUsageFlags imageSharingMode::VkSharingMode queueFamilyIndexCount::UInt32 pQueueFamilyIndices::Ptr{UInt32} preTransform::VkSurfaceTransformFlagBitsKHR compositeAlpha::VkCompositeAlphaFlagBitsKHR presentMode::VkPresentModeKHR clipped::VkBool32 oldSwapchain::VkSwapchainKHR end immutable VkPresentInfoKHR sType::VkStructureType pNext::Ptr{Void} waitSemaphoreCount::UInt32 pWaitSemaphores::Ptr{VkSemaphore} swapchainCount::UInt32 pSwapchains::Ptr{VkSwapchainKHR} pImageIndices::Ptr{UInt32} pResults::Ptr{VkResult} end typealias PFN_vkCreateSwapchainKHR Ptr{Void} typealias PFN_vkDestroySwapchainKHR Ptr{Void} typealias PFN_vkGetSwapchainImagesKHR Ptr{Void} typealias PFN_vkAcquireNextImageKHR Ptr{Void} typealias PFN_vkQueuePresentKHR Ptr{Void} typealias VkDisplayKHR_T Void typealias VkDisplayKHR Ptr{VkDisplayKHR_T} typealias VkDisplayModeKHR_T Void typealias VkDisplayModeKHR Ptr{VkDisplayModeKHR_T} @cenum(VkDisplayPlaneAlphaFlagBitsKHR, VK_DISPLAY_PLANE_ALPHA_OPAQUE_BIT_KHR = 1, VK_DISPLAY_PLANE_ALPHA_GLOBAL_BIT_KHR = 2, VK_DISPLAY_PLANE_ALPHA_PER_PIXEL_BIT_KHR = 4, VK_DISPLAY_PLANE_ALPHA_PER_PIXEL_PREMULTIPLIED_BIT_KHR = 8, VK_DISPLAY_PLANE_ALPHA_FLAG_BITS_MAX_ENUM_KHR = 2147483647, ) typealias VkDisplayPlaneAlphaFlagsKHR VkFlags typealias VkDisplayModeCreateFlagsKHR VkFlags typealias VkDisplaySurfaceCreateFlagsKHR VkFlags immutable VkDisplayPropertiesKHR display::VkDisplayKHR displayName::Cstring physicalDimensions::VkExtent2D physicalResolution::VkExtent2D supportedTransforms::VkSurfaceTransformFlagsKHR planeReorderPossible::VkBool32 persistentContent::VkBool32 end immutable VkDisplayModeParametersKHR visibleRegion::VkExtent2D refreshRate::UInt32 end immutable VkDisplayModePropertiesKHR displayMode::VkDisplayModeKHR parameters::VkDisplayModeParametersKHR end immutable VkDisplayModeCreateInfoKHR sType::VkStructureType pNext::Ptr{Void} flags::VkDisplayModeCreateFlagsKHR parameters::VkDisplayModeParametersKHR end immutable VkDisplayPlaneCapabilitiesKHR supportedAlpha::VkDisplayPlaneAlphaFlagsKHR minSrcPosition::VkOffset2D maxSrcPosition::VkOffset2D minSrcExtent::VkExtent2D maxSrcExtent::VkExtent2D minDstPosition::VkOffset2D maxDstPosition::VkOffset2D minDstExtent::VkExtent2D maxDstExtent::VkExtent2D end immutable VkDisplayPlanePropertiesKHR currentDisplay::VkDisplayKHR currentStackIndex::UInt32 end immutable VkDisplaySurfaceCreateInfoKHR sType::VkStructureType pNext::Ptr{Void} flags::VkDisplaySurfaceCreateFlagsKHR displayMode::VkDisplayModeKHR planeIndex::UInt32 planeStackIndex::UInt32 transform::VkSurfaceTransformFlagBitsKHR globalAlpha::Cfloat alphaMode::VkDisplayPlaneAlphaFlagBitsKHR imageExtent::VkExtent2D end typealias PFN_vkGetPhysicalDeviceDisplayPropertiesKHR Ptr{Void} typealias PFN_vkGetPhysicalDeviceDisplayPlanePropertiesKHR Ptr{Void} typealias PFN_vkGetDisplayPlaneSupportedDisplaysKHR Ptr{Void} typealias PFN_vkGetDisplayModePropertiesKHR Ptr{Void} typealias PFN_vkCreateDisplayModeKHR Ptr{Void} typealias PFN_vkGetDisplayPlaneCapabilitiesKHR Ptr{Void} typealias PFN_vkCreateDisplayPlaneSurfaceKHR Ptr{Void} immutable VkDisplayPresentInfoKHR sType::VkStructureType pNext::Ptr{Void} srcRect::VkRect2D dstRect::VkRect2D persistent::VkBool32 end typealias PFN_vkCreateSharedSwapchainsKHR Ptr{Void} typealias VkXcbSurfaceCreateFlagsKHR VkFlags immutable VkXcbSurfaceCreateInfoKHR sType::VkStructureType pNext::Ptr{Void} flags::VkXcbSurfaceCreateFlagsKHR connection::Ptr{xcb_connection_t} window::xcb_window_t end typealias PFN_vkCreateXcbSurfaceKHR Ptr{Void} typealias PFN_vkGetPhysicalDeviceXcbPresentationSupportKHR Ptr{Void} typealias VkWaylandSurfaceCreateFlagsKHR VkFlags immutable VkWaylandSurfaceCreateInfoKHR sType::VkStructureType pNext::Ptr{Void} flags::VkWaylandSurfaceCreateFlagsKHR display::Ptr{wl_display} surface::Ptr{wl_surface} end typealias PFN_vkCreateWaylandSurfaceKHR Ptr{Void} typealias PFN_vkGetPhysicalDeviceWaylandPresentationSupportKHR Ptr{Void} typealias VkMirSurfaceCreateFlagsKHR VkFlags immutable VkMirSurfaceCreateInfoKHR sType::VkStructureType pNext::Ptr{Void} flags::VkMirSurfaceCreateFlagsKHR connection::Ptr{Cint} mirSurface::Ptr{Cint} end typealias PFN_vkCreateMirSurfaceKHR Ptr{Void} typealias PFN_vkGetPhysicalDeviceMirPresentationSupportKHR Ptr{Void} typealias VkWin32SurfaceCreateFlagsKHR VkFlags immutable VkWin32SurfaceCreateInfoKHR sType::VkStructureType pNext::Ptr{Void} flags::VkWin32SurfaceCreateFlagsKHR hinstance::Cint hwnd::Cint end typealias PFN_vkCreateWin32SurfaceKHR Ptr{Void} typealias PFN_vkGetPhysicalDeviceWin32PresentationSupportKHR Ptr{Void} typealias VkDebugReportCallbackEXT_T Void typealias VkDebugReportCallbackEXT Ptr{VkDebugReportCallbackEXT_T} @cenum(VkDebugReportObjectTypeEXT, VK_DEBUG_REPORT_OBJECT_TYPE_UNKNOWN_EXT = 0, VK_DEBUG_REPORT_OBJECT_TYPE_INSTANCE_EXT = 1, VK_DEBUG_REPORT_OBJECT_TYPE_PHYSICAL_DEVICE_EXT = 2, VK_DEBUG_REPORT_OBJECT_TYPE_DEVICE_EXT = 3, VK_DEBUG_REPORT_OBJECT_TYPE_QUEUE_EXT = 4, VK_DEBUG_REPORT_OBJECT_TYPE_SEMAPHORE_EXT = 5, VK_DEBUG_REPORT_OBJECT_TYPE_COMMAND_BUFFER_EXT = 6, VK_DEBUG_REPORT_OBJECT_TYPE_FENCE_EXT = 7, VK_DEBUG_REPORT_OBJECT_TYPE_DEVICE_MEMORY_EXT = 8, VK_DEBUG_REPORT_OBJECT_TYPE_BUFFER_EXT = 9, VK_DEBUG_REPORT_OBJECT_TYPE_IMAGE_EXT = 10, VK_DEBUG_REPORT_OBJECT_TYPE_EVENT_EXT = 11, VK_DEBUG_REPORT_OBJECT_TYPE_QUERY_POOL_EXT = 12, VK_DEBUG_REPORT_OBJECT_TYPE_BUFFER_VIEW_EXT = 13, VK_DEBUG_REPORT_OBJECT_TYPE_IMAGE_VIEW_EXT = 14, VK_DEBUG_REPORT_OBJECT_TYPE_SHADER_MODULE_EXT = 15, VK_DEBUG_REPORT_OBJECT_TYPE_PIPELINE_CACHE_EXT = 16, VK_DEBUG_REPORT_OBJECT_TYPE_PIPELINE_LAYOUT_EXT = 17, VK_DEBUG_REPORT_OBJECT_TYPE_RENDER_PASS_EXT = 18, VK_DEBUG_REPORT_OBJECT_TYPE_PIPELINE_EXT = 19, VK_DEBUG_REPORT_OBJECT_TYPE_DESCRIPTOR_SET_LAYOUT_EXT = 20, VK_DEBUG_REPORT_OBJECT_TYPE_SAMPLER_EXT = 21, VK_DEBUG_REPORT_OBJECT_TYPE_DESCRIPTOR_POOL_EXT = 22, VK_DEBUG_REPORT_OBJECT_TYPE_DESCRIPTOR_SET_EXT = 23, VK_DEBUG_REPORT_OBJECT_TYPE_FRAMEBUFFER_EXT = 24, VK_DEBUG_REPORT_OBJECT_TYPE_COMMAND_POOL_EXT = 25, VK_DEBUG_REPORT_OBJECT_TYPE_SURFACE_KHR_EXT = 26, VK_DEBUG_REPORT_OBJECT_TYPE_SWAPCHAIN_KHR_EXT = 27, VK_DEBUG_REPORT_OBJECT_TYPE_DEBUG_REPORT_EXT = 28, VK_DEBUG_REPORT_OBJECT_TYPE_BEGIN_RANGE_EXT = 0, VK_DEBUG_REPORT_OBJECT_TYPE_END_RANGE_EXT = 28, VK_DEBUG_REPORT_OBJECT_TYPE_RANGE_SIZE_EXT = 29, VK_DEBUG_REPORT_OBJECT_TYPE_MAX_ENUM_EXT = 2147483647, ) @cenum(VkDebugReportErrorEXT, VK_DEBUG_REPORT_ERROR_NONE_EXT = 0, VK_DEBUG_REPORT_ERROR_CALLBACK_REF_EXT = 1, VK_DEBUG_REPORT_ERROR_BEGIN_RANGE_EXT = 0, VK_DEBUG_REPORT_ERROR_END_RANGE_EXT = 1, VK_DEBUG_REPORT_ERROR_RANGE_SIZE_EXT = 2, VK_DEBUG_REPORT_ERROR_MAX_ENUM_EXT = 2147483647, ) @cenum(VkDebugReportFlagBitsEXT, VK_DEBUG_REPORT_INFORMATION_BIT_EXT = 1, VK_DEBUG_REPORT_WARNING_BIT_EXT = 2, VK_DEBUG_REPORT_PERFORMANCE_WARNING_BIT_EXT = 4, VK_DEBUG_REPORT_ERROR_BIT_EXT = 8, VK_DEBUG_REPORT_DEBUG_BIT_EXT = 16, VK_DEBUG_REPORT_FLAG_BITS_MAX_ENUM_EXT = 2147483647, ) typealias VkDebugReportFlagsEXT VkFlags typealias PFN_vkDebugReportCallbackEXT Ptr{Void} immutable VkDebugReportCallbackCreateInfoEXT sType::VkStructureType pNext::Ptr{Void} flags::VkDebugReportFlagsEXT pfnCallback::PFN_vkDebugReportCallbackEXT pUserData::Ptr{Void} end typealias PFN_vkCreateDebugReportCallbackEXT Ptr{Void} typealias PFN_vkDestroyDebugReportCallbackEXT Ptr{Void} typealias PFN_vkDebugReportMessageEXT Ptr{Void}
[ 2, 17406, 4142, 7560, 1262, 1012, 648, 13, 20362, 14441, 62, 66, 11, 2196, 657, 13, 15, 13, 15, 198, 198, 3500, 3082, 265, 198, 198, 9979, 569, 6239, 42, 1565, 62, 39, 62, 796, 352, 198, 9979, 45917, 62, 43717, 62, 16, 62, 15, 796, 352, 198, 198, 2, 3661, 4501, 42755, 36621, 25, 45917, 62, 5673, 7336, 62, 43717, 357, 1688, 837, 4159, 837, 8529, 1267, 357, 357, 357, 1688, 1267, 9959, 2534, 1267, 930, 357, 357, 4159, 1267, 9959, 1105, 1267, 930, 357, 8529, 1267, 1267, 198, 2, 3661, 4501, 42755, 36621, 25, 45917, 62, 17614, 62, 43717, 62, 16, 62, 15, 45917, 62, 5673, 7336, 62, 43717, 357, 352, 837, 657, 837, 657, 1267, 198, 2, 3661, 4501, 42755, 36621, 25, 45917, 62, 43717, 62, 5673, 41, 1581, 357, 2196, 1267, 357, 357, 20398, 2624, 62, 83, 1267, 357, 2196, 1267, 9609, 2534, 1267, 198, 2, 3661, 4501, 42755, 36621, 25, 45917, 62, 43717, 62, 23678, 1581, 357, 2196, 1267, 357, 357, 357, 20398, 2624, 62, 83, 1267, 357, 2196, 1267, 9609, 1105, 1267, 1222, 657, 87, 18, 487, 1267, 198, 2, 3661, 4501, 42755, 36621, 25, 45917, 62, 43717, 62, 47, 11417, 357, 2196, 1267, 357, 357, 20398, 2624, 62, 83, 1267, 357, 2196, 1267, 1222, 657, 87, 20972, 1267, 198, 198, 9979, 45917, 62, 37682, 1137, 62, 43717, 796, 807, 198, 9979, 45917, 62, 33991, 62, 39, 6981, 2538, 796, 657, 198, 198, 2, 3661, 4501, 42755, 36621, 25, 45917, 62, 7206, 29940, 62, 39, 6981, 2538, 357, 2134, 1267, 25683, 891, 2878, 2134, 22492, 4808, 51, 1635, 2134, 2162, 198, 2, 3661, 4501, 42755, 36621, 25, 45917, 62, 7206, 29940, 62, 45, 1340, 62, 26288, 47, 11417, 17534, 62, 39, 6981, 2538, 357, 2134, 1267, 25683, 891, 2878, 2134, 22492, 4808, 51, 1635, 2134, 2162, 198, 198, 9979, 45917, 62, 38543, 62, 5097, 23518, 62, 45, 11651, 796, 48436, 2624, 7, 12825, 13, 15, 8, 198, 9979, 45917, 62, 2200, 5673, 1268, 2751, 62, 44, 4061, 62, 2538, 18697, 50, 796, 5299, 7, 52, 5317, 2624, 7, 15, 4008, 198, 9979, 45917, 62, 2200, 5673, 1268, 2751, 62, 1503, 30631, 62, 43, 4792, 4877, 796, 5299, 7, 52, 5317, 2624, 7, 15, 4008, 198, 9979, 45917, 62, 41856, 2538, 62, 33489, 796, 5299, 7, 52, 5317, 2414, 7, 15, 4008, 198, 9979, 45917, 62, 17139, 16219, 10979, 62, 4944, 2937, 1961, 796, 5299, 7, 52, 5317, 2624, 7, 15, 4008, 198, 9979, 45917, 62, 5446, 8924, 796, 352, 198, 9979, 45917, 62, 37, 23719, 796, 657, 198, 9979, 45917, 62, 48, 8924, 8924, 62, 37, 2390, 33340, 62, 16284, 32023, 796, 5299, 7, 52, 5317, 2624, 7, 15, 4008, 198, 9979, 45917, 62, 50, 10526, 47924, 62, 6369, 31800, 1847, 796, 5299, 7, 52, 5317, 2624, 7, 15, 4008, 198, 9979, 45917, 62, 22921, 62, 11909, 16309, 20151, 62, 7206, 27389, 62, 20608, 62, 33489, 796, 17759, 198, 9979, 45917, 62, 52, 27586, 62, 33489, 796, 1467, 198, 9979, 45917, 62, 22921, 62, 44, 3620, 15513, 62, 9936, 47, 1546, 796, 3933, 198, 9979, 45917, 62, 22921, 62, 44, 3620, 15513, 62, 13909, 44580, 796, 1467, 198, 9979, 45917, 62, 22921, 62, 13918, 16938, 2849, 62, 20608, 62, 33489, 796, 17759, 198, 9979, 45917, 62, 22921, 62, 30910, 40165, 62, 33489, 796, 17759, 198, 9979, 45917, 62, 42, 17184, 62, 42029, 796, 352, 198, 9979, 45917, 62, 42, 17184, 62, 50, 4261, 49836, 62, 48451, 62, 43717, 796, 1679, 198, 9979, 45917, 62, 42, 17184, 62, 50, 4261, 49836, 62, 13918, 16938, 2849, 62, 20608, 796, 366, 47191, 62, 42, 17184, 62, 42029, 1, 198, 9979, 45917, 62, 42, 17184, 62, 2032, 499, 7983, 796, 352, 198, 9979, 45917, 62, 42, 17184, 62, 17887, 2969, 3398, 29833, 62, 48451, 62, 43717, 796, 8275, 198, 9979, 45917, 62, 42, 17184, 62, 17887, 2969, 3398, 29833, 62, 13918, 16938, 2849, 62, 20608, 796, 366, 47191, 62, 42, 17184, 62, 2032, 499, 7983, 1, 198, 9979, 45917, 62, 42, 17184, 62, 13812, 796, 352, 198, 9979, 45917, 62, 42, 17184, 62, 26288, 31519, 62, 48451, 62, 43717, 796, 2310, 198, 9979, 45917, 62, 42, 17184, 62, 26288, 31519, 62, 13918, 16938, 2849, 62, 20608, 796, 366, 47191, 62, 42, 17184, 62, 13812, 1, 198, 9979, 45917, 62, 42, 17184, 62, 13812, 62, 2032, 499, 7983, 796, 352, 198, 9979, 45917, 62, 42, 17184, 62, 26288, 31519, 62, 17887, 2969, 3398, 29833, 62, 48451, 62, 43717, 796, 860, 198, 9979, 45917, 62, 42, 17184, 62, 26288, 31519, 62, 17887, 2969, 3398, 29833, 62, 13918, 16938, 2849, 62, 20608, 796, 366, 47191, 62, 42, 17184, 62, 13812, 62, 2032, 499, 7983, 1, 198, 9979, 45917, 62, 42, 17184, 62, 87, 21101, 62, 42029, 796, 352, 198, 9979, 45917, 62, 42, 17184, 62, 55, 23199, 62, 50, 4261, 49836, 62, 48451, 62, 43717, 796, 718, 198, 9979, 45917, 62, 42, 17184, 62, 55, 23199, 62, 50, 4261, 49836, 62, 13918, 16938, 2849, 62, 20608, 796, 366, 47191, 62, 42, 17184, 62, 87, 21101, 62, 42029, 1, 198, 9979, 45917, 62, 42, 17184, 62, 1014, 1044, 62, 42029, 796, 352, 198, 9979, 45917, 62, 42, 17184, 62, 27285, 28182, 62, 50, 4261, 49836, 62, 48451, 62, 43717, 796, 642, 198, 9979, 45917, 62, 42, 17184, 62, 27285, 28182, 62, 50, 4261, 49836, 62, 13918, 16938, 2849, 62, 20608, 796, 366, 47191, 62, 42, 17184, 62, 1014, 1044, 62, 42029, 1, 198, 9979, 45917, 62, 42, 17184, 62, 10793, 62, 42029, 796, 352, 198, 9979, 45917, 62, 42, 17184, 62, 44, 4663, 62, 50, 4261, 49836, 62, 48451, 62, 43717, 796, 604, 198, 9979, 45917, 62, 42, 17184, 62, 44, 4663, 62, 50, 4261, 49836, 62, 13918, 16938, 2849, 62, 20608, 796, 366, 47191, 62, 42, 17184, 62, 10793, 62, 42029, 1, 198, 9979, 45917, 62, 42, 17184, 62, 5404, 2624, 62, 42029, 796, 352, 198, 9979, 45917, 62, 42, 17184, 62, 37620, 2624, 62, 50, 4261, 49836, 62, 48451, 62, 43717, 796, 642, 198, 9979, 45917, 62, 42, 17184, 62, 37620, 2624, 62, 50, 4261, 49836, 62, 13918, 16938, 2849, 62, 20608, 796, 366, 47191, 62, 42, 17184, 62, 5404, 2624, 62, 42029, 1, 198, 9979, 45917, 62, 42, 17184, 62, 37687, 20053, 62, 10793, 1472, 62, 565, 696, 62, 1462, 62, 14907, 796, 352, 198, 9979, 45917, 62, 42, 17184, 62, 49302, 6489, 1137, 62, 44, 4663, 16411, 62, 5097, 23518, 62, 10468, 62, 1961, 8264, 62, 48451, 62, 43717, 796, 352, 198, 9979, 45917, 62, 42, 17184, 62, 49302, 6489, 1137, 62, 44, 4663, 16411, 62, 5097, 23518, 62, 10468, 62, 1961, 8264, 62, 13918, 16938, 2849, 62, 20608, 796, 366, 47191, 62, 42, 17184, 62, 37687, 20053, 62, 10793, 1472, 62, 565, 696, 62, 1462, 62, 14907, 1, 198, 9979, 45917, 62, 13918, 62, 24442, 62, 13116, 796, 352, 198, 9979, 45917, 62, 13918, 62, 30531, 62, 2200, 15490, 62, 48451, 62, 43717, 796, 362, 198, 9979, 45917, 62, 13918, 62, 30531, 62, 2200, 15490, 62, 13918, 16938, 2849, 62, 20608, 796, 366, 47191, 62, 13918, 62, 24442, 62, 13116, 1, 198, 198, 31, 66, 44709, 7, 53, 74, 1273, 5620, 6030, 11, 198, 220, 220, 220, 45917, 62, 46126, 11335, 62, 25216, 62, 2969, 31484, 6234, 62, 10778, 796, 657, 11, 198, 220, 220, 220, 45917, 62, 46126, 11335, 62, 25216, 62, 38604, 19240, 62, 43387, 6158, 62, 10778, 796, 352, 11, 198, 220, 220, 220, 45917, 62, 46126, 11335, 62, 25216, 62, 7206, 27389, 62, 48, 8924, 8924, 62, 43387, 6158, 62, 10778, 796, 362, 11, 198, 220, 220, 220, 45917, 62, 46126, 11335, 62, 25216, 62, 7206, 27389, 62, 43387, 6158, 62, 10778, 796, 513, 11, 198, 220, 220, 220, 45917, 62, 46126, 11335, 62, 25216, 62, 50, 10526, 36393, 62, 10778, 796, 604, 11, 198, 220, 220, 220, 45917, 62, 46126, 11335, 62, 25216, 62, 44, 3620, 15513, 62, 7036, 4503, 6158, 62, 10778, 796, 642, 11, 198, 220, 220, 220, 45917, 62, 46126, 11335, 62, 25216, 62, 44, 24805, 1961, 62, 44, 3620, 15513, 62, 49, 27746, 796, 718, 11, 198, 220, 220, 220, 45917, 62, 46126, 11335, 62, 25216, 62, 33, 12115, 62, 4303, 1503, 5188, 62, 10778, 796, 767, 11, 198, 220, 220, 220, 45917, 62, 46126, 11335, 62, 25216, 62, 37, 18310, 62, 43387, 6158, 62, 10778, 796, 807, 11, 198, 220, 220, 220, 45917, 62, 46126, 11335, 62, 25216, 62, 50, 3620, 31300, 6965, 62, 43387, 6158, 62, 10778, 796, 860, 11, 198, 220, 220, 220, 45917, 62, 46126, 11335, 62, 25216, 62, 20114, 3525, 62, 43387, 6158, 62, 10778, 796, 838, 11, 198, 220, 220, 220, 45917, 62, 46126, 11335, 62, 25216, 62, 10917, 19664, 62, 16402, 3535, 62, 43387, 6158, 62, 10778, 796, 1367, 11, 198, 220, 220, 220, 45917, 62, 46126, 11335, 62, 25216, 62, 19499, 45746, 62, 43387, 6158, 62, 10778, 796, 1105, 11, 198, 220, 220, 220, 45917, 62, 46126, 11335, 62, 25216, 62, 19499, 45746, 62, 28206, 62, 43387, 6158, 62, 10778, 796, 1511, 11, 198, 220, 220, 220, 45917, 62, 46126, 11335, 62, 25216, 62, 3955, 11879, 62, 43387, 6158, 62, 10778, 796, 1478, 11, 198, 220, 220, 220, 45917, 62, 46126, 11335, 62, 25216, 62, 3955, 11879, 62, 28206, 62, 43387, 6158, 62, 10778, 796, 1315, 11, 198, 220, 220, 220, 45917, 62, 46126, 11335, 62, 25216, 62, 9693, 2885, 1137, 62, 33365, 24212, 62, 43387, 6158, 62, 10778, 796, 1467, 11, 198, 220, 220, 220, 45917, 62, 46126, 11335, 62, 25216, 62, 47, 4061, 3698, 8881, 62, 34, 2246, 13909, 62, 43387, 6158, 62, 10778, 796, 1596, 11, 198, 220, 220, 220, 45917, 62, 46126, 11335, 62, 25216, 62, 47, 4061, 3698, 8881, 62, 9693, 2885, 1137, 62, 2257, 11879, 62, 43387, 6158, 62, 10778, 796, 1248, 11, 198, 220, 220, 220, 45917, 62, 46126, 11335, 62, 25216, 62, 47, 4061, 3698, 8881, 62, 15858, 6369, 62, 1268, 30076, 62, 44724, 62, 43387, 6158, 62, 10778, 796, 678, 11, 198, 220, 220, 220, 45917, 62, 46126, 11335, 62, 25216, 62, 47, 4061, 3698, 8881, 62, 1268, 30076, 62, 10705, 3620, 9148, 56, 62, 44724, 62, 43387, 6158, 62, 10778, 796, 1160, 11, 198, 220, 220, 220, 45917, 62, 46126, 11335, 62, 25216, 62, 47, 4061, 3698, 8881, 62, 51, 1546, 5188, 3069, 6234, 62, 44724, 62, 43387, 6158, 62, 10778, 796, 2310, 11, 198, 220, 220, 220, 45917, 62, 46126, 11335, 62, 25216, 62, 47, 4061, 3698, 8881, 62, 28206, 15490, 62, 44724, 62, 43387, 6158, 62, 10778, 796, 2534, 11, 198, 220, 220, 220, 45917, 62, 46126, 11335, 62, 25216, 62, 47, 4061, 3698, 8881, 62, 49, 1921, 5781, 14887, 6234, 62, 44724, 62, 43387, 6158, 62, 10778, 796, 2242, 11, 198, 220, 220, 220, 45917, 62, 46126, 11335, 62, 25216, 62, 47, 4061, 3698, 8881, 62, 44, 16724, 1797, 2390, 16437, 62, 44724, 62, 43387, 6158, 62, 10778, 796, 1987, 11, 198, 220, 220, 220, 45917, 62, 46126, 11335, 62, 25216, 62, 47, 4061, 3698, 8881, 62, 46162, 4221, 62, 2257, 24181, 4146, 62, 44724, 62, 43387, 6158, 62, 10778, 796, 1679, 11, 198, 220, 220, 220, 45917, 62, 46126, 11335, 62, 25216, 62, 47, 4061, 3698, 8881, 62, 46786, 62, 9148, 10619, 62, 44724, 62, 43387, 6158, 62, 10778, 796, 2608, 11, 198, 220, 220, 220, 45917, 62, 46126, 11335, 62, 25216, 62, 47, 4061, 3698, 8881, 62, 35, 40760, 2390, 2149, 62, 44724, 62, 43387, 6158, 62, 10778, 796, 2681, 11, 198, 220, 220, 220, 45917, 62, 46126, 11335, 62, 25216, 62, 10761, 31300, 19505, 62, 47, 4061, 3698, 8881, 62, 43387, 6158, 62, 10778, 796, 2579, 11, 198, 220, 220, 220, 45917, 62, 46126, 11335, 62, 25216, 62, 9858, 30076, 36, 62, 47, 4061, 3698, 8881, 62, 43387, 6158, 62, 10778, 796, 2808, 11, 198, 220, 220, 220, 45917, 62, 46126, 11335, 62, 25216, 62, 47, 4061, 3698, 8881, 62, 43, 4792, 12425, 62, 43387, 6158, 62, 10778, 796, 1542, 11, 198, 220, 220, 220, 45917, 62, 46126, 11335, 62, 25216, 62, 49302, 6489, 1137, 62, 43387, 6158, 62, 10778, 796, 3261, 11, 198, 220, 220, 220, 45917, 62, 46126, 11335, 62, 25216, 62, 30910, 36584, 32961, 62, 28480, 62, 43, 4792, 12425, 62, 43387, 6158, 62, 10778, 796, 3933, 11, 198, 220, 220, 220, 45917, 62, 46126, 11335, 62, 25216, 62, 30910, 36584, 32961, 62, 16402, 3535, 62, 43387, 6158, 62, 10778, 796, 4747, 11, 198, 220, 220, 220, 45917, 62, 46126, 11335, 62, 25216, 62, 30910, 36584, 32961, 62, 28480, 62, 7036, 4503, 6158, 62, 10778, 796, 4974, 11, 198, 220, 220, 220, 45917, 62, 46126, 11335, 62, 25216, 62, 18564, 12709, 62, 30910, 36584, 32961, 62, 28480, 796, 3439, 11, 198, 220, 220, 220, 45917, 62, 46126, 11335, 62, 25216, 62, 34, 3185, 56, 62, 30910, 36584, 32961, 62, 28480, 796, 4570, 11, 198, 220, 220, 220, 45917, 62, 46126, 11335, 62, 25216, 62, 10913, 10067, 19499, 45746, 62, 43387, 6158, 62, 10778, 796, 5214, 11, 198, 220, 220, 220, 45917, 62, 46126, 11335, 62, 25216, 62, 49, 10619, 1137, 62, 47924, 62, 43387, 6158, 62, 10778, 796, 4353, 11, 198, 220, 220, 220, 45917, 62, 46126, 11335, 62, 25216, 62, 9858, 44, 6981, 62, 16402, 3535, 62, 43387, 6158, 62, 10778, 796, 5014, 11, 198, 220, 220, 220, 45917, 62, 46126, 11335, 62, 25216, 62, 9858, 44, 6981, 62, 19499, 45746, 62, 7036, 4503, 6158, 62, 10778, 796, 2319, 11, 198, 220, 220, 220, 45917, 62, 46126, 11335, 62, 25216, 62, 9858, 44, 6981, 62, 19499, 45746, 62, 1268, 16879, 2043, 19240, 62, 10778, 796, 6073, 11, 198, 220, 220, 220, 45917, 62, 46126, 11335, 62, 25216, 62, 9858, 44, 6981, 62, 19499, 45746, 62, 33, 43312, 62, 10778, 796, 5433, 11, 198, 220, 220, 220, 45917, 62, 46126, 11335, 62, 25216, 62, 49, 10619, 1137, 62, 47924, 62, 33, 43312, 62, 10778, 796, 5946, 11, 198, 220, 220, 220, 45917, 62, 46126, 11335, 62, 25216, 62, 19499, 45746, 62, 44, 3620, 15513, 62, 33, 1503, 7112, 1137, 796, 5846, 11, 198, 220, 220, 220, 45917, 62, 46126, 11335, 62, 25216, 62, 3955, 11879, 62, 44, 3620, 15513, 62, 33, 1503, 7112, 1137, 796, 4153, 11, 198, 220, 220, 220, 45917, 62, 46126, 11335, 62, 25216, 62, 44, 3620, 15513, 62, 33, 1503, 7112, 1137, 796, 6337, 11, 198, 220, 220, 220, 45917, 62, 46126, 11335, 62, 25216, 62, 35613, 1137, 62, 38604, 19240, 62, 43387, 6158, 62, 10778, 796, 6298, 11, 198, 220, 220, 220, 45917, 62, 46126, 11335, 62, 25216, 62, 35613, 1137, 62, 7206, 27389, 62, 43387, 6158, 62, 10778, 796, 4764, 11, 198, 220, 220, 220, 45917, 62, 46126, 11335, 62, 25216, 62, 17887, 2969, 3398, 29833, 62, 43387, 6158, 62, 10778, 62, 42, 17184, 796, 1802, 18005, 830, 11, 198, 220, 220, 220, 45917, 62, 46126, 11335, 62, 25216, 62, 48296, 3525, 62, 10778, 62, 42, 17184, 796, 1802, 18005, 8298, 11, 198, 220, 220, 220, 45917, 62, 46126, 11335, 62, 25216, 62, 26288, 31519, 62, 49058, 62, 43387, 6158, 62, 10778, 62, 42, 17184, 796, 1802, 830, 11024, 11, 198, 220, 220, 220, 45917, 62, 46126, 11335, 62, 25216, 62, 26288, 31519, 62, 50, 4261, 49836, 62, 43387, 6158, 62, 10778, 62, 42, 17184, 796, 1802, 830, 14585, 11, 198, 220, 220, 220, 45917, 62, 46126, 11335, 62, 25216, 62, 26288, 31519, 62, 48296, 3525, 62, 10778, 62, 42, 17184, 796, 1802, 830, 23924, 11, 198, 220, 220, 220, 45917, 62, 46126, 11335, 62, 25216, 62, 32457, 9865, 62, 50, 4261, 49836, 62, 43387, 6158, 62, 10778, 62, 42, 17184, 796, 1802, 830, 27559, 11, 198, 220, 220, 220, 45917, 62, 46126, 11335, 62, 25216, 62, 55, 23199, 62, 50, 4261, 49836, 62, 43387, 6158, 62, 10778, 62, 42, 17184, 796, 1802, 830, 27641, 11, 198, 220, 220, 220, 45917, 62, 46126, 11335, 62, 25216, 62, 27285, 28182, 62, 50, 4261, 49836, 62, 43387, 6158, 62, 10778, 62, 42, 17184, 796, 1802, 830, 43434, 11, 198, 220, 220, 220, 45917, 62, 46126, 11335, 62, 25216, 62, 44, 4663, 62, 50, 4261, 49836, 62, 43387, 6158, 62, 10778, 62, 42, 17184, 796, 1802, 830, 22, 830, 11, 198, 220, 220, 220, 45917, 62, 46126, 11335, 62, 25216, 62, 6981, 13252, 2389, 62, 50, 4261, 49836, 62, 43387, 6158, 62, 10778, 62, 42, 17184, 796, 1802, 830, 33942, 11, 198, 220, 220, 220, 45917, 62, 46126, 11335, 62, 25216, 62, 37620, 2624, 62, 50, 4261, 49836, 62, 43387, 6158, 62, 10778, 62, 42, 17184, 796, 1802, 830, 24, 830, 11, 198, 220, 220, 220, 45917, 62, 46126, 11335, 62, 25216, 62, 30531, 62, 2200, 15490, 62, 34, 7036, 31098, 62, 43387, 6158, 62, 10778, 62, 13918, 796, 33028, 1157, 830, 11, 198, 220, 220, 220, 45917, 62, 46126, 11335, 62, 25216, 62, 33, 43312, 62, 49, 27746, 796, 657, 11, 198, 220, 220, 220, 45917, 62, 46126, 11335, 62, 25216, 62, 10619, 62, 49, 27746, 796, 4764, 11, 198, 220, 220, 220, 45917, 62, 46126, 11335, 62, 25216, 62, 49, 27746, 62, 33489, 796, 5125, 11, 198, 220, 220, 220, 45917, 62, 46126, 11335, 62, 25216, 62, 22921, 62, 1677, 5883, 796, 362, 20198, 2780, 26780, 22, 11, 198, 8, 198, 198, 9979, 45917, 62, 46126, 11335, 62, 25216, 62, 30531, 62, 2200, 15490, 62, 43387, 6158, 62, 10778, 62, 13918, 796, 45917, 62, 46126, 11335, 62, 25216, 62, 30531, 62, 2200, 15490, 62, 34, 7036, 31098, 62, 43387, 6158, 62, 10778, 62, 13918, 198, 9979, 45917, 62, 27159, 62, 4743, 6649, 62, 1477, 5067, 796, 352, 198, 9979, 45917, 62, 27159, 62, 38, 6561, 43, 62, 9693, 2885, 1137, 62, 48451, 62, 43717, 796, 352, 198, 9979, 45917, 62, 27159, 62, 38, 6561, 43, 62, 9693, 2885, 1137, 62, 13918, 16938, 2849, 62, 20608, 796, 366, 47191, 62, 27159, 62, 4743, 6649, 62, 1477, 5067, 1, 198, 9979, 45917, 62, 3955, 38, 62, 24455, 62, 66, 549, 291, 796, 352, 198, 9979, 45917, 62, 3955, 38, 62, 46700, 5781, 62, 34, 10526, 2149, 62, 48451, 62, 43717, 796, 352, 198, 9979, 45917, 62, 3955, 38, 62, 46700, 5781, 62, 34, 10526, 2149, 62, 13918, 16938, 2849, 62, 20608, 796, 366, 47191, 62, 3955, 38, 62, 24455, 62, 66, 549, 291, 1, 198, 198, 4906, 26011, 569, 74, 40053, 471, 5317, 2624, 198, 4906, 26011, 569, 38841, 970, 2624, 471, 5317, 2624, 198, 4906, 26011, 569, 74, 24728, 10699, 471, 5317, 2414, 198, 4906, 26011, 569, 74, 36674, 45195, 471, 5317, 2624, 198, 4906, 26011, 569, 74, 33384, 62, 51, 18331, 198, 4906, 26011, 569, 74, 33384, 350, 2213, 90, 53, 74, 33384, 62, 51, 92, 198, 4906, 26011, 569, 74, 31611, 24728, 62, 51, 18331, 198, 4906, 26011, 569, 74, 31611, 24728, 350, 2213, 90, 53, 74, 31611, 24728, 62, 51, 92, 198, 4906, 26011, 569, 74, 24728, 62, 51, 18331, 198, 4906, 26011, 569, 74, 24728, 350, 2213, 90, 53, 74, 24728, 62, 51, 92, 198, 4906, 26011, 569, 74, 34991, 62, 51, 18331, 198, 4906, 26011, 569, 74, 34991, 350, 2213, 90, 53, 74, 34991, 62, 51, 92, 198, 4906, 26011, 569, 74, 13900, 6570, 382, 62, 51, 18331, 198, 4906, 26011, 569, 74, 13900, 6570, 382, 350, 2213, 90, 53, 74, 13900, 6570, 382, 62, 51, 92, 198, 4906, 26011, 569, 74, 21575, 28632, 62, 51, 18331, 198, 4906, 26011, 569, 74, 21575, 28632, 350, 2213, 90, 53, 74, 21575, 28632, 62, 51, 92, 198, 4906, 26011, 569, 74, 37, 594, 62, 51, 18331, 198, 4906, 26011, 569, 74, 37, 594, 350, 2213, 90, 53, 74, 37, 594, 62, 51, 92, 198, 4906, 26011, 569, 74, 24728, 30871, 62, 51, 18331, 198, 4906, 26011, 569, 74, 24728, 30871, 350, 2213, 90, 53, 74, 24728, 30871, 62, 51, 92, 198, 4906, 26011, 569, 74, 28632, 62, 51, 18331, 198, 4906, 26011, 569, 74, 28632, 350, 2213, 90, 53, 74, 28632, 62, 51, 92, 198, 4906, 26011, 569, 74, 5159, 62, 51, 18331, 198, 4906, 26011, 569, 74, 5159, 350, 2213, 90, 53, 74, 5159, 62, 51, 92, 198, 4906, 26011, 569, 74, 9237, 62, 51, 18331, 198, 4906, 26011, 569, 74, 9237, 350, 2213, 90, 53, 74, 9237, 62, 51, 92, 198, 4906, 26011, 569, 74, 20746, 27201, 62, 51, 18331, 198, 4906, 26011, 569, 74, 20746, 27201, 350, 2213, 90, 53, 74, 20746, 27201, 62, 51, 92, 198, 4906, 26011, 569, 74, 28632, 7680, 62, 51, 18331, 198, 4906, 26011, 569, 74, 28632, 7680, 350, 2213, 90, 53, 74, 28632, 7680, 62, 51, 92, 198, 4906, 26011, 569, 74, 5159, 7680, 62, 51, 18331, 198, 4906, 26011, 569, 74, 5159, 7680, 350, 2213, 90, 53, 74, 5159, 7680, 62, 51, 92, 198, 4906, 26011, 569, 74, 2484, 5067, 26796, 62, 51, 18331, 198, 4906, 26011, 569, 74, 2484, 5067, 26796, 350, 2213, 90, 53, 74, 2484, 5067, 26796, 62, 51, 92, 198, 4906, 26011, 569, 74, 47, 541, 4470, 30562, 62, 51, 18331, 198, 4906, 26011, 569, 74, 47, 541, 4470, 30562, 350, 2213, 90, 53, 74, 47, 541, 4470, 30562, 62, 51, 92, 198, 4906, 26011, 569, 74, 47, 541, 4470, 32517, 62, 51, 18331, 198, 4906, 26011, 569, 74, 47, 541, 4470, 32517, 350, 2213, 90, 53, 74, 47, 541, 4470, 32517, 62, 51, 92, 198, 4906, 26011, 569, 74, 45819, 14478, 62, 51, 18331, 198, 4906, 26011, 569, 74, 45819, 14478, 350, 2213, 90, 53, 74, 45819, 14478, 62, 51, 92, 198, 4906, 26011, 569, 74, 47, 541, 4470, 62, 51, 18331, 198, 4906, 26011, 569, 74, 47, 541, 4470, 350, 2213, 90, 53, 74, 47, 541, 4470, 62, 51, 92, 198, 4906, 26011, 569, 74, 24564, 1968, 273, 7248, 32517, 62, 51, 18331, 198, 4906, 26011, 569, 74, 24564, 1968, 273, 7248, 32517, 350, 2213, 90, 53, 74, 24564, 1968, 273, 7248, 32517, 62, 51, 92, 198, 4906, 26011, 569, 74, 16305, 20053, 62, 51, 18331, 198, 4906, 26011, 569, 74, 16305, 20053, 350, 2213, 90, 53, 74, 16305, 20053, 62, 51, 92, 198, 4906, 26011, 569, 74, 24564, 1968, 273, 27201, 62, 51, 18331, 198, 4906, 26011, 569, 74, 24564, 1968, 273, 27201, 350, 2213, 90, 53, 74, 24564, 1968, 273, 27201, 62, 51, 92, 198, 4906, 26011, 569, 74, 24564, 1968, 273, 7248, 62, 51, 18331, 198, 4906, 26011, 569, 74, 24564, 1968, 273, 7248, 350, 2213, 90, 53, 74, 24564, 1968, 273, 7248, 62, 51, 92, 198, 4906, 26011, 569, 74, 19778, 22252, 62, 51, 18331, 198, 4906, 26011, 569, 74, 19778, 22252, 350, 2213, 90, 53, 74, 19778, 22252, 62, 51, 92, 198, 4906, 26011, 569, 74, 21575, 27201, 62, 51, 18331, 198, 4906, 26011, 569, 74, 21575, 27201, 350, 2213, 90, 53, 74, 21575, 27201, 62, 51, 92, 198, 198, 31, 66, 44709, 7, 53, 74, 47, 541, 4470, 30562, 39681, 14815, 11, 198, 220, 220, 220, 45917, 62, 47, 4061, 3698, 8881, 62, 34, 2246, 13909, 62, 37682, 1137, 62, 43717, 62, 11651, 796, 352, 11, 198, 220, 220, 220, 45917, 62, 47, 4061, 3698, 8881, 62, 34, 2246, 13909, 62, 37682, 1137, 62, 43717, 62, 33, 43312, 62, 49, 27746, 796, 352, 11, 198, 220, 220, 220, 45917, 62, 47, 4061, 3698, 8881, 62, 34, 2246, 13909, 62, 37682, 1137, 62, 43717, 62, 10619, 62, 49, 27746, 796, 352, 11, 198, 220, 220, 220, 45917, 62, 47, 4061, 3698, 8881, 62, 34, 2246, 13909, 62, 37682, 1137, 62, 43717, 62, 49, 27746, 62, 33489, 796, 352, 11, 198, 220, 220, 220, 45917, 62, 47, 4061, 3698, 8881, 62, 34, 2246, 13909, 62, 37682, 1137, 62, 43717, 62, 22921, 62, 1677, 5883, 796, 362, 20198, 2780, 26780, 22, 11, 198, 8, 198, 31, 66, 44709, 7, 53, 74, 23004, 11, 198, 220, 220, 220, 45917, 62, 12564, 4093, 7597, 796, 657, 11, 198, 220, 220, 220, 45917, 62, 11929, 62, 15675, 56, 796, 352, 11, 198, 220, 220, 220, 45917, 62, 34694, 12425, 796, 362, 11, 198, 220, 220, 220, 45917, 62, 20114, 3525, 62, 28480, 796, 513, 11, 198, 220, 220, 220, 45917, 62, 20114, 3525, 62, 19535, 2767, 796, 604, 11, 198, 220, 220, 220, 45917, 62, 1268, 41335, 9328, 796, 642, 11, 198, 220, 220, 220, 45917, 62, 24908, 62, 12425, 62, 19238, 62, 39, 10892, 62, 44, 3620, 15513, 796, 532, 16, 11, 198, 220, 220, 220, 45917, 62, 24908, 62, 12425, 62, 19238, 62, 7206, 27389, 62, 44, 3620, 15513, 796, 532, 17, 11, 198, 220, 220, 220, 45917, 62, 24908, 62, 1268, 2043, 12576, 14887, 6234, 62, 7708, 4146, 1961, 796, 532, 18, 11, 198, 220, 220, 220, 45917, 62, 24908, 62, 7206, 27389, 62, 43, 10892, 796, 532, 19, 11, 198, 220, 220, 220, 45917, 62, 24908, 62, 44, 3620, 15513, 62, 33767, 62, 7708, 4146, 1961, 796, 532, 20, 11, 198, 220, 220, 220, 45917, 62, 24908, 62, 43, 4792, 1137, 62, 11929, 62, 48296, 3525, 796, 532, 21, 11, 198, 220, 220, 220, 45917, 62, 24908, 62, 13918, 16938, 2849, 62, 11929, 62, 48296, 3525, 796, 532, 22, 11, 198, 220, 220, 220, 45917, 62, 24908, 62, 15112, 40086, 62, 11929, 62, 48296, 3525, 796, 532, 23, 11, 198, 220, 220, 220, 45917, 62, 24908, 62, 1268, 9858, 47, 1404, 34563, 62, 7707, 38757, 796, 532, 24, 11, 198, 220, 220, 220, 45917, 62, 24908, 62, 51, 6684, 62, 10725, 56, 62, 9864, 41, 2943, 4694, 796, 532, 940, 11, 198, 220, 220, 220, 45917, 62, 24908, 62, 21389, 1404, 62, 11929, 62, 40331, 15490, 1961, 796, 532, 1157, 11, 198, 220, 220, 220, 45917, 62, 24908, 62, 50, 4261, 49836, 62, 43, 10892, 62, 42, 17184, 796, 532, 16, 10535, 830, 11, 198, 220, 220, 220, 45917, 62, 24908, 62, 34259, 9306, 62, 28929, 3913, 62, 1268, 62, 19108, 62, 42, 17184, 796, 532, 16, 8269, 16, 11, 198, 220, 220, 220, 45917, 62, 50, 10526, 3185, 51, 3955, 1847, 62, 42, 17184, 796, 1802, 18005, 11245, 11, 198, 220, 220, 220, 45917, 62, 24908, 62, 12425, 62, 19238, 62, 35, 6158, 62, 42, 17184, 796, 532, 49388, 486, 22914, 11, 198, 220, 220, 220, 45917, 62, 24908, 62, 1268, 9858, 47, 1404, 34563, 62, 26288, 31519, 62, 42, 17184, 796, 532, 3064, 830, 6200, 16, 11, 198, 220, 220, 220, 45917, 62, 24908, 62, 23428, 2389, 6234, 62, 7708, 4146, 1961, 62, 13918, 796, 532, 49388, 1157, 8298, 11, 198, 220, 220, 220, 45917, 62, 24908, 62, 1268, 23428, 2389, 62, 9693, 2885, 1137, 62, 27159, 796, 532, 49388, 1065, 830, 11, 198, 220, 220, 220, 45917, 62, 19535, 16724, 62, 33, 43312, 62, 49, 27746, 796, 532, 1157, 11, 198, 220, 220, 220, 45917, 62, 19535, 16724, 62, 10619, 62, 49, 27746, 796, 642, 11, 198, 220, 220, 220, 45917, 62, 19535, 16724, 62, 49, 27746, 62, 33489, 796, 1596, 11, 198, 220, 220, 220, 45917, 62, 19535, 16724, 62, 22921, 62, 1677, 5883, 796, 362, 20198, 2780, 26780, 22, 11, 198, 8, 198, 31, 66, 44709, 7, 53, 74, 11964, 3237, 5040, 43642, 11, 198, 220, 220, 220, 45917, 62, 23060, 25361, 62, 7036, 4503, 6234, 62, 6173, 32135, 62, 9858, 44, 6981, 796, 657, 11, 198, 220, 220, 220, 45917, 62, 23060, 25361, 62, 7036, 4503, 6234, 62, 6173, 32135, 62, 9864, 23680, 796, 352, 11, 198, 220, 220, 220, 45917, 62, 23060, 25361, 62, 7036, 4503, 6234, 62, 6173, 32135, 62, 34, 2246, 13909, 796, 362, 11, 198, 220, 220, 220, 45917, 62, 23060, 25361, 62, 7036, 4503, 6234, 62, 6173, 32135, 62, 7206, 27389, 796, 513, 11, 198, 220, 220, 220, 45917, 62, 23060, 25361, 62, 7036, 4503, 6234, 62, 6173, 32135, 62, 38604, 19240, 796, 604, 11, 198, 220, 220, 220, 45917, 62, 23060, 25361, 62, 7036, 4503, 6234, 62, 6173, 32135, 62, 33, 43312, 62, 49, 27746, 796, 657, 11, 198, 220, 220, 220, 45917, 62, 23060, 25361, 62, 7036, 4503, 6234, 62, 6173, 32135, 62, 10619, 62, 49, 27746, 796, 604, 11, 198, 220, 220, 220, 45917, 62, 23060, 25361, 62, 7036, 4503, 6234, 62, 6173, 32135, 62, 49, 27746, 62, 33489, 796, 642, 11, 198, 220, 220, 220, 45917, 62, 23060, 25361, 62, 7036, 4503, 6234, 62, 6173, 32135, 62, 22921, 62, 1677, 5883, 796, 362, 20198, 2780, 26780, 22, 11, 198, 8, 198, 31, 66, 44709, 7, 53, 74, 37693, 3237, 5040, 6030, 11, 198, 220, 220, 220, 45917, 62, 1268, 31800, 1847, 62, 7036, 4503, 6234, 62, 25216, 62, 6369, 2943, 3843, 17534, 796, 657, 11, 198, 220, 220, 220, 45917, 62, 1268, 31800, 1847, 62, 7036, 4503, 6234, 62, 25216, 62, 33, 43312, 62, 49, 27746, 796, 657, 11, 198, 220, 220, 220, 45917, 62, 1268, 31800, 1847, 62, 7036, 4503, 6234, 62, 25216, 62, 10619, 62, 49, 27746, 796, 657, 11, 198, 220, 220, 220, 45917, 62, 1268, 31800, 1847, 62, 7036, 4503, 6234, 62, 25216, 62, 49, 27746, 62, 33489, 796, 352, 11, 198, 220, 220, 220, 45917, 62, 1268, 31800, 1847, 62, 7036, 4503, 6234, 62, 25216, 62, 22921, 62, 1677, 5883, 796, 362, 20198, 2780, 26780, 22, 11, 198, 8, 198, 31, 66, 44709, 7, 53, 74, 26227, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 4944, 7206, 20032, 1961, 796, 657, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 49, 19, 38, 19, 62, 4944, 1581, 44, 62, 47, 8120, 23, 796, 352, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 49, 19, 38, 19, 33, 19, 32, 19, 62, 4944, 1581, 44, 62, 47, 8120, 1433, 796, 362, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 33, 19, 38, 19, 49, 19, 32, 19, 62, 4944, 1581, 44, 62, 47, 8120, 1433, 796, 513, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 49, 20, 38, 21, 33, 20, 62, 4944, 1581, 44, 62, 47, 8120, 1433, 796, 604, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 33, 20, 38, 21, 49, 20, 62, 4944, 1581, 44, 62, 47, 8120, 1433, 796, 642, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 49, 20, 38, 20, 33, 20, 32, 16, 62, 4944, 1581, 44, 62, 47, 8120, 1433, 796, 718, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 33, 20, 38, 20, 49, 20, 32, 16, 62, 4944, 1581, 44, 62, 47, 8120, 1433, 796, 767, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 32, 16, 49, 20, 38, 20, 33, 20, 62, 4944, 1581, 44, 62, 47, 8120, 1433, 796, 807, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 49, 23, 62, 4944, 1581, 44, 796, 860, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 49, 23, 62, 15571, 1581, 44, 796, 838, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 49, 23, 62, 2937, 34, 1847, 1961, 796, 1367, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 49, 23, 62, 5432, 34, 1847, 1961, 796, 1105, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 49, 23, 62, 52, 12394, 796, 1511, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 49, 23, 62, 50, 12394, 796, 1478, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 49, 23, 62, 12562, 4579, 796, 1315, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 49, 23, 38, 23, 62, 4944, 1581, 44, 796, 1467, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 49, 23, 38, 23, 62, 15571, 1581, 44, 796, 1596, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 49, 23, 38, 23, 62, 2937, 34, 1847, 1961, 796, 1248, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 49, 23, 38, 23, 62, 5432, 34, 1847, 1961, 796, 678, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 49, 23, 38, 23, 62, 52, 12394, 796, 1160, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 49, 23, 38, 23, 62, 50, 12394, 796, 2310, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 49, 23, 38, 23, 62, 12562, 4579, 796, 2534, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 49, 23, 38, 23, 33, 23, 62, 4944, 1581, 44, 796, 2242, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 49, 23, 38, 23, 33, 23, 62, 15571, 1581, 44, 796, 1987, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 49, 23, 38, 23, 33, 23, 62, 2937, 34, 1847, 1961, 796, 1679, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 49, 23, 38, 23, 33, 23, 62, 5432, 34, 1847, 1961, 796, 2608, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 49, 23, 38, 23, 33, 23, 62, 52, 12394, 796, 2681, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 49, 23, 38, 23, 33, 23, 62, 50, 12394, 796, 2579, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 49, 23, 38, 23, 33, 23, 62, 12562, 4579, 796, 2808, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 33, 23, 38, 23, 49, 23, 62, 4944, 1581, 44, 796, 1542, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 33, 23, 38, 23, 49, 23, 62, 15571, 1581, 44, 796, 3261, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 33, 23, 38, 23, 49, 23, 62, 2937, 34, 1847, 1961, 796, 3933, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 33, 23, 38, 23, 49, 23, 62, 5432, 34, 1847, 1961, 796, 4747, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 33, 23, 38, 23, 49, 23, 62, 52, 12394, 796, 4974, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 33, 23, 38, 23, 49, 23, 62, 50, 12394, 796, 3439, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 33, 23, 38, 23, 49, 23, 62, 12562, 4579, 796, 4570, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 49, 23, 38, 23, 33, 23, 32, 23, 62, 4944, 1581, 44, 796, 5214, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 49, 23, 38, 23, 33, 23, 32, 23, 62, 15571, 1581, 44, 796, 4353, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 49, 23, 38, 23, 33, 23, 32, 23, 62, 2937, 34, 1847, 1961, 796, 5014, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 49, 23, 38, 23, 33, 23, 32, 23, 62, 5432, 34, 1847, 1961, 796, 2319, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 49, 23, 38, 23, 33, 23, 32, 23, 62, 52, 12394, 796, 6073, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 49, 23, 38, 23, 33, 23, 32, 23, 62, 50, 12394, 796, 5433, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 49, 23, 38, 23, 33, 23, 32, 23, 62, 12562, 4579, 796, 5946, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 33, 23, 38, 23, 49, 23, 32, 23, 62, 4944, 1581, 44, 796, 5846, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 33, 23, 38, 23, 49, 23, 32, 23, 62, 15571, 1581, 44, 796, 4153, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 33, 23, 38, 23, 49, 23, 32, 23, 62, 2937, 34, 1847, 1961, 796, 6337, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 33, 23, 38, 23, 49, 23, 32, 23, 62, 5432, 34, 1847, 1961, 796, 6298, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 33, 23, 38, 23, 49, 23, 32, 23, 62, 52, 12394, 796, 4764, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 33, 23, 38, 23, 49, 23, 32, 23, 62, 50, 12394, 796, 5125, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 33, 23, 38, 23, 49, 23, 32, 23, 62, 12562, 4579, 796, 2026, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 32, 23, 33, 23, 38, 23, 49, 23, 62, 4944, 1581, 44, 62, 47, 8120, 2624, 796, 6885, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 32, 23, 33, 23, 38, 23, 49, 23, 62, 15571, 1581, 44, 62, 47, 8120, 2624, 796, 6740, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 32, 23, 33, 23, 38, 23, 49, 23, 62, 2937, 34, 1847, 1961, 62, 47, 8120, 2624, 796, 7192, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 32, 23, 33, 23, 38, 23, 49, 23, 62, 5432, 34, 1847, 1961, 62, 47, 8120, 2624, 796, 7175, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 32, 23, 33, 23, 38, 23, 49, 23, 62, 52, 12394, 62, 47, 8120, 2624, 796, 5996, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 32, 23, 33, 23, 38, 23, 49, 23, 62, 50, 12394, 62, 47, 8120, 2624, 796, 7265, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 32, 23, 33, 23, 38, 23, 49, 23, 62, 12562, 4579, 62, 47, 8120, 2624, 796, 7632, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 32, 17, 49, 940, 38, 940, 33, 940, 62, 4944, 1581, 44, 62, 47, 8120, 2624, 796, 7618, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 32, 17, 49, 940, 38, 940, 33, 940, 62, 15571, 1581, 44, 62, 47, 8120, 2624, 796, 7863, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 32, 17, 49, 940, 38, 940, 33, 940, 62, 2937, 34, 1847, 1961, 62, 47, 8120, 2624, 796, 3126, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 32, 17, 49, 940, 38, 940, 33, 940, 62, 5432, 34, 1847, 1961, 62, 47, 8120, 2624, 796, 8454, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 32, 17, 49, 940, 38, 940, 33, 940, 62, 52, 12394, 62, 47, 8120, 2624, 796, 8190, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 32, 17, 49, 940, 38, 940, 33, 940, 62, 50, 12394, 62, 47, 8120, 2624, 796, 8093, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 32, 17, 33, 940, 38, 940, 49, 940, 62, 4944, 1581, 44, 62, 47, 8120, 2624, 796, 5598, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 32, 17, 33, 940, 38, 940, 49, 940, 62, 15571, 1581, 44, 62, 47, 8120, 2624, 796, 6135, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 32, 17, 33, 940, 38, 940, 49, 940, 62, 2937, 34, 1847, 1961, 62, 47, 8120, 2624, 796, 7930, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 32, 17, 33, 940, 38, 940, 49, 940, 62, 5432, 34, 1847, 1961, 62, 47, 8120, 2624, 796, 8275, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 32, 17, 33, 940, 38, 940, 49, 940, 62, 52, 12394, 62, 47, 8120, 2624, 796, 8257, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 32, 17, 33, 940, 38, 940, 49, 940, 62, 50, 12394, 62, 47, 8120, 2624, 796, 8644, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 49, 1433, 62, 4944, 1581, 44, 796, 4317, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 49, 1433, 62, 15571, 1581, 44, 796, 9166, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 49, 1433, 62, 2937, 34, 1847, 1961, 796, 7724, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 49, 1433, 62, 5432, 34, 1847, 1961, 796, 8854, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 49, 1433, 62, 52, 12394, 796, 8915, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 49, 1433, 62, 50, 12394, 796, 5441, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 49, 1433, 62, 50, 3697, 46, 1404, 796, 8684, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 49, 1433, 38, 1433, 62, 4944, 1581, 44, 796, 8541, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 49, 1433, 38, 1433, 62, 15571, 1581, 44, 796, 8699, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 49, 1433, 38, 1433, 62, 2937, 34, 1847, 1961, 796, 9225, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 49, 1433, 38, 1433, 62, 5432, 34, 1847, 1961, 796, 4019, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 49, 1433, 38, 1433, 62, 52, 12394, 796, 9773, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 49, 1433, 38, 1433, 62, 50, 12394, 796, 9415, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 49, 1433, 38, 1433, 62, 50, 3697, 46, 1404, 796, 9698, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 49, 1433, 38, 1433, 33, 1433, 62, 4944, 1581, 44, 796, 9508, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 49, 1433, 38, 1433, 33, 1433, 62, 15571, 1581, 44, 796, 7600, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 49, 1433, 38, 1433, 33, 1433, 62, 2937, 34, 1847, 1961, 796, 9849, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 49, 1433, 38, 1433, 33, 1433, 62, 5432, 34, 1847, 1961, 796, 10083, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 49, 1433, 38, 1433, 33, 1433, 62, 52, 12394, 796, 9193, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 49, 1433, 38, 1433, 33, 1433, 62, 50, 12394, 796, 9919, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 49, 1433, 38, 1433, 33, 1433, 62, 50, 3697, 46, 1404, 796, 4101, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 49, 1433, 38, 1433, 33, 1433, 32, 1433, 62, 4944, 1581, 44, 796, 10495, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 49, 1433, 38, 1433, 33, 1433, 32, 1433, 62, 15571, 1581, 44, 796, 10190, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 49, 1433, 38, 1433, 33, 1433, 32, 1433, 62, 2937, 34, 1847, 1961, 796, 10261, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 49, 1433, 38, 1433, 33, 1433, 32, 1433, 62, 5432, 34, 1847, 1961, 796, 10048, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 49, 1433, 38, 1433, 33, 1433, 32, 1433, 62, 52, 12394, 796, 6957, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 49, 1433, 38, 1433, 33, 1433, 32, 1433, 62, 50, 12394, 796, 9907, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 49, 1433, 38, 1433, 33, 1433, 32, 1433, 62, 50, 3697, 46, 1404, 796, 10111, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 49, 2624, 62, 52, 12394, 796, 9661, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 49, 2624, 62, 50, 12394, 796, 7388, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 49, 2624, 62, 50, 3697, 46, 1404, 796, 1802, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 49, 2624, 38, 2624, 62, 52, 12394, 796, 8949, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 49, 2624, 38, 2624, 62, 50, 12394, 796, 15143, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 49, 2624, 38, 2624, 62, 50, 3697, 46, 1404, 796, 15349, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 49, 2624, 38, 2624, 33, 2624, 62, 52, 12394, 796, 14436, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 49, 2624, 38, 2624, 33, 2624, 62, 50, 12394, 796, 13343, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 49, 2624, 38, 2624, 33, 2624, 62, 50, 3697, 46, 1404, 796, 15696, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 49, 2624, 38, 2624, 33, 2624, 32, 2624, 62, 52, 12394, 796, 16226, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 49, 2624, 38, 2624, 33, 2624, 32, 2624, 62, 50, 12394, 796, 15495, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 49, 2624, 38, 2624, 33, 2624, 32, 2624, 62, 50, 3697, 46, 1404, 796, 16003, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 49, 2414, 62, 52, 12394, 796, 9796, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 49, 2414, 62, 50, 12394, 796, 13374, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 49, 2414, 62, 50, 3697, 46, 1404, 796, 13539, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 49, 2414, 38, 2414, 62, 52, 12394, 796, 17318, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 49, 2414, 38, 2414, 62, 50, 12394, 796, 17342, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 49, 2414, 38, 2414, 62, 50, 3697, 46, 1404, 796, 12279, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 49, 2414, 38, 2414, 33, 2414, 62, 52, 12394, 796, 18693, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 49, 2414, 38, 2414, 33, 2414, 62, 50, 12394, 796, 19048, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 49, 2414, 38, 2414, 33, 2414, 62, 50, 3697, 46, 1404, 796, 19035, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 49, 2414, 38, 2414, 33, 2414, 32, 2414, 62, 52, 12394, 796, 15136, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 49, 2414, 38, 2414, 33, 2414, 32, 2414, 62, 50, 12394, 796, 7982, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 49, 2414, 38, 2414, 33, 2414, 32, 2414, 62, 50, 3697, 46, 1404, 796, 20416, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 33, 940, 38, 1157, 49, 1157, 62, 52, 3697, 46, 1404, 62, 47, 8120, 2624, 796, 19409, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 36, 20, 33, 24, 38, 24, 49, 24, 62, 52, 3697, 46, 1404, 62, 47, 8120, 2624, 796, 17031, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 35, 1433, 62, 4944, 1581, 44, 796, 19755, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 55, 23, 62, 35, 1731, 62, 4944, 1581, 44, 62, 47, 8120, 2624, 796, 13151, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 35, 2624, 62, 50, 3697, 46, 1404, 796, 19710, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 50, 23, 62, 52, 12394, 796, 18112, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 35, 1433, 62, 4944, 1581, 44, 62, 50, 23, 62, 52, 12394, 796, 13108, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 35, 1731, 62, 4944, 1581, 44, 62, 50, 23, 62, 52, 12394, 796, 20248, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 35, 2624, 62, 50, 3697, 46, 1404, 62, 50, 23, 62, 52, 12394, 796, 11323, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 2749, 16, 62, 36982, 62, 4944, 1581, 44, 62, 9148, 11290, 796, 23134, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 2749, 16, 62, 36982, 62, 12562, 4579, 62, 9148, 11290, 796, 21761, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 2749, 16, 62, 48192, 4339, 62, 4944, 1581, 44, 62, 9148, 11290, 796, 22169, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 2749, 16, 62, 48192, 4339, 62, 12562, 4579, 62, 9148, 11290, 796, 22352, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 2749, 17, 62, 4944, 1581, 44, 62, 9148, 11290, 796, 17501, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 2749, 17, 62, 12562, 4579, 62, 9148, 11290, 796, 21056, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 2749, 18, 62, 4944, 1581, 44, 62, 9148, 11290, 796, 21643, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 2749, 18, 62, 12562, 4579, 62, 9148, 11290, 796, 21503, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 2749, 19, 62, 4944, 1581, 44, 62, 9148, 11290, 796, 23666, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 2749, 19, 62, 15571, 1581, 44, 62, 9148, 11290, 796, 12713, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 2749, 20, 62, 4944, 1581, 44, 62, 9148, 11290, 796, 25500, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 2749, 20, 62, 15571, 1581, 44, 62, 9148, 11290, 796, 25181, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 2749, 21, 39, 62, 52, 3697, 46, 1404, 62, 9148, 11290, 796, 24356, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 2749, 21, 39, 62, 50, 3697, 46, 1404, 62, 9148, 11290, 796, 20224, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 2749, 22, 62, 4944, 1581, 44, 62, 9148, 11290, 796, 20299, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 2749, 22, 62, 12562, 4579, 62, 9148, 11290, 796, 22986, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 2767, 34, 17, 62, 49, 23, 38, 23, 33, 23, 62, 4944, 1581, 44, 62, 9148, 11290, 796, 22909, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 2767, 34, 17, 62, 49, 23, 38, 23, 33, 23, 62, 12562, 4579, 62, 9148, 11290, 796, 22613, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 2767, 34, 17, 62, 49, 23, 38, 23, 33, 23, 32, 16, 62, 4944, 1581, 44, 62, 9148, 11290, 796, 24041, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 2767, 34, 17, 62, 49, 23, 38, 23, 33, 23, 32, 16, 62, 12562, 4579, 62, 9148, 11290, 796, 6640, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 2767, 34, 17, 62, 49, 23, 38, 23, 33, 23, 32, 23, 62, 4944, 1581, 44, 62, 9148, 11290, 796, 25326, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 2767, 34, 17, 62, 49, 23, 38, 23, 33, 23, 32, 23, 62, 12562, 4579, 62, 9148, 11290, 796, 24848, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 36, 2246, 62, 49, 1157, 62, 4944, 1581, 44, 62, 9148, 11290, 796, 24652, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 36, 2246, 62, 49, 1157, 62, 15571, 1581, 44, 62, 9148, 11290, 796, 24235, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 36, 2246, 62, 49, 1157, 38, 1157, 62, 4944, 1581, 44, 62, 9148, 11290, 796, 20708, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 36, 2246, 62, 49, 1157, 38, 1157, 62, 15571, 1581, 44, 62, 9148, 11290, 796, 23871, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 1921, 4825, 62, 19, 87, 19, 62, 4944, 1581, 44, 62, 9148, 11290, 796, 23313, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 1921, 4825, 62, 19, 87, 19, 62, 12562, 4579, 62, 9148, 11290, 796, 24063, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 1921, 4825, 62, 20, 87, 19, 62, 4944, 1581, 44, 62, 9148, 11290, 796, 26422, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 1921, 4825, 62, 20, 87, 19, 62, 12562, 4579, 62, 9148, 11290, 796, 13454, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 1921, 4825, 62, 20, 87, 20, 62, 4944, 1581, 44, 62, 9148, 11290, 796, 27829, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 1921, 4825, 62, 20, 87, 20, 62, 12562, 4579, 62, 9148, 11290, 796, 25090, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 1921, 4825, 62, 21, 87, 20, 62, 4944, 1581, 44, 62, 9148, 11290, 796, 26826, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 1921, 4825, 62, 21, 87, 20, 62, 12562, 4579, 62, 9148, 11290, 796, 25307, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 1921, 4825, 62, 21, 87, 21, 62, 4944, 1581, 44, 62, 9148, 11290, 796, 21409, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 1921, 4825, 62, 21, 87, 21, 62, 12562, 4579, 62, 9148, 11290, 796, 26753, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 1921, 4825, 62, 23, 87, 20, 62, 4944, 1581, 44, 62, 9148, 11290, 796, 26118, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 1921, 4825, 62, 23, 87, 20, 62, 12562, 4579, 62, 9148, 11290, 796, 23378, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 1921, 4825, 62, 23, 87, 21, 62, 4944, 1581, 44, 62, 9148, 11290, 796, 27191, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 1921, 4825, 62, 23, 87, 21, 62, 12562, 4579, 62, 9148, 11290, 796, 16677, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 1921, 4825, 62, 23, 87, 23, 62, 4944, 1581, 44, 62, 9148, 11290, 796, 28369, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 1921, 4825, 62, 23, 87, 23, 62, 12562, 4579, 62, 9148, 11290, 796, 23120, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 1921, 4825, 62, 940, 87, 20, 62, 4944, 1581, 44, 62, 9148, 11290, 796, 28174, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 1921, 4825, 62, 940, 87, 20, 62, 12562, 4579, 62, 9148, 11290, 796, 27621, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 1921, 4825, 62, 940, 87, 21, 62, 4944, 1581, 44, 62, 9148, 11290, 796, 19038, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 1921, 4825, 62, 940, 87, 21, 62, 12562, 4579, 62, 9148, 11290, 796, 26937, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 1921, 4825, 62, 940, 87, 23, 62, 4944, 1581, 44, 62, 9148, 11290, 796, 26607, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 1921, 4825, 62, 940, 87, 23, 62, 12562, 4579, 62, 9148, 11290, 796, 27368, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 1921, 4825, 62, 940, 87, 940, 62, 4944, 1581, 44, 62, 9148, 11290, 796, 27228, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 1921, 4825, 62, 940, 87, 940, 62, 12562, 4579, 62, 9148, 11290, 796, 11546, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 1921, 4825, 62, 1065, 87, 940, 62, 4944, 1581, 44, 62, 9148, 11290, 796, 30110, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 1921, 4825, 62, 1065, 87, 940, 62, 12562, 4579, 62, 9148, 11290, 796, 28581, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 1921, 4825, 62, 1065, 87, 1065, 62, 4944, 1581, 44, 62, 9148, 11290, 796, 28551, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 1921, 4825, 62, 1065, 87, 1065, 62, 12562, 4579, 62, 9148, 11290, 796, 28598, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 33, 43312, 62, 49, 27746, 796, 657, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 10619, 62, 49, 27746, 796, 28598, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 49, 27746, 62, 33489, 796, 22855, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 22921, 62, 1677, 5883, 796, 362, 20198, 2780, 26780, 22, 11, 198, 8, 198, 31, 66, 44709, 7, 53, 74, 5159, 6030, 11, 198, 220, 220, 220, 45917, 62, 3955, 11879, 62, 25216, 62, 16, 35, 796, 657, 11, 198, 220, 220, 220, 45917, 62, 3955, 11879, 62, 25216, 62, 17, 35, 796, 352, 11, 198, 220, 220, 220, 45917, 62, 3955, 11879, 62, 25216, 62, 18, 35, 796, 362, 11, 198, 220, 220, 220, 45917, 62, 3955, 11879, 62, 25216, 62, 33, 43312, 62, 49, 27746, 796, 657, 11, 198, 220, 220, 220, 45917, 62, 3955, 11879, 62, 25216, 62, 10619, 62, 49, 27746, 796, 362, 11, 198, 220, 220, 220, 45917, 62, 3955, 11879, 62, 25216, 62, 49, 27746, 62, 33489, 796, 513, 11, 198, 220, 220, 220, 45917, 62, 3955, 11879, 62, 25216, 62, 22921, 62, 1677, 5883, 796, 362, 20198, 2780, 26780, 22, 11, 198, 8, 198, 31, 66, 44709, 7, 53, 74, 5159, 51, 4386, 11, 198, 220, 220, 220, 45917, 62, 3955, 11879, 62, 51, 4146, 2751, 62, 3185, 51, 3955, 1847, 796, 657, 11, 198, 220, 220, 220, 45917, 62, 3955, 11879, 62, 51, 4146, 2751, 62, 24027, 1503, 796, 352, 11, 198, 220, 220, 220, 45917, 62, 3955, 11879, 62, 51, 4146, 2751, 62, 33, 43312, 62, 49, 27746, 796, 657, 11, 198, 220, 220, 220, 45917, 62, 3955, 11879, 62, 51, 4146, 2751, 62, 10619, 62, 49, 27746, 796, 352, 11, 198, 220, 220, 220, 45917, 62, 3955, 11879, 62, 51, 4146, 2751, 62, 49, 27746, 62, 33489, 796, 362, 11, 198, 220, 220, 220, 45917, 62, 3955, 11879, 62, 51, 4146, 2751, 62, 22921, 62, 1677, 5883, 796, 362, 20198, 2780, 26780, 22, 11, 198, 8, 198, 31, 66, 44709, 7, 53, 74, 31611, 24728, 6030, 11, 198, 220, 220, 220, 45917, 62, 11909, 16309, 20151, 62, 7206, 27389, 62, 25216, 62, 31858, 796, 657, 11, 198, 220, 220, 220, 45917, 62, 11909, 16309, 20151, 62, 7206, 27389, 62, 25216, 62, 12394, 7156, 49, 11617, 62, 33346, 796, 352, 11, 198, 220, 220, 220, 45917, 62, 11909, 16309, 20151, 62, 7206, 27389, 62, 25216, 62, 26288, 43387, 9328, 62, 33346, 796, 362, 11, 198, 220, 220, 220, 45917, 62, 11909, 16309, 20151, 62, 7206, 27389, 62, 25216, 62, 53, 48771, 25620, 62, 33346, 796, 513, 11, 198, 220, 220, 220, 45917, 62, 11909, 16309, 20151, 62, 7206, 27389, 62, 25216, 62, 36037, 796, 604, 11, 198, 220, 220, 220, 45917, 62, 11909, 16309, 20151, 62, 7206, 27389, 62, 25216, 62, 33, 43312, 62, 49, 27746, 796, 657, 11, 198, 220, 220, 220, 45917, 62, 11909, 16309, 20151, 62, 7206, 27389, 62, 25216, 62, 10619, 62, 49, 27746, 796, 604, 11, 198, 220, 220, 220, 45917, 62, 11909, 16309, 20151, 62, 7206, 27389, 62, 25216, 62, 49, 27746, 62, 33489, 796, 642, 11, 198, 220, 220, 220, 45917, 62, 11909, 16309, 20151, 62, 7206, 27389, 62, 25216, 62, 22921, 62, 1677, 5883, 796, 362, 20198, 2780, 26780, 22, 11, 198, 8, 198, 31, 66, 44709, 7, 53, 74, 20746, 6030, 11, 198, 220, 220, 220, 45917, 62, 10917, 19664, 62, 25216, 62, 46, 4093, 43, 2937, 2849, 796, 657, 11, 198, 220, 220, 220, 45917, 62, 10917, 19664, 62, 25216, 62, 47, 4061, 3698, 8881, 62, 35744, 8808, 19505, 796, 352, 11, 198, 220, 220, 220, 45917, 62, 10917, 19664, 62, 25216, 62, 51, 3955, 6465, 23518, 796, 362, 11, 198, 220, 220, 220, 45917, 62, 10917, 19664, 62, 25216, 62, 33, 43312, 62, 49, 27746, 796, 657, 11, 198, 220, 220, 220, 45917, 62, 10917, 19664, 62, 25216, 62, 10619, 62, 49, 27746, 796, 362, 11, 198, 220, 220, 220, 45917, 62, 10917, 19664, 62, 25216, 62, 49, 27746, 62, 33489, 796, 513, 11, 198, 220, 220, 220, 45917, 62, 10917, 19664, 62, 25216, 62, 22921, 62, 1677, 5883, 796, 362, 20198, 2780, 26780, 22, 11, 198, 8, 198, 31, 66, 44709, 7, 53, 74, 2484, 1723, 19076, 11, 198, 220, 220, 220, 45917, 62, 9693, 1503, 2751, 62, 49058, 62, 6369, 28332, 9306, 796, 657, 11, 198, 220, 220, 220, 45917, 62, 9693, 1503, 2751, 62, 49058, 62, 10943, 34, 39237, 796, 352, 11, 198, 220, 220, 220, 45917, 62, 9693, 1503, 2751, 62, 49058, 62, 33, 43312, 62, 49, 27746, 796, 657, 11, 198, 220, 220, 220, 45917, 62, 9693, 1503, 2751, 62, 49058, 62, 10619, 62, 49, 27746, 796, 352, 11, 198, 220, 220, 220, 45917, 62, 9693, 1503, 2751, 62, 49058, 62, 49, 27746, 62, 33489, 796, 362, 11, 198, 220, 220, 220, 45917, 62, 9693, 1503, 2751, 62, 49058, 62, 22921, 62, 1677, 5883, 796, 362, 20198, 2780, 26780, 22, 11, 198, 8, 198, 31, 66, 44709, 7, 53, 74, 5159, 32517, 11, 198, 220, 220, 220, 45917, 62, 3955, 11879, 62, 43, 4792, 12425, 62, 4944, 7206, 20032, 1961, 796, 657, 11, 198, 220, 220, 220, 45917, 62, 3955, 11879, 62, 43, 4792, 12425, 62, 35353, 27130, 796, 352, 11, 198, 220, 220, 220, 45917, 62, 3955, 11879, 62, 43, 4792, 12425, 62, 46786, 62, 17139, 16219, 10979, 62, 3185, 51, 3955, 1847, 796, 362, 11, 198, 220, 220, 220, 45917, 62, 3955, 11879, 62, 43, 4792, 12425, 62, 46162, 4221, 62, 2257, 24181, 4146, 62, 17139, 16219, 10979, 62, 3185, 51, 3955, 1847, 796, 513, 11, 198, 220, 220, 220, 45917, 62, 3955, 11879, 62, 43, 4792, 12425, 62, 46162, 4221, 62, 2257, 24181, 4146, 62, 15675, 62, 1340, 11319, 62, 3185, 51, 3955, 1847, 796, 604, 11, 198, 220, 220, 220, 45917, 62, 3955, 11879, 62, 43, 4792, 12425, 62, 9693, 2885, 1137, 62, 15675, 62, 1340, 11319, 62, 3185, 51, 3955, 1847, 796, 642, 11, 198, 220, 220, 220, 45917, 62, 3955, 11879, 62, 43, 4792, 12425, 62, 5446, 15037, 24302, 62, 50, 7397, 62, 3185, 51, 3955, 1847, 796, 718, 11, 198, 220, 220, 220, 45917, 62, 3955, 11879, 62, 43, 4792, 12425, 62, 5446, 15037, 24302, 62, 35, 2257, 62, 3185, 51, 3955, 1847, 796, 767, 11, 198, 220, 220, 220, 45917, 62, 3955, 11879, 62, 43, 4792, 12425, 62, 46437, 1268, 2043, 12576, 14887, 1961, 796, 807, 11, 198, 220, 220, 220, 45917, 62, 3955, 11879, 62, 43, 4792, 12425, 62, 48296, 3525, 62, 50, 7397, 62, 42, 17184, 796, 1802, 18005, 21601, 11, 198, 220, 220, 220, 45917, 62, 3955, 11879, 62, 43, 4792, 12425, 62, 33, 43312, 62, 49, 27746, 796, 657, 11, 198, 220, 220, 220, 45917, 62, 3955, 11879, 62, 43, 4792, 12425, 62, 10619, 62, 49, 27746, 796, 807, 11, 198, 220, 220, 220, 45917, 62, 3955, 11879, 62, 43, 4792, 12425, 62, 49, 27746, 62, 33489, 796, 860, 11, 198, 220, 220, 220, 45917, 62, 3955, 11879, 62, 43, 4792, 12425, 62, 22921, 62, 1677, 5883, 796, 362, 20198, 2780, 26780, 22, 11, 198, 8, 198, 31, 66, 44709, 7, 53, 74, 5159, 7680, 6030, 11, 198, 220, 220, 220, 45917, 62, 3955, 11879, 62, 28206, 62, 25216, 62, 16, 35, 796, 657, 11, 198, 220, 220, 220, 45917, 62, 3955, 11879, 62, 28206, 62, 25216, 62, 17, 35, 796, 352, 11, 198, 220, 220, 220, 45917, 62, 3955, 11879, 62, 28206, 62, 25216, 62, 18, 35, 796, 362, 11, 198, 220, 220, 220, 45917, 62, 3955, 11879, 62, 28206, 62, 25216, 62, 34, 10526, 36, 796, 513, 11, 198, 220, 220, 220, 45917, 62, 3955, 11879, 62, 28206, 62, 25216, 62, 16, 35, 62, 1503, 30631, 796, 604, 11, 198, 220, 220, 220, 45917, 62, 3955, 11879, 62, 28206, 62, 25216, 62, 17, 35, 62, 1503, 30631, 796, 642, 11, 198, 220, 220, 220, 45917, 62, 3955, 11879, 62, 28206, 62, 25216, 62, 34, 10526, 36, 62, 1503, 30631, 796, 718, 11, 198, 220, 220, 220, 45917, 62, 3955, 11879, 62, 28206, 62, 25216, 62, 33, 43312, 62, 49, 27746, 796, 657, 11, 198, 220, 220, 220, 45917, 62, 3955, 11879, 62, 28206, 62, 25216, 62, 10619, 62, 49, 27746, 796, 718, 11, 198, 220, 220, 220, 45917, 62, 3955, 11879, 62, 28206, 62, 25216, 62, 49, 27746, 62, 33489, 796, 767, 11, 198, 220, 220, 220, 45917, 62, 3955, 11879, 62, 28206, 62, 25216, 62, 22921, 62, 1677, 5883, 796, 362, 20198, 2780, 26780, 22, 11, 198, 8, 198, 31, 66, 44709, 7, 53, 74, 21950, 10462, 44461, 11, 198, 220, 220, 220, 45917, 62, 9858, 47, 1340, 3525, 62, 17887, 14887, 57, 2538, 62, 25256, 9050, 796, 657, 11, 198, 220, 220, 220, 45917, 62, 9858, 47, 1340, 3525, 62, 17887, 14887, 57, 2538, 62, 57, 34812, 796, 352, 11, 198, 220, 220, 220, 45917, 62, 9858, 47, 1340, 3525, 62, 17887, 14887, 57, 2538, 62, 11651, 796, 362, 11, 198, 220, 220, 220, 45917, 62, 9858, 47, 1340, 3525, 62, 17887, 14887, 57, 2538, 62, 49, 796, 513, 11, 198, 220, 220, 220, 45917, 62, 9858, 47, 1340, 3525, 62, 17887, 14887, 57, 2538, 62, 38, 796, 604, 11, 198, 220, 220, 220, 45917, 62, 9858, 47, 1340, 3525, 62, 17887, 14887, 57, 2538, 62, 33, 796, 642, 11, 198, 220, 220, 220, 45917, 62, 9858, 47, 1340, 3525, 62, 17887, 14887, 57, 2538, 62, 32, 796, 718, 11, 198, 220, 220, 220, 45917, 62, 9858, 47, 1340, 3525, 62, 17887, 14887, 57, 2538, 62, 33, 43312, 62, 49, 27746, 796, 657, 11, 198, 220, 220, 220, 45917, 62, 9858, 47, 1340, 3525, 62, 17887, 14887, 57, 2538, 62, 10619, 62, 49, 27746, 796, 718, 11, 198, 220, 220, 220, 45917, 62, 9858, 47, 1340, 3525, 62, 17887, 14887, 57, 2538, 62, 49, 27746, 62, 33489, 796, 767, 11, 198, 220, 220, 220, 45917, 62, 9858, 47, 1340, 3525, 62, 17887, 14887, 57, 2538, 62, 22921, 62, 1677, 5883, 796, 362, 20198, 2780, 26780, 22, 11, 198, 8, 198, 31, 66, 44709, 7, 53, 74, 13414, 16886, 20560, 32184, 11, 198, 220, 220, 220, 45917, 62, 15858, 6369, 62, 1268, 30076, 62, 49, 6158, 62, 15858, 6369, 796, 657, 11, 198, 220, 220, 220, 45917, 62, 15858, 6369, 62, 1268, 30076, 62, 49, 6158, 62, 38604, 19240, 796, 352, 11, 198, 220, 220, 220, 45917, 62, 15858, 6369, 62, 1268, 30076, 62, 49, 6158, 62, 33, 43312, 62, 49, 27746, 796, 657, 11, 198, 220, 220, 220, 45917, 62, 15858, 6369, 62, 1268, 30076, 62, 49, 6158, 62, 10619, 62, 49, 27746, 796, 352, 11, 198, 220, 220, 220, 45917, 62, 15858, 6369, 62, 1268, 30076, 62, 49, 6158, 62, 49, 27746, 62, 33489, 796, 362, 11, 198, 220, 220, 220, 45917, 62, 15858, 6369, 62, 1268, 30076, 62, 49, 6158, 62, 22921, 62, 1677, 5883, 796, 362, 20198, 2780, 26780, 22, 11, 198, 8, 198, 31, 66, 44709, 7, 53, 74, 23828, 1800, 9126, 1435, 11, 198, 220, 220, 220, 45917, 62, 4805, 3955, 2043, 9306, 62, 35222, 43781, 62, 16402, 12394, 62, 45849, 796, 657, 11, 198, 220, 220, 220, 45917, 62, 4805, 3955, 2043, 9306, 62, 35222, 43781, 62, 24027, 62, 45849, 796, 352, 11, 198, 220, 220, 220, 45917, 62, 4805, 3955, 2043, 9306, 62, 35222, 43781, 62, 24027, 62, 18601, 4061, 796, 362, 11, 198, 220, 220, 220, 45917, 62, 4805, 3955, 2043, 9306, 62, 35222, 43781, 62, 5446, 40, 15567, 2538, 62, 45849, 796, 513, 11, 198, 220, 220, 220, 45917, 62, 4805, 3955, 2043, 9306, 62, 35222, 43781, 62, 5446, 40, 15567, 2538, 62, 18601, 4061, 796, 604, 11, 198, 220, 220, 220, 45917, 62, 4805, 3955, 2043, 9306, 62, 35222, 43781, 62, 5446, 40, 15567, 2538, 62, 37, 1565, 796, 642, 11, 198, 220, 220, 220, 45917, 62, 4805, 3955, 2043, 9306, 62, 35222, 43781, 62, 24027, 62, 45849, 62, 54, 10554, 62, 2885, 41, 2246, 45155, 796, 718, 11, 198, 220, 220, 220, 45917, 62, 4805, 3955, 2043, 9306, 62, 35222, 43781, 62, 24027, 62, 18601, 4061, 62, 54, 10554, 62, 2885, 41, 2246, 45155, 796, 767, 11, 198, 220, 220, 220, 45917, 62, 4805, 3955, 2043, 9306, 62, 35222, 43781, 62, 5446, 40, 15567, 2538, 62, 45849, 62, 54, 10554, 62, 2885, 41, 2246, 45155, 796, 807, 11, 198, 220, 220, 220, 45917, 62, 4805, 3955, 2043, 9306, 62, 35222, 43781, 62, 5446, 40, 15567, 2538, 62, 18601, 4061, 62, 54, 10554, 62, 2885, 41, 2246, 45155, 796, 860, 11, 198, 220, 220, 220, 45917, 62, 4805, 3955, 2043, 9306, 62, 35222, 43781, 62, 47, 11417, 62, 45849, 796, 838, 11, 198, 220, 220, 220, 45917, 62, 4805, 3955, 2043, 9306, 62, 35222, 43781, 62, 33, 43312, 62, 49, 27746, 796, 657, 11, 198, 220, 220, 220, 45917, 62, 4805, 3955, 2043, 9306, 62, 35222, 43781, 62, 10619, 62, 49, 27746, 796, 838, 11, 198, 220, 220, 220, 45917, 62, 4805, 3955, 2043, 9306, 62, 35222, 43781, 62, 49, 27746, 62, 33489, 796, 1367, 11, 198, 220, 220, 220, 45917, 62, 4805, 3955, 2043, 9306, 62, 35222, 43781, 62, 22921, 62, 1677, 5883, 796, 362, 20198, 2780, 26780, 22, 11, 198, 8, 198, 31, 66, 44709, 7, 53, 74, 34220, 14520, 19076, 11, 198, 220, 220, 220, 45917, 62, 45472, 56, 38, 1340, 62, 49058, 62, 37, 8267, 796, 657, 11, 198, 220, 220, 220, 45917, 62, 45472, 56, 38, 1340, 62, 49058, 62, 24027, 796, 352, 11, 198, 220, 220, 220, 45917, 62, 45472, 56, 38, 1340, 62, 49058, 62, 16402, 12394, 796, 362, 11, 198, 220, 220, 220, 45917, 62, 45472, 56, 38, 1340, 62, 49058, 62, 33, 43312, 62, 49, 27746, 796, 657, 11, 198, 220, 220, 220, 45917, 62, 45472, 56, 38, 1340, 62, 49058, 62, 10619, 62, 49, 27746, 796, 362, 11, 198, 220, 220, 220, 45917, 62, 45472, 56, 38, 1340, 62, 49058, 62, 49, 27746, 62, 33489, 796, 513, 11, 198, 220, 220, 220, 45917, 62, 45472, 56, 38, 1340, 62, 49058, 62, 22921, 62, 1677, 5883, 796, 362, 20198, 2780, 26780, 22, 11, 198, 8, 198, 31, 66, 44709, 7, 53, 74, 25886, 32388, 11, 198, 220, 220, 220, 45917, 62, 10913, 35830, 62, 49836, 62, 34, 19385, 5781, 62, 5097, 11290, 54, 24352, 796, 657, 11, 198, 220, 220, 220, 45917, 62, 10913, 35830, 62, 49836, 62, 5097, 11290, 54, 24352, 796, 352, 11, 198, 220, 220, 220, 45917, 62, 10913, 35830, 62, 49836, 62, 33, 43312, 62, 49, 27746, 796, 657, 11, 198, 220, 220, 220, 45917, 62, 10913, 35830, 62, 49836, 62, 10619, 62, 49, 27746, 796, 352, 11, 198, 220, 220, 220, 45917, 62, 10913, 35830, 62, 49836, 62, 49, 27746, 62, 33489, 796, 362, 11, 198, 220, 220, 220, 45917, 62, 10913, 35830, 62, 49836, 62, 22921, 62, 1677, 5883, 796, 362, 20198, 2780, 26780, 22, 11, 198, 8, 198, 31, 66, 44709, 7, 53, 74, 41488, 18257, 11, 198, 220, 220, 220, 45917, 62, 9858, 47, 12203, 62, 3185, 62, 12161, 5959, 796, 657, 11, 198, 220, 220, 220, 45917, 62, 9858, 47, 12203, 62, 3185, 62, 48481, 796, 352, 11, 198, 220, 220, 220, 45917, 62, 9858, 47, 12203, 62, 3185, 62, 36, 10917, 1847, 796, 362, 11, 198, 220, 220, 220, 45917, 62, 9858, 47, 12203, 62, 3185, 62, 48481, 62, 1581, 62, 36, 10917, 1847, 796, 513, 11, 198, 220, 220, 220, 45917, 62, 9858, 47, 12203, 62, 3185, 62, 28934, 23261, 796, 604, 11, 198, 220, 220, 220, 45917, 62, 9858, 47, 12203, 62, 3185, 62, 11929, 62, 36, 10917, 1847, 796, 642, 11, 198, 220, 220, 220, 45917, 62, 9858, 47, 12203, 62, 3185, 62, 28934, 23261, 62, 1581, 62, 36, 10917, 1847, 796, 718, 11, 198, 220, 220, 220, 45917, 62, 9858, 47, 12203, 62, 3185, 62, 1847, 42451, 796, 767, 11, 198, 220, 220, 220, 45917, 62, 9858, 47, 12203, 62, 3185, 62, 33, 43312, 62, 49, 27746, 796, 657, 11, 198, 220, 220, 220, 45917, 62, 9858, 47, 12203, 62, 3185, 62, 10619, 62, 49, 27746, 796, 767, 11, 198, 220, 220, 220, 45917, 62, 9858, 47, 12203, 62, 3185, 62, 49, 27746, 62, 33489, 796, 807, 11, 198, 220, 220, 220, 45917, 62, 9858, 47, 12203, 62, 3185, 62, 22921, 62, 1677, 5883, 796, 362, 20198, 2780, 26780, 22, 11, 198, 8, 198, 31, 66, 44709, 7, 53, 74, 1273, 268, 2856, 18257, 11, 198, 220, 220, 220, 45917, 62, 2257, 24181, 4146, 62, 3185, 62, 42, 35238, 796, 657, 11, 198, 220, 220, 220, 45917, 62, 2257, 24181, 4146, 62, 3185, 62, 57, 34812, 796, 352, 11, 198, 220, 220, 220, 45917, 62, 2257, 24181, 4146, 62, 3185, 62, 2200, 6489, 11598, 796, 362, 11, 198, 220, 220, 220, 45917, 62, 2257, 24181, 4146, 62, 3185, 62, 30158, 2200, 10979, 62, 6981, 62, 5097, 23518, 796, 513, 11, 198, 220, 220, 220, 45917, 62, 2257, 24181, 4146, 62, 3185, 62, 41374, 2200, 10979, 62, 6981, 62, 5097, 23518, 796, 604, 11, 198, 220, 220, 220, 45917, 62, 2257, 24181, 4146, 62, 3185, 62, 1268, 15858, 796, 642, 11, 198, 220, 220, 220, 45917, 62, 2257, 24181, 4146, 62, 3185, 62, 30158, 2200, 10979, 62, 6981, 62, 18564, 2969, 796, 718, 11, 198, 220, 220, 220, 45917, 62, 2257, 24181, 4146, 62, 3185, 62, 41374, 2200, 10979, 62, 6981, 62, 18564, 2969, 796, 767, 11, 198, 220, 220, 220, 45917, 62, 2257, 24181, 4146, 62, 3185, 62, 33, 43312, 62, 49, 27746, 796, 657, 11, 198, 220, 220, 220, 45917, 62, 2257, 24181, 4146, 62, 3185, 62, 10619, 62, 49, 27746, 796, 767, 11, 198, 220, 220, 220, 45917, 62, 2257, 24181, 4146, 62, 3185, 62, 49, 27746, 62, 33489, 796, 807, 11, 198, 220, 220, 220, 45917, 62, 2257, 24181, 4146, 62, 3185, 62, 22921, 62, 1677, 5883, 796, 362, 20198, 2780, 26780, 22, 11, 198, 8, 198, 31, 66, 44709, 7, 53, 74, 11187, 291, 18257, 11, 198, 220, 220, 220, 45917, 62, 25294, 2149, 62, 3185, 62, 29931, 1503, 796, 657, 11, 198, 220, 220, 220, 45917, 62, 25294, 2149, 62, 3185, 62, 6981, 796, 352, 11, 198, 220, 220, 220, 45917, 62, 25294, 2149, 62, 3185, 62, 6981, 62, 2200, 28884, 36, 796, 362, 11, 198, 220, 220, 220, 45917, 62, 25294, 2149, 62, 3185, 62, 34, 3185, 56, 796, 513, 11, 198, 220, 220, 220, 45917, 62, 25294, 2149, 62, 3185, 62, 6981, 62, 1268, 15858, 1961, 796, 604, 11, 198, 220, 220, 220, 45917, 62, 25294, 2149, 62, 3185, 62, 15285, 62, 3185, 796, 642, 11, 198, 220, 220, 220, 45917, 62, 25294, 2149, 62, 3185, 62, 55, 1581, 796, 718, 11, 198, 220, 220, 220, 45917, 62, 25294, 2149, 62, 3185, 62, 1581, 796, 767, 11, 198, 220, 220, 220, 45917, 62, 25294, 2149, 62, 3185, 62, 35510, 796, 807, 11, 198, 220, 220, 220, 45917, 62, 25294, 2149, 62, 3185, 62, 36, 10917, 3824, 1847, 3525, 796, 860, 11, 198, 220, 220, 220, 45917, 62, 25294, 2149, 62, 3185, 62, 1268, 15858, 796, 838, 11, 198, 220, 220, 220, 45917, 62, 25294, 2149, 62, 3185, 62, 1581, 62, 2200, 28884, 36, 796, 1367, 11, 198, 220, 220, 220, 45917, 62, 25294, 2149, 62, 3185, 62, 34, 3185, 56, 62, 1268, 15858, 1961, 796, 1105, 11, 198, 220, 220, 220, 45917, 62, 25294, 2149, 62, 3185, 62, 1581, 62, 1268, 15858, 1961, 796, 1511, 11, 198, 220, 220, 220, 45917, 62, 25294, 2149, 62, 3185, 62, 45, 6981, 796, 1478, 11, 198, 220, 220, 220, 45917, 62, 25294, 2149, 62, 3185, 62, 28480, 796, 1315, 11, 198, 220, 220, 220, 45917, 62, 25294, 2149, 62, 3185, 62, 33, 43312, 62, 49, 27746, 796, 657, 11, 198, 220, 220, 220, 45917, 62, 25294, 2149, 62, 3185, 62, 10619, 62, 49, 27746, 796, 1315, 11, 198, 220, 220, 220, 45917, 62, 25294, 2149, 62, 3185, 62, 49, 27746, 62, 33489, 796, 1467, 11, 198, 220, 220, 220, 45917, 62, 25294, 2149, 62, 3185, 62, 22921, 62, 1677, 5883, 796, 362, 20198, 2780, 26780, 22, 11, 198, 8, 198, 31, 66, 44709, 7, 53, 74, 3629, 437, 41384, 11, 198, 220, 220, 220, 45917, 62, 9148, 10619, 62, 37, 10659, 1581, 62, 57, 34812, 796, 657, 11, 198, 220, 220, 220, 45917, 62, 9148, 10619, 62, 37, 10659, 1581, 62, 11651, 796, 352, 11, 198, 220, 220, 220, 45917, 62, 9148, 10619, 62, 37, 10659, 1581, 62, 50, 7397, 62, 46786, 796, 362, 11, 198, 220, 220, 220, 45917, 62, 9148, 10619, 62, 37, 10659, 1581, 62, 11651, 62, 23678, 2937, 62, 50, 7397, 62, 46786, 796, 513, 11, 198, 220, 220, 220, 45917, 62, 9148, 10619, 62, 37, 10659, 1581, 62, 35, 2257, 62, 46786, 796, 604, 11, 198, 220, 220, 220, 45917, 62, 9148, 10619, 62, 37, 10659, 1581, 62, 11651, 62, 23678, 2937, 62, 35, 2257, 62, 46786, 796, 642, 11, 198, 220, 220, 220, 45917, 62, 9148, 10619, 62, 37, 10659, 1581, 62, 50, 7397, 62, 1847, 47, 7801, 796, 718, 11, 198, 220, 220, 220, 45917, 62, 9148, 10619, 62, 37, 10659, 1581, 62, 11651, 62, 23678, 2937, 62, 50, 7397, 62, 1847, 47, 7801, 796, 767, 11, 198, 220, 220, 220, 45917, 62, 9148, 10619, 62, 37, 10659, 1581, 62, 35, 2257, 62, 1847, 47, 7801, 796, 807, 11, 198, 220, 220, 220, 45917, 62, 9148, 10619, 62, 37, 10659, 1581, 62, 11651, 62, 23678, 2937, 62, 35, 2257, 62, 1847, 47, 7801, 796, 860, 11, 198, 220, 220, 220, 45917, 62, 9148, 10619, 62, 37, 10659, 1581, 62, 10943, 2257, 8643, 62, 46786, 796, 838, 11, 198, 220, 220, 220, 45917, 62, 9148, 10619, 62, 37, 10659, 1581, 62, 11651, 62, 23678, 2937, 62, 10943, 2257, 8643, 62, 46786, 796, 1367, 11, 198, 220, 220, 220, 45917, 62, 9148, 10619, 62, 37, 10659, 1581, 62, 10943, 2257, 8643, 62, 1847, 47, 7801, 796, 1105, 11, 198, 220, 220, 220, 45917, 62, 9148, 10619, 62, 37, 10659, 1581, 62, 11651, 62, 23678, 2937, 62, 10943, 2257, 8643, 62, 1847, 47, 7801, 796, 1511, 11, 198, 220, 220, 220, 45917, 62, 9148, 10619, 62, 37, 10659, 1581, 62, 50, 7397, 62, 1847, 47, 7801, 62, 50, 1404, 4261, 6158, 796, 1478, 11, 198, 220, 220, 220, 45917, 62, 9148, 10619, 62, 37, 10659, 1581, 62, 50, 7397, 16, 62, 46786, 796, 1315, 11, 198, 220, 220, 220, 45917, 62, 9148, 10619, 62, 37, 10659, 1581, 62, 11651, 62, 23678, 2937, 62, 50, 7397, 16, 62, 46786, 796, 1467, 11, 198, 220, 220, 220, 45917, 62, 9148, 10619, 62, 37, 10659, 1581, 62, 50, 7397, 16, 62, 1847, 47, 7801, 796, 1596, 11, 198, 220, 220, 220, 45917, 62, 9148, 10619, 62, 37, 10659, 1581, 62, 11651, 62, 23678, 2937, 62, 50, 7397, 16, 62, 1847, 47, 7801, 796, 1248, 11, 198, 220, 220, 220, 45917, 62, 9148, 10619, 62, 37, 10659, 1581, 62, 33, 43312, 62, 49, 27746, 796, 657, 11, 198, 220, 220, 220, 45917, 62, 9148, 10619, 62, 37, 10659, 1581, 62, 10619, 62, 49, 27746, 796, 1248, 11, 198, 220, 220, 220, 45917, 62, 9148, 10619, 62, 37, 10659, 1581, 62, 49, 27746, 62, 33489, 796, 678, 11, 198, 220, 220, 220, 45917, 62, 9148, 10619, 62, 37, 10659, 1581, 62, 22921, 62, 1677, 5883, 796, 362, 20198, 2780, 26780, 22, 11, 198, 8, 198, 31, 66, 44709, 7, 53, 74, 3629, 437, 18257, 11, 198, 220, 220, 220, 45917, 62, 9148, 10619, 62, 3185, 62, 29266, 796, 657, 11, 198, 220, 220, 220, 45917, 62, 9148, 10619, 62, 3185, 62, 50, 10526, 5446, 10659, 796, 352, 11, 198, 220, 220, 220, 45917, 62, 9148, 10619, 62, 3185, 62, 2200, 28884, 36, 62, 50, 10526, 5446, 10659, 796, 362, 11, 198, 220, 220, 220, 45917, 62, 9148, 10619, 62, 3185, 62, 23678, 796, 513, 11, 198, 220, 220, 220, 45917, 62, 9148, 10619, 62, 3185, 62, 22921, 796, 604, 11, 198, 220, 220, 220, 45917, 62, 9148, 10619, 62, 3185, 62, 33, 43312, 62, 49, 27746, 796, 657, 11, 198, 220, 220, 220, 45917, 62, 9148, 10619, 62, 3185, 62, 10619, 62, 49, 27746, 796, 604, 11, 198, 220, 220, 220, 45917, 62, 9148, 10619, 62, 3185, 62, 49, 27746, 62, 33489, 796, 642, 11, 198, 220, 220, 220, 45917, 62, 9148, 10619, 62, 3185, 62, 22921, 62, 1677, 5883, 796, 362, 20198, 2780, 26780, 22, 11, 198, 8, 198, 31, 66, 44709, 7, 53, 74, 44090, 9012, 11, 198, 220, 220, 220, 45917, 62, 35, 40760, 2390, 2149, 62, 44724, 62, 28206, 15490, 796, 657, 11, 198, 220, 220, 220, 45917, 62, 35, 40760, 2390, 2149, 62, 44724, 62, 6173, 16744, 1581, 796, 352, 11, 198, 220, 220, 220, 45917, 62, 35, 40760, 2390, 2149, 62, 44724, 62, 24027, 62, 54, 2389, 4221, 796, 362, 11, 198, 220, 220, 220, 45917, 62, 35, 40760, 2390, 2149, 62, 44724, 62, 46162, 4221, 62, 3483, 1921, 796, 513, 11, 198, 220, 220, 220, 45917, 62, 35, 40760, 2390, 2149, 62, 44724, 62, 9148, 10619, 62, 10943, 2257, 1565, 4694, 796, 604, 11, 198, 220, 220, 220, 45917, 62, 35, 40760, 2390, 2149, 62, 44724, 62, 46162, 4221, 62, 33, 19385, 5258, 796, 642, 11, 198, 220, 220, 220, 45917, 62, 35, 40760, 2390, 2149, 62, 44724, 62, 2257, 24181, 4146, 62, 9858, 47, 12203, 62, 31180, 42, 796, 718, 11, 198, 220, 220, 220, 45917, 62, 35, 40760, 2390, 2149, 62, 44724, 62, 2257, 24181, 4146, 62, 18564, 12709, 62, 31180, 42, 796, 767, 11, 198, 220, 220, 220, 45917, 62, 35, 40760, 2390, 2149, 62, 44724, 62, 2257, 24181, 4146, 62, 2200, 24302, 18310, 796, 807, 11, 198, 220, 220, 220, 45917, 62, 35, 40760, 2390, 2149, 62, 44724, 62, 33, 43312, 62, 49, 27746, 796, 657, 11, 198, 220, 220, 220, 45917, 62, 35, 40760, 2390, 2149, 62, 44724, 62, 10619, 62, 49, 27746, 796, 807, 11, 198, 220, 220, 220, 45917, 62, 35, 40760, 2390, 2149, 62, 44724, 62, 49, 27746, 62, 33489, 796, 860, 11, 198, 220, 220, 220, 45917, 62, 35, 40760, 2390, 2149, 62, 44724, 62, 22921, 62, 1677, 5883, 796, 362, 20198, 2780, 26780, 22, 11, 198, 8, 198, 31, 66, 44709, 7, 53, 74, 22417, 11, 198, 220, 220, 220, 45917, 62, 46700, 5781, 62, 12161, 1503, 6465, 796, 657, 11, 198, 220, 220, 220, 45917, 62, 46700, 5781, 62, 24027, 1503, 796, 352, 11, 198, 220, 220, 220, 45917, 62, 46700, 5781, 62, 34, 10526, 2149, 62, 3955, 38, 796, 33028, 1314, 830, 11, 198, 220, 220, 220, 45917, 62, 46700, 5781, 62, 33, 43312, 62, 49, 27746, 796, 657, 11, 198, 220, 220, 220, 45917, 62, 46700, 5781, 62, 10619, 62, 49, 27746, 796, 352, 11, 198, 220, 220, 220, 45917, 62, 46700, 5781, 62, 49, 27746, 62, 33489, 796, 362, 11, 198, 220, 220, 220, 45917, 62, 46700, 5781, 62, 22921, 62, 1677, 5883, 796, 362, 20198, 2780, 26780, 22, 11, 198, 8, 198, 31, 66, 44709, 7, 53, 74, 16305, 20053, 44, 541, 8899, 19076, 11, 198, 220, 220, 220, 45917, 62, 49302, 6489, 1137, 62, 44, 4061, 33767, 62, 49058, 62, 12161, 1503, 6465, 796, 657, 11, 198, 220, 220, 220, 45917, 62, 49302, 6489, 1137, 62, 44, 4061, 33767, 62, 49058, 62, 24027, 1503, 796, 352, 11, 198, 220, 220, 220, 45917, 62, 49302, 6489, 1137, 62, 44, 4061, 33767, 62, 49058, 62, 33, 43312, 62, 49, 27746, 796, 657, 11, 198, 220, 220, 220, 45917, 62, 49302, 6489, 1137, 62, 44, 4061, 33767, 62, 49058, 62, 10619, 62, 49, 27746, 796, 352, 11, 198, 220, 220, 220, 45917, 62, 49302, 6489, 1137, 62, 44, 4061, 33767, 62, 49058, 62, 49, 27746, 62, 33489, 796, 362, 11, 198, 220, 220, 220, 45917, 62, 49302, 6489, 1137, 62, 44, 4061, 33767, 62, 49058, 62, 22921, 62, 1677, 5883, 796, 362, 20198, 2780, 26780, 22, 11, 198, 8, 198, 31, 66, 44709, 7, 53, 74, 16305, 20053, 20231, 19076, 11, 198, 220, 220, 220, 45917, 62, 49302, 6489, 1137, 62, 2885, 7707, 7597, 62, 49058, 62, 2200, 11401, 1404, 796, 657, 11, 198, 220, 220, 220, 45917, 62, 49302, 6489, 1137, 62, 2885, 7707, 7597, 62, 49058, 62, 44, 4663, 16411, 1961, 62, 2200, 11401, 1404, 796, 352, 11, 198, 220, 220, 220, 45917, 62, 49302, 6489, 1137, 62, 2885, 7707, 7597, 62, 49058, 62, 5097, 23518, 62, 10468, 62, 1961, 8264, 796, 362, 11, 198, 220, 220, 220, 45917, 62, 49302, 6489, 1137, 62, 2885, 7707, 7597, 62, 49058, 62, 5097, 23518, 62, 10468, 62, 33, 12532, 1137, 796, 513, 11, 198, 220, 220, 220, 45917, 62, 49302, 6489, 1137, 62, 2885, 7707, 7597, 62, 49058, 62, 44, 4663, 16411, 62, 5097, 23518, 62, 10468, 62, 1961, 8264, 796, 604, 11, 198, 220, 220, 220, 45917, 62, 49302, 6489, 1137, 62, 2885, 7707, 7597, 62, 49058, 62, 33, 43312, 62, 49, 27746, 796, 657, 11, 198, 220, 220, 220, 45917, 62, 49302, 6489, 1137, 62, 2885, 7707, 7597, 62, 49058, 62, 10619, 62, 49, 27746, 796, 513, 11, 198, 220, 220, 220, 45917, 62, 49302, 6489, 1137, 62, 2885, 7707, 7597, 62, 49058, 62, 49, 27746, 62, 33489, 796, 604, 11, 198, 220, 220, 220, 45917, 62, 49302, 6489, 1137, 62, 2885, 7707, 7597, 62, 49058, 62, 22921, 62, 1677, 5883, 796, 362, 20198, 2780, 26780, 22, 11, 198, 8, 198, 31, 66, 44709, 7, 53, 74, 34189, 10258, 11, 198, 220, 220, 220, 45917, 62, 33, 12532, 1137, 62, 46786, 62, 3697, 46, 1404, 62, 5446, 1565, 4303, 1503, 3525, 62, 9148, 8120, 796, 657, 11, 198, 220, 220, 220, 45917, 62, 33, 12532, 1137, 62, 46786, 62, 12394, 62, 5446, 1565, 4303, 1503, 3525, 62, 9148, 8120, 796, 352, 11, 198, 220, 220, 220, 45917, 62, 33, 12532, 1137, 62, 46786, 62, 3697, 46, 1404, 62, 43345, 48, 8924, 62, 9148, 8120, 796, 362, 11, 198, 220, 220, 220, 45917, 62, 33, 12532, 1137, 62, 46786, 62, 12394, 62, 43345, 48, 8924, 62, 9148, 8120, 796, 513, 11, 198, 220, 220, 220, 45917, 62, 33, 12532, 1137, 62, 46786, 62, 3697, 46, 1404, 62, 43345, 48, 8924, 62, 12418, 12709, 796, 604, 11, 198, 220, 220, 220, 45917, 62, 33, 12532, 1137, 62, 46786, 62, 12394, 62, 43345, 48, 8924, 62, 12418, 12709, 796, 642, 11, 198, 220, 220, 220, 45917, 62, 33, 12532, 1137, 62, 46786, 62, 33, 43312, 62, 49, 27746, 796, 657, 11, 198, 220, 220, 220, 45917, 62, 33, 12532, 1137, 62, 46786, 62, 10619, 62, 49, 27746, 796, 642, 11, 198, 220, 220, 220, 45917, 62, 33, 12532, 1137, 62, 46786, 62, 49, 27746, 62, 33489, 796, 718, 11, 198, 220, 220, 220, 45917, 62, 33, 12532, 1137, 62, 46786, 62, 22921, 62, 1677, 5883, 796, 362, 20198, 2780, 26780, 22, 11, 198, 8, 198, 31, 66, 44709, 7, 53, 74, 24564, 1968, 273, 6030, 11, 198, 220, 220, 220, 45917, 62, 30910, 36584, 32961, 62, 25216, 62, 49302, 6489, 1137, 796, 657, 11, 198, 220, 220, 220, 45917, 62, 30910, 36584, 32961, 62, 25216, 62, 9858, 33, 1268, 1961, 62, 3955, 11879, 62, 49302, 6489, 1137, 796, 352, 11, 198, 220, 220, 220, 45917, 62, 30910, 36584, 32961, 62, 25216, 62, 49302, 6489, 1961, 62, 3955, 11879, 796, 362, 11, 198, 220, 220, 220, 45917, 62, 30910, 36584, 32961, 62, 25216, 62, 2257, 1581, 11879, 62, 3955, 11879, 796, 513, 11, 198, 220, 220, 220, 45917, 62, 30910, 36584, 32961, 62, 25216, 62, 4944, 5064, 1581, 44, 62, 51, 6369, 3698, 62, 19499, 45746, 796, 604, 11, 198, 220, 220, 220, 45917, 62, 30910, 36584, 32961, 62, 25216, 62, 2257, 1581, 11879, 62, 51, 6369, 3698, 62, 19499, 45746, 796, 642, 11, 198, 220, 220, 220, 45917, 62, 30910, 36584, 32961, 62, 25216, 62, 4944, 5064, 1581, 44, 62, 19499, 45746, 796, 718, 11, 198, 220, 220, 220, 45917, 62, 30910, 36584, 32961, 62, 25216, 62, 2257, 1581, 11879, 62, 19499, 45746, 796, 767, 11, 198, 220, 220, 220, 45917, 62, 30910, 36584, 32961, 62, 25216, 62, 4944, 5064, 1581, 44, 62, 19499, 45746, 62, 35, 40760, 2390, 2149, 796, 807, 11, 198, 220, 220, 220, 45917, 62, 30910, 36584, 32961, 62, 25216, 62, 2257, 1581, 11879, 62, 19499, 45746, 62, 35, 40760, 2390, 2149, 796, 860, 11, 198, 220, 220, 220, 45917, 62, 30910, 36584, 32961, 62, 25216, 62, 1268, 30076, 62, 17139, 16219, 10979, 796, 838, 11, 198, 220, 220, 220, 45917, 62, 30910, 36584, 32961, 62, 25216, 62, 33, 43312, 62, 49, 27746, 796, 657, 11, 198, 220, 220, 220, 45917, 62, 30910, 36584, 32961, 62, 25216, 62, 10619, 62, 49, 27746, 796, 838, 11, 198, 220, 220, 220, 45917, 62, 30910, 36584, 32961, 62, 25216, 62, 49, 27746, 62, 33489, 796, 1367, 11, 198, 220, 220, 220, 45917, 62, 30910, 36584, 32961, 62, 25216, 62, 22921, 62, 1677, 5883, 796, 362, 20198, 2780, 26780, 22, 11, 198, 8, 198, 31, 66, 44709, 7, 53, 74, 8086, 15520, 8912, 18257, 11, 198, 220, 220, 220, 45917, 62, 17139, 16219, 10979, 62, 35613, 62, 3185, 62, 35613, 796, 657, 11, 198, 220, 220, 220, 45917, 62, 17139, 16219, 10979, 62, 35613, 62, 3185, 62, 29931, 1503, 796, 352, 11, 198, 220, 220, 220, 45917, 62, 17139, 16219, 10979, 62, 35613, 62, 3185, 62, 35, 35830, 62, 34, 12203, 796, 362, 11, 198, 220, 220, 220, 45917, 62, 17139, 16219, 10979, 62, 35613, 62, 3185, 62, 33, 43312, 62, 49, 27746, 796, 657, 11, 198, 220, 220, 220, 45917, 62, 17139, 16219, 10979, 62, 35613, 62, 3185, 62, 10619, 62, 49, 27746, 796, 362, 11, 198, 220, 220, 220, 45917, 62, 17139, 16219, 10979, 62, 35613, 62, 3185, 62, 49, 27746, 62, 33489, 796, 513, 11, 198, 220, 220, 220, 45917, 62, 17139, 16219, 10979, 62, 35613, 62, 3185, 62, 22921, 62, 1677, 5883, 796, 362, 20198, 2780, 26780, 22, 11, 198, 8, 198, 31, 66, 44709, 7, 53, 74, 8086, 15520, 22658, 18257, 11, 198, 220, 220, 220, 45917, 62, 17139, 16219, 10979, 62, 2257, 6965, 62, 3185, 62, 2257, 6965, 796, 657, 11, 198, 220, 220, 220, 45917, 62, 17139, 16219, 10979, 62, 2257, 6965, 62, 3185, 62, 35, 35830, 62, 34, 12203, 796, 352, 11, 198, 220, 220, 220, 45917, 62, 17139, 16219, 10979, 62, 2257, 6965, 62, 3185, 62, 33, 43312, 62, 49, 27746, 796, 657, 11, 198, 220, 220, 220, 45917, 62, 17139, 16219, 10979, 62, 2257, 6965, 62, 3185, 62, 10619, 62, 49, 27746, 796, 352, 11, 198, 220, 220, 220, 45917, 62, 17139, 16219, 10979, 62, 2257, 6965, 62, 3185, 62, 49, 27746, 62, 33489, 796, 362, 11, 198, 220, 220, 220, 45917, 62, 17139, 16219, 10979, 62, 2257, 6965, 62, 3185, 62, 22921, 62, 1677, 5883, 796, 362, 20198, 2780, 26780, 22, 11, 198, 8, 198, 31, 66, 44709, 7, 53, 74, 47, 541, 4470, 36180, 12727, 11, 198, 220, 220, 220, 45917, 62, 47, 4061, 3698, 8881, 62, 33, 12115, 62, 16402, 12394, 62, 10761, 31300, 19505, 796, 657, 11, 198, 220, 220, 220, 45917, 62, 47, 4061, 3698, 8881, 62, 33, 12115, 62, 16402, 12394, 62, 9858, 30076, 36, 796, 352, 11, 198, 220, 220, 220, 45917, 62, 47, 4061, 3698, 8881, 62, 33, 12115, 62, 16402, 12394, 62, 33, 43312, 62, 49, 27746, 796, 657, 11, 198, 220, 220, 220, 45917, 62, 47, 4061, 3698, 8881, 62, 33, 12115, 62, 16402, 12394, 62, 10619, 62, 49, 27746, 796, 352, 11, 198, 220, 220, 220, 45917, 62, 47, 4061, 3698, 8881, 62, 33, 12115, 62, 16402, 12394, 62, 49, 27746, 62, 33489, 796, 362, 11, 198, 220, 220, 220, 45917, 62, 47, 4061, 3698, 8881, 62, 33, 12115, 62, 16402, 12394, 62, 22921, 62, 1677, 5883, 796, 362, 20198, 2780, 26780, 22, 11, 198, 8, 198, 31, 66, 44709, 7, 53, 74, 21575, 28632, 4971, 11, 198, 220, 220, 220, 45917, 62, 9858, 44, 6981, 62, 19499, 45746, 62, 2538, 18697, 62, 4805, 3955, 13153, 796, 657, 11, 198, 220, 220, 220, 45917, 62, 9858, 44, 6981, 62, 19499, 45746, 62, 2538, 18697, 62, 23683, 18672, 13153, 796, 352, 11, 198, 220, 220, 220, 45917, 62, 9858, 44, 6981, 62, 19499, 45746, 62, 2538, 18697, 62, 33, 43312, 62, 49, 27746, 796, 657, 11, 198, 220, 220, 220, 45917, 62, 9858, 44, 6981, 62, 19499, 45746, 62, 2538, 18697, 62, 10619, 62, 49, 27746, 796, 352, 11, 198, 220, 220, 220, 45917, 62, 9858, 44, 6981, 62, 19499, 45746, 62, 2538, 18697, 62, 49, 27746, 62, 33489, 796, 362, 11, 198, 220, 220, 220, 45917, 62, 9858, 44, 6981, 62, 19499, 45746, 62, 2538, 18697, 62, 22921, 62, 1677, 5883, 796, 362, 20198, 2780, 26780, 22, 11, 198, 8, 198, 31, 66, 44709, 7, 53, 74, 15732, 6030, 11, 198, 220, 220, 220, 45917, 62, 12115, 6369, 62, 25216, 62, 52, 12394, 1433, 796, 657, 11, 198, 220, 220, 220, 45917, 62, 12115, 6369, 62, 25216, 62, 52, 12394, 2624, 796, 352, 11, 198, 220, 220, 220, 45917, 62, 12115, 6369, 62, 25216, 62, 33, 43312, 62, 49, 27746, 796, 657, 11, 198, 220, 220, 220, 45917, 62, 12115, 6369, 62, 25216, 62, 10619, 62, 49, 27746, 796, 352, 11, 198, 220, 220, 220, 45917, 62, 12115, 6369, 62, 25216, 62, 49, 27746, 62, 33489, 796, 362, 11, 198, 220, 220, 220, 45917, 62, 12115, 6369, 62, 25216, 62, 22921, 62, 1677, 5883, 796, 362, 20198, 2780, 26780, 22, 11, 198, 8, 198, 31, 66, 44709, 7, 53, 74, 7004, 6603, 15842, 11, 198, 220, 220, 220, 45917, 62, 50, 10526, 47924, 62, 37815, 15365, 62, 1268, 24027, 796, 657, 11, 198, 220, 220, 220, 45917, 62, 50, 10526, 47924, 62, 37815, 15365, 62, 23683, 18672, 13153, 62, 9858, 44, 6981, 62, 19499, 5777, 4877, 796, 352, 11, 198, 220, 220, 220, 45917, 62, 50, 10526, 47924, 62, 37815, 15365, 62, 33, 43312, 62, 49, 27746, 796, 657, 11, 198, 220, 220, 220, 45917, 62, 50, 10526, 47924, 62, 37815, 15365, 62, 10619, 62, 49, 27746, 796, 352, 11, 198, 220, 220, 220, 45917, 62, 50, 10526, 47924, 62, 37815, 15365, 62, 49, 27746, 62, 33489, 796, 362, 11, 198, 220, 220, 220, 45917, 62, 50, 10526, 47924, 62, 37815, 15365, 62, 22921, 62, 1677, 5883, 796, 362, 20198, 2780, 26780, 22, 11, 198, 8, 198, 198, 4906, 26011, 569, 74, 33384, 16447, 40053, 569, 74, 40053, 198, 198, 31, 66, 44709, 7, 53, 74, 26227, 38816, 34227, 33, 896, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 15112, 40086, 62, 49302, 6489, 1961, 62, 3955, 11879, 62, 26094, 796, 352, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 15112, 40086, 62, 2257, 1581, 11879, 62, 3955, 11879, 62, 26094, 796, 362, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 15112, 40086, 62, 2257, 1581, 11879, 62, 3955, 11879, 62, 1404, 2662, 2149, 62, 26094, 796, 604, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 15112, 40086, 62, 4944, 5064, 1581, 44, 62, 51, 6369, 3698, 62, 19499, 45746, 62, 26094, 796, 807, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 15112, 40086, 62, 2257, 1581, 11879, 62, 51, 6369, 3698, 62, 19499, 45746, 62, 26094, 796, 1467, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 15112, 40086, 62, 2257, 1581, 11879, 62, 51, 6369, 3698, 62, 19499, 45746, 62, 1404, 2662, 2149, 62, 26094, 796, 3933, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 15112, 40086, 62, 15858, 6369, 62, 19499, 45746, 62, 26094, 796, 5598, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 15112, 40086, 62, 46786, 62, 17139, 16219, 10979, 62, 26094, 796, 13108, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 15112, 40086, 62, 46786, 62, 17139, 16219, 10979, 62, 9148, 10619, 62, 26094, 796, 17759, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 15112, 40086, 62, 46162, 4221, 62, 2257, 24181, 4146, 62, 17139, 16219, 10979, 62, 26094, 796, 22243, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 15112, 40086, 62, 9148, 2043, 62, 50, 7397, 62, 26094, 796, 28119, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 15112, 40086, 62, 9148, 2043, 62, 35, 2257, 62, 26094, 796, 36117, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 15112, 40086, 62, 49302, 6489, 1961, 62, 3955, 11879, 62, 46700, 5781, 62, 24027, 1503, 62, 26094, 796, 42479, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 15112, 40086, 62, 49302, 6489, 1961, 62, 3955, 11879, 62, 46700, 5781, 62, 34, 10526, 2149, 62, 26094, 62, 3955, 38, 796, 807, 17477, 11, 198, 220, 220, 220, 45917, 62, 21389, 1404, 62, 15112, 40086, 62, 38948, 62, 26094, 50, 62, 22921, 62, 1677, 5883, 796, 362, 20198, 2780, 26780, 22, 11, 198, 8, 198, 198, 4906, 26011, 569, 74, 26227, 38816, 40053, 569, 74, 40053, 198, 198, 31, 66, 44709, 7, 53, 74, 5159, 28350, 34227, 33, 896, 11, 198, 220, 220, 220, 45917, 62, 3955, 11879, 62, 2937, 11879, 62, 5446, 15037, 24302, 62, 50, 7397, 62, 26094, 796, 352, 11, 198, 220, 220, 220, 45917, 62, 3955, 11879, 62, 2937, 11879, 62, 5446, 15037, 24302, 62, 35, 2257, 62, 26094, 796, 362, 11, 198, 220, 220, 220, 45917, 62, 3955, 11879, 62, 2937, 11879, 62, 49302, 6489, 1961, 62, 26094, 796, 604, 11, 198, 220, 220, 220, 45917, 62, 3955, 11879, 62, 2937, 11879, 62, 2257, 1581, 11879, 62, 26094, 796, 807, 11, 198, 220, 220, 220, 45917, 62, 3955, 11879, 62, 2937, 11879, 62, 46786, 62, 17139, 16219, 10979, 62, 26094, 796, 1467, 11, 198, 220, 220, 220, 45917, 62, 3955, 11879, 62, 2937, 11879, 62, 46162, 4221, 62, 2257, 24181, 4146, 62, 17139, 16219, 10979, 62, 26094, 796, 3933, 11, 198, 220, 220, 220, 45917, 62, 3955, 11879, 62, 2937, 11879, 62, 5446, 1565, 11584, 3525, 62, 17139, 16219, 10979, 62, 26094, 796, 5598, 11, 198, 220, 220, 220, 45917, 62, 3955, 11879, 62, 2937, 11879, 62, 1268, 30076, 62, 17139, 16219, 10979, 62, 26094, 796, 13108, 11, 198, 220, 220, 220, 45917, 62, 3955, 11879, 62, 2937, 11879, 62, 38948, 62, 26094, 50, 62, 22921, 62, 1677, 5883, 796, 362, 20198, 2780, 26780, 22, 11, 198, 8, 198, 198, 4906, 26011, 569, 74, 5159, 28350, 40053, 569, 74, 40053, 198, 198, 31, 66, 44709, 7, 53, 74, 5159, 16447, 34227, 33, 896, 11, 198, 220, 220, 220, 45917, 62, 3955, 11879, 62, 43387, 6158, 62, 4303, 1503, 5188, 62, 33, 12115, 2751, 62, 26094, 796, 352, 11, 198, 220, 220, 220, 45917, 62, 3955, 11879, 62, 43387, 6158, 62, 4303, 1503, 5188, 62, 19535, 2389, 45155, 62, 26094, 796, 362, 11, 198, 220, 220, 220, 45917, 62, 3955, 11879, 62, 43387, 6158, 62, 4303, 1503, 5188, 62, 1847, 40, 42827, 62, 26094, 796, 604, 11, 198, 220, 220, 220, 45917, 62, 3955, 11879, 62, 43387, 6158, 62, 44, 3843, 17534, 62, 21389, 1404, 62, 26094, 796, 807, 11, 198, 220, 220, 220, 45917, 62, 3955, 11879, 62, 43387, 6158, 62, 34, 10526, 36, 62, 9858, 47, 1404, 34563, 62, 26094, 796, 1467, 11, 198, 220, 220, 220, 45917, 62, 3955, 11879, 62, 43387, 6158, 62, 38948, 62, 26094, 50, 62, 22921, 62, 1677, 5883, 796, 362, 20198, 2780, 26780, 22, 11, 198, 8, 198, 198, 4906, 26011, 569, 74, 5159, 16447, 40053, 569, 74, 40053, 198, 198, 31, 66, 44709, 7, 53, 74, 36674, 12332, 34227, 33, 896, 11, 198, 220, 220, 220, 45917, 62, 49302, 16437, 62, 34, 28270, 62, 16, 62, 26094, 796, 352, 11, 198, 220, 220, 220, 45917, 62, 49302, 16437, 62, 34, 28270, 62, 17, 62, 26094, 796, 362, 11, 198, 220, 220, 220, 45917, 62, 49302, 16437, 62, 34, 28270, 62, 19, 62, 26094, 796, 604, 11, 198, 220, 220, 220, 45917, 62, 49302, 16437, 62, 34, 28270, 62, 23, 62, 26094, 796, 807, 11, 198, 220, 220, 220, 45917, 62, 49302, 16437, 62, 34, 28270, 62, 1433, 62, 26094, 796, 1467, 11, 198, 220, 220, 220, 45917, 62, 49302, 16437, 62, 34, 28270, 62, 2624, 62, 26094, 796, 3933, 11, 198, 220, 220, 220, 45917, 62, 49302, 16437, 62, 34, 28270, 62, 2414, 62, 26094, 796, 5598, 11, 198, 220, 220, 220, 45917, 62, 49302, 16437, 62, 34, 28270, 62, 38948, 62, 26094, 50, 62, 22921, 62, 1677, 5883, 796, 362, 20198, 2780, 26780, 22, 11, 198, 8, 198, 198, 4906, 26011, 569, 74, 36674, 12332, 40053, 569, 74, 40053, 198, 198, 31, 66, 44709, 7, 53, 74, 34991, 34227, 33, 896, 11, 198, 220, 220, 220, 45917, 62, 48, 8924, 8924, 62, 10761, 31300, 19505, 62, 26094, 796, 352, 11, 198, 220, 220, 220, 45917, 62, 48, 8924, 8924, 62, 9858, 30076, 36, 62, 26094, 796, 362, 11, 198, 220, 220, 220, 45917, 62, 48, 8924, 8924, 62, 5446, 15037, 24302, 62, 26094, 796, 604, 11, 198, 220, 220, 220, 45917, 62, 48, 8924, 8924, 62, 4303, 1503, 5188, 62, 33, 12115, 2751, 62, 26094, 796, 807, 11, 198, 220, 220, 220, 45917, 62, 48, 8924, 8924, 62, 38948, 62, 26094, 50, 62, 22921, 62, 1677, 5883, 796, 362, 20198, 2780, 26780, 22, 11, 198, 8, 198, 198, 4906, 26011, 569, 74, 34991, 40053, 569, 74, 40053, 198, 198, 31, 66, 44709, 7, 53, 74, 30871, 21746, 34227, 33, 896, 11, 198, 220, 220, 220, 45917, 62, 44, 3620, 15513, 62, 4805, 31054, 9936, 62, 7206, 27389, 62, 29701, 1847, 62, 26094, 796, 352, 11, 198, 220, 220, 220, 45917, 62, 44, 3620, 15513, 62, 4805, 31054, 9936, 62, 39, 10892, 62, 29817, 34563, 62, 26094, 796, 362, 11, 198, 220, 220, 220, 45917, 62, 44, 3620, 15513, 62, 4805, 31054, 9936, 62, 39, 10892, 62, 8220, 16879, 3525, 62, 26094, 796, 604, 11, 198, 220, 220, 220, 45917, 62, 44, 3620, 15513, 62, 4805, 31054, 9936, 62, 39, 10892, 62, 34, 16219, 1961, 62, 26094, 796, 807, 11, 198, 220, 220, 220, 45917, 62, 44, 3620, 15513, 62, 4805, 31054, 9936, 62, 13534, 57, 33340, 62, 7036, 4503, 11617, 62, 26094, 796, 1467, 11, 198, 220, 220, 220, 45917, 62, 44, 3620, 15513, 62, 4805, 31054, 9936, 62, 38948, 62, 26094, 50, 62, 22921, 62, 1677, 5883, 796, 362, 20198, 2780, 26780, 22, 11, 198, 8, 198, 198, 4906, 26011, 569, 74, 30871, 21746, 40053, 569, 74, 40053, 198, 198, 31, 66, 44709, 7, 53, 74, 30871, 1544, 499, 34227, 33, 896, 11, 198, 220, 220, 220, 45917, 62, 44, 3620, 15513, 62, 13909, 2969, 62, 7206, 27389, 62, 29701, 1847, 62, 26094, 796, 352, 11, 198, 220, 220, 220, 45917, 62, 44, 3620, 15513, 62, 13909, 2969, 62, 38948, 62, 26094, 50, 62, 22921, 62, 1677, 5883, 796, 362, 20198, 2780, 26780, 22, 11, 198, 8, 198, 198, 4906, 26011, 569, 74, 30871, 1544, 499, 40053, 569, 74, 40053, 198, 4906, 26011, 569, 74, 24728, 16447, 40053, 569, 74, 40053, 198, 4906, 26011, 569, 74, 24728, 34991, 16447, 40053, 569, 74, 40053, 198, 198, 31, 66, 44709, 7, 53, 74, 47, 541, 4470, 29391, 34227, 33, 896, 11, 198, 220, 220, 220, 45917, 62, 47, 4061, 3698, 8881, 62, 2257, 11879, 62, 35222, 62, 19238, 62, 47, 4061, 36, 62, 26094, 796, 352, 11, 198, 220, 220, 220, 45917, 62, 47, 4061, 3698, 8881, 62, 2257, 11879, 62, 35, 20530, 62, 12115, 40, 23988, 62, 26094, 796, 362, 11, 198, 220, 220, 220, 45917, 62, 47, 4061, 3698, 8881, 62, 2257, 11879, 62, 15858, 6369, 62, 1268, 30076, 62, 26094, 796, 604, 11, 198, 220, 220, 220, 45917, 62, 47, 4061, 3698, 8881, 62, 2257, 11879, 62, 15858, 6369, 62, 9693, 2885, 1137, 62, 26094, 796, 807, 11, 198, 220, 220, 220, 45917, 62, 47, 4061, 3698, 8881, 62, 2257, 11879, 62, 51, 1546, 5188, 3069, 6234, 62, 10943, 5446, 3535, 62, 9693, 2885, 1137, 62, 26094, 796, 1467, 11, 198, 220, 220, 220, 45917, 62, 47, 4061, 3698, 8881, 62, 2257, 11879, 62, 51, 1546, 5188, 3069, 6234, 62, 20114, 1847, 52, 6234, 62, 9693, 2885, 1137, 62, 26094, 796, 3933, 11, 198, 220, 220, 220, 45917, 62, 47, 4061, 3698, 8881, 62, 2257, 11879, 62, 8264, 2662, 2767, 18276, 62, 9693, 2885, 1137, 62, 26094, 796, 5598, 11, 198, 220, 220, 220, 45917, 62, 47, 4061, 3698, 8881, 62, 2257, 11879, 62, 37, 33202, 10979, 62, 9693, 2885, 1137, 62, 26094, 796, 13108, 11, 198, 220, 220, 220, 45917, 62, 47, 4061, 3698, 8881, 62, 2257, 11879, 62, 17133, 11319, 62, 37, 33202, 10979, 62, 51, 1546, 4694, 62, 26094, 796, 17759, 11, 198, 220, 220, 220, 45917, 62, 47, 4061, 3698, 8881, 62, 2257, 11879, 62, 43, 6158, 62, 37, 33202, 10979, 62, 51, 1546, 4694, 62, 26094, 796, 22243, 11, 198, 220, 220, 220, 45917, 62, 47, 4061, 3698, 8881, 62, 2257, 11879, 62, 46786, 62, 17139, 16219, 10979, 62, 2606, 7250, 3843, 62, 26094, 796, 28119, 11, 198, 220, 220, 220, 45917, 62, 47, 4061, 3698, 8881, 62, 2257, 11879, 62, 9858, 30076, 36, 62, 9693, 2885, 1137, 62, 26094, 796, 36117, 11, 198, 220, 220, 220, 45917, 62, 47, 4061, 3698, 8881, 62, 2257, 11879, 62, 5446, 15037, 24302, 62, 26094, 796, 42479, 11, 198, 220, 220, 220, 45917, 62, 47, 4061, 3698, 8881, 62, 2257, 11879, 62, 33, 29089, 2662, 62, 19238, 62, 47, 4061, 36, 62, 26094, 796, 807, 17477, 11, 198, 220, 220, 220, 45917, 62, 47, 4061, 3698, 8881, 62, 2257, 11879, 62, 39, 10892, 62, 26094, 796, 1467, 22842, 11, 198, 220, 220, 220, 45917, 62, 47, 4061, 3698, 8881, 62, 2257, 11879, 62, 7036, 62, 10761, 31300, 19505, 62, 26094, 796, 36203, 3104, 11, 198, 220, 220, 220, 45917, 62, 47, 4061, 3698, 8881, 62, 2257, 11879, 62, 7036, 62, 9858, 10725, 5258, 62, 26094, 796, 45021, 2623, 11, 198, 220, 220, 220, 45917, 62, 47, 4061, 3698, 8881, 62, 2257, 11879, 62, 38948, 62, 26094, 50, 62, 22921, 62, 1677, 5883, 796, 362, 20198, 2780, 26780, 22, 11, 198, 8, 198, 198, 4906, 26011, 569, 74, 47, 541, 4470, 29391, 40053, 569, 74, 40053, 198, 4906, 26011, 569, 74, 30871, 13912, 40053, 569, 74, 40053, 198, 198, 31, 66, 44709, 7, 53, 74, 5159, 1722, 806, 34227, 33, 896, 11, 198, 220, 220, 220, 45917, 62, 3955, 11879, 62, 1921, 47, 9782, 62, 46786, 62, 26094, 796, 352, 11, 198, 220, 220, 220, 45917, 62, 3955, 11879, 62, 1921, 47, 9782, 62, 46162, 4221, 62, 26094, 796, 362, 11, 198, 220, 220, 220, 45917, 62, 3955, 11879, 62, 1921, 47, 9782, 62, 2257, 24181, 4146, 62, 26094, 796, 604, 11, 198, 220, 220, 220, 45917, 62, 3955, 11879, 62, 1921, 47, 9782, 62, 47123, 2885, 13563, 62, 26094, 796, 807, 11, 198, 220, 220, 220, 45917, 62, 3955, 11879, 62, 1921, 47, 9782, 62, 38948, 62, 26094, 50, 62, 22921, 62, 1677, 5883, 796, 362, 20198, 2780, 26780, 22, 11, 198, 8, 198, 198, 4906, 26011, 569, 74, 5159, 1722, 806, 40053, 569, 74, 40053, 198, 198, 31, 66, 44709, 7, 53, 74, 50, 29572, 5159, 26227, 34227, 33, 896, 11, 198, 220, 220, 220, 45917, 62, 4303, 1503, 5188, 62, 3955, 11879, 62, 21389, 1404, 62, 50, 2751, 2538, 62, 44, 4061, 5603, 4146, 62, 26094, 796, 352, 11, 198, 220, 220, 220, 45917, 62, 4303, 1503, 5188, 62, 3955, 11879, 62, 21389, 1404, 62, 1847, 16284, 1961, 62, 44, 4061, 62, 33489, 62, 26094, 796, 362, 11, 198, 220, 220, 220, 45917, 62, 4303, 1503, 5188, 62, 3955, 11879, 62, 21389, 1404, 62, 45, 1340, 2257, 6981, 9795, 62, 9148, 11290, 62, 33489, 62, 26094, 796, 604, 11, 198, 220, 220, 220, 45917, 62, 4303, 1503, 5188, 62, 3955, 11879, 62, 21389, 1404, 62, 38948, 62, 26094, 50, 62, 22921, 62, 1677, 5883, 796, 362, 20198, 2780, 26780, 22, 11, 198, 8, 198, 198, 4906, 26011, 569, 74, 50, 29572, 5159, 26227, 40053, 569, 74, 40053, 198, 198, 31, 66, 44709, 7, 53, 74, 50, 29572, 30871, 36180, 34227, 33, 896, 11, 198, 220, 220, 220, 45917, 62, 4303, 1503, 5188, 62, 44, 3620, 15513, 62, 33, 12115, 62, 47123, 2885, 13563, 62, 26094, 796, 352, 11, 198, 220, 220, 220, 45917, 62, 4303, 1503, 5188, 62, 44, 3620, 15513, 62, 33, 12115, 62, 38948, 62, 26094, 50, 62, 22921, 62, 1677, 5883, 796, 362, 20198, 2780, 26780, 22, 11, 198, 8, 198, 198, 4906, 26011, 569, 74, 50, 29572, 30871, 36180, 40053, 569, 74, 40053, 198, 198, 31, 66, 44709, 7, 53, 74, 37, 594, 16447, 34227, 33, 896, 11, 198, 220, 220, 220, 45917, 62, 37, 18310, 62, 43387, 6158, 62, 46224, 1847, 1961, 62, 26094, 796, 352, 11, 198, 220, 220, 220, 45917, 62, 37, 18310, 62, 43387, 6158, 62, 38948, 62, 26094, 50, 62, 22921, 62, 1677, 5883, 796, 362, 20198, 2780, 26780, 22, 11, 198, 8, 198, 198, 4906, 26011, 569, 74, 37, 594, 16447, 40053, 569, 74, 40053, 198, 4906, 26011, 569, 74, 13900, 6570, 382, 16447, 40053, 569, 74, 40053, 198, 4906, 26011, 569, 74, 9237, 16447, 40053, 569, 74, 40053, 198, 4906, 26011, 569, 74, 20746, 27201, 16447, 40053, 569, 74, 40053, 198, 198, 31, 66, 44709, 7, 53, 74, 20746, 47, 541, 4470, 17126, 2569, 34227, 33, 896, 11, 198, 220, 220, 220, 45917, 62, 10917, 19664, 62, 47, 4061, 3698, 8881, 62, 35744, 8808, 2149, 62, 1268, 30076, 62, 10705, 3620, 9148, 56, 62, 15858, 34444, 62, 26094, 796, 352, 11, 198, 220, 220, 220, 45917, 62, 10917, 19664, 62, 47, 4061, 3698, 8881, 62, 35744, 8808, 2149, 62, 1268, 30076, 62, 10705, 3620, 9148, 56, 62, 4805, 3955, 2043, 42472, 62, 26094, 796, 362, 11, 198, 220, 220, 220, 45917, 62, 10917, 19664, 62, 47, 4061, 3698, 8881, 62, 35744, 8808, 2149, 62, 15858, 6369, 62, 9693, 2885, 1137, 62, 1268, 53, 4503, 18421, 62, 26094, 796, 604, 11, 198, 220, 220, 220, 45917, 62, 10917, 19664, 62, 47, 4061, 3698, 8881, 62, 35744, 8808, 2149, 62, 8264, 2662, 2767, 18276, 62, 9693, 2885, 1137, 62, 1268, 53, 4503, 18421, 62, 26094, 796, 807, 11, 198, 220, 220, 220, 45917, 62, 10917, 19664, 62, 47, 4061, 3698, 8881, 62, 35744, 8808, 2149, 62, 8264, 2662, 2767, 18276, 62, 9693, 2885, 1137, 62, 4805, 3955, 2043, 42472, 62, 26094, 796, 1467, 11, 198, 220, 220, 220, 45917, 62, 10917, 19664, 62, 47, 4061, 3698, 8881, 62, 35744, 8808, 2149, 62, 5097, 31444, 2751, 62, 1268, 53, 4503, 18421, 62, 26094, 796, 3933, 11, 198, 220, 220, 220, 45917, 62, 10917, 19664, 62, 47, 4061, 3698, 8881, 62, 35744, 8808, 2149, 62, 5097, 31444, 2751, 62, 4805, 3955, 2043, 42472, 62, 26094, 796, 5598, 11, 198, 220, 220, 220, 45917, 62, 10917, 19664, 62, 47, 4061, 3698, 8881, 62, 35744, 8808, 2149, 62, 37, 33202, 10979, 62, 9693, 2885, 1137, 62, 1268, 53, 4503, 18421, 62, 26094, 796, 13108, 11, 198, 220, 220, 220, 45917, 62, 10917, 19664, 62, 47, 4061, 3698, 8881, 62, 35744, 8808, 2149, 62, 51, 1546, 5188, 3069, 6234, 62, 10943, 5446, 3535, 62, 9693, 2885, 1137, 62, 47, 11417, 1546, 62, 26094, 796, 17759, 11, 198, 220, 220, 220, 45917, 62, 10917, 19664, 62, 47, 4061, 3698, 8881, 62, 35744, 8808, 2149, 62, 51, 1546, 5188, 3069, 6234, 62, 20114, 1847, 52, 6234, 62, 9693, 2885, 1137, 62, 1268, 53, 4503, 18421, 62, 26094, 796, 22243, 11, 198, 220, 220, 220, 45917, 62, 10917, 19664, 62, 47, 4061, 3698, 8881, 62, 35744, 8808, 2149, 62, 9858, 30076, 36, 62, 9693, 2885, 1137, 62, 1268, 53, 4503, 18421, 62, 26094, 796, 28119, 11, 198, 220, 220, 220, 45917, 62, 10917, 19664, 62, 47, 4061, 3698, 8881, 62, 35744, 8808, 2149, 62, 38948, 62, 26094, 50, 62, 22921, 62, 1677, 5883, 796, 362, 20198, 2780, 26780, 22, 11, 198, 8, 198, 198, 4906, 26011, 569, 74, 20746, 47, 541, 4470, 17126, 2569, 40053, 569, 74, 40053, 198, 198, 31, 66, 44709, 7, 53, 74, 20746, 23004, 34227, 33, 896, 11, 198, 220, 220, 220, 45917, 62, 10917, 19664, 62, 19535, 16724, 62, 2414, 62, 26094, 796, 352, 11, 198, 220, 220, 220, 45917, 62, 10917, 19664, 62, 19535, 16724, 62, 15543, 2043, 62, 26094, 796, 362, 11, 198, 220, 220, 220, 45917, 62, 10917, 19664, 62, 19535, 16724, 62, 54, 10554, 62, 10116, 32, 47164, 25382, 62, 26094, 796, 604, 11, 198, 220, 220, 220, 45917, 62, 10917, 19664, 62, 19535, 16724, 62, 30709, 12576, 62, 26094, 796, 807, 11, 198, 220, 220, 220, 45917, 62, 10917, 19664, 62, 19535, 16724, 62, 38948, 62, 26094, 50, 62, 22921, 62, 1677, 5883, 796, 362, 20198, 2780, 26780, 22, 11, 198, 8, 198, 198, 4906, 26011, 569, 74, 20746, 23004, 40053, 569, 74, 40053, 198, 198, 31, 66, 44709, 7, 53, 74, 28632, 16447, 34227, 33, 896, 11, 198, 220, 220, 220, 45917, 62, 19499, 45746, 62, 43387, 6158, 62, 4303, 1503, 5188, 62, 33, 12115, 2751, 62, 26094, 796, 352, 11, 198, 220, 220, 220, 45917, 62, 19499, 45746, 62, 43387, 6158, 62, 4303, 1503, 5188, 62, 19535, 2389, 45155, 62, 26094, 796, 362, 11, 198, 220, 220, 220, 45917, 62, 19499, 45746, 62, 43387, 6158, 62, 4303, 1503, 5188, 62, 1847, 40, 42827, 62, 26094, 796, 604, 11, 198, 220, 220, 220, 45917, 62, 19499, 45746, 62, 43387, 6158, 62, 38948, 62, 26094, 50, 62, 22921, 62, 1677, 5883, 796, 362, 20198, 2780, 26780, 22, 11, 198, 8, 198, 198, 4906, 26011, 569, 74, 28632, 16447, 40053, 569, 74, 40053, 198, 198, 31, 66, 44709, 7, 53, 74, 28632, 28350, 34227, 33, 896, 11, 198, 220, 220, 220, 45917, 62, 19499, 45746, 62, 2937, 11879, 62, 5446, 15037, 24302, 62, 50, 7397, 62, 26094, 796, 352, 11, 198, 220, 220, 220, 45917, 62, 19499, 45746, 62, 2937, 11879, 62, 5446, 15037, 24302, 62, 35, 2257, 62, 26094, 796, 362, 11, 198, 220, 220, 220, 45917, 62, 19499, 45746, 62, 2937, 11879, 62, 4944, 5064, 1581, 44, 62, 51, 6369, 3698, 62, 19499, 45746, 62, 26094, 796, 604, 11, 198, 220, 220, 220, 45917, 62, 19499, 45746, 62, 2937, 11879, 62, 2257, 1581, 11879, 62, 51, 6369, 3698, 62, 19499, 45746, 62, 26094, 796, 807, 11, 198, 220, 220, 220, 45917, 62, 19499, 45746, 62, 2937, 11879, 62, 4944, 5064, 1581, 44, 62, 19499, 45746, 62, 26094, 796, 1467, 11, 198, 220, 220, 220, 45917, 62, 19499, 45746, 62, 2937, 11879, 62, 2257, 1581, 11879, 62, 19499, 45746, 62, 26094, 796, 3933, 11, 198, 220, 220, 220, 45917, 62, 19499, 45746, 62, 2937, 11879, 62, 12115, 6369, 62, 19499, 45746, 62, 26094, 796, 5598, 11, 198, 220, 220, 220, 45917, 62, 19499, 45746, 62, 2937, 11879, 62, 15858, 6369, 62, 19499, 45746, 62, 26094, 796, 13108, 11, 198, 220, 220, 220, 45917, 62, 19499, 45746, 62, 2937, 11879, 62, 12115, 40, 23988, 62, 19499, 45746, 62, 26094, 796, 17759, 11, 198, 220, 220, 220, 45917, 62, 19499, 45746, 62, 2937, 11879, 62, 38948, 62, 26094, 50, 62, 22921, 62, 1677, 5883, 796, 362, 20198, 2780, 26780, 22, 11, 198, 8, 198, 198, 4906, 26011, 569, 74, 28632, 28350, 40053, 569, 74, 40053, 198, 4906, 26011, 569, 74, 28632, 7680, 16447, 40053, 569, 74, 40053, 198, 4906, 26011, 569, 74, 5159, 7680, 16447, 40053, 569, 74, 40053, 198, 4906, 26011, 569, 74, 2484, 5067, 26796, 16447, 40053, 569, 74, 40053, 198, 4906, 26011, 569, 74, 47, 541, 4470, 30562, 16447, 40053, 569, 74, 40053, 198, 198, 31, 66, 44709, 7, 53, 74, 47, 541, 4470, 16447, 34227, 33, 896, 11, 198, 220, 220, 220, 45917, 62, 47, 4061, 3698, 8881, 62, 43387, 6158, 62, 26288, 17534, 62, 3185, 51, 3955, 14887, 6234, 62, 26094, 796, 352, 11, 198, 220, 220, 220, 45917, 62, 47, 4061, 3698, 8881, 62, 43387, 6158, 62, 7036, 3913, 62, 14418, 3824, 1404, 42472, 62, 26094, 796, 362, 11, 198, 220, 220, 220, 45917, 62, 47, 4061, 3698, 8881, 62, 43387, 6158, 62, 14418, 3824, 37045, 62, 26094, 796, 604, 11, 198, 220, 220, 220, 45917, 62, 47, 4061, 3698, 8881, 62, 43387, 6158, 62, 38948, 62, 26094, 50, 62, 22921, 62, 1677, 5883, 796, 362, 20198, 2780, 26780, 22, 11, 198, 8, 198, 198, 4906, 26011, 569, 74, 47, 541, 4470, 16447, 40053, 569, 74, 40053, 198, 4906, 26011, 569, 74, 47, 541, 4470, 2484, 5067, 29391, 16447, 40053, 569, 74, 40053, 198, 198, 31, 66, 44709, 7, 53, 74, 2484, 5067, 29391, 34227, 33, 896, 11, 198, 220, 220, 220, 45917, 62, 9693, 2885, 1137, 62, 2257, 11879, 62, 15858, 6369, 62, 26094, 796, 352, 11, 198, 220, 220, 220, 45917, 62, 9693, 2885, 1137, 62, 2257, 11879, 62, 51, 1546, 5188, 3069, 6234, 62, 10943, 5446, 3535, 62, 26094, 796, 362, 11, 198, 220, 220, 220, 45917, 62, 9693, 2885, 1137, 62, 2257, 11879, 62, 51, 1546, 5188, 3069, 6234, 62, 20114, 1847, 52, 6234, 62, 26094, 796, 604, 11, 198, 220, 220, 220, 45917, 62, 9693, 2885, 1137, 62, 2257, 11879, 62, 8264, 2662, 2767, 18276, 62, 26094, 796, 807, 11, 198, 220, 220, 220, 45917, 62, 9693, 2885, 1137, 62, 2257, 11879, 62, 37, 33202, 10979, 62, 26094, 796, 1467, 11, 198, 220, 220, 220, 45917, 62, 9693, 2885, 1137, 62, 2257, 11879, 62, 9858, 30076, 36, 62, 26094, 796, 3933, 11, 198, 220, 220, 220, 45917, 62, 9693, 2885, 1137, 62, 2257, 11879, 62, 7036, 62, 10761, 31300, 19505, 796, 3261, 11, 198, 220, 220, 220, 45917, 62, 9693, 2885, 1137, 62, 2257, 11879, 62, 7036, 796, 362, 20198, 2780, 26780, 22, 11, 198, 220, 220, 220, 45917, 62, 9693, 2885, 1137, 62, 2257, 11879, 62, 38948, 62, 26094, 50, 62, 22921, 62, 1677, 5883, 796, 362, 20198, 2780, 26780, 22, 11, 198, 8, 198, 198, 4906, 26011, 569, 74, 47, 541, 4470, 13414, 16886, 20560, 9012, 16447, 40053, 569, 74, 40053, 198, 4906, 26011, 569, 74, 47, 541, 4470, 20560, 49670, 9012, 16447, 40053, 569, 74, 40053, 198, 4906, 26011, 569, 74, 47, 541, 4470, 36504, 7255, 341, 9012, 16447, 40053, 569, 74, 40053, 198, 4906, 26011, 569, 74, 47, 541, 4470, 7680, 634, 9012, 16447, 40053, 569, 74, 40053, 198, 4906, 26011, 569, 74, 47, 541, 4470, 49, 1603, 1634, 9012, 16447, 40053, 569, 74, 40053, 198, 198, 31, 66, 44709, 7, 53, 74, 34, 724, 19076, 34227, 33, 896, 11, 198, 220, 220, 220, 45917, 62, 34, 9994, 62, 49058, 62, 45, 11651, 796, 657, 11, 198, 220, 220, 220, 45917, 62, 34, 9994, 62, 49058, 62, 10913, 35830, 62, 26094, 796, 352, 11, 198, 220, 220, 220, 45917, 62, 34, 9994, 62, 49058, 62, 31098, 62, 26094, 796, 362, 11, 198, 220, 220, 220, 45917, 62, 34, 9994, 62, 49058, 62, 10913, 35830, 62, 6981, 62, 31098, 796, 513, 11, 198, 220, 220, 220, 45917, 62, 34, 9994, 62, 49058, 62, 38948, 62, 26094, 50, 62, 22921, 62, 1677, 5883, 796, 362, 20198, 2780, 26780, 22, 11, 198, 8, 198, 198, 4906, 26011, 569, 74, 34, 724, 19076, 40053, 569, 74, 40053, 198, 4906, 26011, 569, 74, 47, 541, 4470, 15205, 271, 1403, 9012, 16447, 40053, 569, 74, 40053, 198, 4906, 26011, 569, 74, 47, 541, 4470, 48791, 1273, 268, 2856, 9012, 16447, 40053, 569, 74, 40053, 198, 4906, 26011, 569, 74, 47, 541, 4470, 10258, 3629, 437, 9012, 16447, 40053, 569, 74, 40053, 198, 198, 31, 66, 44709, 7, 53, 74, 10258, 21950, 34227, 33, 896, 11, 198, 220, 220, 220, 45917, 62, 46786, 62, 9858, 47, 1340, 3525, 62, 49, 62, 26094, 796, 352, 11, 198, 220, 220, 220, 45917, 62, 46786, 62, 9858, 47, 1340, 3525, 62, 38, 62, 26094, 796, 362, 11, 198, 220, 220, 220, 45917, 62, 46786, 62, 9858, 47, 1340, 3525, 62, 33, 62, 26094, 796, 604, 11, 198, 220, 220, 220, 45917, 62, 46786, 62, 9858, 47, 1340, 3525, 62, 32, 62, 26094, 796, 807, 11, 198, 220, 220, 220, 45917, 62, 46786, 62, 9858, 47, 1340, 3525, 62, 38948, 62, 26094, 50, 62, 22921, 62, 1677, 5883, 796, 362, 20198, 2780, 26780, 22, 11, 198, 8, 198, 198, 4906, 26011, 569, 74, 10258, 21950, 40053, 569, 74, 40053, 198, 4906, 26011, 569, 74, 47, 541, 4470, 44090, 9012, 16447, 40053, 569, 74, 40053, 198, 4906, 26011, 569, 74, 47, 541, 4470, 32517, 16447, 40053, 569, 74, 40053, 198, 4906, 26011, 569, 74, 2484, 5067, 29391, 40053, 569, 74, 40053, 198, 4906, 26011, 569, 74, 16305, 20053, 16447, 40053, 569, 74, 40053, 198, 4906, 26011, 569, 74, 24564, 1968, 273, 7248, 32517, 16447, 40053, 569, 74, 40053, 198, 198, 31, 66, 44709, 7, 53, 74, 24564, 1968, 273, 27201, 16447, 34227, 33, 896, 11, 198, 220, 220, 220, 45917, 62, 30910, 36584, 32961, 62, 16402, 3535, 62, 43387, 6158, 62, 39274, 62, 30910, 36584, 32961, 62, 28480, 62, 26094, 796, 352, 11, 198, 220, 220, 220, 45917, 62, 30910, 36584, 32961, 62, 16402, 3535, 62, 43387, 6158, 62, 38948, 62, 26094, 50, 62, 22921, 62, 1677, 5883, 796, 362, 20198, 2780, 26780, 22, 11, 198, 8, 198, 198, 4906, 26011, 569, 74, 24564, 1968, 273, 27201, 16447, 40053, 569, 74, 40053, 198, 4906, 26011, 569, 74, 24564, 1968, 273, 27201, 4965, 316, 40053, 569, 74, 40053, 198, 4906, 26011, 569, 74, 19778, 22252, 16447, 40053, 569, 74, 40053, 198, 4906, 26011, 569, 74, 45819, 14478, 16447, 40053, 569, 74, 40053, 198, 198, 31, 66, 44709, 7, 53, 74, 8086, 15520, 11828, 34227, 33, 896, 11, 198, 220, 220, 220, 45917, 62, 17139, 16219, 10979, 62, 30910, 40165, 62, 44, 4792, 62, 1847, 43429, 62, 26094, 796, 352, 11, 198, 220, 220, 220, 45917, 62, 17139, 16219, 10979, 62, 30910, 40165, 62, 38948, 62, 26094, 50, 62, 22921, 62, 1677, 5883, 796, 362, 20198, 2780, 26780, 22, 11, 198, 8, 198, 198, 4906, 26011, 569, 74, 8086, 15520, 11828, 40053, 569, 74, 40053, 198, 4906, 26011, 569, 74, 7004, 6603, 11828, 40053, 569, 74, 40053, 198, 198, 31, 66, 44709, 7, 53, 74, 15457, 34227, 33, 896, 11, 198, 220, 220, 220, 45917, 62, 26861, 7597, 62, 12115, 40, 23988, 62, 9858, 44, 6981, 62, 15675, 62, 26094, 796, 352, 11, 198, 220, 220, 220, 45917, 62, 26861, 7597, 62, 12115, 6369, 62, 15675, 62, 26094, 796, 362, 11, 198, 220, 220, 220, 45917, 62, 26861, 7597, 62, 15858, 6369, 62, 1404, 5446, 9865, 37780, 62, 15675, 62, 26094, 796, 604, 11, 198, 220, 220, 220, 45917, 62, 26861, 7597, 62, 4944, 5064, 1581, 44, 62, 15675, 62, 26094, 796, 807, 11, 198, 220, 220, 220, 45917, 62, 26861, 7597, 62, 1268, 30076, 62, 17139, 16219, 10979, 62, 15675, 62, 26094, 796, 1467, 11, 198, 220, 220, 220, 45917, 62, 26861, 7597, 62, 9693, 2885, 1137, 62, 15675, 62, 26094, 796, 3933, 11, 198, 220, 220, 220, 45917, 62, 26861, 7597, 62, 9693, 2885, 1137, 62, 18564, 12709, 62, 26094, 796, 5598, 11, 198, 220, 220, 220, 45917, 62, 26861, 7597, 62, 46786, 62, 17139, 16219, 10979, 62, 15675, 62, 26094, 796, 13108, 11, 198, 220, 220, 220, 45917, 62, 26861, 7597, 62, 46786, 62, 17139, 16219, 10979, 62, 18564, 12709, 62, 26094, 796, 17759, 11, 198, 220, 220, 220, 45917, 62, 26861, 7597, 62, 46162, 4221, 62, 2257, 24181, 4146, 62, 17139, 16219, 10979, 62, 15675, 62, 26094, 796, 22243, 11, 198, 220, 220, 220, 45917, 62, 26861, 7597, 62, 46162, 4221, 62, 2257, 24181, 4146, 62, 17139, 16219, 10979, 62, 18564, 12709, 62, 26094, 796, 28119, 11, 198, 220, 220, 220, 45917, 62, 26861, 7597, 62, 5446, 15037, 24302, 62, 15675, 62, 26094, 796, 36117, 11, 198, 220, 220, 220, 45917, 62, 26861, 7597, 62, 5446, 15037, 24302, 62, 18564, 12709, 62, 26094, 796, 42479, 11, 198, 220, 220, 220, 45917, 62, 26861, 7597, 62, 39, 10892, 62, 15675, 62, 26094, 796, 807, 17477, 11, 198, 220, 220, 220, 45917, 62, 26861, 7597, 62, 39, 10892, 62, 18564, 12709, 62, 26094, 796, 1467, 22842, 11, 198, 220, 220, 220, 45917, 62, 26861, 7597, 62, 44, 3620, 15513, 62, 15675, 62, 26094, 796, 36203, 3104, 11, 198, 220, 220, 220, 45917, 62, 26861, 7597, 62, 44, 3620, 15513, 62, 18564, 12709, 62, 26094, 796, 45021, 2623, 11, 198, 220, 220, 220, 45917, 62, 26861, 7597, 62, 38948, 62, 26094, 50, 62, 22921, 62, 1677, 5883, 796, 362, 20198, 2780, 26780, 22, 11, 198, 8, 198, 198, 4906, 26011, 569, 74, 15457, 40053, 569, 74, 40053, 198, 198, 31, 66, 44709, 7, 53, 74, 35, 2690, 1387, 34227, 33, 896, 11, 198, 220, 220, 220, 45917, 62, 46162, 10619, 45155, 62, 17513, 62, 31553, 2849, 62, 26094, 796, 352, 11, 198, 220, 220, 220, 45917, 62, 46162, 10619, 45155, 62, 38948, 62, 26094, 50, 62, 22921, 62, 1677, 5883, 796, 362, 20198, 2780, 26780, 22, 11, 198, 8, 198, 198, 4906, 26011, 569, 74, 35, 2690, 1387, 40053, 569, 74, 40053, 198, 198, 31, 66, 44709, 7, 53, 74, 21575, 27201, 16447, 34227, 33, 896, 11, 198, 220, 220, 220, 45917, 62, 9858, 44, 6981, 62, 16402, 3535, 62, 43387, 6158, 62, 5446, 1565, 11584, 3525, 62, 26094, 796, 352, 11, 198, 220, 220, 220, 45917, 62, 9858, 44, 6981, 62, 16402, 3535, 62, 43387, 6158, 62, 19535, 2767, 62, 9858, 44, 6981, 62, 19499, 45746, 62, 26094, 796, 362, 11, 198, 220, 220, 220, 45917, 62, 9858, 44, 6981, 62, 16402, 3535, 62, 43387, 6158, 62, 38948, 62, 26094, 50, 62, 22921, 62, 1677, 5883, 796, 362, 20198, 2780, 26780, 22, 11, 198, 8, 198, 198, 4906, 26011, 569, 74, 21575, 27201, 16447, 40053, 569, 74, 40053, 198, 198, 31, 66, 44709, 7, 53, 74, 21575, 27201, 4965, 316, 34227, 33, 896, 11, 198, 220, 220, 220, 45917, 62, 9858, 44, 6981, 62, 16402, 3535, 62, 19535, 2767, 62, 2200, 22781, 62, 19535, 2606, 7397, 1546, 62, 26094, 796, 352, 11, 198, 220, 220, 220, 45917, 62, 9858, 44, 6981, 62, 16402, 3535, 62, 19535, 2767, 62, 38948, 62, 26094, 50, 62, 22921, 62, 1677, 5883, 796, 362, 20198, 2780, 26780, 22, 11, 198, 8, 198, 198, 4906, 26011, 569, 74, 21575, 27201, 4965, 316, 40053, 569, 74, 40053, 198, 198, 31, 66, 44709, 7, 53, 74, 21575, 28632, 28350, 34227, 33, 896, 11, 198, 220, 220, 220, 45917, 62, 9858, 44, 6981, 62, 19499, 45746, 62, 2937, 11879, 62, 11651, 62, 34694, 62, 50, 10526, 36393, 62, 26094, 796, 352, 11, 198, 220, 220, 220, 45917, 62, 9858, 44, 6981, 62, 19499, 45746, 62, 2937, 11879, 62, 49, 10619, 1137, 62, 47924, 62, 37815, 1268, 8924, 62, 26094, 796, 362, 11, 198, 220, 220, 220, 45917, 62, 9858, 44, 6981, 62, 19499, 45746, 62, 2937, 11879, 62, 48913, 16724, 30525, 20958, 62, 19108, 62, 26094, 796, 604, 11, 198, 220, 220, 220, 45917, 62, 9858, 44, 6981, 62, 19499, 45746, 62, 2937, 11879, 62, 38948, 62, 26094, 50, 62, 22921, 62, 1677, 5883, 796, 362, 20198, 2780, 26780, 22, 11, 198, 8, 198, 198, 4906, 26011, 569, 74, 21575, 28632, 28350, 40053, 569, 74, 40053, 198, 198, 31, 66, 44709, 7, 53, 74, 20746, 15988, 34227, 33, 896, 11, 198, 220, 220, 220, 45917, 62, 10917, 19664, 62, 10943, 5446, 3535, 62, 47, 38827, 24352, 62, 26094, 796, 352, 11, 198, 220, 220, 220, 45917, 62, 10917, 19664, 62, 10943, 5446, 3535, 62, 38948, 62, 26094, 50, 62, 22921, 62, 1677, 5883, 796, 362, 20198, 2780, 26780, 22, 11, 198, 8, 198, 198, 4906, 26011, 569, 74, 20746, 15988, 40053, 569, 74, 40053, 198, 198, 31, 66, 44709, 7, 53, 74, 21575, 28632, 4965, 316, 34227, 33, 896, 11, 198, 220, 220, 220, 45917, 62, 9858, 44, 6981, 62, 19499, 45746, 62, 19535, 2767, 62, 2200, 22781, 62, 19535, 2606, 7397, 1546, 62, 26094, 796, 352, 11, 198, 220, 220, 220, 45917, 62, 9858, 44, 6981, 62, 19499, 45746, 62, 19535, 2767, 62, 38948, 62, 26094, 50, 62, 22921, 62, 1677, 5883, 796, 362, 20198, 2780, 26780, 22, 11, 198, 8, 198, 198, 4906, 26011, 569, 74, 21575, 28632, 4965, 316, 40053, 569, 74, 40053, 198, 198, 31, 66, 44709, 7, 53, 74, 1273, 268, 2856, 32388, 34227, 33, 896, 11, 198, 220, 220, 220, 45917, 62, 2257, 24181, 4146, 62, 49836, 62, 10913, 35830, 62, 26094, 796, 352, 11, 198, 220, 220, 220, 45917, 62, 2257, 24181, 4146, 62, 49836, 62, 31098, 62, 26094, 796, 362, 11, 198, 220, 220, 220, 45917, 62, 2257, 24181, 4146, 62, 10913, 35830, 62, 6981, 62, 31098, 796, 513, 11, 198, 220, 220, 220, 45917, 62, 2257, 24181, 4146, 62, 49836, 62, 38948, 62, 26094, 50, 62, 22921, 62, 1677, 5883, 796, 362, 20198, 2780, 26780, 22, 11, 198, 8, 198, 198, 4906, 26011, 569, 74, 1273, 268, 2856, 32388, 40053, 569, 74, 40053, 198, 4906, 26011, 28223, 45, 62, 85, 74, 3237, 5040, 22203, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 3041, 439, 5040, 22203, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 11146, 22203, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 37693, 3237, 5040, 3673, 2649, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 37693, 11146, 3673, 2649, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 53, 1868, 22203, 350, 2213, 90, 53, 1868, 92, 198, 198, 8608, 18187, 569, 74, 23416, 12360, 198, 220, 220, 220, 264, 6030, 3712, 53, 74, 1273, 5620, 6030, 198, 220, 220, 220, 279, 10019, 3712, 46745, 90, 53, 1868, 92, 198, 220, 220, 220, 279, 23416, 5376, 3712, 34, 8841, 198, 220, 220, 220, 3586, 14815, 3712, 52, 5317, 2624, 198, 220, 220, 220, 279, 13798, 5376, 3712, 34, 8841, 198, 220, 220, 220, 3113, 14815, 3712, 52, 5317, 2624, 198, 220, 220, 220, 40391, 14815, 3712, 52, 5317, 2624, 198, 437, 198, 198, 8608, 18187, 569, 74, 33384, 16447, 12360, 198, 220, 220, 220, 264, 6030, 3712, 53, 74, 1273, 5620, 6030, 198, 220, 220, 220, 279, 10019, 3712, 46745, 90, 53, 1868, 92, 198, 220, 220, 220, 9701, 3712, 53, 74, 33384, 16447, 40053, 198, 220, 220, 220, 279, 23416, 12360, 3712, 46745, 90, 53, 74, 23416, 12360, 92, 198, 220, 220, 220, 9343, 49925, 12332, 3712, 52, 5317, 2624, 198, 220, 220, 220, 9788, 20491, 49925, 36690, 3712, 46745, 90, 34, 8841, 92, 198, 220, 220, 220, 9343, 11627, 3004, 12332, 3712, 52, 5317, 2624, 198, 220, 220, 220, 9788, 20491, 11627, 3004, 36690, 3712, 46745, 90, 34, 8841, 92, 198, 437, 198, 198, 8608, 18187, 569, 74, 3237, 5040, 14134, 10146, 198, 220, 220, 220, 279, 12982, 6601, 3712, 46745, 90, 53, 1868, 92, 198, 220, 220, 220, 279, 22184, 3237, 5040, 3712, 42668, 45, 62, 85, 74, 3237, 5040, 22203, 198, 220, 220, 220, 279, 22184, 3041, 439, 5040, 3712, 42668, 45, 62, 85, 74, 3041, 439, 5040, 22203, 198, 220, 220, 220, 279, 22184, 11146, 3712, 42668, 45, 62, 85, 74, 11146, 22203, 198, 220, 220, 220, 279, 22184, 37693, 3237, 5040, 3712, 42668, 45, 62, 85, 74, 37693, 3237, 5040, 3673, 2649, 198, 220, 220, 220, 279, 22184, 37693, 11146, 3712, 42668, 45, 62, 85, 74, 37693, 11146, 3673, 2649, 198, 437, 198, 198, 8608, 18187, 569, 74, 31611, 24728, 23595, 198, 220, 220, 220, 12373, 28632, 15457, 3712, 53, 38841, 970, 2624, 198, 220, 220, 220, 1336, 25302, 15732, 52, 600, 2624, 3712, 53, 38841, 970, 2624, 198, 220, 220, 220, 2939, 29071, 19182, 3712, 53, 38841, 970, 2624, 198, 220, 220, 220, 4795, 3629, 437, 3712, 53, 38841, 970, 2624, 198, 220, 220, 220, 22939, 2484, 5067, 3712, 53, 38841, 970, 2624, 198, 220, 220, 220, 256, 274, 7255, 341, 2484, 5067, 3712, 53, 38841, 970, 2624, 198, 220, 220, 220, 6291, 32184, 2484, 4980, 3712, 53, 38841, 970, 2624, 198, 220, 220, 220, 10668, 50, 6015, 3629, 437, 3712, 53, 38841, 970, 2624, 198, 220, 220, 220, 9156, 18257, 3712, 53, 38841, 970, 2624, 198, 220, 220, 220, 5021, 25302, 5497, 1060, 3712, 53, 38841, 970, 2624, 198, 220, 220, 220, 3197, 5497, 1060, 5962, 33384, 3712, 53, 38841, 970, 2624, 198, 220, 220, 220, 6795, 2601, 696, 3712, 53, 38841, 970, 2624, 198, 220, 220, 220, 6795, 33, 4448, 2601, 696, 3712, 53, 38841, 970, 2624, 198, 220, 220, 220, 6070, 19076, 15419, 46933, 3712, 53, 38841, 970, 2624, 198, 220, 220, 220, 6795, 33, 3733, 3712, 53, 38841, 970, 2624, 198, 220, 220, 220, 3094, 43, 1127, 3712, 53, 38841, 970, 2624, 198, 220, 220, 220, 1588, 40710, 3712, 53, 38841, 970, 2624, 198, 220, 220, 220, 17130, 2514, 3198, 3712, 53, 38841, 970, 2624, 198, 220, 220, 220, 5021, 7680, 634, 3712, 53, 38841, 970, 2624, 198, 220, 220, 220, 6072, 20053, 2025, 271, 313, 28338, 3712, 53, 38841, 970, 2624, 198, 220, 220, 220, 11743, 7293, 2234, 2767, 34, 17, 3712, 53, 38841, 970, 2624, 198, 220, 220, 220, 11743, 7293, 2234, 1921, 4825, 62, 43, 7707, 3712, 53, 38841, 970, 2624, 198, 220, 220, 220, 11743, 7293, 2234, 2749, 3712, 53, 38841, 970, 2624, 198, 220, 220, 220, 1609, 75, 4241, 20746, 6719, 37561, 3712, 53, 38841, 970, 2624, 198, 220, 220, 220, 11523, 48346, 20746, 3712, 53, 38841, 970, 2624, 198, 220, 220, 220, 37423, 47, 541, 4470, 1273, 2850, 1870, 2953, 31994, 3712, 53, 38841, 970, 2624, 198, 220, 220, 220, 24225, 1273, 2850, 1870, 2953, 31994, 3712, 53, 38841, 970, 2624, 198, 220, 220, 220, 33030, 36504, 7255, 341, 1870, 10082, 15748, 12727, 10699, 3712, 53, 38841, 970, 2624, 198, 220, 220, 220, 33030, 5159, 38, 1032, 11627, 1631, 3712, 53, 38841, 970, 2624, 198, 220, 220, 220, 33030, 31425, 5159, 11627, 1631, 8479, 1381, 3712, 53, 38841, 970, 2624, 198, 220, 220, 220, 33030, 31425, 5159, 15205, 271, 1403, 3712, 53, 38841, 970, 2624, 198, 220, 220, 220, 33030, 31425, 5159, 5569, 16249, 26227, 3712, 53, 38841, 970, 2624, 198, 220, 220, 220, 33030, 31425, 5159, 16594, 16249, 26227, 3712, 53, 38841, 970, 2624, 198, 220, 220, 220, 33030, 3118, 6933, 28632, 19182, 44090, 15732, 278, 3712, 53, 38841, 970, 2624, 198, 220, 220, 220, 33030, 16305, 10137, 5159, 19182, 44090, 15732, 278, 3712, 53, 38841, 970, 2624, 198, 220, 220, 220, 33030, 31425, 28632, 19182, 44090, 15732, 278, 3712, 53, 38841, 970, 2624, 198, 220, 220, 220, 33030, 31425, 5159, 19182, 44090, 15732, 278, 3712, 53, 38841, 970, 2624, 198, 220, 220, 220, 33030, 2601, 541, 45767, 3712, 53, 38841, 970, 2624, 198, 220, 220, 220, 33030, 34, 724, 45767, 3712, 53, 38841, 970, 2624, 198, 220, 220, 220, 33030, 43879, 2414, 3712, 53, 38841, 970, 2624, 198, 220, 220, 220, 33030, 5317, 2414, 3712, 53, 38841, 970, 2624, 198, 220, 220, 220, 33030, 5317, 1433, 3712, 53, 38841, 970, 2624, 198, 220, 220, 220, 33030, 26198, 4965, 9147, 3712, 53, 38841, 970, 2624, 198, 220, 220, 220, 33030, 26198, 9452, 43, 375, 3712, 53, 38841, 970, 2624, 198, 220, 220, 220, 29877, 33, 6020, 3712, 53, 38841, 970, 2624, 198, 220, 220, 220, 29877, 4965, 9147, 28632, 3712, 53, 38841, 970, 2624, 198, 220, 220, 220, 29877, 4965, 9147, 5159, 17, 35, 3712, 53, 38841, 970, 2624, 198, 220, 220, 220, 29877, 4965, 9147, 5159, 18, 35, 3712, 53, 38841, 970, 2624, 198, 220, 220, 220, 29877, 4965, 9147, 17, 50, 12629, 3712, 53, 38841, 970, 2624, 198, 220, 220, 220, 29877, 4965, 9147, 19, 50, 12629, 3712, 53, 38841, 970, 2624, 198, 220, 220, 220, 29877, 4965, 9147, 23, 50, 12629, 3712, 53, 38841, 970, 2624, 198, 220, 220, 220, 29877, 4965, 9147, 1433, 50, 12629, 3712, 53, 38841, 970, 2624, 198, 220, 220, 220, 29877, 4965, 9147, 37893, 839, 3712, 53, 38841, 970, 2624, 198, 220, 220, 220, 7885, 15205, 271, 1403, 32184, 3712, 53, 38841, 970, 2624, 198, 220, 220, 220, 19552, 4507, 10640, 3712, 53, 38841, 970, 2624, 198, 437, 198, 198, 8608, 18187, 569, 74, 26227, 2964, 18200, 198, 220, 220, 220, 14174, 51, 4386, 23595, 3712, 53, 74, 26227, 38816, 40053, 198, 220, 220, 220, 16586, 51, 4386, 23595, 3712, 53, 74, 26227, 38816, 40053, 198, 220, 220, 220, 11876, 23595, 3712, 53, 74, 26227, 38816, 40053, 198, 437, 198, 198, 8608, 18187, 569, 74, 11627, 298, 18, 35, 198, 220, 220, 220, 9647, 3712, 52, 5317, 2624, 198, 220, 220, 220, 6001, 3712, 52, 5317, 2624, 198, 220, 220, 220, 6795, 3712, 52, 5317, 2624, 198, 437, 198, 198, 8608, 18187, 569, 74, 5159, 26227, 2964, 18200, 198, 220, 220, 220, 3509, 11627, 298, 3712, 53, 74, 11627, 298, 18, 35, 198, 220, 220, 220, 3509, 44, 541, 4971, 82, 3712, 52, 5317, 2624, 198, 220, 220, 220, 3509, 19182, 43, 6962, 3712, 52, 5317, 2624, 198, 220, 220, 220, 6291, 12332, 82, 3712, 53, 74, 36674, 12332, 40053, 198, 220, 220, 220, 3509, 26198, 10699, 3712, 53, 74, 24728, 10699, 198, 437, 198, 198, 8608, 18187, 569, 74, 31611, 24728, 19352, 896, 198, 220, 220, 220, 3509, 5159, 29271, 3004, 16, 35, 3712, 52, 5317, 2624, 198, 220, 220, 220, 3509, 5159, 29271, 3004, 17, 35, 3712, 52, 5317, 2624, 198, 220, 220, 220, 3509, 5159, 29271, 3004, 18, 35, 3712, 52, 5317, 2624, 198, 220, 220, 220, 3509, 5159, 29271, 3004, 29071, 3712, 52, 5317, 2624, 198, 220, 220, 220, 3509, 5159, 19182, 43, 6962, 3712, 52, 5317, 2624, 198, 220, 220, 220, 3509, 17005, 417, 28632, 36, 3639, 3712, 52, 5317, 2624, 198, 220, 220, 220, 3509, 3118, 6933, 28632, 17257, 3712, 52, 5317, 2624, 198, 220, 220, 220, 3509, 31425, 28632, 17257, 3712, 52, 5317, 2624, 198, 220, 220, 220, 3509, 49222, 34184, 1187, 10699, 3712, 52, 5317, 2624, 198, 220, 220, 220, 3509, 30871, 3237, 5040, 12332, 3712, 52, 5317, 2624, 198, 220, 220, 220, 3509, 16305, 20053, 3237, 5040, 12332, 3712, 52, 5317, 2624, 198, 220, 220, 220, 11876, 5159, 38, 2596, 33737, 3712, 53, 74, 24728, 10699, 198, 220, 220, 220, 29877, 20231, 14106, 10699, 3712, 53, 74, 24728, 10699, 198, 220, 220, 220, 3509, 49646, 24564, 1968, 273, 50, 1039, 3712, 52, 5317, 2624, 198, 220, 220, 220, 3509, 5990, 29391, 24564, 1968, 273, 16305, 489, 364, 3712, 52, 5317, 2624, 198, 220, 220, 220, 3509, 5990, 29391, 24564, 1968, 273, 3118, 6933, 36474, 364, 3712, 52, 5317, 2624, 198, 220, 220, 220, 3509, 5990, 29391, 24564, 1968, 273, 31425, 36474, 364, 3712, 52, 5317, 2624, 198, 220, 220, 220, 3509, 5990, 29391, 24564, 1968, 273, 16305, 10137, 29398, 3712, 52, 5317, 2624, 198, 220, 220, 220, 3509, 5990, 29391, 24564, 1968, 273, 31425, 29398, 3712, 52, 5317, 2624, 198, 220, 220, 220, 3509, 5990, 29391, 24564, 1968, 273, 20560, 33296, 902, 3712, 52, 5317, 2624, 198, 220, 220, 220, 3509, 5990, 29391, 33236, 3712, 52, 5317, 2624, 198, 220, 220, 220, 3509, 24564, 1968, 273, 7248, 16305, 489, 364, 3712, 52, 5317, 2624, 198, 220, 220, 220, 3509, 24564, 1968, 273, 7248, 3118, 6933, 36474, 364, 3712, 52, 5317, 2624, 198, 220, 220, 220, 3509, 24564, 1968, 273, 7248, 3118, 6933, 36474, 364, 44090, 3712, 52, 5317, 2624, 198, 220, 220, 220, 3509, 24564, 1968, 273, 7248, 31425, 36474, 364, 3712, 52, 5317, 2624, 198, 220, 220, 220, 3509, 24564, 1968, 273, 7248, 31425, 36474, 364, 44090, 3712, 52, 5317, 2624, 198, 220, 220, 220, 3509, 24564, 1968, 273, 7248, 16305, 10137, 29398, 3712, 52, 5317, 2624, 198, 220, 220, 220, 3509, 24564, 1968, 273, 7248, 31425, 29398, 3712, 52, 5317, 2624, 198, 220, 220, 220, 3509, 24564, 1968, 273, 7248, 20560, 33296, 902, 3712, 52, 5317, 2624, 198, 220, 220, 220, 3509, 13414, 16886, 20560, 29021, 3712, 52, 5317, 2624, 198, 220, 220, 220, 3509, 13414, 16886, 20560, 36180, 654, 3712, 52, 5317, 2624, 198, 220, 220, 220, 3509, 13414, 16886, 20560, 33682, 34519, 3712, 52, 5317, 2624, 198, 220, 220, 220, 3509, 13414, 16886, 20560, 33, 6020, 1273, 13154, 3712, 52, 5317, 2624, 198, 220, 220, 220, 3509, 13414, 16886, 26410, 7293, 3906, 3712, 52, 5317, 2624, 198, 220, 220, 220, 3509, 36504, 7255, 341, 8645, 341, 4971, 3712, 52, 5317, 2624, 198, 220, 220, 220, 3509, 36504, 7255, 341, 33952, 10699, 3712, 52, 5317, 2624, 198, 220, 220, 220, 3509, 36504, 7255, 341, 15988, 5990, 13414, 16886, 20560, 7293, 3906, 3712, 52, 5317, 2624, 198, 220, 220, 220, 3509, 36504, 7255, 341, 15988, 5990, 13414, 16886, 26410, 7293, 3906, 3712, 52, 5317, 2624, 198, 220, 220, 220, 3509, 36504, 7255, 341, 15988, 5990, 33952, 26410, 7293, 3906, 3712, 52, 5317, 2624, 198, 220, 220, 220, 3509, 36504, 7255, 341, 15988, 14957, 26410, 7293, 3906, 3712, 52, 5317, 2624, 198, 220, 220, 220, 3509, 36504, 7255, 341, 36, 2100, 2288, 20560, 7293, 3906, 3712, 52, 5317, 2624, 198, 220, 220, 220, 3509, 36504, 7255, 341, 36, 2100, 2288, 26410, 7293, 3906, 3712, 52, 5317, 2624, 198, 220, 220, 220, 3509, 10082, 15748, 2484, 5067, 818, 18893, 602, 3712, 52, 5317, 2624, 198, 220, 220, 220, 3509, 10082, 15748, 20560, 7293, 3906, 3712, 52, 5317, 2624, 198, 220, 220, 220, 3509, 10082, 15748, 26410, 7293, 3906, 3712, 52, 5317, 2624, 198, 220, 220, 220, 3509, 10082, 15748, 26410, 42369, 1063, 3712, 52, 5317, 2624, 198, 220, 220, 220, 3509, 10082, 15748, 14957, 26410, 7293, 3906, 3712, 52, 5317, 2624, 198, 220, 220, 220, 3509, 42974, 434, 20560, 7293, 3906, 3712, 52, 5317, 2624, 198, 220, 220, 220, 3509, 42974, 434, 26410, 33296, 902, 3712, 52, 5317, 2624, 198, 220, 220, 220, 3509, 42974, 434, 36248, 50, 6015, 33296, 902, 3712, 52, 5317, 2624, 198, 220, 220, 220, 3509, 42974, 434, 20575, 1389, 26410, 33236, 3712, 52, 5317, 2624, 198, 220, 220, 220, 3509, 7293, 1133, 2484, 1144, 30871, 10699, 3712, 52, 5317, 2624, 198, 220, 220, 220, 3509, 7293, 1133, 12468, 13247, 12332, 3712, 11251, 29291, 90, 18, 11, 52, 5317, 2624, 92, 198, 220, 220, 220, 3509, 7293, 1133, 12468, 13247, 818, 18893, 602, 3712, 52, 5317, 2624, 198, 220, 220, 220, 3509, 7293, 1133, 12468, 13247, 10699, 3712, 11251, 29291, 90, 18, 11, 52, 5317, 2624, 92, 198, 220, 220, 220, 850, 40809, 6719, 16005, 33, 896, 3712, 52, 5317, 2624, 198, 220, 220, 220, 850, 17005, 417, 6719, 16005, 33, 896, 3712, 52, 5317, 2624, 198, 220, 220, 220, 285, 541, 8899, 6719, 16005, 33, 896, 3712, 52, 5317, 2624, 198, 220, 220, 220, 3509, 25302, 15732, 276, 15732, 11395, 3712, 52, 5317, 2624, 198, 220, 220, 220, 3509, 25302, 5497, 1060, 12332, 3712, 52, 5317, 2624, 198, 220, 220, 220, 3509, 16305, 20053, 43, 375, 33, 4448, 3712, 34, 22468, 198, 220, 220, 220, 3509, 16305, 20053, 2025, 271, 313, 28338, 3712, 34, 22468, 198, 220, 220, 220, 3509, 7680, 3742, 3712, 52, 5317, 2624, 198, 220, 220, 220, 3509, 7680, 634, 29271, 5736, 3712, 11251, 29291, 90, 17, 11, 52, 5317, 2624, 92, 198, 220, 220, 220, 1570, 634, 33, 3733, 17257, 3712, 11251, 29291, 90, 17, 11, 34, 22468, 92, 198, 220, 220, 220, 1570, 634, 7004, 40809, 33, 896, 3712, 52, 5317, 2624, 198, 220, 220, 220, 949, 30871, 13912, 2348, 16747, 3712, 34, 7857, 62, 83, 198, 220, 220, 220, 949, 17005, 417, 28632, 34519, 2348, 16747, 3712, 53, 74, 24728, 10699, 198, 220, 220, 220, 949, 3118, 6933, 28632, 34519, 2348, 16747, 3712, 53, 74, 24728, 10699, 198, 220, 220, 220, 949, 31425, 28632, 34519, 2348, 16747, 3712, 53, 74, 24728, 10699, 198, 220, 220, 220, 949, 17005, 417, 34519, 3712, 5317, 2624, 198, 220, 220, 220, 3509, 17005, 417, 34519, 3712, 52, 5317, 2624, 198, 220, 220, 220, 949, 17005, 417, 38, 1032, 34519, 3712, 5317, 2624, 198, 220, 220, 220, 3509, 17005, 417, 38, 1032, 34519, 3712, 52, 5317, 2624, 198, 220, 220, 220, 949, 9492, 16104, 341, 34519, 3712, 34, 22468, 198, 220, 220, 220, 3509, 9492, 16104, 341, 34519, 3712, 34, 22468, 198, 220, 220, 220, 850, 40809, 9492, 16104, 341, 34519, 33, 896, 3712, 52, 5317, 2624, 198, 220, 220, 220, 3509, 19778, 22252, 30916, 3712, 52, 5317, 2624, 198, 220, 220, 220, 3509, 19778, 22252, 23106, 3712, 52, 5317, 2624, 198, 220, 220, 220, 3509, 19778, 22252, 43, 6962, 3712, 52, 5317, 2624, 198, 220, 220, 220, 5739, 22252, 10258, 36674, 12332, 82, 3712, 53, 74, 36674, 12332, 40053, 198, 220, 220, 220, 5739, 22252, 48791, 36674, 12332, 82, 3712, 53, 74, 36674, 12332, 40053, 198, 220, 220, 220, 5739, 22252, 1273, 268, 2856, 36674, 12332, 82, 3712, 53, 74, 36674, 12332, 40053, 198, 220, 220, 220, 5739, 22252, 2949, 33296, 902, 36674, 12332, 82, 3712, 53, 74, 36674, 12332, 40053, 198, 220, 220, 220, 3509, 10258, 33296, 902, 3712, 52, 5317, 2624, 198, 220, 220, 220, 35846, 5159, 10258, 36674, 12332, 82, 3712, 53, 74, 36674, 12332, 40053, 198, 220, 220, 220, 35846, 5159, 46541, 36674, 12332, 82, 3712, 53, 74, 36674, 12332, 40053, 198, 220, 220, 220, 35846, 5159, 48791, 36674, 12332, 82, 3712, 53, 74, 36674, 12332, 40053, 198, 220, 220, 220, 35846, 5159, 1273, 268, 2856, 36674, 12332, 82, 3712, 53, 74, 36674, 12332, 40053, 198, 220, 220, 220, 6143, 5159, 36674, 12332, 82, 3712, 53, 74, 36674, 12332, 40053, 198, 220, 220, 220, 3509, 36674, 45195, 37117, 3712, 52, 5317, 2624, 198, 220, 220, 220, 41033, 7293, 1133, 1870, 18172, 3712, 53, 38841, 970, 2624, 198, 220, 220, 220, 41033, 5990, 2101, 3712, 34, 22468, 198, 220, 220, 220, 3509, 2601, 541, 20344, 1817, 3712, 52, 5317, 2624, 198, 220, 220, 220, 3509, 34, 724, 20344, 1817, 3712, 52, 5317, 2624, 198, 220, 220, 220, 3509, 20575, 1389, 2601, 541, 1870, 34, 724, 20344, 1817, 3712, 52, 5317, 2624, 198, 220, 220, 220, 28810, 34991, 22442, 871, 3712, 52, 5317, 2624, 198, 220, 220, 220, 966, 10699, 17257, 3712, 11251, 29291, 90, 17, 11, 34, 22468, 92, 198, 220, 220, 220, 1627, 30916, 17257, 3712, 11251, 29291, 90, 17, 11, 34, 22468, 92, 198, 220, 220, 220, 966, 10699, 38, 2596, 33737, 3712, 34, 22468, 198, 220, 220, 220, 1627, 30916, 38, 2596, 33737, 3712, 34, 22468, 198, 220, 220, 220, 7646, 43, 1127, 3712, 53, 38841, 970, 2624, 198, 220, 220, 220, 3210, 36674, 43, 20968, 3712, 53, 38841, 970, 2624, 198, 220, 220, 220, 16586, 28632, 29881, 34519, 2348, 16747, 3712, 53, 74, 24728, 10699, 198, 220, 220, 220, 16586, 28632, 29881, 25166, 47, 2007, 2348, 16747, 3712, 53, 74, 24728, 10699, 198, 220, 220, 220, 1729, 7222, 8334, 2953, 296, 10699, 3712, 53, 74, 24728, 10699, 198, 437, 198, 198, 8608, 18187, 569, 74, 31611, 24728, 50, 29572, 2964, 18200, 198, 220, 220, 220, 27308, 23615, 17, 35, 12235, 33383, 3712, 53, 38841, 970, 2624, 198, 220, 220, 220, 27308, 23615, 17, 35, 15205, 271, 1403, 12235, 33383, 3712, 53, 38841, 970, 2624, 198, 220, 220, 220, 27308, 23615, 18, 35, 12235, 33383, 3712, 53, 38841, 970, 2624, 198, 220, 220, 220, 27308, 2348, 3916, 44, 541, 10699, 3712, 53, 38841, 970, 2624, 198, 220, 220, 220, 27308, 15419, 4965, 738, 1273, 2012, 3712, 53, 38841, 970, 2624, 198, 437, 198, 198, 8608, 18187, 569, 74, 31611, 24728, 2964, 18200, 198, 220, 220, 220, 40391, 14815, 3712, 52, 5317, 2624, 198, 220, 220, 220, 4639, 14815, 3712, 52, 5317, 2624, 198, 220, 220, 220, 18371, 2389, 3712, 52, 5317, 2624, 198, 220, 220, 220, 3335, 2389, 3712, 52, 5317, 2624, 198, 220, 220, 220, 3335, 6030, 3712, 53, 74, 31611, 24728, 6030, 198, 220, 220, 220, 3335, 5376, 3712, 11251, 29291, 90, 11645, 11, 52, 5317, 23, 92, 198, 220, 220, 220, 11523, 30562, 52, 27586, 3712, 11251, 29291, 90, 1433, 11, 52, 5317, 23, 92, 198, 220, 220, 220, 7095, 3712, 53, 74, 31611, 24728, 19352, 896, 198, 220, 220, 220, 29877, 2964, 18200, 3712, 53, 74, 31611, 24728, 50, 29572, 2964, 18200, 198, 437, 198, 198, 8608, 18187, 569, 74, 34991, 24094, 2964, 18200, 198, 220, 220, 220, 16834, 40053, 3712, 53, 74, 34991, 40053, 198, 220, 220, 220, 16834, 12332, 3712, 52, 5317, 2624, 198, 220, 220, 220, 41033, 47139, 33, 896, 3712, 52, 5317, 2624, 198, 220, 220, 220, 949, 5159, 43260, 38, 2596, 33737, 3712, 53, 74, 11627, 298, 18, 35, 198, 437, 198, 198, 8608, 18187, 569, 74, 30871, 6030, 198, 220, 220, 220, 3119, 40053, 3712, 53, 74, 30871, 21746, 40053, 198, 220, 220, 220, 24575, 15732, 3712, 52, 5317, 2624, 198, 437, 198, 198, 8608, 18187, 569, 74, 30871, 1544, 499, 198, 220, 220, 220, 2546, 3712, 53, 74, 24728, 10699, 198, 220, 220, 220, 9701, 3712, 53, 74, 30871, 1544, 499, 40053, 198, 437, 198, 198, 8608, 18187, 569, 74, 31611, 24728, 30871, 2964, 18200, 198, 220, 220, 220, 4088, 6030, 12332, 3712, 52, 5317, 2624, 198, 220, 220, 220, 4088, 31431, 3712, 11251, 29291, 90, 2624, 11, 53, 74, 30871, 6030, 92, 198, 220, 220, 220, 4088, 1544, 499, 12332, 3712, 52, 5317, 2624, 198, 220, 220, 220, 4088, 1544, 1686, 3712, 11251, 29291, 90, 1433, 11, 53, 74, 30871, 1544, 499, 92, 198, 437, 198, 198, 8608, 18187, 569, 74, 24728, 34991, 16447, 12360, 198, 220, 220, 220, 264, 6030, 3712, 53, 74, 1273, 5620, 6030, 198, 220, 220, 220, 279, 10019, 3712, 46745, 90, 53, 1868, 92, 198, 220, 220, 220, 9701, 3712, 53, 74, 24728, 34991, 16447, 40053, 198, 220, 220, 220, 16834, 24094, 15732, 3712, 52, 5317, 2624, 198, 220, 220, 220, 16834, 12332, 3712, 52, 5317, 2624, 198, 220, 220, 220, 279, 34991, 22442, 871, 3712, 46745, 90, 34, 22468, 92, 198, 437, 198, 198, 8608, 18187, 569, 74, 24728, 16447, 12360, 198, 220, 220, 220, 264, 6030, 3712, 53, 74, 1273, 5620, 6030, 198, 220, 220, 220, 279, 10019, 3712, 46745, 90, 53, 1868, 92, 198, 220, 220, 220, 9701, 3712, 53, 74, 24728, 16447, 40053, 198, 220, 220, 220, 16834, 16447, 12360, 12332, 3712, 52, 5317, 2624, 198, 220, 220, 220, 279, 34991, 16447, 18943, 418, 3712, 46745, 90, 53, 74, 24728, 34991, 16447, 12360, 92, 198, 220, 220, 220, 9343, 49925, 12332, 3712, 52, 5317, 2624, 198, 220, 220, 220, 9788, 20491, 49925, 36690, 3712, 46745, 90, 34, 8841, 92, 198, 220, 220, 220, 9343, 11627, 3004, 12332, 3712, 52, 5317, 2624, 198, 220, 220, 220, 9788, 20491, 11627, 3004, 36690, 3712, 46745, 90, 34, 8841, 92, 198, 220, 220, 220, 279, 20491, 23595, 3712, 46745, 90, 53, 74, 31611, 24728, 23595, 92, 198, 437, 198, 198, 8608, 18187, 569, 74, 11627, 3004, 2964, 18200, 198, 220, 220, 220, 7552, 5376, 3712, 11251, 29291, 90, 11645, 11, 52, 5317, 23, 92, 198, 220, 220, 220, 1020, 14815, 3712, 52, 5317, 2624, 198, 437, 198, 198, 8608, 18187, 569, 74, 49925, 2964, 18200, 198, 220, 220, 220, 7679, 5376, 3712, 11251, 29291, 90, 11645, 11, 52, 5317, 23, 92, 198, 220, 220, 220, 1020, 14815, 3712, 52, 5317, 2624, 198, 220, 220, 220, 7822, 14815, 3712, 52, 5317, 2624, 198, 220, 220, 220, 6764, 3712, 11251, 29291, 90, 11645, 11, 52, 5317, 23, 92, 198, 437, 198, 198, 8608, 18187, 569, 74, 45135, 12360, 198, 220, 220, 220, 264, 6030, 3712, 53, 74, 1273, 5620, 6030, 198, 220, 220, 220, 279, 10019, 3712, 46745, 90, 53, 1868, 92, 198, 220, 220, 220, 4043, 13900, 6570, 382, 12332, 3712, 52, 5317, 2624, 198, 220, 220, 220, 279, 21321, 13900, 6570, 2850, 3712, 46745, 90, 53, 74, 13900, 6570, 382, 92, 198, 220, 220, 220, 279, 21321, 35, 301, 29391, 45195, 3712, 46745, 90, 53, 74, 47, 541, 4470, 29391, 40053, 92, 198, 220, 220, 220, 3141, 28632, 12332, 3712, 52, 5317, 2624, 198, 220, 220, 220, 279, 21575, 36474, 364, 3712, 46745, 90, 53, 74, 21575, 28632, 92, 198, 220, 220, 220, 6737, 13900, 6570, 382, 12332, 3712, 52, 5317, 2624, 198, 220, 220, 220, 279, 11712, 282, 13900, 6570, 2850, 3712, 46745, 90, 53, 74, 13900, 6570, 382, 92, 198, 437, 198, 198, 8608, 18187, 569, 74, 30871, 3237, 13369, 12360, 198, 220, 220, 220, 264, 6030, 3712, 53, 74, 1273, 5620, 6030, 198, 220, 220, 220, 279, 10019, 3712, 46745, 90, 53, 1868, 92, 198, 220, 220, 220, 20157, 10699, 3712, 53, 74, 24728, 10699, 198, 220, 220, 220, 4088, 6030, 15732, 3712, 52, 5317, 2624, 198, 437, 198, 198, 8608, 18187, 569, 74, 44, 6320, 30871, 17257, 198, 220, 220, 220, 264, 6030, 3712, 53, 74, 1273, 5620, 6030, 198, 220, 220, 220, 279, 10019, 3712, 46745, 90, 53, 1868, 92, 198, 220, 220, 220, 4088, 3712, 53, 74, 24728, 30871, 198, 220, 220, 220, 11677, 3712, 53, 74, 24728, 10699, 198, 220, 220, 220, 2546, 3712, 53, 74, 24728, 10699, 198, 437, 198, 198, 8608, 18187, 569, 74, 30871, 42249, 198, 220, 220, 220, 2546, 3712, 53, 74, 24728, 10699, 198, 220, 220, 220, 19114, 3712, 53, 74, 24728, 10699, 198, 220, 220, 220, 4088, 6030, 33, 896, 3712, 52, 5317, 2624, 198, 437, 198, 198, 8608, 18187, 569, 74, 50, 29572, 5159, 26227, 2964, 18200, 198, 220, 220, 220, 4843, 45195, 3712, 53, 74, 5159, 1722, 806, 40053, 198, 220, 220, 220, 2939, 38, 2596, 33737, 3712, 53, 74, 11627, 298, 18, 35, 198, 220, 220, 220, 9701, 3712, 53, 74, 50, 29572, 5159, 26227, 40053, 198, 437, 198, 198, 8608, 18187, 569, 74, 50, 29572, 5159, 30871, 42249, 198, 220, 220, 220, 5794, 2964, 18200, 3712, 53, 74, 50, 29572, 5159, 26227, 2964, 18200, 198, 220, 220, 220, 2939, 44, 541, 51, 603, 5962, 43, 375, 3712, 52, 5317, 2624, 198, 220, 220, 220, 2939, 44, 541, 51, 603, 10699, 3712, 53, 74, 24728, 10699, 198, 220, 220, 220, 2939, 44, 541, 51, 603, 34519, 3712, 53, 74, 24728, 10699, 198, 220, 220, 220, 2939, 44, 541, 51, 603, 1273, 13154, 3712, 53, 74, 24728, 10699, 198, 437, 198, 198, 8608, 18187, 569, 74, 50, 29572, 30871, 36180, 198, 220, 220, 220, 8271, 34519, 3712, 53, 74, 24728, 10699, 198, 220, 220, 220, 2546, 3712, 53, 74, 24728, 10699, 198, 220, 220, 220, 4088, 3712, 53, 74, 24728, 30871, 198, 220, 220, 220, 4088, 34519, 3712, 53, 74, 24728, 10699, 198, 220, 220, 220, 9701, 3712, 53, 74, 50, 29572, 30871, 36180, 40053, 198, 437, 198, 198, 8608, 18187, 569, 74, 50, 29572, 28632, 30871, 36180, 12360, 198, 220, 220, 220, 11876, 3712, 53, 74, 28632, 198, 220, 220, 220, 11007, 12332, 3712, 52, 5317, 2624, 198, 220, 220, 220, 279, 36180, 82, 3712, 46745, 90, 53, 74, 50, 29572, 30871, 36180, 92, 198, 437, 198, 198, 8608, 18187, 569, 74, 50, 29572, 5159, 46, 8957, 4188, 30871, 36180, 12360, 198, 220, 220, 220, 2939, 3712, 53, 74, 5159, 198, 220, 220, 220, 11007, 12332, 3712, 52, 5317, 2624, 198, 220, 220, 220, 279, 36180, 82, 3712, 46745, 90, 53, 74, 50, 29572, 30871, 36180, 92, 198, 437, 198, 198, 8608, 18187, 569, 74, 5159, 7004, 31092, 198, 220, 220, 220, 4843, 45195, 3712, 53, 74, 5159, 1722, 806, 40053, 198, 220, 220, 220, 285, 541, 4971, 3712, 52, 5317, 2624, 198, 220, 220, 220, 7177, 49925, 3712, 52, 5317, 2624, 198, 437, 198, 198, 8608, 18187, 569, 74, 34519, 18, 35, 198, 220, 220, 220, 2124, 3712, 5317, 2624, 198, 220, 220, 220, 331, 3712, 5317, 2624, 198, 220, 220, 220, 1976, 3712, 5317, 2624, 198, 437, 198, 198, 8608, 18187, 569, 74, 50, 29572, 5159, 30871, 36180, 198, 220, 220, 220, 850, 31092, 3712, 53, 74, 5159, 7004, 31092, 198, 220, 220, 220, 11677, 3712, 53, 74, 34519, 18, 35, 198, 220, 220, 220, 6287, 3712, 53, 74, 11627, 298, 18, 35, 198, 220, 220, 220, 4088, 3712, 53, 74, 24728, 30871, 198, 220, 220, 220, 4088, 34519, 3712, 53, 74, 24728, 10699, 198, 220, 220, 220, 9701, 3712, 53, 74, 50, 29572, 30871, 36180, 40053, 198, 437, 198, 198, 8608, 18187, 569, 74, 50, 29572, 5159, 30871, 36180, 12360, 198, 220, 220, 220, 2939, 3712, 53, 74, 5159, 198, 220, 220, 220, 11007, 12332, 3712, 52, 5317, 2624, 198, 220, 220, 220, 279, 36180, 82, 3712, 46745, 90, 53, 74, 50, 29572, 5159, 30871, 36180, 92, 198, 437, 198, 198, 8608, 18187, 569, 74, 36180, 50, 29572, 12360, 198, 220, 220, 220, 264, 6030, 3712, 53, 74, 1273, 5620, 6030, 198, 220, 220, 220, 279, 10019, 3712, 46745, 90, 53, 1868, 92, 198, 220, 220, 220, 4043, 13900, 6570, 382, 12332, 3712, 52, 5317, 2624, 198, 220, 220, 220, 279, 21321, 13900, 6570, 2850, 3712, 46745, 90, 53, 74, 13900, 6570, 382, 92, 198, 220, 220, 220, 11876, 36180, 12332, 3712, 52, 5317, 2624, 198, 220, 220, 220, 279, 28632, 36180, 82, 3712, 46745, 90, 53, 74, 50, 29572, 28632, 30871, 36180, 12360, 92, 198, 220, 220, 220, 2939, 46, 8957, 4188, 36180, 12332, 3712, 52, 5317, 2624, 198, 220, 220, 220, 279, 5159, 46, 8957, 4188, 36180, 82, 3712, 46745, 90, 53, 74, 50, 29572, 5159, 46, 8957, 4188, 30871, 36180, 12360, 92, 198, 220, 220, 220, 2939, 36180, 12332, 3712, 52, 5317, 2624, 198, 220, 220, 220, 279, 5159, 36180, 82, 3712, 46745, 90, 53, 74, 50, 29572, 5159, 30871, 36180, 12360, 92, 198, 220, 220, 220, 6737, 13900, 6570, 382, 12332, 3712, 52, 5317, 2624, 198, 220, 220, 220, 279, 11712, 282, 13900, 6570, 2850, 3712, 46745, 90, 53, 74, 13900, 6570, 382, 92, 198, 437, 198, 198, 8608, 18187, 569, 74, 37, 594, 16447, 12360, 198, 220, 220, 220, 264, 6030, 3712, 53, 74, 1273, 5620, 6030, 198, 220, 220, 220, 279, 10019, 3712, 46745, 90, 53, 1868, 92, 198, 220, 220, 220, 9701, 3712, 53, 74, 37, 594, 16447, 40053, 198, 437, 198, 198, 8608, 18187, 569, 74, 13900, 6570, 382, 16447, 12360, 198, 220, 220, 220, 264, 6030, 3712, 53, 74, 1273, 5620, 6030, 198, 220, 220, 220, 279, 10019, 3712, 46745, 90, 53, 1868, 92, 198, 220, 220, 220, 9701, 3712, 53, 74, 13900, 6570, 382, 16447, 40053, 198, 437, 198, 198, 8608, 18187, 569, 74, 9237, 16447, 12360, 198, 220, 220, 220, 264, 6030, 3712, 53, 74, 1273, 5620, 6030, 198, 220, 220, 220, 279, 10019, 3712, 46745, 90, 53, 1868, 92, 198, 220, 220, 220, 9701, 3712, 53, 74, 9237, 16447, 40053, 198, 437, 198, 198, 8608, 18187, 569, 74, 20746, 27201, 16447, 12360, 198, 220, 220, 220, 264, 6030, 3712, 53, 74, 1273, 5620, 6030, 198, 220, 220, 220, 279, 10019, 3712, 46745, 90, 53, 1868, 92, 198, 220, 220, 220, 9701, 3712, 53, 74, 20746, 27201, 16447, 40053, 198, 220, 220, 220, 12405, 6030, 3712, 53, 74, 20746, 6030, 198, 220, 220, 220, 12405, 12332, 3712, 52, 5317, 2624, 198, 220, 220, 220, 11523, 48346, 3712, 53, 74, 20746, 47, 541, 4470, 17126, 2569, 40053, 198, 437, 198, 198, 8608, 18187, 569, 74, 28632, 16447, 12360, 198, 220, 220, 220, 264, 6030, 3712, 53, 74, 1273, 5620, 6030, 198, 220, 220, 220, 279, 10019, 3712, 46745, 90, 53, 1868, 92, 198, 220, 220, 220, 9701, 3712, 53, 74, 28632, 16447, 40053, 198, 220, 220, 220, 2546, 3712, 53, 74, 24728, 10699, 198, 220, 220, 220, 8748, 3712, 53, 74, 28632, 28350, 40053, 198, 220, 220, 220, 7373, 19076, 3712, 53, 74, 2484, 1723, 19076, 198, 220, 220, 220, 16834, 24094, 15732, 12332, 3712, 52, 5317, 2624, 198, 220, 220, 220, 279, 34991, 24094, 5497, 1063, 3712, 46745, 90, 52, 5317, 2624, 92, 198, 437, 198, 198, 8608, 18187, 569, 74, 28632, 7680, 16447, 12360, 198, 220, 220, 220, 264, 6030, 3712, 53, 74, 1273, 5620, 6030, 198, 220, 220, 220, 279, 10019, 3712, 46745, 90, 53, 1868, 92, 198, 220, 220, 220, 9701, 3712, 53, 74, 28632, 7680, 16447, 40053, 198, 220, 220, 220, 11876, 3712, 53, 74, 28632, 198, 220, 220, 220, 5794, 3712, 53, 74, 26227, 198, 220, 220, 220, 11677, 3712, 53, 74, 24728, 10699, 198, 220, 220, 220, 2837, 3712, 53, 74, 24728, 10699, 198, 437, 198, 198, 8608, 18187, 569, 74, 5159, 16447, 12360, 198, 220, 220, 220, 264, 6030, 3712, 53, 74, 1273, 5620, 6030, 198, 220, 220, 220, 279, 10019, 3712, 46745, 90, 53, 1868, 92, 198, 220, 220, 220, 9701, 3712, 53, 74, 5159, 16447, 40053, 198, 220, 220, 220, 2939, 6030, 3712, 53, 74, 5159, 6030, 198, 220, 220, 220, 5794, 3712, 53, 74, 26227, 198, 220, 220, 220, 6287, 3712, 53, 74, 11627, 298, 18, 35, 198, 220, 220, 220, 285, 541, 4971, 82, 3712, 52, 5317, 2624, 198, 220, 220, 220, 7177, 43, 6962, 3712, 52, 5317, 2624, 198, 220, 220, 220, 8405, 3712, 53, 74, 36674, 12332, 34227, 33, 896, 198, 220, 220, 220, 256, 4386, 3712, 53, 74, 5159, 51, 4386, 198, 220, 220, 220, 8748, 3712, 53, 74, 5159, 28350, 40053, 198, 220, 220, 220, 7373, 19076, 3712, 53, 74, 2484, 1723, 19076, 198, 220, 220, 220, 16834, 24094, 15732, 12332, 3712, 52, 5317, 2624, 198, 220, 220, 220, 279, 34991, 24094, 5497, 1063, 3712, 46745, 90, 52, 5317, 2624, 92, 198, 220, 220, 220, 4238, 32517, 3712, 53, 74, 5159, 32517, 198, 437, 198, 198, 8608, 18187, 569, 74, 7004, 31092, 32517, 198, 220, 220, 220, 11677, 3712, 53, 74, 24728, 10699, 198, 220, 220, 220, 2546, 3712, 53, 74, 24728, 10699, 198, 220, 220, 220, 5752, 47, 2007, 3712, 53, 74, 24728, 10699, 198, 220, 220, 220, 7177, 47, 2007, 3712, 53, 74, 24728, 10699, 198, 220, 220, 220, 6795, 47, 2007, 3712, 53, 74, 24728, 10699, 198, 437, 198, 198, 8608, 18187, 569, 74, 21950, 44, 5912, 198, 220, 220, 220, 374, 3712, 53, 74, 21950, 10462, 44461, 198, 220, 220, 220, 308, 3712, 53, 74, 21950, 10462, 44461, 198, 220, 220, 220, 275, 3712, 53, 74, 21950, 10462, 44461, 198, 220, 220, 220, 257, 3712, 53, 74, 21950, 10462, 44461, 198, 437, 198, 198, 8608, 18187, 569, 74, 5159, 7004, 31092, 17257, 198, 220, 220, 220, 4843, 45195, 3712, 53, 74, 5159, 1722, 806, 40053, 198, 220, 220, 220, 2779, 44, 541, 4971, 3712, 52, 5317, 2624, 198, 220, 220, 220, 1241, 12332, 3712, 52, 5317, 2624, 198, 220, 220, 220, 2779, 19182, 49925, 3712, 52, 5317, 2624, 198, 220, 220, 220, 7679, 12332, 3712, 52, 5317, 2624, 198, 437, 198, 198, 8608, 18187, 569, 74, 5159, 7680, 16447, 12360, 198, 220, 220, 220, 264, 6030, 3712, 53, 74, 1273, 5620, 6030, 198, 220, 220, 220, 279, 10019, 3712, 46745, 90, 53, 1868, 92, 198, 220, 220, 220, 9701, 3712, 53, 74, 5159, 7680, 16447, 40053, 198, 220, 220, 220, 2939, 3712, 53, 74, 5159, 198, 220, 220, 220, 1570, 6030, 3712, 53, 74, 5159, 7680, 6030, 198, 220, 220, 220, 5794, 3712, 53, 74, 26227, 198, 220, 220, 220, 6805, 3712, 53, 74, 21950, 44, 5912, 198, 220, 220, 220, 850, 31092, 17257, 3712, 53, 74, 5159, 7004, 31092, 17257, 198, 437, 198, 198, 8608, 18187, 569, 74, 2484, 5067, 26796, 16447, 12360, 198, 220, 220, 220, 264, 6030, 3712, 53, 74, 1273, 5620, 6030, 198, 220, 220, 220, 279, 10019, 3712, 46745, 90, 53, 1868, 92, 198, 220, 220, 220, 9701, 3712, 53, 74, 2484, 5067, 26796, 16447, 40053, 198, 220, 220, 220, 2438, 10699, 3712, 34, 7857, 62, 83, 198, 220, 220, 220, 279, 10669, 3712, 46745, 90, 52, 5317, 2624, 92, 198, 437, 198, 198, 8608, 18187, 569, 74, 47, 541, 4470, 30562, 16447, 12360, 198, 220, 220, 220, 264, 6030, 3712, 53, 74, 1273, 5620, 6030, 198, 220, 220, 220, 279, 10019, 3712, 46745, 90, 53, 1868, 92, 198, 220, 220, 220, 9701, 3712, 53, 74, 47, 541, 4470, 30562, 16447, 40053, 198, 220, 220, 220, 4238, 6601, 10699, 3712, 34, 7857, 62, 83, 198, 220, 220, 220, 279, 24243, 6601, 3712, 46745, 90, 53, 1868, 92, 198, 437, 198, 198, 8608, 18187, 569, 74, 13409, 1634, 13912, 30150, 198, 220, 220, 220, 6937, 2389, 3712, 52, 5317, 2624, 198, 220, 220, 220, 11677, 3712, 52, 5317, 2624, 198, 220, 220, 220, 2546, 3712, 34, 7857, 62, 83, 198, 437, 198, 198, 8608, 18187, 569, 74, 13409, 1634, 12360, 198, 220, 220, 220, 3975, 30150, 12332, 3712, 52, 5317, 2624, 198, 220, 220, 220, 279, 13912, 14539, 1678, 3712, 46745, 90, 53, 74, 13409, 1634, 13912, 30150, 92, 198, 220, 220, 220, 1366, 10699, 3712, 34, 7857, 62, 83, 198, 220, 220, 220, 279, 6601, 3712, 46745, 90, 53, 1868, 92, 198, 437, 198, 198, 8608, 18187, 569, 74, 47, 541, 4470, 2484, 5067, 29391, 16447, 12360, 198, 220, 220, 220, 264, 6030, 3712, 53, 74, 1273, 5620, 6030, 198, 220, 220, 220, 279, 10019, 3712, 46745, 90, 53, 1868, 92, 198, 220, 220, 220, 9701, 3712, 53, 74, 47, 541, 4470, 2484, 5067, 29391, 16447, 40053, 198, 220, 220, 220, 3800, 3712, 53, 74, 2484, 5067, 29391, 34227, 33, 896, 198, 220, 220, 220, 4808, 21412, 3712, 53, 74, 2484, 5067, 26796, 198, 220, 220, 220, 279, 5376, 3712, 34, 8841, 198, 220, 220, 220, 279, 13409, 1634, 12360, 3712, 46745, 90, 53, 74, 13409, 1634, 12360, 92, 198, 437, 198, 198, 8608, 18187, 569, 74, 13414, 16886, 20560, 33, 6020, 11828, 198, 220, 220, 220, 12765, 3712, 52, 5317, 2624, 198, 220, 220, 220, 33769, 3712, 52, 5317, 2624, 198, 220, 220, 220, 5128, 32184, 3712, 53, 74, 13414, 16886, 20560, 32184, 198, 437, 198, 198, 8608, 18187, 569, 74, 13414, 16886, 20560, 33682, 11828, 198, 220, 220, 220, 4067, 3712, 52, 5317, 2624, 198, 220, 220, 220, 12765, 3712, 52, 5317, 2624, 198, 220, 220, 220, 5794, 3712, 53, 74, 26227, 198, 220, 220, 220, 11677, 3712, 52, 5317, 2624, 198, 437, 198, 198, 8608, 18187, 569, 74, 47, 541, 4470, 13414, 16886, 20560, 9012, 16447, 12360, 198, 220, 220, 220, 264, 6030, 3712, 53, 74, 1273, 5620, 6030, 198, 220, 220, 220, 279, 10019, 3712, 46745, 90, 53, 1868, 92, 198, 220, 220, 220, 9701, 3712, 53, 74, 47, 541, 4470, 13414, 16886, 20560, 9012, 16447, 40053, 198, 220, 220, 220, 37423, 33, 6020, 11828, 12332, 3712, 52, 5317, 2624, 198, 220, 220, 220, 279, 13414, 16886, 33, 6020, 24564, 1968, 507, 3712, 46745, 90, 53, 74, 13414, 16886, 20560, 33, 6020, 11828, 92, 198, 220, 220, 220, 37423, 33682, 11828, 12332, 3712, 52, 5317, 2624, 198, 220, 220, 220, 279, 13414, 16886, 33682, 24564, 1968, 507, 3712, 46745, 90, 53, 74, 13414, 16886, 20560, 33682, 11828, 92, 198, 437, 198, 198, 8608, 18187, 569, 74, 47, 541, 4470, 20560, 49670, 9012, 16447, 12360, 198, 220, 220, 220, 264, 6030, 3712, 53, 74, 1273, 5620, 6030, 198, 220, 220, 220, 279, 10019, 3712, 46745, 90, 53, 1868, 92, 198, 220, 220, 220, 9701, 3712, 53, 74, 47, 541, 4470, 20560, 49670, 9012, 16447, 40053, 198, 220, 220, 220, 1353, 1435, 3712, 53, 74, 23828, 1800, 9126, 1435, 198, 220, 220, 220, 20049, 19452, 433, 36695, 3712, 53, 38841, 970, 2624, 198, 437, 198, 198, 8608, 18187, 569, 74, 47, 541, 4470, 36504, 7255, 341, 9012, 16447, 12360, 198, 220, 220, 220, 264, 6030, 3712, 53, 74, 1273, 5620, 6030, 198, 220, 220, 220, 279, 10019, 3712, 46745, 90, 53, 1868, 92, 198, 220, 220, 220, 9701, 3712, 53, 74, 47, 541, 4470, 36504, 7255, 341, 9012, 16447, 40053, 198, 220, 220, 220, 8529, 15988, 40710, 3712, 52, 5317, 2624, 198, 437, 198, 198, 8608, 18187, 569, 74, 7680, 634, 198, 220, 220, 220, 2124, 3712, 34, 22468, 198, 220, 220, 220, 331, 3712, 34, 22468, 198, 220, 220, 220, 9647, 3712, 34, 22468, 198, 220, 220, 220, 6001, 3712, 34, 22468, 198, 220, 220, 220, 949, 48791, 3712, 34, 22468, 198, 220, 220, 220, 3509, 48791, 3712, 34, 22468, 198, 437, 198, 198, 8608, 18187, 569, 74, 34519, 17, 35, 198, 220, 220, 220, 2124, 3712, 5317, 2624, 198, 220, 220, 220, 331, 3712, 5317, 2624, 198, 437, 198, 198, 8608, 18187, 569, 74, 11627, 298, 17, 35, 198, 220, 220, 220, 9647, 3712, 52, 5317, 2624, 198, 220, 220, 220, 6001, 3712, 52, 5317, 2624, 198, 437, 198, 198, 8608, 18187, 569, 74, 45474, 17, 35, 198, 220, 220, 220, 11677, 3712, 53, 74, 34519, 17, 35, 198, 220, 220, 220, 6287, 3712, 53, 74, 11627, 298, 17, 35, 198, 437, 198, 198, 8608, 18187, 569, 74, 47, 541, 4470, 7680, 634, 9012, 16447, 12360, 198, 220, 220, 220, 264, 6030, 3712, 53, 74, 1273, 5620, 6030, 198, 220, 220, 220, 279, 10019, 3712, 46745, 90, 53, 1868, 92, 198, 220, 220, 220, 9701, 3712, 53, 74, 47, 541, 4470, 7680, 634, 9012, 16447, 40053, 198, 220, 220, 220, 1570, 634, 12332, 3712, 52, 5317, 2624, 198, 220, 220, 220, 279, 7680, 3742, 3712, 46745, 90, 53, 74, 7680, 634, 92, 198, 220, 220, 220, 629, 747, 273, 12332, 3712, 52, 5317, 2624, 198, 220, 220, 220, 279, 3351, 32555, 3712, 46745, 90, 53, 74, 45474, 17, 35, 92, 198, 437, 198, 198, 8608, 18187, 569, 74, 47, 541, 4470, 49, 1603, 1634, 9012, 16447, 12360, 198, 220, 220, 220, 264, 6030, 3712, 53, 74, 1273, 5620, 6030, 198, 220, 220, 220, 279, 10019, 3712, 46745, 90, 53, 1868, 92, 198, 220, 220, 220, 9701, 3712, 53, 74, 47, 541, 4470, 49, 1603, 1634, 9012, 16447, 40053, 198, 220, 220, 220, 6795, 2601, 696, 36695, 3712, 53, 38841, 970, 2624, 198, 220, 220, 220, 374, 1603, 7509, 15642, 446, 36695, 3712, 53, 38841, 970, 2624, 198, 220, 220, 220, 7514, 14520, 19076, 3712, 53, 74, 34220, 14520, 19076, 198, 220, 220, 220, 37429, 19076, 3712, 53, 74, 34, 724, 19076, 40053, 198, 220, 220, 220, 2166, 32388, 3712, 53, 74, 25886, 32388, 198, 220, 220, 220, 6795, 33, 4448, 36695, 3712, 53, 38841, 970, 2624, 198, 220, 220, 220, 6795, 33, 4448, 3103, 18797, 41384, 3712, 34, 22468, 198, 220, 220, 220, 6795, 33, 4448, 2601, 696, 3712, 34, 22468, 198, 220, 220, 220, 6795, 33, 4448, 11122, 3008, 41384, 3712, 34, 22468, 198, 220, 220, 220, 1627, 30916, 3712, 34, 22468, 198, 437, 198, 198, 8608, 18187, 569, 74, 47, 541, 4470, 15205, 271, 1403, 9012, 16447, 12360, 198, 220, 220, 220, 264, 6030, 3712, 53, 74, 1273, 5620, 6030, 198, 220, 220, 220, 279, 10019, 3712, 46745, 90, 53, 1868, 92, 198, 220, 220, 220, 9701, 3712, 53, 74, 47, 541, 4470, 15205, 271, 1403, 9012, 16447, 40053, 198, 220, 220, 220, 374, 1603, 1634, 50, 12629, 3712, 53, 74, 36674, 12332, 34227, 33, 896, 198, 220, 220, 220, 6291, 2484, 4980, 36695, 3712, 53, 38841, 970, 2624, 198, 220, 220, 220, 949, 36674, 2484, 4980, 3712, 34, 22468, 198, 220, 220, 220, 279, 36674, 45195, 3712, 46745, 90, 53, 74, 36674, 45195, 92, 198, 220, 220, 220, 17130, 2514, 7222, 1857, 36695, 3712, 53, 38841, 970, 2624, 198, 220, 220, 220, 17130, 2514, 3198, 36695, 3712, 53, 38841, 970, 2624, 198, 437, 198, 198, 8608, 18187, 569, 74, 1273, 268, 2856, 18257, 9012, 198, 220, 220, 220, 2038, 18257, 3712, 53, 74, 1273, 268, 2856, 18257, 198, 220, 220, 220, 1208, 18257, 3712, 53, 74, 1273, 268, 2856, 18257, 198, 220, 220, 220, 6795, 39044, 18257, 3712, 53, 74, 1273, 268, 2856, 18257, 198, 220, 220, 220, 8996, 18257, 3712, 53, 74, 41488, 18257, 198, 220, 220, 220, 8996, 45195, 3712, 52, 5317, 2624, 198, 220, 220, 220, 3551, 45195, 3712, 52, 5317, 2624, 198, 220, 220, 220, 4941, 3712, 52, 5317, 2624, 198, 437, 198, 198, 8608, 18187, 569, 74, 47, 541, 4470, 48791, 1273, 268, 2856, 9012, 16447, 12360, 198, 220, 220, 220, 264, 6030, 3712, 53, 74, 1273, 5620, 6030, 198, 220, 220, 220, 279, 10019, 3712, 46745, 90, 53, 1868, 92, 198, 220, 220, 220, 9701, 3712, 53, 74, 47, 541, 4470, 48791, 1273, 268, 2856, 9012, 16447, 40053, 198, 220, 220, 220, 6795, 14402, 36695, 3712, 53, 38841, 970, 2624, 198, 220, 220, 220, 6795, 16594, 36695, 3712, 53, 38841, 970, 2624, 198, 220, 220, 220, 6795, 41488, 18257, 3712, 53, 74, 41488, 18257, 198, 220, 220, 220, 6795, 33, 3733, 14402, 36695, 3712, 53, 38841, 970, 2624, 198, 220, 220, 220, 45219, 2856, 14402, 36695, 3712, 53, 38841, 970, 2624, 198, 220, 220, 220, 2166, 3712, 53, 74, 1273, 268, 2856, 18257, 9012, 198, 220, 220, 220, 736, 3712, 53, 74, 1273, 268, 2856, 18257, 9012, 198, 220, 220, 220, 949, 48791, 33, 3733, 3712, 34, 22468, 198, 220, 220, 220, 3509, 48791, 33, 3733, 3712, 34, 22468, 198, 437, 198, 198, 8608, 18187, 569, 74, 47, 541, 4470, 10258, 3629, 437, 8086, 15520, 9012, 198, 220, 220, 220, 13516, 36695, 3712, 53, 38841, 970, 2624, 198, 220, 220, 220, 12351, 10258, 3629, 437, 41384, 3712, 53, 74, 3629, 437, 41384, 198, 220, 220, 220, 29636, 10258, 3629, 437, 41384, 3712, 53, 74, 3629, 437, 41384, 198, 220, 220, 220, 3124, 3629, 437, 18257, 3712, 53, 74, 3629, 437, 18257, 198, 220, 220, 220, 12351, 38077, 3629, 437, 41384, 3712, 53, 74, 3629, 437, 41384, 198, 220, 220, 220, 29636, 38077, 3629, 437, 41384, 3712, 53, 74, 3629, 437, 41384, 198, 220, 220, 220, 17130, 3629, 437, 18257, 3712, 53, 74, 3629, 437, 18257, 198, 220, 220, 220, 3124, 16594, 45195, 3712, 53, 74, 10258, 21950, 40053, 198, 437, 198, 198, 8608, 18187, 569, 74, 47, 541, 4470, 10258, 3629, 437, 9012, 16447, 12360, 198, 220, 220, 220, 264, 6030, 3712, 53, 74, 1273, 5620, 6030, 198, 220, 220, 220, 279, 10019, 3712, 46745, 90, 53, 1868, 92, 198, 220, 220, 220, 9701, 3712, 53, 74, 47, 541, 4470, 10258, 3629, 437, 9012, 16447, 40053, 198, 220, 220, 220, 9156, 18257, 36695, 3712, 53, 38841, 970, 2624, 198, 220, 220, 220, 9156, 18257, 3712, 53, 74, 11187, 291, 18257, 198, 220, 220, 220, 18231, 12332, 3712, 52, 5317, 2624, 198, 220, 220, 220, 279, 33296, 902, 3712, 46745, 90, 53, 74, 47, 541, 4470, 10258, 3629, 437, 8086, 15520, 9012, 92, 198, 220, 220, 220, 13516, 34184, 1187, 3712, 11251, 29291, 90, 19, 11, 34, 22468, 92, 198, 437, 198, 198, 8608, 18187, 569, 74, 47, 541, 4470, 44090, 9012, 16447, 12360, 198, 220, 220, 220, 264, 6030, 3712, 53, 74, 1273, 5620, 6030, 198, 220, 220, 220, 279, 10019, 3712, 46745, 90, 53, 1868, 92, 198, 220, 220, 220, 9701, 3712, 53, 74, 47, 541, 4470, 44090, 9012, 16447, 40053, 198, 220, 220, 220, 8925, 9012, 12332, 3712, 52, 5317, 2624, 198, 220, 220, 220, 279, 44090, 42237, 3712, 46745, 90, 53, 74, 44090, 9012, 92, 198, 437, 198, 198, 8608, 18187, 569, 74, 18172, 47, 541, 4470, 16447, 12360, 198, 220, 220, 220, 264, 6030, 3712, 53, 74, 1273, 5620, 6030, 198, 220, 220, 220, 279, 10019, 3712, 46745, 90, 53, 1868, 92, 198, 220, 220, 220, 9701, 3712, 53, 74, 47, 541, 4470, 16447, 40053, 198, 220, 220, 220, 3800, 12332, 3712, 52, 5317, 2624, 198, 220, 220, 220, 279, 1273, 1095, 3712, 46745, 90, 53, 74, 47, 541, 4470, 2484, 5067, 29391, 16447, 12360, 92, 198, 220, 220, 220, 279, 13414, 16886, 20560, 9012, 3712, 46745, 90, 53, 74, 47, 541, 4470, 13414, 16886, 20560, 9012, 16447, 12360, 92, 198, 220, 220, 220, 279, 20560, 49670, 9012, 3712, 46745, 90, 53, 74, 47, 541, 4470, 20560, 49670, 9012, 16447, 12360, 92, 198, 220, 220, 220, 279, 36504, 7255, 341, 9012, 3712, 46745, 90, 53, 74, 47, 541, 4470, 36504, 7255, 341, 9012, 16447, 12360, 92, 198, 220, 220, 220, 279, 7680, 634, 9012, 3712, 46745, 90, 53, 74, 47, 541, 4470, 7680, 634, 9012, 16447, 12360, 92, 198, 220, 220, 220, 279, 49, 1603, 1634, 9012, 3712, 46745, 90, 53, 74, 47, 541, 4470, 49, 1603, 1634, 9012, 16447, 12360, 92, 198, 220, 220, 220, 279, 15205, 271, 1403, 9012, 3712, 46745, 90, 53, 74, 47, 541, 4470, 15205, 271, 1403, 9012, 16447, 12360, 92, 198, 220, 220, 220, 279, 48791, 1273, 268, 2856, 9012, 3712, 46745, 90, 53, 74, 47, 541, 4470, 48791, 1273, 268, 2856, 9012, 16447, 12360, 92, 198, 220, 220, 220, 279, 10258, 3629, 437, 9012, 3712, 46745, 90, 53, 74, 47, 541, 4470, 10258, 3629, 437, 9012, 16447, 12360, 92, 198, 220, 220, 220, 279, 44090, 9012, 3712, 46745, 90, 53, 74, 47, 541, 4470, 44090, 9012, 16447, 12360, 92, 198, 220, 220, 220, 12461, 3712, 53, 74, 47, 541, 4470, 32517, 198, 220, 220, 220, 8543, 14478, 3712, 53, 74, 45819, 14478, 198, 220, 220, 220, 850, 6603, 3712, 52, 5317, 2624, 198, 220, 220, 220, 2779, 47, 541, 4470, 37508, 3712, 53, 74, 47, 541, 4470, 198, 220, 220, 220, 2779, 47, 541, 4470, 15732, 3712, 5317, 2624, 198, 437, 198, 198, 8608, 18187, 569, 74, 7293, 1133, 47, 541, 4470, 16447, 12360, 198, 220, 220, 220, 264, 6030, 3712, 53, 74, 1273, 5620, 6030, 198, 220, 220, 220, 279, 10019, 3712, 46745, 90, 53, 1868, 92, 198, 220, 220, 220, 9701, 3712, 53, 74, 47, 541, 4470, 16447, 40053, 198, 220, 220, 220, 3800, 3712, 53, 74, 47, 541, 4470, 2484, 5067, 29391, 16447, 12360, 198, 220, 220, 220, 12461, 3712, 53, 74, 47, 541, 4470, 32517, 198, 220, 220, 220, 2779, 47, 541, 4470, 37508, 3712, 53, 74, 47, 541, 4470, 198, 220, 220, 220, 2779, 47, 541, 4470, 15732, 3712, 5317, 2624, 198, 437, 198, 198, 8608, 18187, 569, 74, 49222, 3103, 18797, 17257, 198, 220, 220, 220, 3800, 40053, 3712, 53, 74, 2484, 5067, 29391, 40053, 198, 220, 220, 220, 11677, 3712, 52, 5317, 2624, 198, 220, 220, 220, 2546, 3712, 52, 5317, 2624, 198, 437, 198, 198, 8608, 18187, 569, 74, 47, 541, 4470, 32517, 16447, 12360, 198, 220, 220, 220, 264, 6030, 3712, 53, 74, 1273, 5620, 6030, 198, 220, 220, 220, 279, 10019, 3712, 46745, 90, 53, 1868, 92, 198, 220, 220, 220, 9701, 3712, 53, 74, 47, 541, 4470, 32517, 16447, 40053, 198, 220, 220, 220, 900, 32517, 12332, 3712, 52, 5317, 2624, 198, 220, 220, 220, 279, 7248, 23763, 5269, 3712, 46745, 90, 53, 74, 24564, 1968, 273, 7248, 32517, 92, 198, 220, 220, 220, 4574, 3103, 18797, 17257, 12332, 3712, 52, 5317, 2624, 198, 220, 220, 220, 279, 49222, 3103, 18797, 49, 6231, 3712, 46745, 90, 53, 74, 49222, 3103, 18797, 17257, 92, 198, 437, 198, 198, 8608, 18187, 569, 74, 16305, 20053, 16447, 12360, 198, 220, 220, 220, 264, 6030, 3712, 53, 74, 1273, 5620, 6030, 198, 220, 220, 220, 279, 10019, 3712, 46745, 90, 53, 1868, 92, 198, 220, 220, 220, 9701, 3712, 53, 74, 16305, 20053, 16447, 40053, 198, 220, 220, 220, 2153, 22417, 3712, 53, 74, 22417, 198, 220, 220, 220, 949, 22417, 3712, 53, 74, 22417, 198, 220, 220, 220, 285, 541, 8899, 19076, 3712, 53, 74, 16305, 20053, 44, 541, 8899, 19076, 198, 220, 220, 220, 2209, 19076, 52, 3712, 53, 74, 16305, 20053, 20231, 19076, 198, 220, 220, 220, 2209, 19076, 53, 3712, 53, 74, 16305, 20053, 20231, 19076, 198, 220, 220, 220, 2209, 19076, 54, 3712, 53, 74, 16305, 20053, 20231, 19076, 198, 220, 220, 220, 285, 541, 43, 375, 33, 4448, 3712, 34, 22468, 198, 220, 220, 220, 281, 271, 313, 28338, 36695, 3712, 53, 38841, 970, 2624, 198, 220, 220, 220, 3509, 2025, 271, 313, 28338, 3712, 34, 22468, 198, 220, 220, 220, 8996, 36695, 3712, 53, 38841, 970, 2624, 198, 220, 220, 220, 8996, 18257, 3712, 53, 74, 41488, 18257, 198, 220, 220, 220, 949, 43, 375, 3712, 34, 22468, 198, 220, 220, 220, 3509, 43, 375, 3712, 34, 22468, 198, 220, 220, 220, 4865, 10258, 3712, 53, 74, 34189, 10258, 198, 220, 220, 220, 555, 11265, 1143, 7222, 585, 17540, 3712, 53, 38841, 970, 2624, 198, 437, 198, 198, 8608, 18187, 569, 74, 24564, 1968, 273, 7248, 32517, 33, 6020, 198, 220, 220, 220, 12765, 3712, 52, 5317, 2624, 198, 220, 220, 220, 43087, 6030, 3712, 53, 74, 24564, 1968, 273, 6030, 198, 220, 220, 220, 43087, 12332, 3712, 52, 5317, 2624, 198, 220, 220, 220, 3800, 40053, 3712, 53, 74, 2484, 5067, 29391, 40053, 198, 220, 220, 220, 279, 24675, 18187, 16305, 489, 364, 3712, 46745, 90, 53, 74, 16305, 20053, 92, 198, 437, 198, 198, 8608, 18187, 569, 74, 24564, 1968, 273, 7248, 32517, 16447, 12360, 198, 220, 220, 220, 264, 6030, 3712, 53, 74, 1273, 5620, 6030, 198, 220, 220, 220, 279, 10019, 3712, 46745, 90, 53, 1868, 92, 198, 220, 220, 220, 9701, 3712, 53, 74, 24564, 1968, 273, 7248, 32517, 16447, 40053, 198, 220, 220, 220, 12765, 12332, 3712, 52, 5317, 2624, 198, 220, 220, 220, 279, 36180, 654, 3712, 46745, 90, 53, 74, 24564, 1968, 273, 7248, 32517, 33, 6020, 92, 198, 437, 198, 198, 8608, 18187, 569, 74, 24564, 1968, 273, 27201, 10699, 198, 220, 220, 220, 4808, 4906, 3712, 53, 74, 24564, 1968, 273, 6030, 198, 220, 220, 220, 43087, 12332, 3712, 52, 5317, 2624, 198, 437, 198, 198, 8608, 18187, 569, 74, 24564, 1968, 273, 27201, 16447, 12360, 198, 220, 220, 220, 264, 6030, 3712, 53, 74, 1273, 5620, 6030, 198, 220, 220, 220, 279, 10019, 3712, 46745, 90, 53, 1868, 92, 198, 220, 220, 220, 9701, 3712, 53, 74, 24564, 1968, 273, 27201, 16447, 40053, 198, 220, 220, 220, 3509, 50, 1039, 3712, 52, 5317, 2624, 198, 220, 220, 220, 5933, 10699, 12332, 3712, 52, 5317, 2624, 198, 220, 220, 220, 279, 27201, 50, 4340, 3712, 46745, 90, 53, 74, 24564, 1968, 273, 27201, 10699, 92, 198, 437, 198, 198, 8608, 18187, 569, 74, 24564, 1968, 273, 7248, 3237, 13369, 12360, 198, 220, 220, 220, 264, 6030, 3712, 53, 74, 1273, 5620, 6030, 198, 220, 220, 220, 279, 10019, 3712, 46745, 90, 53, 1868, 92, 198, 220, 220, 220, 43087, 27201, 3712, 53, 74, 24564, 1968, 273, 27201, 198, 220, 220, 220, 43087, 7248, 12332, 3712, 52, 5317, 2624, 198, 220, 220, 220, 279, 7248, 23763, 5269, 3712, 46745, 90, 53, 74, 24564, 1968, 273, 7248, 32517, 92, 198, 437, 198, 198, 8608, 18187, 569, 74, 24564, 1968, 273, 5159, 12360, 198, 220, 220, 220, 6072, 20053, 3712, 53, 74, 16305, 20053, 198, 220, 220, 220, 2939, 7680, 3712, 53, 74, 5159, 7680, 198, 220, 220, 220, 2939, 32517, 3712, 53, 74, 5159, 32517, 198, 437, 198, 198, 8608, 18187, 569, 74, 24564, 1968, 273, 28632, 12360, 198, 220, 220, 220, 11876, 3712, 53, 74, 28632, 198, 220, 220, 220, 11677, 3712, 53, 74, 24728, 10699, 198, 220, 220, 220, 2837, 3712, 53, 74, 24728, 10699, 198, 437, 198, 198, 8608, 18187, 569, 74, 16594, 24564, 1968, 273, 7248, 198, 220, 220, 220, 264, 6030, 3712, 53, 74, 1273, 5620, 6030, 198, 220, 220, 220, 279, 10019, 3712, 46745, 90, 53, 1868, 92, 198, 220, 220, 220, 29636, 7248, 3712, 53, 74, 24564, 1968, 273, 7248, 198, 220, 220, 220, 29636, 33, 6020, 3712, 52, 5317, 2624, 198, 220, 220, 220, 29636, 19182, 20180, 3712, 52, 5317, 2624, 198, 220, 220, 220, 43087, 12332, 3712, 52, 5317, 2624, 198, 220, 220, 220, 43087, 6030, 3712, 53, 74, 24564, 1968, 273, 6030, 198, 220, 220, 220, 279, 5159, 12360, 3712, 46745, 90, 53, 74, 24564, 1968, 273, 5159, 12360, 92, 198, 220, 220, 220, 279, 28632, 12360, 3712, 46745, 90, 53, 74, 24564, 1968, 273, 28632, 12360, 92, 198, 220, 220, 220, 279, 17005, 417, 28632, 7680, 3712, 46745, 90, 53, 74, 28632, 7680, 92, 198, 437, 198, 198, 8608, 18187, 569, 74, 29881, 24564, 1968, 273, 7248, 198, 220, 220, 220, 264, 6030, 3712, 53, 74, 1273, 5620, 6030, 198, 220, 220, 220, 279, 10019, 3712, 46745, 90, 53, 1868, 92, 198, 220, 220, 220, 12351, 7248, 3712, 53, 74, 24564, 1968, 273, 7248, 198, 220, 220, 220, 12351, 33, 6020, 3712, 52, 5317, 2624, 198, 220, 220, 220, 12351, 19182, 20180, 3712, 52, 5317, 2624, 198, 220, 220, 220, 29636, 7248, 3712, 53, 74, 24564, 1968, 273, 7248, 198, 220, 220, 220, 29636, 33, 6020, 3712, 52, 5317, 2624, 198, 220, 220, 220, 29636, 19182, 20180, 3712, 52, 5317, 2624, 198, 220, 220, 220, 43087, 12332, 3712, 52, 5317, 2624, 198, 437, 198, 198, 8608, 18187, 569, 74, 19778, 22252, 16447, 12360, 198, 220, 220, 220, 264, 6030, 3712, 53, 74, 1273, 5620, 6030, 198, 220, 220, 220, 279, 10019, 3712, 46745, 90, 53, 1868, 92, 198, 220, 220, 220, 9701, 3712, 53, 74, 19778, 22252, 16447, 40053, 198, 220, 220, 220, 8543, 14478, 3712, 53, 74, 45819, 14478, 198, 220, 220, 220, 18231, 12332, 3712, 52, 5317, 2624, 198, 220, 220, 220, 279, 33296, 902, 3712, 46745, 90, 53, 74, 5159, 7680, 92, 198, 220, 220, 220, 9647, 3712, 52, 5317, 2624, 198, 220, 220, 220, 6001, 3712, 52, 5317, 2624, 198, 220, 220, 220, 11685, 3712, 52, 5317, 2624, 198, 437, 198, 198, 8608, 18187, 569, 74, 8086, 15520, 11828, 198, 220, 220, 220, 9701, 3712, 53, 74, 8086, 15520, 11828, 40053, 198, 220, 220, 220, 5794, 3712, 53, 74, 26227, 198, 220, 220, 220, 8405, 3712, 53, 74, 36674, 12332, 34227, 33, 896, 198, 220, 220, 220, 3440, 18257, 3712, 53, 74, 8086, 15520, 8912, 18257, 198, 220, 220, 220, 3650, 18257, 3712, 53, 74, 8086, 15520, 22658, 18257, 198, 220, 220, 220, 45219, 2856, 8912, 18257, 3712, 53, 74, 8086, 15520, 8912, 18257, 198, 220, 220, 220, 45219, 2856, 22658, 18257, 3712, 53, 74, 8086, 15520, 22658, 18257, 198, 220, 220, 220, 4238, 32517, 3712, 53, 74, 5159, 32517, 198, 220, 220, 220, 2457, 32517, 3712, 53, 74, 5159, 32517, 198, 437, 198, 198, 8608, 18187, 569, 74, 8086, 15520, 26687, 198, 220, 220, 220, 18231, 3712, 52, 5317, 2624, 198, 220, 220, 220, 12461, 3712, 53, 74, 5159, 32517, 198, 437, 198, 198, 8608, 18187, 569, 74, 7004, 6603, 11828, 198, 220, 220, 220, 9701, 3712, 53, 74, 7004, 6603, 11828, 40053, 198, 220, 220, 220, 11523, 36180, 12727, 3712, 53, 74, 47, 541, 4470, 36180, 12727, 198, 220, 220, 220, 5128, 8086, 15520, 12332, 3712, 52, 5317, 2624, 198, 220, 220, 220, 279, 20560, 33296, 902, 3712, 46745, 90, 53, 74, 8086, 15520, 26687, 92, 198, 220, 220, 220, 3124, 8086, 15520, 12332, 3712, 52, 5317, 2624, 198, 220, 220, 220, 279, 10258, 33296, 902, 3712, 46745, 90, 53, 74, 8086, 15520, 26687, 92, 198, 220, 220, 220, 279, 4965, 6442, 33296, 902, 3712, 46745, 90, 53, 74, 8086, 15520, 26687, 92, 198, 220, 220, 220, 279, 48791, 1273, 268, 2856, 8086, 15520, 3712, 46745, 90, 53, 74, 8086, 15520, 26687, 92, 198, 220, 220, 220, 12201, 8086, 15520, 12332, 3712, 52, 5317, 2624, 198, 220, 220, 220, 279, 25460, 3760, 33296, 902, 3712, 46745, 90, 52, 5317, 2624, 92, 198, 437, 198, 198, 8608, 18187, 569, 74, 7004, 6603, 35, 2690, 1387, 198, 220, 220, 220, 12351, 7004, 6603, 3712, 52, 5317, 2624, 198, 220, 220, 220, 29636, 7004, 6603, 3712, 52, 5317, 2624, 198, 220, 220, 220, 12351, 29391, 45195, 3712, 53, 74, 47, 541, 4470, 29391, 40053, 198, 220, 220, 220, 29636, 29391, 45195, 3712, 53, 74, 47, 541, 4470, 29391, 40053, 198, 220, 220, 220, 12351, 15457, 45195, 3712, 53, 74, 15457, 40053, 198, 220, 220, 220, 29636, 15457, 45195, 3712, 53, 74, 15457, 40053, 198, 220, 220, 220, 20203, 40053, 3712, 53, 74, 35, 2690, 1387, 40053, 198, 437, 198, 198, 8608, 18187, 569, 74, 45819, 14478, 16447, 12360, 198, 220, 220, 220, 264, 6030, 3712, 53, 74, 1273, 5620, 6030, 198, 220, 220, 220, 279, 10019, 3712, 46745, 90, 53, 1868, 92, 198, 220, 220, 220, 9701, 3712, 53, 74, 45819, 14478, 16447, 40053, 198, 220, 220, 220, 18231, 12332, 3712, 52, 5317, 2624, 198, 220, 220, 220, 279, 33296, 902, 3712, 46745, 90, 53, 74, 8086, 15520, 11828, 92, 198, 220, 220, 220, 850, 6603, 12332, 3712, 52, 5317, 2624, 198, 220, 220, 220, 279, 7004, 6603, 274, 3712, 46745, 90, 53, 74, 7004, 6603, 11828, 92, 198, 220, 220, 220, 20203, 12332, 3712, 52, 5317, 2624, 198, 220, 220, 220, 279, 35, 2690, 3976, 3712, 46745, 90, 53, 74, 7004, 6603, 35, 2690, 1387, 92, 198, 437, 198, 198, 8608, 18187, 569, 74, 21575, 27201, 16447, 12360, 198, 220, 220, 220, 264, 6030, 3712, 53, 74, 1273, 5620, 6030, 198, 220, 220, 220, 279, 10019, 3712, 46745, 90, 53, 1868, 92, 198, 220, 220, 220, 9701, 3712, 53, 74, 21575, 27201, 16447, 40053, 198, 220, 220, 220, 16834, 24094, 15732, 3712, 52, 5317, 2624, 198, 437, 198, 198, 8608, 18187, 569, 74, 21575, 28632, 3237, 13369, 12360, 198, 220, 220, 220, 264, 6030, 3712, 53, 74, 1273, 5620, 6030, 198, 220, 220, 220, 279, 10019, 3712, 46745, 90, 53, 1868, 92, 198, 220, 220, 220, 3141, 27201, 3712, 53, 74, 21575, 27201, 198, 220, 220, 220, 1241, 3712, 53, 74, 21575, 28632, 4971, 198, 220, 220, 220, 3141, 28632, 12332, 3712, 52, 5317, 2624, 198, 437, 198, 198, 8608, 18187, 569, 74, 21575, 28632, 818, 372, 42942, 12360, 198, 220, 220, 220, 264, 6030, 3712, 53, 74, 1273, 5620, 6030, 198, 220, 220, 220, 279, 10019, 3712, 46745, 90, 53, 1868, 92, 198, 220, 220, 220, 8543, 14478, 3712, 53, 74, 45819, 14478, 198, 220, 220, 220, 850, 6603, 3712, 52, 5317, 2624, 198, 220, 220, 220, 5739, 22252, 3712, 53, 74, 19778, 22252, 198, 220, 220, 220, 1609, 75, 4241, 20746, 36695, 3712, 53, 38841, 970, 2624, 198, 220, 220, 220, 12405, 40053, 3712, 53, 74, 20746, 15988, 40053, 198, 220, 220, 220, 11523, 48346, 3712, 53, 74, 20746, 47, 541, 4470, 17126, 2569, 40053, 198, 437, 198, 198, 8608, 18187, 569, 74, 21575, 28632, 44140, 12360, 198, 220, 220, 220, 264, 6030, 3712, 53, 74, 1273, 5620, 6030, 198, 220, 220, 220, 279, 10019, 3712, 46745, 90, 53, 1868, 92, 198, 220, 220, 220, 9701, 3712, 53, 74, 21575, 28632, 28350, 40053, 198, 220, 220, 220, 279, 818, 372, 42942, 12360, 3712, 46745, 90, 53, 74, 21575, 28632, 818, 372, 42942, 12360, 92, 198, 437, 198, 198, 8608, 18187, 569, 74, 28632, 29881, 198, 220, 220, 220, 12351, 34519, 3712, 53, 74, 24728, 10699, 198, 220, 220, 220, 29636, 34519, 3712, 53, 74, 24728, 10699, 198, 220, 220, 220, 2546, 3712, 53, 74, 24728, 10699, 198, 437, 198, 198, 8608, 18187, 569, 74, 5159, 7004, 31092, 43, 6962, 198, 220, 220, 220, 4843, 45195, 3712, 53, 74, 5159, 1722, 806, 40053, 198, 220, 220, 220, 285, 541, 4971, 3712, 52, 5317, 2624, 198, 220, 220, 220, 2779, 19182, 49925, 3712, 52, 5317, 2624, 198, 220, 220, 220, 7679, 12332, 3712, 52, 5317, 2624, 198, 437, 198, 198, 8608, 18187, 569, 74, 5159, 29881, 198, 220, 220, 220, 12351, 7004, 31092, 3712, 53, 74, 5159, 7004, 31092, 43, 6962, 198, 220, 220, 220, 12351, 34519, 3712, 53, 74, 34519, 18, 35, 198, 220, 220, 220, 29636, 7004, 31092, 3712, 53, 74, 5159, 7004, 31092, 43, 6962, 198, 220, 220, 220, 29636, 34519, 3712, 53, 74, 34519, 18, 35, 198, 220, 220, 220, 6287, 3712, 53, 74, 11627, 298, 18, 35, 198, 437, 198, 198, 8608, 18187, 569, 74, 5159, 3629, 270, 198, 220, 220, 220, 12351, 7004, 31092, 3712, 53, 74, 5159, 7004, 31092, 43, 6962, 198, 220, 220, 220, 12351, 9362, 28709, 3712, 11251, 29291, 90, 17, 11, 53, 74, 34519, 18, 35, 92, 198, 220, 220, 220, 29636, 7004, 31092, 3712, 53, 74, 5159, 7004, 31092, 43, 6962, 198, 220, 220, 220, 29636, 9362, 28709, 3712, 11251, 29291, 90, 17, 11, 53, 74, 34519, 18, 35, 92, 198, 437, 198, 198, 8608, 18187, 569, 74, 28632, 5159, 29881, 198, 220, 220, 220, 11876, 34519, 3712, 53, 74, 24728, 10699, 198, 220, 220, 220, 11876, 25166, 24539, 3712, 52, 5317, 2624, 198, 220, 220, 220, 11876, 5159, 23106, 3712, 52, 5317, 2624, 198, 220, 220, 220, 2939, 7004, 31092, 3712, 53, 74, 5159, 7004, 31092, 43, 6962, 198, 220, 220, 220, 2939, 34519, 3712, 53, 74, 34519, 18, 35, 198, 220, 220, 220, 2939, 11627, 298, 3712, 53, 74, 11627, 298, 18, 35, 198, 437, 198, 198, 8608, 18187, 569, 74, 19856, 10258, 11395, 198, 220, 220, 220, 4808, 53, 74, 19856, 10258, 11395, 3712, 11251, 29291, 90, 19, 11, 34, 22468, 92, 198, 437, 198, 198, 8608, 18187, 569, 74, 19856, 48791, 1273, 268, 2856, 11395, 198, 220, 220, 220, 6795, 3712, 34, 22468, 198, 220, 220, 220, 45219, 2856, 3712, 52, 5317, 2624, 198, 437, 198, 198, 8608, 18187, 569, 74, 19856, 11395, 198, 220, 220, 220, 4808, 53, 74, 19856, 11395, 3712, 53, 74, 19856, 10258, 11395, 198, 437, 198, 198, 8608, 18187, 569, 74, 19856, 8086, 15520, 198, 220, 220, 220, 4843, 45195, 3712, 53, 74, 5159, 1722, 806, 40053, 198, 220, 220, 220, 3124, 8086, 15520, 3712, 52, 5317, 2624, 198, 220, 220, 220, 1598, 11395, 3712, 53, 74, 19856, 11395, 198, 437, 198, 198, 8608, 18187, 569, 74, 19856, 45474, 198, 220, 220, 220, 13621, 3712, 53, 74, 45474, 17, 35, 198, 220, 220, 220, 2779, 19182, 49925, 3712, 52, 5317, 2624, 198, 220, 220, 220, 7679, 12332, 3712, 52, 5317, 2624, 198, 437, 198, 198, 8608, 18187, 569, 74, 5159, 4965, 6442, 198, 220, 220, 220, 12351, 7004, 31092, 3712, 53, 74, 5159, 7004, 31092, 43, 6962, 198, 220, 220, 220, 12351, 34519, 3712, 53, 74, 34519, 18, 35, 198, 220, 220, 220, 29636, 7004, 31092, 3712, 53, 74, 5159, 7004, 31092, 43, 6962, 198, 220, 220, 220, 29636, 34519, 3712, 53, 74, 34519, 18, 35, 198, 220, 220, 220, 6287, 3712, 53, 74, 11627, 298, 18, 35, 198, 437, 198, 198, 8608, 18187, 569, 74, 30871, 10374, 5277, 198, 220, 220, 220, 264, 6030, 3712, 53, 74, 1273, 5620, 6030, 198, 220, 220, 220, 279, 10019, 3712, 46745, 90, 53, 1868, 92, 198, 220, 220, 220, 12351, 15457, 45195, 3712, 53, 74, 15457, 40053, 198, 220, 220, 220, 29636, 15457, 45195, 3712, 53, 74, 15457, 40053, 198, 437, 198, 198, 8608, 18187, 569, 74, 28632, 30871, 10374, 5277, 198, 220, 220, 220, 264, 6030, 3712, 53, 74, 1273, 5620, 6030, 198, 220, 220, 220, 279, 10019, 3712, 46745, 90, 53, 1868, 92, 198, 220, 220, 220, 12351, 15457, 45195, 3712, 53, 74, 15457, 40053, 198, 220, 220, 220, 29636, 15457, 45195, 3712, 53, 74, 15457, 40053, 198, 220, 220, 220, 12351, 34991, 24094, 15732, 3712, 52, 5317, 2624, 198, 220, 220, 220, 29636, 34991, 24094, 15732, 3712, 52, 5317, 2624, 198, 220, 220, 220, 11876, 3712, 53, 74, 28632, 198, 220, 220, 220, 11677, 3712, 53, 74, 24728, 10699, 198, 220, 220, 220, 2546, 3712, 53, 74, 24728, 10699, 198, 437, 198, 198, 8608, 18187, 569, 74, 5159, 30871, 10374, 5277, 198, 220, 220, 220, 264, 6030, 3712, 53, 74, 1273, 5620, 6030, 198, 220, 220, 220, 279, 10019, 3712, 46745, 90, 53, 1868, 92, 198, 220, 220, 220, 12351, 15457, 45195, 3712, 53, 74, 15457, 40053, 198, 220, 220, 220, 29636, 15457, 45195, 3712, 53, 74, 15457, 40053, 198, 220, 220, 220, 1468, 32517, 3712, 53, 74, 5159, 32517, 198, 220, 220, 220, 649, 32517, 3712, 53, 74, 5159, 32517, 198, 220, 220, 220, 12351, 34991, 24094, 15732, 3712, 52, 5317, 2624, 198, 220, 220, 220, 29636, 34991, 24094, 15732, 3712, 52, 5317, 2624, 198, 220, 220, 220, 2939, 3712, 53, 74, 5159, 198, 220, 220, 220, 850, 31092, 17257, 3712, 53, 74, 5159, 7004, 31092, 17257, 198, 437, 198, 198, 8608, 18187, 569, 74, 45819, 14478, 44140, 12360, 198, 220, 220, 220, 264, 6030, 3712, 53, 74, 1273, 5620, 6030, 198, 220, 220, 220, 279, 10019, 3712, 46745, 90, 53, 1868, 92, 198, 220, 220, 220, 8543, 14478, 3712, 53, 74, 45819, 14478, 198, 220, 220, 220, 5739, 22252, 3712, 53, 74, 19778, 22252, 198, 220, 220, 220, 8543, 30547, 3712, 53, 74, 45474, 17, 35, 198, 220, 220, 220, 1598, 11395, 12332, 3712, 52, 5317, 2624, 198, 220, 220, 220, 279, 19856, 40161, 3712, 46745, 90, 53, 74, 19856, 11395, 92, 198, 437, 198, 198, 8608, 18187, 569, 74, 49354, 5497, 1060, 21575, 198, 220, 220, 220, 2124, 3712, 52, 5317, 2624, 198, 220, 220, 220, 331, 3712, 52, 5317, 2624, 198, 220, 220, 220, 1976, 3712, 52, 5317, 2624, 198, 437, 198, 198, 8608, 18187, 569, 74, 25302, 15732, 276, 5497, 1060, 21575, 198, 220, 220, 220, 6376, 12332, 3712, 52, 5317, 2624, 198, 220, 220, 220, 4554, 12332, 3712, 52, 5317, 2624, 198, 220, 220, 220, 717, 15732, 3712, 52, 5317, 2624, 198, 220, 220, 220, 37423, 34519, 3712, 5317, 2624, 198, 220, 220, 220, 717, 33384, 3712, 52, 5317, 2624, 198, 437, 198, 198, 8608, 18187, 569, 74, 25302, 5497, 1060, 21575, 198, 220, 220, 220, 37423, 12332, 3712, 52, 5317, 2624, 198, 220, 220, 220, 4554, 12332, 3712, 52, 5317, 2624, 198, 220, 220, 220, 717, 13414, 16886, 3712, 52, 5317, 2624, 198, 220, 220, 220, 717, 33384, 3712, 52, 5317, 2624, 198, 437, 198, 198, 4906, 26011, 28223, 45, 62, 85, 74, 16447, 33384, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 49174, 33384, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 4834, 6975, 378, 31611, 13603, 1063, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 3855, 31611, 24728, 23595, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 3855, 31611, 24728, 26227, 2964, 18200, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 3855, 31611, 24728, 5159, 26227, 2964, 18200, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 3855, 31611, 24728, 2964, 18200, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 3855, 31611, 24728, 34991, 24094, 2964, 18200, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 3855, 31611, 24728, 30871, 2964, 18200, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 3855, 33384, 2964, 66, 4550, 81, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 3855, 24728, 2964, 66, 4550, 81, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 16447, 24728, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 49174, 24728, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 4834, 6975, 378, 33384, 11627, 3004, 2964, 18200, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 4834, 6975, 378, 24728, 11627, 3004, 2964, 18200, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 4834, 6975, 378, 33384, 49925, 2964, 18200, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 4834, 6975, 378, 24728, 49925, 2964, 18200, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 3855, 24728, 34991, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 34991, 45135, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 34991, 21321, 7390, 293, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 24728, 21321, 7390, 293, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 3237, 13369, 30871, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 11146, 30871, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 13912, 30871, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 3118, 8899, 30871, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 7414, 1530, 44, 6320, 30871, 49, 6231, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 44651, 378, 44, 6320, 30871, 49, 6231, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 3855, 24728, 30871, 6935, 270, 434, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 36180, 28632, 30871, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 36180, 5159, 30871, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 3855, 28632, 30871, 42249, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 3855, 5159, 30871, 42249, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 3855, 5159, 50, 29572, 30871, 42249, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 3855, 31611, 24728, 50, 29572, 5159, 26227, 2964, 18200, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 34991, 36180, 50, 29572, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 16447, 37, 594, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 49174, 37, 594, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 4965, 316, 37, 3007, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 3855, 37, 594, 19580, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 21321, 1890, 37, 3007, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 16447, 13900, 6570, 382, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 49174, 13900, 6570, 382, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 16447, 9237, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 49174, 9237, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 3855, 9237, 19580, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 7248, 9237, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 4965, 316, 9237, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 16447, 20746, 27201, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 49174, 20746, 27201, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 3855, 20746, 27201, 25468, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 16447, 28632, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 49174, 28632, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 16447, 28632, 7680, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 49174, 28632, 7680, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 16447, 5159, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 49174, 5159, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 3855, 5159, 7004, 31092, 32517, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 16447, 5159, 7680, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 49174, 5159, 7680, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 16447, 2484, 5067, 26796, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 49174, 2484, 5067, 26796, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 16447, 47, 541, 4470, 30562, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 49174, 47, 541, 4470, 30562, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 3855, 47, 541, 4470, 30562, 6601, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 13102, 469, 47, 541, 4470, 34, 3694, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 16447, 18172, 47, 541, 20655, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 16447, 7293, 1133, 47, 541, 20655, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 49174, 47, 541, 4470, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 16447, 47, 541, 4470, 32517, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 49174, 47, 541, 4470, 32517, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 16447, 16305, 20053, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 49174, 16305, 20053, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 16447, 24564, 1968, 273, 7248, 32517, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 49174, 24564, 1968, 273, 7248, 32517, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 16447, 24564, 1968, 273, 27201, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 49174, 24564, 1968, 273, 27201, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 4965, 316, 24564, 1968, 273, 27201, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 3237, 13369, 24564, 1968, 273, 50, 1039, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 11146, 24564, 1968, 273, 50, 1039, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 10260, 24564, 1968, 273, 50, 1039, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 16447, 19778, 22252, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 49174, 19778, 22252, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 16447, 45819, 14478, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 49174, 45819, 14478, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 3855, 45819, 30547, 38, 2596, 33737, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 16447, 21575, 27201, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 49174, 21575, 27201, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 4965, 316, 21575, 27201, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 3237, 13369, 21575, 36474, 364, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 11146, 21575, 36474, 364, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 44140, 21575, 28632, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 12915, 21575, 28632, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 4965, 316, 21575, 28632, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 40109, 36180, 47, 541, 4470, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 40109, 7248, 7680, 634, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 40109, 7248, 3351, 747, 273, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 40109, 7248, 13949, 30916, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 40109, 7248, 48791, 33, 4448, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 40109, 7248, 3629, 437, 34184, 1187, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 40109, 7248, 48791, 33, 3733, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 40109, 7248, 1273, 268, 2856, 41488, 45195, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 40109, 7248, 1273, 268, 2856, 16594, 45195, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 40109, 7248, 1273, 268, 2856, 26687, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 40109, 36180, 24564, 1968, 273, 50, 1039, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 40109, 36180, 15732, 28632, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 40109, 36180, 13414, 16886, 36474, 364, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 40109, 25302, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 40109, 25302, 15732, 276, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 40109, 25302, 5497, 1060, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 40109, 25302, 15732, 276, 5497, 1060, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 40109, 49354, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 40109, 49354, 5497, 1060, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 40109, 29881, 28632, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 40109, 29881, 5159, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 40109, 3629, 270, 5159, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 40109, 29881, 28632, 2514, 5159, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 40109, 29881, 5159, 2514, 28632, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 40109, 10260, 28632, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 40109, 33762, 28632, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 40109, 19856, 10258, 5159, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 40109, 19856, 48791, 1273, 268, 2856, 5159, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 40109, 19856, 33296, 902, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 40109, 4965, 6442, 5159, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 40109, 7248, 9237, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 40109, 4965, 316, 9237, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 40109, 21321, 37103, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 40109, 47, 541, 4470, 10374, 5277, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 40109, 44140, 20746, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 40109, 12915, 20746, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 40109, 4965, 316, 20746, 27201, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 40109, 16594, 14967, 27823, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 40109, 29881, 20746, 27201, 25468, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 40109, 49222, 34184, 1187, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 40109, 44140, 45819, 14478, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 40109, 10019, 7004, 6603, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 40109, 12915, 45819, 14478, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 40109, 23002, 1133, 6935, 1746, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 569, 74, 14214, 2550, 42, 17184, 62, 51, 18331, 198, 4906, 26011, 569, 74, 14214, 2550, 42, 17184, 350, 2213, 90, 53, 74, 14214, 2550, 42, 17184, 62, 51, 92, 198, 198, 31, 66, 44709, 7, 53, 74, 10258, 14106, 42, 17184, 11, 198, 220, 220, 220, 45917, 62, 46786, 4303, 11598, 62, 12562, 4579, 62, 45, 1340, 24027, 1503, 62, 42, 17184, 796, 657, 11, 198, 220, 220, 220, 45917, 62, 46786, 62, 4303, 11598, 62, 33, 43312, 62, 49, 27746, 62, 42, 17184, 796, 657, 11, 198, 220, 220, 220, 45917, 62, 46786, 62, 4303, 11598, 62, 10619, 62, 49, 27746, 62, 42, 17184, 796, 657, 11, 198, 220, 220, 220, 45917, 62, 46786, 62, 4303, 11598, 62, 49, 27746, 62, 33489, 62, 42, 17184, 796, 352, 11, 198, 220, 220, 220, 45917, 62, 46786, 62, 4303, 11598, 62, 22921, 62, 1677, 5883, 62, 42, 17184, 796, 362, 20198, 2780, 26780, 22, 11, 198, 8, 198, 31, 66, 44709, 7, 53, 74, 34695, 19076, 42, 17184, 11, 198, 220, 220, 220, 45917, 62, 48296, 3525, 62, 49058, 62, 3955, 30733, 40, 6158, 62, 42, 17184, 796, 657, 11, 198, 220, 220, 220, 45917, 62, 48296, 3525, 62, 49058, 62, 5673, 4146, 39758, 62, 42, 17184, 796, 352, 11, 198, 220, 220, 220, 45917, 62, 48296, 3525, 62, 49058, 62, 37, 5064, 46, 62, 42, 17184, 796, 362, 11, 198, 220, 220, 220, 45917, 62, 48296, 3525, 62, 49058, 62, 37, 5064, 46, 62, 2200, 13534, 55, 1961, 62, 42, 17184, 796, 513, 11, 198, 220, 220, 220, 45917, 62, 48296, 3525, 62, 49058, 62, 33, 43312, 62, 49, 27746, 62, 42, 17184, 796, 657, 11, 198, 220, 220, 220, 45917, 62, 48296, 3525, 62, 49058, 62, 10619, 62, 49, 27746, 62, 42, 17184, 796, 513, 11, 198, 220, 220, 220, 45917, 62, 48296, 3525, 62, 49058, 62, 49, 27746, 62, 33489, 62, 42, 17184, 796, 604, 11, 198, 220, 220, 220, 45917, 62, 48296, 3525, 62, 49058, 62, 22921, 62, 1677, 5883, 62, 42, 17184, 796, 362, 20198, 2780, 26780, 22, 11, 198, 8, 198, 31, 66, 44709, 7, 53, 74, 14214, 2550, 41762, 34227, 33, 896, 42, 17184, 11, 198, 220, 220, 220, 45917, 62, 50, 4261, 49836, 62, 5446, 15037, 21389, 62, 25256, 9050, 62, 26094, 62, 42, 17184, 796, 352, 11, 198, 220, 220, 220, 45917, 62, 50, 4261, 49836, 62, 5446, 15037, 21389, 62, 49, 2394, 6158, 62, 3829, 62, 26094, 62, 42, 17184, 796, 362, 11, 198, 220, 220, 220, 45917, 62, 50, 4261, 49836, 62, 5446, 15037, 21389, 62, 49, 2394, 6158, 62, 15259, 62, 26094, 62, 42, 17184, 796, 604, 11, 198, 220, 220, 220, 45917, 62, 50, 4261, 49836, 62, 5446, 15037, 21389, 62, 49, 2394, 6158, 62, 20233, 62, 26094, 62, 42, 17184, 796, 807, 11, 198, 220, 220, 220, 45917, 62, 50, 4261, 49836, 62, 5446, 15037, 21389, 62, 39, 1581, 14887, 35830, 1847, 62, 44, 4663, 16411, 62, 26094, 62, 42, 17184, 796, 1467, 11, 198, 220, 220, 220, 45917, 62, 50, 4261, 49836, 62, 5446, 15037, 21389, 62, 39, 1581, 14887, 35830, 1847, 62, 44, 4663, 16411, 62, 49, 2394, 6158, 62, 3829, 62, 26094, 62, 42, 17184, 796, 3933, 11, 198, 220, 220, 220, 45917, 62, 50, 4261, 49836, 62, 5446, 15037, 21389, 62, 39, 1581, 14887, 35830, 1847, 62, 44, 4663, 16411, 62, 49, 2394, 6158, 62, 15259, 62, 26094, 62, 42, 17184, 796, 5598, 11, 198, 220, 220, 220, 45917, 62, 50, 4261, 49836, 62, 5446, 15037, 21389, 62, 39, 1581, 14887, 35830, 1847, 62, 44, 4663, 16411, 62, 49, 2394, 6158, 62, 20233, 62, 26094, 62, 42, 17184, 796, 13108, 11, 198, 220, 220, 220, 45917, 62, 50, 4261, 49836, 62, 5446, 15037, 21389, 62, 1268, 16879, 2043, 62, 26094, 62, 42, 17184, 796, 17759, 11, 198, 220, 220, 220, 45917, 62, 50, 4261, 49836, 62, 5446, 15037, 21389, 62, 38948, 62, 26094, 50, 62, 22921, 62, 1677, 5883, 62, 42, 17184, 796, 362, 20198, 2780, 26780, 22, 11, 198, 8, 198, 198, 4906, 26011, 569, 74, 14214, 2550, 41762, 40053, 42, 17184, 569, 74, 40053, 198, 198, 31, 66, 44709, 7, 53, 74, 5377, 1930, 578, 38077, 34227, 33, 896, 42, 17184, 11, 198, 220, 220, 220, 45917, 62, 9858, 37997, 12709, 62, 1847, 47, 7801, 62, 43345, 48, 8924, 62, 26094, 62, 42, 17184, 796, 352, 11, 198, 220, 220, 220, 45917, 62, 9858, 37997, 12709, 62, 1847, 47, 7801, 62, 46437, 62, 44, 16724, 4061, 43, 19767, 62, 26094, 62, 42, 17184, 796, 362, 11, 198, 220, 220, 220, 45917, 62, 9858, 37997, 12709, 62, 1847, 47, 7801, 62, 32782, 62, 44, 16724, 4061, 43, 19767, 62, 26094, 62, 42, 17184, 796, 604, 11, 198, 220, 220, 220, 45917, 62, 9858, 37997, 12709, 62, 1847, 47, 7801, 62, 1268, 16879, 2043, 62, 26094, 62, 42, 17184, 796, 807, 11, 198, 220, 220, 220, 45917, 62, 9858, 37997, 12709, 62, 1847, 47, 7801, 62, 38948, 62, 26094, 50, 62, 22921, 62, 1677, 5883, 62, 42, 17184, 796, 362, 20198, 2780, 26780, 22, 11, 198, 8, 198, 198, 4906, 26011, 569, 74, 5377, 1930, 578, 38077, 40053, 42, 17184, 569, 74, 40053, 198, 198, 8608, 18187, 569, 74, 14214, 2550, 15610, 5738, 42, 17184, 198, 220, 220, 220, 949, 5159, 12332, 3712, 52, 5317, 2624, 198, 220, 220, 220, 3509, 5159, 12332, 3712, 52, 5317, 2624, 198, 220, 220, 220, 1459, 11627, 298, 3712, 53, 74, 11627, 298, 17, 35, 198, 220, 220, 220, 949, 5159, 11627, 298, 3712, 53, 74, 11627, 298, 17, 35, 198, 220, 220, 220, 3509, 5159, 11627, 298, 3712, 53, 74, 11627, 298, 17, 35, 198, 220, 220, 220, 3509, 5159, 19182, 43, 6962, 3712, 52, 5317, 2624, 198, 220, 220, 220, 4855, 8291, 23914, 3712, 53, 74, 14214, 2550, 41762, 40053, 42, 17184, 198, 220, 220, 220, 1459, 41762, 3712, 53, 74, 14214, 2550, 41762, 34227, 33, 896, 42, 17184, 198, 220, 220, 220, 4855, 5377, 1930, 578, 38077, 3712, 53, 74, 5377, 1930, 578, 38077, 40053, 42, 17184, 198, 220, 220, 220, 4855, 28350, 40053, 3712, 53, 74, 5159, 28350, 40053, 198, 437, 198, 198, 8608, 18187, 569, 74, 14214, 2550, 26227, 42, 17184, 198, 220, 220, 220, 5794, 3712, 53, 74, 26227, 198, 220, 220, 220, 3124, 14106, 3712, 53, 74, 10258, 14106, 42, 17184, 198, 437, 198, 198, 4906, 26011, 28223, 45, 62, 85, 74, 49174, 14214, 2550, 42, 17184, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 3855, 31611, 24728, 14214, 2550, 15514, 42, 17184, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 3855, 31611, 24728, 14214, 2550, 15610, 5738, 42, 17184, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 3855, 31611, 24728, 14214, 2550, 8479, 1381, 42, 17184, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 3855, 31611, 24728, 14214, 2550, 34695, 44, 4147, 42, 17184, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 569, 74, 10462, 499, 7983, 42, 17184, 62, 51, 18331, 198, 4906, 26011, 569, 74, 10462, 499, 7983, 42, 17184, 350, 2213, 90, 53, 74, 10462, 499, 7983, 42, 17184, 62, 51, 92, 198, 4906, 26011, 569, 74, 10462, 499, 7983, 16447, 40053, 42, 17184, 569, 74, 40053, 198, 198, 8608, 18187, 569, 74, 10462, 499, 7983, 16447, 12360, 42, 17184, 198, 220, 220, 220, 264, 6030, 3712, 53, 74, 1273, 5620, 6030, 198, 220, 220, 220, 279, 10019, 3712, 46745, 90, 53, 1868, 92, 198, 220, 220, 220, 9701, 3712, 53, 74, 10462, 499, 7983, 16447, 40053, 42, 17184, 198, 220, 220, 220, 4417, 3712, 53, 74, 14214, 2550, 42, 17184, 198, 220, 220, 220, 949, 5159, 12332, 3712, 52, 5317, 2624, 198, 220, 220, 220, 2939, 26227, 3712, 53, 74, 26227, 198, 220, 220, 220, 2939, 10258, 14106, 3712, 53, 74, 10258, 14106, 42, 17184, 198, 220, 220, 220, 2939, 11627, 298, 3712, 53, 74, 11627, 298, 17, 35, 198, 220, 220, 220, 2939, 19182, 43, 6962, 3712, 52, 5317, 2624, 198, 220, 220, 220, 2939, 28350, 3712, 53, 74, 5159, 28350, 40053, 198, 220, 220, 220, 2939, 2484, 1723, 19076, 3712, 53, 74, 2484, 1723, 19076, 198, 220, 220, 220, 16834, 24094, 15732, 12332, 3712, 52, 5317, 2624, 198, 220, 220, 220, 279, 34991, 24094, 5497, 1063, 3712, 46745, 90, 52, 5317, 2624, 92, 198, 220, 220, 220, 662, 41762, 3712, 53, 74, 14214, 2550, 41762, 34227, 33, 896, 42, 17184, 198, 220, 220, 220, 24185, 38077, 3712, 53, 74, 5377, 1930, 578, 38077, 34227, 33, 896, 42, 17184, 198, 220, 220, 220, 1944, 19076, 3712, 53, 74, 34695, 19076, 42, 17184, 198, 220, 220, 220, 49305, 3712, 53, 38841, 970, 2624, 198, 220, 220, 220, 1468, 10462, 499, 7983, 3712, 53, 74, 10462, 499, 7983, 42, 17184, 198, 437, 198, 198, 8608, 18187, 569, 74, 34695, 12360, 42, 17184, 198, 220, 220, 220, 264, 6030, 3712, 53, 74, 1273, 5620, 6030, 198, 220, 220, 220, 279, 10019, 3712, 46745, 90, 53, 1868, 92, 198, 220, 220, 220, 4043, 13900, 6570, 382, 12332, 3712, 52, 5317, 2624, 198, 220, 220, 220, 279, 21321, 13900, 6570, 2850, 3712, 46745, 90, 53, 74, 13900, 6570, 382, 92, 198, 220, 220, 220, 16075, 7983, 12332, 3712, 52, 5317, 2624, 198, 220, 220, 220, 279, 10462, 499, 38861, 3712, 46745, 90, 53, 74, 10462, 499, 7983, 42, 17184, 92, 198, 220, 220, 220, 279, 5159, 5497, 1063, 3712, 46745, 90, 52, 5317, 2624, 92, 198, 220, 220, 220, 279, 25468, 3712, 46745, 90, 53, 74, 23004, 92, 198, 437, 198, 198, 4906, 26011, 28223, 45, 62, 85, 74, 16447, 10462, 499, 7983, 42, 17184, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 49174, 10462, 499, 7983, 42, 17184, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 3855, 10462, 499, 7983, 29398, 42, 17184, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 12832, 29782, 10019, 5159, 42, 17184, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 34991, 34695, 42, 17184, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 569, 74, 23114, 42, 17184, 62, 51, 18331, 198, 4906, 26011, 569, 74, 23114, 42, 17184, 350, 2213, 90, 53, 74, 23114, 42, 17184, 62, 51, 92, 198, 4906, 26011, 569, 74, 23114, 19076, 42, 17184, 62, 51, 18331, 198, 4906, 26011, 569, 74, 23114, 19076, 42, 17184, 350, 2213, 90, 53, 74, 23114, 19076, 42, 17184, 62, 51, 92, 198, 198, 31, 66, 44709, 7, 53, 74, 23114, 3646, 1531, 38077, 34227, 33, 896, 42, 17184, 11, 198, 220, 220, 220, 45917, 62, 26288, 31519, 62, 6489, 30525, 62, 1847, 47, 7801, 62, 43345, 48, 8924, 62, 26094, 62, 42, 17184, 796, 352, 11, 198, 220, 220, 220, 45917, 62, 26288, 31519, 62, 6489, 30525, 62, 1847, 47, 7801, 62, 8763, 9864, 1847, 62, 26094, 62, 42, 17184, 796, 362, 11, 198, 220, 220, 220, 45917, 62, 26288, 31519, 62, 6489, 30525, 62, 1847, 47, 7801, 62, 18973, 62, 47, 10426, 3698, 62, 26094, 62, 42, 17184, 796, 604, 11, 198, 220, 220, 220, 45917, 62, 26288, 31519, 62, 6489, 30525, 62, 1847, 47, 7801, 62, 18973, 62, 47, 10426, 3698, 62, 47, 40726, 16724, 4061, 43, 19767, 62, 26094, 62, 42, 17184, 796, 807, 11, 198, 220, 220, 220, 45917, 62, 26288, 31519, 62, 6489, 30525, 62, 1847, 47, 7801, 62, 38948, 62, 26094, 50, 62, 22921, 62, 1677, 5883, 62, 42, 17184, 796, 362, 20198, 2780, 26780, 22, 11, 198, 8, 198, 198, 4906, 26011, 569, 74, 23114, 3646, 1531, 38077, 40053, 42, 17184, 569, 74, 40053, 198, 4906, 26011, 569, 74, 23114, 19076, 16447, 40053, 42, 17184, 569, 74, 40053, 198, 4906, 26011, 569, 74, 23114, 14214, 2550, 16447, 40053, 42, 17184, 569, 74, 40053, 198, 198, 8608, 18187, 569, 74, 23114, 2964, 18200, 42, 17184, 198, 220, 220, 220, 3359, 3712, 53, 74, 23114, 42, 17184, 198, 220, 220, 220, 3359, 5376, 3712, 34, 8841, 198, 220, 220, 220, 3518, 29271, 5736, 3712, 53, 74, 11627, 298, 17, 35, 198, 220, 220, 220, 3518, 4965, 2122, 3712, 53, 74, 11627, 298, 17, 35, 198, 220, 220, 220, 4855, 8291, 23914, 3712, 53, 74, 14214, 2550, 41762, 40053, 42, 17184, 198, 220, 220, 220, 6614, 3041, 2875, 47, 4733, 3712, 53, 38841, 970, 2624, 198, 220, 220, 220, 16218, 19746, 3712, 53, 38841, 970, 2624, 198, 437, 198, 198, 8608, 18187, 569, 74, 23114, 19076, 48944, 42, 17184, 198, 220, 220, 220, 7424, 47371, 3712, 53, 74, 11627, 298, 17, 35, 198, 220, 220, 220, 14976, 32184, 3712, 52, 5317, 2624, 198, 437, 198, 198, 8608, 18187, 569, 74, 23114, 19076, 2964, 18200, 42, 17184, 198, 220, 220, 220, 3359, 19076, 3712, 53, 74, 23114, 19076, 42, 17184, 198, 220, 220, 220, 10007, 3712, 53, 74, 23114, 19076, 48944, 42, 17184, 198, 437, 198, 198, 8608, 18187, 569, 74, 23114, 19076, 16447, 12360, 42, 17184, 198, 220, 220, 220, 264, 6030, 3712, 53, 74, 1273, 5620, 6030, 198, 220, 220, 220, 279, 10019, 3712, 46745, 90, 53, 1868, 92, 198, 220, 220, 220, 9701, 3712, 53, 74, 23114, 19076, 16447, 40053, 42, 17184, 198, 220, 220, 220, 10007, 3712, 53, 74, 23114, 19076, 48944, 42, 17184, 198, 437, 198, 198, 8608, 18187, 569, 74, 23114, 3646, 1531, 15610, 5738, 42, 17184, 198, 220, 220, 220, 4855, 38077, 3712, 53, 74, 23114, 3646, 1531, 38077, 40053, 42, 17184, 198, 220, 220, 220, 949, 50, 6015, 26545, 3712, 53, 74, 34519, 17, 35, 198, 220, 220, 220, 3509, 50, 6015, 26545, 3712, 53, 74, 34519, 17, 35, 198, 220, 220, 220, 949, 50, 6015, 11627, 298, 3712, 53, 74, 11627, 298, 17, 35, 198, 220, 220, 220, 3509, 50, 6015, 11627, 298, 3712, 53, 74, 11627, 298, 17, 35, 198, 220, 220, 220, 949, 35, 301, 26545, 3712, 53, 74, 34519, 17, 35, 198, 220, 220, 220, 3509, 35, 301, 26545, 3712, 53, 74, 34519, 17, 35, 198, 220, 220, 220, 949, 35, 301, 11627, 298, 3712, 53, 74, 11627, 298, 17, 35, 198, 220, 220, 220, 3509, 35, 301, 11627, 298, 3712, 53, 74, 11627, 298, 17, 35, 198, 437, 198, 198, 8608, 18187, 569, 74, 23114, 3646, 1531, 2964, 18200, 42, 17184, 198, 220, 220, 220, 1459, 23114, 3712, 53, 74, 23114, 42, 17184, 198, 220, 220, 220, 1459, 25896, 15732, 3712, 52, 5317, 2624, 198, 437, 198, 198, 8608, 18187, 569, 74, 23114, 14214, 2550, 16447, 12360, 42, 17184, 198, 220, 220, 220, 264, 6030, 3712, 53, 74, 1273, 5620, 6030, 198, 220, 220, 220, 279, 10019, 3712, 46745, 90, 53, 1868, 92, 198, 220, 220, 220, 9701, 3712, 53, 74, 23114, 14214, 2550, 16447, 40053, 42, 17184, 198, 220, 220, 220, 3359, 19076, 3712, 53, 74, 23114, 19076, 42, 17184, 198, 220, 220, 220, 6614, 15732, 3712, 52, 5317, 2624, 198, 220, 220, 220, 6614, 25896, 15732, 3712, 52, 5317, 2624, 198, 220, 220, 220, 6121, 3712, 53, 74, 14214, 2550, 41762, 34227, 33, 896, 42, 17184, 198, 220, 220, 220, 3298, 38077, 3712, 34, 22468, 198, 220, 220, 220, 17130, 19076, 3712, 53, 74, 23114, 3646, 1531, 38077, 34227, 33, 896, 42, 17184, 198, 220, 220, 220, 2939, 11627, 298, 3712, 53, 74, 11627, 298, 17, 35, 198, 437, 198, 198, 4906, 26011, 28223, 45, 62, 85, 74, 3855, 31611, 24728, 23114, 2964, 18200, 42, 17184, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 3855, 31611, 24728, 23114, 3646, 1531, 2964, 18200, 42, 17184, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 3855, 23114, 3646, 1531, 48181, 7279, 26024, 42, 17184, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 3855, 23114, 19076, 2964, 18200, 42, 17184, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 16447, 23114, 19076, 42, 17184, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 3855, 23114, 3646, 1531, 15610, 5738, 42, 17184, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 16447, 23114, 3646, 1531, 14214, 2550, 42, 17184, 350, 2213, 90, 53, 1868, 92, 198, 198, 8608, 18187, 569, 74, 23114, 34695, 12360, 42, 17184, 198, 220, 220, 220, 264, 6030, 3712, 53, 74, 1273, 5620, 6030, 198, 220, 220, 220, 279, 10019, 3712, 46745, 90, 53, 1868, 92, 198, 220, 220, 220, 12351, 45474, 3712, 53, 74, 45474, 17, 35, 198, 220, 220, 220, 29636, 45474, 3712, 53, 74, 45474, 17, 35, 198, 220, 220, 220, 16218, 3712, 53, 38841, 970, 2624, 198, 437, 198, 198, 4906, 26011, 28223, 45, 62, 85, 74, 16447, 2484, 1144, 10462, 499, 38861, 42, 17184, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 569, 74, 55, 21101, 14214, 2550, 16447, 40053, 42, 17184, 569, 74, 40053, 198, 198, 8608, 18187, 569, 74, 55, 21101, 14214, 2550, 16447, 12360, 42, 17184, 198, 220, 220, 220, 264, 6030, 3712, 53, 74, 1273, 5620, 6030, 198, 220, 220, 220, 279, 10019, 3712, 46745, 90, 53, 1868, 92, 198, 220, 220, 220, 9701, 3712, 53, 74, 55, 21101, 14214, 2550, 16447, 40053, 42, 17184, 198, 220, 220, 220, 4637, 3712, 46745, 90, 87, 21101, 62, 38659, 62, 83, 92, 198, 220, 220, 220, 4324, 3712, 87, 21101, 62, 17497, 62, 83, 198, 437, 198, 198, 4906, 26011, 28223, 45, 62, 85, 74, 16447, 55, 21101, 14214, 2550, 42, 17184, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 3855, 31611, 24728, 55, 21101, 34695, 341, 15514, 42, 17184, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 569, 74, 25309, 1044, 14214, 2550, 16447, 40053, 42, 17184, 569, 74, 40053, 198, 198, 8608, 18187, 569, 74, 25309, 1044, 14214, 2550, 16447, 12360, 42, 17184, 198, 220, 220, 220, 264, 6030, 3712, 53, 74, 1273, 5620, 6030, 198, 220, 220, 220, 279, 10019, 3712, 46745, 90, 53, 1868, 92, 198, 220, 220, 220, 9701, 3712, 53, 74, 25309, 1044, 14214, 2550, 16447, 40053, 42, 17184, 198, 220, 220, 220, 3359, 3712, 46745, 90, 40989, 62, 13812, 92, 198, 220, 220, 220, 4417, 3712, 46745, 90, 40989, 62, 42029, 92, 198, 437, 198, 198, 4906, 26011, 28223, 45, 62, 85, 74, 16447, 25309, 1044, 14214, 2550, 42, 17184, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 3855, 31611, 24728, 25309, 1044, 34695, 341, 15514, 42, 17184, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 569, 74, 27453, 14214, 2550, 16447, 40053, 42, 17184, 569, 74, 40053, 198, 198, 8608, 18187, 569, 74, 27453, 14214, 2550, 16447, 12360, 42, 17184, 198, 220, 220, 220, 264, 6030, 3712, 53, 74, 1273, 5620, 6030, 198, 220, 220, 220, 279, 10019, 3712, 46745, 90, 53, 1868, 92, 198, 220, 220, 220, 9701, 3712, 53, 74, 27453, 14214, 2550, 16447, 40053, 42, 17184, 198, 220, 220, 220, 4637, 3712, 46745, 90, 34, 600, 92, 198, 220, 220, 220, 5720, 14214, 2550, 3712, 46745, 90, 34, 600, 92, 198, 437, 198, 198, 4906, 26011, 28223, 45, 62, 85, 74, 16447, 27453, 14214, 2550, 42, 17184, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 3855, 31611, 24728, 27453, 34695, 341, 15514, 42, 17184, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 569, 74, 16643, 2624, 14214, 2550, 16447, 40053, 42, 17184, 569, 74, 40053, 198, 198, 8608, 18187, 569, 74, 16643, 2624, 14214, 2550, 16447, 12360, 42, 17184, 198, 220, 220, 220, 264, 6030, 3712, 53, 74, 1273, 5620, 6030, 198, 220, 220, 220, 279, 10019, 3712, 46745, 90, 53, 1868, 92, 198, 220, 220, 220, 9701, 3712, 53, 74, 16643, 2624, 14214, 2550, 16447, 40053, 42, 17184, 198, 220, 220, 220, 289, 39098, 3712, 34, 600, 198, 220, 220, 220, 289, 86, 358, 3712, 34, 600, 198, 437, 198, 198, 4906, 26011, 28223, 45, 62, 85, 74, 16447, 16643, 2624, 14214, 2550, 42, 17184, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 3855, 31611, 24728, 16643, 2624, 34695, 341, 15514, 42, 17184, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 569, 74, 27509, 19100, 47258, 13918, 62, 51, 18331, 198, 4906, 26011, 569, 74, 27509, 19100, 47258, 13918, 350, 2213, 90, 53, 74, 27509, 19100, 47258, 13918, 62, 51, 92, 198, 198, 31, 66, 44709, 7, 53, 74, 27509, 19100, 10267, 6030, 13918, 11, 198, 220, 220, 220, 45917, 62, 30531, 62, 2200, 15490, 62, 9864, 23680, 62, 25216, 62, 4944, 44706, 62, 13918, 796, 657, 11, 198, 220, 220, 220, 45917, 62, 30531, 62, 2200, 15490, 62, 9864, 23680, 62, 25216, 62, 38604, 19240, 62, 13918, 796, 352, 11, 198, 220, 220, 220, 45917, 62, 30531, 62, 2200, 15490, 62, 9864, 23680, 62, 25216, 62, 11909, 16309, 20151, 62, 7206, 27389, 62, 13918, 796, 362, 11, 198, 220, 220, 220, 45917, 62, 30531, 62, 2200, 15490, 62, 9864, 23680, 62, 25216, 62, 7206, 27389, 62, 13918, 796, 513, 11, 198, 220, 220, 220, 45917, 62, 30531, 62, 2200, 15490, 62, 9864, 23680, 62, 25216, 62, 48, 8924, 8924, 62, 13918, 796, 604, 11, 198, 220, 220, 220, 45917, 62, 30531, 62, 2200, 15490, 62, 9864, 23680, 62, 25216, 62, 50, 3620, 31300, 6965, 62, 13918, 796, 642, 11, 198, 220, 220, 220, 45917, 62, 30531, 62, 2200, 15490, 62, 9864, 23680, 62, 25216, 62, 9858, 44, 6981, 62, 19499, 45746, 62, 13918, 796, 718, 11, 198, 220, 220, 220, 45917, 62, 30531, 62, 2200, 15490, 62, 9864, 23680, 62, 25216, 62, 37, 18310, 62, 13918, 796, 767, 11, 198, 220, 220, 220, 45917, 62, 30531, 62, 2200, 15490, 62, 9864, 23680, 62, 25216, 62, 7206, 27389, 62, 44, 3620, 15513, 62, 13918, 796, 807, 11, 198, 220, 220, 220, 45917, 62, 30531, 62, 2200, 15490, 62, 9864, 23680, 62, 25216, 62, 19499, 45746, 62, 13918, 796, 860, 11, 198, 220, 220, 220, 45917, 62, 30531, 62, 2200, 15490, 62, 9864, 23680, 62, 25216, 62, 3955, 11879, 62, 13918, 796, 838, 11, 198, 220, 220, 220, 45917, 62, 30531, 62, 2200, 15490, 62, 9864, 23680, 62, 25216, 62, 20114, 3525, 62, 13918, 796, 1367, 11, 198, 220, 220, 220, 45917, 62, 30531, 62, 2200, 15490, 62, 9864, 23680, 62, 25216, 62, 10917, 19664, 62, 16402, 3535, 62, 13918, 796, 1105, 11, 198, 220, 220, 220, 45917, 62, 30531, 62, 2200, 15490, 62, 9864, 23680, 62, 25216, 62, 19499, 45746, 62, 28206, 62, 13918, 796, 1511, 11, 198, 220, 220, 220, 45917, 62, 30531, 62, 2200, 15490, 62, 9864, 23680, 62, 25216, 62, 3955, 11879, 62, 28206, 62, 13918, 796, 1478, 11, 198, 220, 220, 220, 45917, 62, 30531, 62, 2200, 15490, 62, 9864, 23680, 62, 25216, 62, 9693, 2885, 1137, 62, 33365, 24212, 62, 13918, 796, 1315, 11, 198, 220, 220, 220, 45917, 62, 30531, 62, 2200, 15490, 62, 9864, 23680, 62, 25216, 62, 47, 4061, 3698, 8881, 62, 34, 2246, 13909, 62, 13918, 796, 1467, 11, 198, 220, 220, 220, 45917, 62, 30531, 62, 2200, 15490, 62, 9864, 23680, 62, 25216, 62, 47, 4061, 3698, 8881, 62, 43, 4792, 12425, 62, 13918, 796, 1596, 11, 198, 220, 220, 220, 45917, 62, 30531, 62, 2200, 15490, 62, 9864, 23680, 62, 25216, 62, 49, 10619, 1137, 62, 47924, 62, 13918, 796, 1248, 11, 198, 220, 220, 220, 45917, 62, 30531, 62, 2200, 15490, 62, 9864, 23680, 62, 25216, 62, 47, 4061, 3698, 8881, 62, 13918, 796, 678, 11, 198, 220, 220, 220, 45917, 62, 30531, 62, 2200, 15490, 62, 9864, 23680, 62, 25216, 62, 30910, 36584, 32961, 62, 28480, 62, 43, 4792, 12425, 62, 13918, 796, 1160, 11, 198, 220, 220, 220, 45917, 62, 30531, 62, 2200, 15490, 62, 9864, 23680, 62, 25216, 62, 49302, 6489, 1137, 62, 13918, 796, 2310, 11, 198, 220, 220, 220, 45917, 62, 30531, 62, 2200, 15490, 62, 9864, 23680, 62, 25216, 62, 30910, 36584, 32961, 62, 16402, 3535, 62, 13918, 796, 2534, 11, 198, 220, 220, 220, 45917, 62, 30531, 62, 2200, 15490, 62, 9864, 23680, 62, 25216, 62, 30910, 36584, 32961, 62, 28480, 62, 13918, 796, 2242, 11, 198, 220, 220, 220, 45917, 62, 30531, 62, 2200, 15490, 62, 9864, 23680, 62, 25216, 62, 10913, 10067, 19499, 45746, 62, 13918, 796, 1987, 11, 198, 220, 220, 220, 45917, 62, 30531, 62, 2200, 15490, 62, 9864, 23680, 62, 25216, 62, 9858, 44, 6981, 62, 16402, 3535, 62, 13918, 796, 1679, 11, 198, 220, 220, 220, 45917, 62, 30531, 62, 2200, 15490, 62, 9864, 23680, 62, 25216, 62, 50, 4261, 49836, 62, 42, 17184, 62, 13918, 796, 2608, 11, 198, 220, 220, 220, 45917, 62, 30531, 62, 2200, 15490, 62, 9864, 23680, 62, 25216, 62, 17887, 2969, 3398, 29833, 62, 42, 17184, 62, 13918, 796, 2681, 11, 198, 220, 220, 220, 45917, 62, 30531, 62, 2200, 15490, 62, 9864, 23680, 62, 25216, 62, 30531, 62, 2200, 15490, 62, 13918, 796, 2579, 11, 198, 220, 220, 220, 45917, 62, 30531, 62, 2200, 15490, 62, 9864, 23680, 62, 25216, 62, 33, 43312, 62, 49, 27746, 62, 13918, 796, 657, 11, 198, 220, 220, 220, 45917, 62, 30531, 62, 2200, 15490, 62, 9864, 23680, 62, 25216, 62, 10619, 62, 49, 27746, 62, 13918, 796, 2579, 11, 198, 220, 220, 220, 45917, 62, 30531, 62, 2200, 15490, 62, 9864, 23680, 62, 25216, 62, 49, 27746, 62, 33489, 62, 13918, 796, 2808, 11, 198, 220, 220, 220, 45917, 62, 30531, 62, 2200, 15490, 62, 9864, 23680, 62, 25216, 62, 22921, 62, 1677, 5883, 62, 13918, 796, 362, 20198, 2780, 26780, 22, 11, 198, 8, 198, 31, 66, 44709, 7, 53, 74, 27509, 19100, 12331, 13918, 11, 198, 220, 220, 220, 45917, 62, 30531, 62, 2200, 15490, 62, 24908, 62, 45, 11651, 62, 13918, 796, 657, 11, 198, 220, 220, 220, 45917, 62, 30531, 62, 2200, 15490, 62, 24908, 62, 34, 7036, 31098, 62, 31688, 62, 13918, 796, 352, 11, 198, 220, 220, 220, 45917, 62, 30531, 62, 2200, 15490, 62, 24908, 62, 33, 43312, 62, 49, 27746, 62, 13918, 796, 657, 11, 198, 220, 220, 220, 45917, 62, 30531, 62, 2200, 15490, 62, 24908, 62, 10619, 62, 49, 27746, 62, 13918, 796, 352, 11, 198, 220, 220, 220, 45917, 62, 30531, 62, 2200, 15490, 62, 24908, 62, 49, 27746, 62, 33489, 62, 13918, 796, 362, 11, 198, 220, 220, 220, 45917, 62, 30531, 62, 2200, 15490, 62, 24908, 62, 22921, 62, 1677, 5883, 62, 13918, 796, 362, 20198, 2780, 26780, 22, 11, 198, 8, 198, 31, 66, 44709, 7, 53, 74, 27509, 19100, 34227, 33, 896, 13918, 11, 198, 220, 220, 220, 45917, 62, 30531, 62, 2200, 15490, 62, 1268, 35036, 62, 26094, 62, 13918, 796, 352, 11, 198, 220, 220, 220, 45917, 62, 30531, 62, 2200, 15490, 62, 31502, 62, 26094, 62, 13918, 796, 362, 11, 198, 220, 220, 220, 45917, 62, 30531, 62, 2200, 15490, 62, 18973, 13775, 10725, 5222, 62, 31502, 62, 26094, 62, 13918, 796, 604, 11, 198, 220, 220, 220, 45917, 62, 30531, 62, 2200, 15490, 62, 24908, 62, 26094, 62, 13918, 796, 807, 11, 198, 220, 220, 220, 45917, 62, 30531, 62, 2200, 15490, 62, 30531, 62, 26094, 62, 13918, 796, 1467, 11, 198, 220, 220, 220, 45917, 62, 30531, 62, 2200, 15490, 62, 38948, 62, 26094, 50, 62, 22921, 62, 1677, 5883, 62, 13918, 796, 362, 20198, 2780, 26780, 22, 11, 198, 8, 198, 198, 4906, 26011, 569, 74, 27509, 19100, 40053, 13918, 569, 74, 40053, 198, 4906, 26011, 28223, 45, 62, 85, 74, 27509, 19100, 47258, 13918, 350, 2213, 90, 53, 1868, 92, 198, 198, 8608, 18187, 569, 74, 27509, 19100, 47258, 16447, 12360, 13918, 198, 220, 220, 220, 264, 6030, 3712, 53, 74, 1273, 5620, 6030, 198, 220, 220, 220, 279, 10019, 3712, 46745, 90, 53, 1868, 92, 198, 220, 220, 220, 9701, 3712, 53, 74, 27509, 19100, 40053, 13918, 198, 220, 220, 220, 279, 22184, 47258, 3712, 42668, 45, 62, 85, 74, 27509, 19100, 47258, 13918, 198, 220, 220, 220, 279, 12982, 6601, 3712, 46745, 90, 53, 1868, 92, 198, 437, 198, 198, 4906, 26011, 28223, 45, 62, 85, 74, 16447, 27509, 19100, 47258, 13918, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 49174, 27509, 19100, 47258, 13918, 350, 2213, 90, 53, 1868, 92, 198, 4906, 26011, 28223, 45, 62, 85, 74, 27509, 19100, 12837, 13918, 350, 2213, 90, 53, 1868, 92, 198 ]
2.201432
39,656
<reponame>DavidJArnold/churrosJulia.jl using churrosJulia churro("{o}====} {======={o} {{==o}") res = churro(str,diagnostics=false) print("done: $res")
[ 27, 7856, 261, 480, 29, 11006, 41, 3163, 77, 727, 14, 354, 333, 4951, 16980, 544, 13, 20362, 198, 3500, 442, 333, 4951, 16980, 544, 198, 198, 354, 333, 305, 7203, 90, 78, 92, 1421, 92, 1391, 1421, 18604, 90, 78, 92, 22935, 855, 78, 92, 4943, 198, 198, 411, 796, 442, 333, 305, 7, 2536, 11, 47356, 34558, 28, 9562, 8, 198, 198, 4798, 7203, 28060, 25, 720, 411, 4943, 198 ]
2.152778
72
{"score": 8.76, "timestamp": 1577770056.0, "score_count": 208052} {"score": 8.76, "timestamp": 1575919497.0, "score_count": 207059} {"score": 8.76, "timestamp": 1572702809.0, "score_count": 204593} {"score": 8.77, "timestamp": 1571767642.0, "score_count": 203264} {"score": 8.77, "timestamp": 1571290003.0, "score_count": 201122} {"score": 8.77, "timestamp": 1571288522.0, "score_count": 201122} {"score": 8.77, "timestamp": 1571066720.0, "score_count": 201122} {"score": 8.77, "timestamp": 1570970068.0, "score_count": 201122} {"score": 8.77, "timestamp": 1569457428.0, "score_count": 200201} {"score": 8.77, "timestamp": 1569120614.0, "score_count": 200201} {"score": 8.77, "timestamp": 1567382296.0, "score_count": 198929} {"score": 8.77, "timestamp": 1566694856.0, "score_count": 198458} {"score": 8.77, "timestamp": 1566621621.0, "score_count": 197495} {"score": 8.77, "timestamp": 1565672315.0, "score_count": 197495} {"score": 8.77, "timestamp": 1565503096.0, "score_count": 196798} {"score": 8.77, "timestamp": 1561629348.0, "score_count": 193577} {"score": 8.77, "timestamp": 1522201083.0, "score_count": 157166} {"score": 8.82, "timestamp": 1461963071.0, "score_count": 90657} {"score": 8.82, "timestamp": 1461795203.0, "score_count": 90505} {"score": 8.82, "timestamp": 1461676528.0, "score_count": 90378} {"score": 8.82, "timestamp": 1460798654.0, "score_count": 89495} {"score": 8.82, "timestamp": 1459131067.0, "score_count": 87489} {"score": 8.82, "timestamp": 1458067957.0, "score_count": 86314} {"score": 8.83, "timestamp": 1449594430.0, "score_count": 76648} {"score": 8.83, "timestamp": 1449541994.0, "score_count": 76607} {"score": 8.83, "timestamp": 1441774166.0, "score_count": 69161} {"score": 8.77, "timestamp": 1565143962.0, "score_count": 196798} {"score": 8.77, "timestamp": 1565141759.0, "score_count": 196798} {"score": 8.77, "timestamp": 1565136465.0, "score_count": 196798} {"score": 8.77, "timestamp": 1564939094.0, "score_count": 196798} {"score": 8.77, "timestamp": 1564529841.0, "score_count": 196318} {"score": 8.77, "timestamp": 1564493158.0, "score_count": 196318} {"score": 8.77, "timestamp": 1564180709.0, "score_count": 195895} {"score": 8.77, "timestamp": 1564082667.0, "score_count": 195895} {"score": 8.77, "timestamp": 1564007229.0, "score_count": 195895} {"score": 8.77, "timestamp": 1563925329.0, "score_count": 195895} {"score": 8.77, "timestamp": 1563917883.0, "score_count": 195895} {"score": 8.77, "timestamp": 1563495667.0, "score_count": 194535} {"score": 8.77, "timestamp": 1563484753.0, "score_count": 194535} {"score": 8.77, "timestamp": 1563231093.0, "score_count": 194535} {"score": 8.77, "timestamp": 1563046151.0, "score_count": 194535} {"score": 8.77, "timestamp": 1563037425.0, "score_count": 194535} {"score": 8.77, "timestamp": 1562283758.0, "score_count": 194022} {"score": 8.77, "timestamp": 1562142680.0, "score_count": 194022} {"score": 8.77, "timestamp": 1561829515.0, "score_count": 193577} {"score": 8.77, "timestamp": 1561523384.0, "score_count": 193577} {"score": 8.77, "timestamp": 1561420099.0, "score_count": 193577} {"score": 8.77, "timestamp": 1561232034.0, "score_count": 193073} {"score": 8.77, "timestamp": 1561161585.0, "score_count": 193073} {"score": 8.77, "timestamp": 1560287082.0, "score_count": 192427} {"score": 8.77, "timestamp": 1559940737.0, "score_count": 191979} {"score": 8.77, "timestamp": 1559765914.0, "score_count": 191979} {"score": 8.77, "timestamp": 1559178409.0, "score_count": 191435} {"score": 8.77, "timestamp": 1558742261.0, "score_count": 191191} {"score": 8.77, "timestamp": 1558387915.0, "score_count": 190726} {"score": 8.77, "timestamp": 1557340803.0, "score_count": 189701} {"score": 8.77, "timestamp": 1556236280.0, "score_count": 189033} {"score": 8.77, "timestamp": 1555868598.0, "score_count": 188780} {"score": 8.77, "timestamp": 1555509387.0, "score_count": 188258} {"score": 8.77, "timestamp": 1555378400.0, "score_count": 188258} {"score": 8.77, "timestamp": 1555037372.0, "score_count": 187750} {"score": 8.77, "timestamp": 1554855549.0, "score_count": 187750} {"score": 8.77, "timestamp": 1554822725.0, "score_count": 187750} {"score": 8.77, "timestamp": 1554754610.0, "score_count": 187446} {"score": 8.77, "timestamp": 1553318954.0, "score_count": 186026} {"score": 8.77, "timestamp": 1553317222.0, "score_count": 186026} {"score": 8.77, "timestamp": 1553316531.0, "score_count": 186026} {"score": 8.77, "timestamp": 1553229003.0, "score_count": 186026} {"score": 8.77, "timestamp": 1553225478.0, "score_count": 186026} {"score": 8.77, "timestamp": 1553210010.0, "score_count": 186026} {"score": 8.77, "timestamp": 1553201709.0, "score_count": 186026} {"score": 8.77, "timestamp": 1552866653.0, "score_count": 185735} {"score": 8.77, "timestamp": 1550008065.0, "score_count": 183047} {"score": 8.77, "timestamp": 1546549988.0, "score_count": 179242} {"score": 8.77, "timestamp": 1545775571.0, "score_count": 178116} {"score": 8.77, "timestamp": 1545704514.0, "score_count": 178116} {"score": 8.77, "timestamp": 1543462835.0, "score_count": 176247} {"score": 8.77, "timestamp": 1522201069.0, "score_count": 157166} {"score": 8.79, "timestamp": 1489578343.0, "score_count": 119134} {"score": 8.79, "timestamp": 1485886468.0, "score_count": 115617} {"score": 8.79, "timestamp": 1485539980.0, "score_count": 115266} {"score": 8.79, "timestamp": 1485539784.0, "score_count": 115266} {"score": 8.8, "timestamp": 1484583605.0, "score_count": 114113} {"score": 8.81, "timestamp": 1478629973.0, "score_count": 107729} {"score": 8.81, "timestamp": 1471567396.0, "score_count": 100559} {"score": 8.81, "timestamp": 1470960508.0, "score_count": 99936} {"score": 8.81, "timestamp": 1467974015.0, "score_count": 96580} {"score": 8.81, "timestamp": 1466359109.0, "score_count": 94806} {"score": 8.81, "timestamp": 1466060279.0, "score_count": 94468} {"score": 8.81, "timestamp": 1465451649.0, "score_count": 93888} {"score": 8.82, "timestamp": 1464870137.0, "score_count": 93280} {"score": 8.82, "timestamp": 1464839955.0, "score_count": 93252} {"score": 8.82, "timestamp": 1463155667.0, "score_count": 91745} {"score": 8.82, "timestamp": 1463154647.0, "score_count": 91745} {"score": 8.82, "timestamp": 1462414195.0, "score_count": 91131} {"score": 8.82, "timestamp": 1461287343.0, "score_count": 89997} {"score": 8.82, "timestamp": 1461252505.0, "score_count": 89954} {"score": 8.82, "timestamp": 1460696681.0, "score_count": 89402} {"score": 8.82, "timestamp": 1460651847.0, "score_count": 89345} {"score": 8.82, "timestamp": 1460532167.0, "score_count": 89226} {"score": 8.82, "timestamp": 1459926923.0, "score_count": 88517} {"score": 8.82, "timestamp": 1459760727.0, "score_count": 88309} {"score": 8.82, "timestamp": 1459589734.0, "score_count": 88078} {"score": 8.82, "timestamp": 1459320202.0, "score_count": 87752} {"score": 8.82, "timestamp": 1458709794.0, "score_count": 86968} {"score": 8.82, "timestamp": 1458297791.0, "score_count": 86542} {"score": 8.82, "timestamp": 1458149734.0, "score_count": 86390} {"score": 8.82, "timestamp": 1458122072.0, "score_count": 86371} {"score": 8.82, "timestamp": 1458102873.0, "score_count": 86353} {"score": 8.82, "timestamp": 1458052903.0, "score_count": 86303} {"score": 8.82, "timestamp": 1457423978.0, "score_count": 85646} {"score": 8.82, "timestamp": 1456802744.0, "score_count": 85076} {"score": 8.82, "timestamp": 1456195905.0, "score_count": 84474} {"score": 8.82, "timestamp": 1455583524.0, "score_count": 83773} {"score": 8.83, "timestamp": 1454978126.0, "score_count": 83117} {"score": 8.83, "timestamp": 1454369789.0, "score_count": 82466} {"score": 8.83, "timestamp": 1454127108.0, "score_count": 82178} {"score": 8.83, "timestamp": 1453764738.0, "score_count": 81779} {"score": 8.83, "timestamp": 1453586110.0, "score_count": 81544} {"score": 8.83, "timestamp": 1453523683.0, "score_count": 81471}
[ 4895, 26675, 1298, 807, 13, 4304, 11, 366, 16514, 27823, 1298, 1315, 3324, 3324, 405, 3980, 13, 15, 11, 366, 26675, 62, 9127, 1298, 1160, 1795, 4309, 92, 198, 4895, 26675, 1298, 807, 13, 4304, 11, 366, 16514, 27823, 1298, 1315, 38314, 1129, 38073, 13, 15, 11, 366, 26675, 62, 9127, 1298, 1160, 2154, 3270, 92, 198, 4895, 26675, 1298, 807, 13, 4304, 11, 366, 16514, 27823, 1298, 23313, 1983, 2999, 34583, 13, 15, 11, 366, 26675, 62, 9127, 1298, 1160, 2231, 6052, 92, 198, 4895, 26675, 1298, 807, 13, 3324, 11, 366, 16514, 27823, 1298, 23313, 1558, 3134, 41290, 13, 15, 11, 366, 26675, 62, 9127, 1298, 27408, 18897, 92, 198, 4895, 26675, 1298, 807, 13, 3324, 11, 366, 16514, 27823, 1298, 23313, 18741, 830, 18, 13, 15, 11, 366, 26675, 62, 9127, 1298, 580, 18376, 92, 198, 4895, 26675, 1298, 807, 13, 3324, 11, 366, 16514, 27823, 1298, 23313, 1065, 44230, 1828, 13, 15, 11, 366, 26675, 62, 9127, 1298, 580, 18376, 92, 198, 4895, 26675, 1298, 807, 13, 3324, 11, 366, 16514, 27823, 1298, 23313, 940, 2791, 23906, 13, 15, 11, 366, 26675, 62, 9127, 1298, 580, 18376, 92, 198, 4895, 26675, 1298, 807, 13, 3324, 11, 366, 16514, 27823, 1298, 1315, 2154, 5607, 405, 3104, 13, 15, 11, 366, 26675, 62, 9127, 1298, 580, 18376, 92, 198, 4895, 26675, 1298, 807, 13, 3324, 11, 366, 16514, 27823, 1298, 1315, 3388, 2231, 4524, 2078, 13, 15, 11, 366, 26675, 62, 9127, 1298, 939, 1264, 92, 198, 4895, 26675, 1298, 807, 13, 3324, 11, 366, 16514, 27823, 1298, 1315, 3388, 1065, 3312, 1415, 13, 15, 11, 366, 26675, 62, 9127, 1298, 939, 1264, 92, 198, 4895, 26675, 1298, 807, 13, 3324, 11, 366, 16514, 27823, 1298, 1315, 3134, 2548, 1828, 4846, 13, 15, 11, 366, 26675, 62, 9127, 1298, 11104, 1959, 92, 198, 4895, 26675, 1298, 807, 13, 3324, 11, 366, 16514, 27823, 1298, 1315, 2791, 3388, 2780, 3980, 13, 15, 11, 366, 26675, 62, 9127, 1298, 2757, 29334, 92, 198, 4895, 26675, 1298, 807, 13, 3324, 11, 366, 16514, 27823, 1298, 1315, 2791, 5237, 1433, 2481, 13, 15, 11, 366, 26675, 62, 9127, 1298, 29903, 33781, 92, 198, 4895, 26675, 1298, 807, 13, 3324, 11, 366, 16514, 27823, 1298, 1315, 2996, 3134, 1954, 1314, 13, 15, 11, 366, 26675, 62, 9127, 1298, 29903, 33781, 92, 198, 4895, 26675, 1298, 807, 13, 3324, 11, 366, 16514, 27823, 1298, 1315, 2996, 1120, 1270, 4846, 13, 15, 11, 366, 26675, 62, 9127, 1298, 15904, 4089, 92, 198, 4895, 26675, 1298, 807, 13, 3324, 11, 366, 16514, 27823, 1298, 23871, 1433, 1959, 28978, 13, 15, 11, 366, 26675, 62, 9127, 1298, 30704, 3324, 92, 198, 4895, 26675, 1298, 807, 13, 3324, 11, 366, 16514, 27823, 1298, 1315, 1828, 1264, 48290, 13, 15, 11, 366, 26675, 62, 9127, 1298, 23313, 23055, 92, 198, 4895, 26675, 1298, 807, 13, 6469, 11, 366, 16514, 27823, 1298, 22986, 25272, 1270, 4869, 13, 15, 11, 366, 26675, 62, 9127, 1298, 4101, 37680, 92, 198, 4895, 26675, 1298, 807, 13, 6469, 11, 366, 16514, 27823, 1298, 22986, 1558, 3865, 22416, 13, 15, 11, 366, 26675, 62, 9127, 1298, 4101, 31654, 92, 198, 4895, 26675, 1298, 807, 13, 6469, 11, 366, 16514, 27823, 1298, 22986, 21940, 2996, 2078, 13, 15, 11, 366, 26675, 62, 9127, 1298, 4101, 30695, 92, 198, 4895, 26675, 1298, 807, 13, 6469, 11, 366, 16514, 27823, 1298, 1478, 1899, 43240, 39111, 13, 15, 11, 366, 26675, 62, 9127, 1298, 9919, 33781, 92, 198, 4895, 26675, 1298, 807, 13, 6469, 11, 366, 16514, 27823, 1298, 1478, 3270, 1485, 940, 3134, 13, 15, 11, 366, 26675, 62, 9127, 1298, 10083, 35890, 92, 198, 4895, 26675, 1298, 807, 13, 6469, 11, 366, 16514, 27823, 1298, 20299, 1795, 37601, 3553, 13, 15, 11, 366, 26675, 62, 9127, 1298, 807, 5066, 1415, 92, 198, 4895, 26675, 1298, 807, 13, 5999, 11, 366, 16514, 27823, 1298, 1478, 2920, 3270, 2598, 1270, 13, 15, 11, 366, 26675, 62, 9127, 1298, 8684, 34287, 92, 198, 4895, 26675, 1298, 807, 13, 5999, 11, 366, 16514, 27823, 1298, 1478, 2920, 4051, 22666, 13, 15, 11, 366, 26675, 62, 9127, 1298, 8684, 31980, 92, 198, 4895, 26675, 1298, 807, 13, 5999, 11, 366, 16514, 27823, 1298, 20224, 1558, 4524, 23055, 13, 15, 11, 366, 26675, 62, 9127, 1298, 8644, 25948, 92, 198, 4895, 26675, 1298, 807, 13, 3324, 11, 366, 16514, 27823, 1298, 1315, 2996, 1415, 2670, 5237, 13, 15, 11, 366, 26675, 62, 9127, 1298, 15904, 4089, 92, 198, 4895, 26675, 1298, 807, 13, 3324, 11, 366, 16514, 27823, 1298, 1315, 2996, 1415, 1558, 3270, 13, 15, 11, 366, 26675, 62, 9127, 1298, 15904, 4089, 92, 198, 4895, 26675, 1298, 807, 13, 3324, 11, 366, 16514, 27823, 1298, 1315, 2996, 1485, 2414, 2996, 13, 15, 11, 366, 26675, 62, 9127, 1298, 15904, 4089, 92, 198, 4895, 26675, 1298, 807, 13, 3324, 11, 366, 16514, 27823, 1298, 1315, 33300, 2670, 2931, 19, 13, 15, 11, 366, 26675, 62, 9127, 1298, 15904, 4089, 92, 198, 4895, 26675, 1298, 807, 13, 3324, 11, 366, 16514, 27823, 1298, 23871, 2231, 27728, 3901, 13, 15, 11, 366, 26675, 62, 9127, 1298, 19342, 1507, 92, 198, 4895, 26675, 1298, 807, 13, 3324, 11, 366, 16514, 27823, 1298, 1315, 2414, 43134, 21273, 13, 15, 11, 366, 26675, 62, 9127, 1298, 19342, 1507, 92, 198, 4895, 26675, 1298, 807, 13, 3324, 11, 366, 16514, 27823, 1298, 1315, 2414, 15259, 31495, 13, 15, 11, 366, 26675, 62, 9127, 1298, 24648, 3865, 92, 198, 4895, 26675, 1298, 807, 13, 3324, 11, 366, 16514, 27823, 1298, 23871, 26200, 2075, 3134, 13, 15, 11, 366, 26675, 62, 9127, 1298, 24648, 3865, 92, 198, 4895, 26675, 1298, 807, 13, 3324, 11, 366, 16514, 27823, 1298, 1315, 2414, 25816, 23539, 13, 15, 11, 366, 26675, 62, 9127, 1298, 24648, 3865, 92, 198, 4895, 26675, 1298, 807, 13, 3324, 11, 366, 16514, 27823, 1298, 23871, 2670, 28592, 1959, 13, 15, 11, 366, 26675, 62, 9127, 1298, 24648, 3865, 92, 198, 4895, 26675, 1298, 807, 13, 3324, 11, 366, 16514, 27823, 1298, 23871, 2670, 1558, 49287, 13, 15, 11, 366, 26675, 62, 9127, 1298, 24648, 3865, 92, 198, 4895, 26675, 1298, 807, 13, 3324, 11, 366, 16514, 27823, 1298, 23871, 2682, 3865, 28933, 13, 15, 11, 366, 26675, 62, 9127, 1298, 15761, 2327, 92, 198, 4895, 26675, 1298, 807, 13, 3324, 11, 366, 16514, 27823, 1298, 23871, 2682, 5705, 44550, 13, 15, 11, 366, 26675, 62, 9127, 1298, 15761, 2327, 92, 198, 4895, 26675, 1298, 807, 13, 3324, 11, 366, 16514, 27823, 1298, 1315, 5066, 1954, 940, 6052, 13, 15, 11, 366, 26675, 62, 9127, 1298, 15761, 2327, 92, 198, 4895, 26675, 1298, 807, 13, 3324, 11, 366, 16514, 27823, 1298, 23871, 1270, 3510, 24309, 13, 15, 11, 366, 26675, 62, 9127, 1298, 15761, 2327, 92, 198, 4895, 26675, 1298, 807, 13, 3324, 11, 366, 16514, 27823, 1298, 23871, 1270, 31020, 1495, 13, 15, 11, 366, 26675, 62, 9127, 1298, 15761, 2327, 92, 198, 4895, 26675, 1298, 807, 13, 3324, 11, 366, 16514, 27823, 1298, 23871, 1828, 5999, 38569, 13, 15, 11, 366, 26675, 62, 9127, 1298, 16236, 1828, 92, 198, 4895, 26675, 1298, 807, 13, 3324, 11, 366, 16514, 27823, 1298, 1315, 5237, 1415, 2075, 1795, 13, 15, 11, 366, 26675, 62, 9127, 1298, 16236, 1828, 92, 198, 4895, 26675, 1298, 807, 13, 3324, 11, 366, 16514, 27823, 1298, 23871, 1507, 25710, 1314, 13, 15, 11, 366, 26675, 62, 9127, 1298, 30704, 3324, 92, 198, 4895, 26675, 1298, 807, 13, 3324, 11, 366, 16514, 27823, 1298, 23871, 1314, 1954, 22842, 13, 15, 11, 366, 26675, 62, 9127, 1298, 30704, 3324, 92, 198, 4895, 26675, 1298, 807, 13, 3324, 11, 366, 16514, 27823, 1298, 23871, 1415, 2167, 2079, 13, 15, 11, 366, 26675, 62, 9127, 1298, 30704, 3324, 92, 198, 4895, 26675, 1298, 807, 13, 3324, 11, 366, 16514, 27823, 1298, 23871, 10163, 1238, 2682, 13, 15, 11, 366, 26675, 62, 9127, 1298, 15533, 4790, 92, 198, 4895, 26675, 1298, 807, 13, 3324, 11, 366, 16514, 27823, 1298, 23871, 18298, 1314, 5332, 13, 15, 11, 366, 26675, 62, 9127, 1298, 15533, 4790, 92, 198, 4895, 26675, 1298, 807, 13, 3324, 11, 366, 16514, 27823, 1298, 1315, 1899, 2078, 2154, 6469, 13, 15, 11, 366, 26675, 62, 9127, 1298, 37547, 1983, 92, 198, 4895, 26675, 1298, 807, 13, 3324, 11, 366, 16514, 27823, 1298, 20708, 2079, 30120, 2718, 13, 15, 11, 366, 26675, 62, 9127, 1298, 30992, 3720, 92, 198, 4895, 26675, 1298, 807, 13, 3324, 11, 366, 16514, 27823, 1298, 1315, 3270, 29143, 24, 1415, 13, 15, 11, 366, 26675, 62, 9127, 1298, 30992, 3720, 92, 198, 4895, 26675, 1298, 807, 13, 3324, 11, 366, 16514, 27823, 1298, 1315, 3270, 23188, 29416, 13, 15, 11, 366, 26675, 62, 9127, 1298, 26833, 2327, 92, 198, 4895, 26675, 1298, 807, 13, 3324, 11, 366, 16514, 27823, 1298, 1315, 3365, 4524, 1828, 5333, 13, 15, 11, 366, 26675, 62, 9127, 1298, 678, 16315, 16, 92, 198, 4895, 26675, 1298, 807, 13, 3324, 11, 366, 16514, 27823, 1298, 1315, 3365, 2548, 3720, 1314, 13, 15, 11, 366, 26675, 62, 9127, 1298, 41435, 2075, 92, 198, 4895, 26675, 1298, 807, 13, 3324, 11, 366, 16514, 27823, 1298, 1315, 3553, 23601, 43564, 13, 15, 11, 366, 26675, 62, 9127, 1298, 49429, 486, 92, 198, 4895, 26675, 1298, 807, 13, 3324, 11, 366, 16514, 27823, 1298, 1315, 3980, 1954, 5237, 1795, 13, 15, 11, 366, 26675, 62, 9127, 1298, 31982, 2091, 92, 198, 4895, 26675, 1298, 807, 13, 3324, 11, 366, 16514, 27823, 1298, 1315, 40486, 3104, 41292, 13, 15, 11, 366, 26675, 62, 9127, 1298, 1248, 5774, 1795, 92, 198, 4895, 26675, 1298, 807, 13, 3324, 11, 366, 16514, 27823, 1298, 1315, 2816, 29022, 32220, 13, 15, 11, 366, 26675, 62, 9127, 1298, 27778, 25600, 92, 198, 4895, 26675, 1298, 807, 13, 3324, 11, 366, 16514, 27823, 1298, 1315, 2816, 2718, 5705, 405, 13, 15, 11, 366, 26675, 62, 9127, 1298, 27778, 25600, 92, 198, 4895, 26675, 1298, 807, 13, 3324, 11, 366, 16514, 27823, 1298, 20708, 1120, 2718, 36720, 13, 15, 11, 366, 26675, 62, 9127, 1298, 1248, 3324, 1120, 92, 198, 4895, 26675, 1298, 807, 13, 3324, 11, 366, 16514, 27823, 1298, 20708, 2780, 31046, 2920, 13, 15, 11, 366, 26675, 62, 9127, 1298, 1248, 3324, 1120, 92, 198, 4895, 26675, 1298, 807, 13, 3324, 11, 366, 16514, 27823, 1298, 20708, 2780, 24403, 1495, 13, 15, 11, 366, 26675, 62, 9127, 1298, 1248, 3324, 1120, 92, 198, 4895, 26675, 1298, 807, 13, 3324, 11, 366, 16514, 27823, 1298, 1315, 4051, 2425, 3510, 940, 13, 15, 11, 366, 26675, 62, 9127, 1298, 27649, 27260, 92, 198, 4895, 26675, 1298, 807, 13, 3324, 11, 366, 16514, 27823, 1298, 20708, 2091, 1507, 48372, 13, 15, 11, 366, 26675, 62, 9127, 1298, 37637, 2075, 92, 198, 4895, 26675, 1298, 807, 13, 3324, 11, 366, 16514, 27823, 1298, 20708, 2091, 1558, 23148, 13, 15, 11, 366, 26675, 62, 9127, 1298, 37637, 2075, 92, 198, 4895, 26675, 1298, 807, 13, 3324, 11, 366, 16514, 27823, 1298, 20708, 2091, 20986, 3132, 13, 15, 11, 366, 26675, 62, 9127, 1298, 37637, 2075, 92, 198, 4895, 26675, 1298, 807, 13, 3324, 11, 366, 16514, 27823, 1298, 1315, 4310, 23539, 11245, 13, 15, 11, 366, 26675, 62, 9127, 1298, 37637, 2075, 92, 198, 4895, 26675, 1298, 807, 13, 3324, 11, 366, 16514, 27823, 1298, 20708, 2624, 1495, 29059, 13, 15, 11, 366, 26675, 62, 9127, 1298, 37637, 2075, 92, 198, 4895, 26675, 1298, 807, 13, 3324, 11, 366, 16514, 27823, 1298, 1315, 4310, 2481, 37187, 13, 15, 11, 366, 26675, 62, 9127, 1298, 37637, 2075, 92, 198, 4895, 26675, 1298, 807, 13, 3324, 11, 366, 16514, 27823, 1298, 1315, 4310, 1264, 31495, 13, 15, 11, 366, 26675, 62, 9127, 1298, 37637, 2075, 92, 198, 4895, 26675, 1298, 807, 13, 3324, 11, 366, 16514, 27823, 1298, 20708, 2078, 2791, 46435, 13, 15, 11, 366, 26675, 62, 9127, 1298, 1248, 3553, 2327, 92, 198, 4895, 26675, 1298, 807, 13, 3324, 11, 366, 16514, 27823, 1298, 20708, 830, 1795, 2996, 13, 15, 11, 366, 26675, 62, 9127, 1298, 45440, 2857, 92, 198, 4895, 26675, 1298, 807, 13, 3324, 11, 366, 16514, 27823, 1298, 24235, 2996, 28324, 3459, 13, 15, 11, 366, 26675, 62, 9127, 1298, 27228, 27877, 92, 198, 4895, 26675, 1298, 807, 13, 3324, 11, 366, 16514, 27823, 1298, 1315, 33032, 2425, 42875, 13, 15, 11, 366, 26675, 62, 9127, 1298, 27368, 18298, 92, 198, 4895, 26675, 1298, 807, 13, 3324, 11, 366, 16514, 27823, 1298, 1315, 2231, 2154, 2231, 1415, 13, 15, 11, 366, 26675, 62, 9127, 1298, 27368, 18298, 92, 198, 4895, 26675, 1298, 807, 13, 3324, 11, 366, 16514, 27823, 1298, 24235, 30557, 2078, 2327, 13, 15, 11, 366, 26675, 62, 9127, 1298, 26937, 23753, 92, 198, 4895, 26675, 1298, 807, 13, 3324, 11, 366, 16514, 27823, 1298, 1315, 1828, 1264, 3312, 24, 13, 15, 11, 366, 26675, 62, 9127, 1298, 23313, 23055, 92, 198, 4895, 26675, 1298, 807, 13, 3720, 11, 366, 16514, 27823, 1298, 1478, 4531, 38907, 32118, 13, 15, 11, 366, 26675, 62, 9127, 1298, 15136, 19880, 92, 198, 4895, 26675, 1298, 807, 13, 3720, 11, 366, 16514, 27823, 1298, 22613, 39118, 2414, 3104, 13, 15, 11, 366, 26675, 62, 9127, 1298, 12279, 47941, 92, 198, 4895, 26675, 1298, 807, 13, 3720, 11, 366, 16514, 27823, 1298, 22613, 2816, 28771, 1795, 13, 15, 11, 366, 26675, 62, 9127, 1298, 12279, 25540, 92, 198, 4895, 26675, 1298, 807, 13, 3720, 11, 366, 16514, 27823, 1298, 22613, 2816, 2670, 37688, 13, 15, 11, 366, 26675, 62, 9127, 1298, 12279, 25540, 92, 198, 4895, 26675, 1298, 807, 13, 23, 11, 366, 16514, 27823, 1298, 22613, 2231, 5999, 32417, 13, 15, 11, 366, 26675, 62, 9127, 1298, 17342, 16616, 92, 198, 4895, 26675, 1298, 807, 13, 6659, 11, 366, 16514, 27823, 1298, 1478, 46302, 22579, 4790, 13, 15, 11, 366, 26675, 62, 9127, 1298, 838, 3324, 1959, 92, 198, 4895, 26675, 1298, 807, 13, 6659, 11, 366, 16514, 27823, 1298, 22909, 1314, 3134, 34107, 13, 15, 11, 366, 26675, 62, 9127, 1298, 1802, 38605, 92, 198, 4895, 26675, 1298, 807, 13, 6659, 11, 366, 16514, 27823, 1298, 1478, 31495, 1899, 33042, 13, 15, 11, 366, 26675, 62, 9127, 1298, 36006, 2623, 92, 198, 4895, 26675, 1298, 807, 13, 6659, 11, 366, 16514, 27823, 1298, 1478, 37601, 4524, 25150, 13, 15, 11, 366, 26675, 62, 9127, 1298, 860, 2996, 1795, 92, 198, 4895, 26675, 1298, 807, 13, 6659, 11, 366, 16514, 27823, 1298, 1478, 2791, 30743, 14454, 13, 15, 11, 366, 26675, 62, 9127, 1298, 10048, 37988, 92, 198, 4895, 26675, 1298, 807, 13, 6659, 11, 366, 16514, 27823, 1298, 22986, 1899, 1899, 26050, 13, 15, 11, 366, 26675, 62, 9127, 1298, 860, 2598, 3104, 92, 198, 4895, 26675, 1298, 807, 13, 6659, 11, 366, 16514, 27823, 1298, 1478, 2996, 2231, 1433, 2920, 13, 15, 11, 366, 26675, 62, 9127, 1298, 860, 2548, 3459, 92, 198, 4895, 26675, 1298, 807, 13, 6469, 11, 366, 16514, 27823, 1298, 1478, 2414, 5774, 486, 2718, 13, 15, 11, 366, 26675, 62, 9127, 1298, 860, 2624, 1795, 92, 198, 4895, 26675, 1298, 807, 13, 6469, 11, 366, 16514, 27823, 1298, 1478, 2414, 5999, 2079, 2816, 13, 15, 11, 366, 26675, 62, 9127, 1298, 10261, 22800, 92, 198, 4895, 26675, 1298, 807, 13, 6469, 11, 366, 16514, 27823, 1298, 1478, 5066, 18742, 28933, 13, 15, 11, 366, 26675, 62, 9127, 1298, 860, 1558, 2231, 92, 198, 4895, 26675, 1298, 807, 13, 6469, 11, 366, 16514, 27823, 1298, 1478, 5066, 21526, 33981, 13, 15, 11, 366, 26675, 62, 9127, 1298, 860, 1558, 2231, 92, 198, 4895, 26675, 1298, 807, 13, 6469, 11, 366, 16514, 27823, 1298, 22986, 1731, 1415, 22186, 13, 15, 11, 366, 26675, 62, 9127, 1298, 16679, 3132, 92, 198, 4895, 26675, 1298, 807, 13, 6469, 11, 366, 16514, 27823, 1298, 22986, 1065, 5774, 32118, 13, 15, 11, 366, 26675, 62, 9127, 1298, 807, 2079, 5607, 92, 198, 4895, 26675, 1298, 807, 13, 6469, 11, 366, 16514, 27823, 1298, 22986, 1065, 4309, 31654, 13, 15, 11, 366, 26675, 62, 9127, 1298, 807, 2079, 4051, 92, 198, 4895, 26675, 1298, 807, 13, 6469, 11, 366, 16514, 27823, 1298, 1478, 1899, 3388, 2791, 6659, 13, 15, 11, 366, 26675, 62, 9127, 1298, 9919, 32531, 92, 198, 4895, 26675, 1298, 807, 13, 6469, 11, 366, 16514, 27823, 1298, 1478, 1899, 2996, 1507, 2857, 13, 15, 11, 366, 26675, 62, 9127, 1298, 807, 6052, 2231, 92, 198, 4895, 26675, 1298, 807, 13, 6469, 11, 366, 16514, 27823, 1298, 1478, 32417, 2624, 21940, 13, 15, 11, 366, 26675, 62, 9127, 1298, 9919, 24909, 92, 198, 4895, 26675, 1298, 807, 13, 6469, 11, 366, 16514, 27823, 1298, 20299, 2079, 26276, 1954, 13, 15, 11, 366, 26675, 62, 9127, 1298, 807, 5332, 1558, 92, 198, 4895, 26675, 1298, 807, 13, 6469, 11, 366, 16514, 27823, 1298, 1478, 43239, 31980, 1983, 13, 15, 11, 366, 26675, 62, 9127, 1298, 9193, 26895, 92, 198, 4895, 26675, 1298, 807, 13, 6469, 11, 366, 16514, 27823, 1298, 1478, 3270, 3365, 5607, 2682, 13, 15, 11, 366, 26675, 62, 9127, 1298, 807, 1795, 3695, 92, 198, 4895, 26675, 1298, 807, 13, 6469, 11, 366, 16514, 27823, 1298, 1478, 3270, 19504, 19004, 13, 15, 11, 366, 26675, 62, 9127, 1298, 10083, 43665, 92, 198, 4895, 26675, 1298, 807, 13, 6469, 11, 366, 16514, 27823, 1298, 1478, 3365, 31495, 50242, 13, 15, 11, 366, 26675, 62, 9127, 1298, 807, 3388, 3104, 92, 198, 4895, 26675, 1298, 807, 13, 6469, 11, 366, 16514, 27823, 1298, 1478, 3365, 1959, 3324, 6420, 13, 15, 11, 366, 26675, 62, 9127, 1298, 807, 2996, 3682, 92, 198, 4895, 26675, 1298, 807, 13, 6469, 11, 366, 16514, 27823, 1298, 1478, 3365, 1415, 5607, 2682, 13, 15, 11, 366, 26675, 62, 9127, 1298, 9849, 25964, 92, 198, 4895, 26675, 1298, 807, 13, 6469, 11, 366, 16514, 27823, 1298, 1478, 3365, 1065, 1238, 4761, 13, 15, 11, 366, 26675, 62, 9127, 1298, 9849, 38056, 92, 198, 4895, 26675, 1298, 807, 13, 6469, 11, 366, 16514, 27823, 1298, 1478, 3365, 940, 2078, 4790, 13, 15, 11, 366, 26675, 62, 9127, 1298, 9849, 33319, 92, 198, 4895, 26675, 1298, 807, 13, 6469, 11, 366, 16514, 27823, 1298, 20299, 28256, 1959, 3070, 13, 15, 11, 366, 26675, 62, 9127, 1298, 9849, 22572, 92, 198, 4895, 26675, 1298, 807, 13, 6469, 11, 366, 16514, 27823, 1298, 1478, 46900, 23516, 3695, 13, 15, 11, 366, 26675, 62, 9127, 1298, 7600, 27720, 92, 198, 4895, 26675, 1298, 807, 13, 6469, 11, 366, 16514, 27823, 1298, 1478, 3980, 1795, 1983, 2598, 13, 15, 11, 366, 26675, 62, 9127, 1298, 30607, 4304, 92, 198, 4895, 26675, 1298, 807, 13, 6469, 11, 366, 16514, 27823, 1298, 1478, 3980, 45403, 2713, 13, 15, 11, 366, 26675, 62, 9127, 1298, 807, 2598, 4524, 92, 198, 4895, 26675, 1298, 807, 13, 6469, 11, 366, 16514, 27823, 1298, 1478, 2816, 3365, 2327, 1731, 13, 15, 11, 366, 26675, 62, 9127, 1298, 807, 2718, 4790, 92, 198, 4895, 26675, 1298, 807, 13, 5999, 11, 366, 16514, 27823, 1298, 20299, 2920, 3695, 19420, 13, 15, 11, 366, 26675, 62, 9127, 1298, 9698, 17657, 92, 198, 4895, 26675, 1298, 807, 13, 5999, 11, 366, 16514, 27823, 1298, 1478, 4051, 30803, 40401, 13, 15, 11, 366, 26675, 62, 9127, 1298, 807, 1731, 2791, 92, 198, 4895, 26675, 1298, 807, 13, 5999, 11, 366, 16514, 27823, 1298, 1478, 4051, 16799, 15711, 13, 15, 11, 366, 26675, 62, 9127, 1298, 9415, 23188, 92, 198, 4895, 26675, 1298, 807, 13, 5999, 11, 366, 16514, 27823, 1298, 20299, 2718, 33981, 2548, 13, 15, 11, 366, 26675, 62, 9127, 1298, 807, 1558, 3720, 92, 198, 4895, 26675, 1298, 807, 13, 5999, 11, 366, 16514, 27823, 1298, 20299, 2327, 4521, 11442, 13, 15, 11, 366, 26675, 62, 9127, 1298, 807, 1314, 2598, 92, 198, 4895, 26675, 1298, 807, 13, 5999, 11, 366, 16514, 27823, 1298, 20299, 2327, 1954, 47521, 13, 15, 11, 366, 26675, 62, 9127, 1298, 807, 1415, 4869, 92, 198 ]
2.380593
3,308
<reponame>singularitti/Thermo.jl using Thermo using Test @testset "Thermo.jl" begin # Write your tests here. end
[ 27, 7856, 261, 480, 29, 12215, 934, 715, 72, 14, 35048, 5908, 13, 20362, 198, 3500, 12634, 5908, 198, 3500, 6208, 198, 198, 31, 9288, 2617, 366, 35048, 5908, 13, 20362, 1, 2221, 198, 220, 220, 220, 1303, 19430, 534, 5254, 994, 13, 198, 437, 198 ]
2.565217
46
# SD_AOU Functions for Keysight M32XXA/M33XXA AWGs export SD_AOU_initialize, SD_AOU_clockGetFrequency, SD_AOU_clockGetSyncFrequency, SD_AOU_clockSetFrequency, SD_AOU_clockResetPhase, SD_AOU_channelWaveShape, SD_AOU_channelFrequency, SD_AOU_channelPhase, SD_AOU_channelPhaseReset, SD_AOU_channelPhaseResetMultiple, SD_AOU_channelAmplitude, SD_AOU_channelOffset, SD_AOU_modulationAngleConfig, SD_AOU_modulationAmplitudeConfig, SD_AOU_modulationIQconfig, SD_AOU_clockIOconfig, SD_AOU_triggerIOconfigV5, SD_AOU_triggerIOconfig, SD_AOU_triggerIOwrite, SD_AOU_triggerIOread, SD_AOU_waveformGetAddress, SD_AOU_waveformGetMemorySize, SD_AOU_waveformMemoryGetWriteAddress, SD_AOU_waveformMemorySetWriteAddress, SD_AOU_waveformReLoadArrayInt16, SD_AOU_waveformReLoad, SD_AOU_waveformLoadArrayInt16, SD_AOU_waveformLoad, SD_AOU_waveformFlush, SD_AOU_AWGqueueWaveform, SD_AOU_AWGstreamingConfig, SD_AOU_AWGstreamingRelease, SD_AOU_AWGidleValue, SD_AOU_AWGidleValueRead, SD_AOU_waveformLoadP2Pstart, SD_AOU_waveformLoadP2Pclose, SD_AOU_waveformLoadP2PgetPhysicalAddress, SD_AOU_waveformLoadP2PwriteDataTest, SD_AOU_AWGstart, SD_AOU_AWGstop, SD_AOU_AWGresume, SD_AOU_AWGpause, SD_AOU_AWGtrigger, SD_AOU_AWGjumpNextWaveform, SD_AOU_AWGjumpNextWaveformMultiple, SD_AOU_AWGisRunning, SD_AOU_AWGnWFplaying, SD_AOU_AWGstartMultiple, SD_AOU_AWGstopMultiple, SD_AOU_AWGresumeMultiple, SD_AOU_AWGpauseMultiple, SD_AOU_AWGtriggerMultiple, SD_AOU_AWGflush, SD_AOU_AWGfromFile, SD_AOU_AWGfromArray, SD_AOU_AWGtriggerExternalConfig, SD_AOU_AWGqueueConfig, SD_AOU_AWGqueueConfigRead, SD_AOU_AWGqueueMarkerConfig, SD_AOU_AWGqueueSyncMode ## int SD_AOU_initialize(int moduleID); SD_AOU_initialize(moduleID::Integer) = ccall((:SD_AOU_initialize, klib), Cint, (Cint,), moduleID) ## double SD_AOU_clockGetFrequency(int moduleID); """ This function returns the real hardware clock frequency. It may differ from the frequency set with the function clockSetFrequency, due to the hardware frequency resolution. """ SD_AOU_clockGetFrequency(moduleID::Integer) = ccall((:SD_AOU_clockGetFrequency, klib), Cdouble, (Cint,), moduleID) ## double SD_AOU_clockGetSyncFrequency(int moduleID); """ This function returns the frequency of Clock System """ SD_AOU_clockGetSyncFrequency(moduleID::Integer) = ccall((:SD_AOU_clockGetSyncFrequency, klib), Cint, (Cint,), moduleID) ## double SD_AOU_clockSetFrequency(int moduleID, double frequency, int mode); """ This function sets the module clock frequency. ### CLK Set Frequency Mode - Low Jitter Mode : The clock system is set to achieve the lowest jitter, sacrificing tuning speed --> CLK_LOW_JITTER = 0 - Fast Tuning Mode : The clock system is set to achieve the lowest tuning time, sacrificing jitter performance --> CLK_FAST_TUNE = 1 """ SD_AOU_clockSetFrequency(moduleID::Integer, frequency::Real, mode::Integer) = ccall((:SD_AOU_clockSetFrequency, klib), Cdouble, (Cint, Cdouble, Cint), moduleID, frequency, mode) ## int SD_AOU_clockResetPhase(int moduleID, int triggerBehavior, int PXItrigger, double skew); SD_AOU_clockResetPhase(moduleID::Integer, triggerBehavior::Integer, PXItrigger::Integer, skew::Real) = ccall((:SD_AOU_clockResetPhase, klib), Cint, (Cint, Cint, Cint, Cdouble), moduleID, triggerBehavior, PXItrigger, skew) ## int SD_AOU_channelWaveShape(int moduleID, int nChannel, int waveShape); """ This function sets the channel output waveform type. ### Output Signal Selection - HIZ : The output signal is set to HIZ (no output signal is provided, only available for M3202A) AOU_HIZ = -1 - No Signal : The output signal is set to 0. All other channel settings are maintained --> AOU_OFF = 0 (default) - Sinusoidal : Generated by the Function Generator --> AOU_SINUSOIDAL = 1 - Triangular : Generated by the Function Generator --> AOU_TRIANGULAR = 2 - Square : Generated by the Function Generator --> AOU_SQUARE = 4 - DC Voltage : The output DC voltage is set by the channel amplitude setting --> AOU_DC = 5 - Arbitrary Waveform : Generated by the Arbitrary Waveform Generator --> AOU_AWG = 6 - Partner Channel : Only for odd channels. It is the output of the previous channel (to create differential signals, etc.) --> AOU_PARTNER = 8 """ SD_AOU_channelWaveShape(moduleID::Integer, nChannel::Integer, waveShape::Integer) = ccall((:SD_AOU_channelWaveShape, klib), Cint, (Cint, Cint, Cint), moduleID, nChannel, waveShape) ## int SD_AOU_channelFrequency(int moduleID, int nChannel, double frequency); """ This function sets the frequency for the periodic signals generated by the Function Generators. """ SD_AOU_channelFrequency(moduleID::Integer, nChannel::Integer, frequency::Real) = ccall((:SD_AOU_channelFrequency, klib), Cint, (Cint, Cint, Cdouble), moduleID, nChannel, frequency) ## int SD_AOU_channelPhase(int moduleID, int nChannel, double phase); """ This function sets the phase for the periodic signals generated by the Function Generators. """ SD_AOU_channelPhase(moduleID::Integer, nChannel::Integer, phase::Real) = ccall((:SD_AOU_channelPhase, klib), Cint, (Cint, Cint, Cdouble), moduleID, nChannel, phase) ## int SD_AOU_channelPhaseReset(int moduleID, int channel); """ This function resets the accumulated phase of the selected signal. This accumulated phase is the result of the phase continuous operation of the product. """ SD_AOU_channelPhaseReset(moduleID::Integer, nChannel::Integer) = ccall((:SD_AOU_channelPhaseReset, klib), Cint, (Cint, Cint), moduleID, nChannel) ## int SD_AOU_channelPhaseResetMultiple(int moduleID, int channelMask); """ This function resets the accumulated phase of the selected channels simultaneously. This accumulated phase is the result of the phase continuous operation of the product. """ SD_AOU_channelPhaseResetMultiple(moduleID::Integer, channelMask::Integer) = ccall((:SD_AOU_channelPhaseResetMultiple, klib), Cint, (Cint, Cint), moduleID, channelMask) ## int SD_AOU_channelAmplitude(int moduleID, int nChannel, double amplitude); """ This function sets the amplitude of a channel. """ SD_AOU_channelAmplitude(moduleID::Integer, nChannel::Integer, amplitude::Real) = ccall((:SD_AOU_channelAmplitude, klib), Cint, (Cint, Cint, Cdouble), moduleID, nChannel, amplitude) ## int SD_AOU_channelOffset(int moduleID, int nChannel, double offset); """ This function sets the DC offset of a channel. """ SD_AOU_channelOffset(moduleID::Integer, nChannel::Integer, offset::Real) = ccall((:SD_AOU_channelOffset, klib), Cint, (Cint, Cint, Cdouble), moduleID, nChannel, offset) ## int SD_AOU_modulationAngleConfig(int moduleID, int nChannel, int modulationType, double deviationGain); """ This function configures the modulation in frequency/phase for the selected channel. ### Angle Modulation Types - No Modulation : Modulation is disabled --> AOU_MOD_OFF = 0 (default) - Frequency Modulation : The AWG is used to modulate the channel frequency --> AOU_MOD_FM = 1 - Frequency Modulation (32 bits): The AWG is used to modulate the channel frequency. For models with -DM1 dual modulation option --> AOU_MOD_FM_32b = 1 - Phase Modulation : The AWG is used to modulate the channel phase --> AOU_MOD_PM = 2 """ SD_AOU_modulationAngleConfig(moduleID::Integer, nChannel::Integer, modulationType::Integer, deviationGain::Real) = ccall((:SD_AOU_modulationAngleConfig, klib), Cint, (Cint, Cint, Cint, Cdouble), moduleID, nChannel, modulationType, deviationGain) ## int SD_AOU_modulationAmplitudeConfig(int moduleID, int nChannel, int modulationType, double deviationGain); """ This function configures the modulation in amplitude/offset for the selected channel. """ SD_AOU_modulationAmplitudeConfig(moduleID::Integer, nChannel::Integer, modulationType::Integer, deviationGain::Real) = ccall((:SD_AOU_modulationAmplitudeConfig, klib), Cint, (Cint, Cint, Cint, Cdouble), moduleID, nChannel, modulationType, deviationGain) ## int SD_AOU_modulationIQconfig(int moduleID, int nChannel, int enable); """ This function sets the IQ modulation for the selected channel. ### Amplitude Modulation Options - No Modulation : Modulation is disabled. The channel amplitude and offset are only set by the main registers set by the main registers --> AOU_MOD_OFF = 0 (default) - Amplitude Modulation : The modulating signal is used to modulate the channel amplitude --> AOU_MOD_AM = 1 - Offset Modulation : The modulating signal is used to modulate the channel offset --> AOU_MOD_OFFSET = 2 """ SD_AOU_modulationIQconfig(moduleID::Integer, nChannel::Integer, enable::Integer) = ccall((:SD_AOU_modulationIQconfig, klib), Cint, (Cint, Cint, Cint), moduleID, nChannel, enable) # Clock ## int SD_AOU_clockIOconfig(int moduleID, int clockConfig); """ This function configures the operation of the clock output connector. ### CLK Output Configurations - Disable : The CLK connector is disabled --> CLK_CONN_DISABLED = 0 (default) - CLKref Output : A copy of the reference clock is available at the CLK connector --> CLK_REF_OUTPUT = 1 """ SD_AOU_clockIOconfig(moduleID::Integer, clockConfig::Integer) = ccall((:SD_AOU_clockIOconfig, klib), Cint, (Cint, Cint), moduleID, clockIOconfig) # Trigger ## int SD_AOU_triggerIOconfigV5(int moduleID, int direction, int syncMode); SD_AOU_triggerIOconfigV5(moduleID::Integer, direction::Integer, syncMode::Integer) = ccall((:SD_AOU_triggerIOconfigV5, klib), Cint, (Cint, Cint, Cint), moduleID, direction, syncMode) ## int SD_AOU_triggerIOconfig(int moduleID, int direction); """ This function configures the trigger connector/line direction and synchronization/sampling method ### Trigger I/O Options - Trigger Output (readable) : TRG operates as a general purpose digital output signal, which can be written by the user software --> AOU_TRG_OUT = 0 - Trigger Input : TRG operates as a trigger input, or as general purpose digital input signal, which can be read by the user software --> AOU_TRG_IN = 1 ### Trigger Synchronization/Sampling Options - Non-synchronized mode : The trigger is sampled with an internal 100 MHz clock --> SYNC_NONE = 0 - Synchronized mode : (PXI form factor only) The trigger is sampled using CLK10 --> SYNC_CLK_0 = 1 """ SD_AOU_triggerIOconfig(moduleID::Integer, direction::Integer) = ccall((:SD_AOU_triggerIOconfig, klib), Cint, (Cint, Cint), moduleID, direction) ## int SD_AOU_triggerIOwrite(int moduleID, int value, int syncMode); """ This function sets the trigger output. The trigger must be configured as output using function triggerIOconfig. """ SD_AOU_triggerIOwrite(moduleID::Integer, value::Integer, syncMode::Integer) = ccall((:SD_AOU_triggerIOwrite, klib), Cint, (Cint, Cint, Cint), moduleID, value, syncMode) ## int SD_AOU_triggerIOread(int moduleID); """ This function reads the trigger input. """ SD_AOU_triggerIOread(moduleID::Integer) = ccall((:SD_AOU_triggerIOread, klib), Cint, (Cint,), moduleID) ## int SD_AOU_waveformGetAddress(int moduleID, int waveformNumber); SD_AOU_waveformGetAddress(moduleID::Integer, waveformNumber::Integer) = ccall((:SD_AOU_waveformGetAddress, klib), Cint, (Cint, Cint), moduleID, waveformNumber) ## int SD_AOU_waveformGetMemorySize(int moduleID, int waveformNumber); SD_AOU_waveformGetMemorySize(moduleID::Integer, waveformNumber::Integer) = ccall((:SD_AOU_waveformGetMemorySize, klib), Cint, (Cint, Cint), moduleID, waveformNumber) ## int SD_AOU_waveformMemoryGetWriteAddress(int moduleID); SD_AOU_waveformMemoryGetWriteAddress(moduleID::Integer) = ccall((:SD_AOU_waveformMemoryGetWriteAddress, klib), Cint, (Cint,), moduleID) ## int SD_AOU_waveformMemorySetWriteAddress(int moduleID, int writeAddress); SD_AOU_waveformMemorySetWriteAddress(moduleID::Integer, writeAddress::Integer) = ccall((:SD_AOU_waveformMemorySetWriteAddress, klib), Cint, (Cint, Cint), moduleID, writeAddress) ## int SD_AOU_waveformReLoadArrayInt16(int moduleID, int waveformType, int waveformPoints, short *waveformDataRaw, int waveformNumber, int paddingMode SD_DEFAULT_NULL); function SD_AOU_waveformReLoadArrayInt16(moduleID::Integer, waveformType::Integer, waveformDataRaw::Vector, waveformNumber::Integer, paddingMode::Integer=0) c_waveformDataRaw = Vector{Cshort}(waveformDataRaw) waveformPoints = length(c_waveformDataRaw) val = ccall((:SD_AOU_waveformReLoadArrayInt16, klib), Cint, (Cint, Cint, Cint, Ref{Cshort}, Cint, Cint), moduleID, waveformType, waveformPoints, c_waveformDataRaw, waveformNumber, paddingMode) return val end ## int SD_AOU_waveformReLoad(int moduleID, int waveformID, int waveformNumber, int paddingMode SD_DEFAULT_NULL); """ This function replaces a waveform located in the module onboard RAM. The size of the new waveform must be smaller than or equal to the existing waveform. """ SD_AOU_waveformReLoad(moduleID::Integer, waveformID::Integer, waveformNumber::Integer, paddingMode::Integer=0) = ccall((:SD_AOU_waveformReLoad, klib), Cint, (Cint, Cint, Cint, Cint), moduleID, waveformID, waveformNumber, paddingMode) ## int SD_AOU_waveformLoadArrayInt16(int moduleID, int waveformType, int waveformPoints, short *waveformDataRaw, int waveformNumber, int paddingMode SD_DEFAULT_NULL); function SD_AOU_waveformLoadArrayInt16(moduleID::Integer, waveformType::Integer, waveformDataRaw::Vector, waveformNumber::Integer, paddingMode::Integer=0) c_waveformDataRaw = Vector{Cshort}(waveformDataRaw) waveformPoints = length(c_waveformDataRaw) # Not sure.. val = ccall((:SD_AOU_waveformLoadArrayInt16, klib), Cint, (Cint, Cint, Cint, Ref{Cshort}, Cint, Cint), moduleID, waveformType, waveformPoints, c_waveformDataRaw, waveformNumber, paddingMode) return val end ## int SD_AOU_waveformLoad(int moduleID, int waveformID, int waveformNumber, int paddingMode SD_DEFAULT_NULL); """ This function loads the specified waveform into the module onboard RAM. Waveforms must be created first with the SD-Wave class. """ SD_AOU_waveformLoad(moduleID::Integer, waveformID::Integer, waveformNumber::Integer, paddingMode::Integer=0) = ccall((:SD_AOU_waveformLoad, klib), Cint, (Cint, Cint, Cint, Cint), moduleID, waveformID, waveformNumber, paddingMode) ## int SD_AOU_waveformFlush(int moduleID); """ This function deletes all the waveforms from the module onboard RAM and flushes all the AWG queues. """ SD_AOU_waveformFlush(moduleID::Integer) = ccall((:SD_AOU_waveformFlush, klib), Cint, (Cint,), moduleID) ## int SD_AOU_AWGqueueWaveform(int moduleID, int nAWG, int waveformNumber, int triggerMode, int startDelay, int cycles, int prescaler); """ This function queues the specified waveform in one of the AWGs of the module. The waveform must be already loaded in the module onboard RAM. """ SD_AOU_AWGqueueWaveform(moduleID::Integer, nAWG::Integer, waveformNumber::Integer, triggerMode::Integer, startDelay::Integer, cycles::Integer, prescaler::Integer) = ccall((:SD_AOU_AWGqueueWaveform, klib), Cint, (Cint, Cint, Cint, Cint, Cint, Cint, Cint), moduleID, nAWG, waveformNumber, triggerMode, startDelay, cycles, prescaler) ## int SD_AOU_AWGstreamingConfig(int moduleID, int nAWG, int triggerMode, int startDelay, int prescaler, int waveformPoints, callbackWGPtr callbackFunction, void *callbackUserObj); SD_AOU_AWGstreamingConfig(moduleID::Integer, nAWG::Integer, triggerMode::Integer, startDelay::Integer, prescaler::Integer, waveformPoints::Integer) = ccall((:SD_AOU_AWGstreamingConfig, klib), Cint, (Cint, Cint, Cint, Cint, Cint, Cint, Ptr{Void}, Ptr{Void}), moduleID, nAWG, triggerMode, startDelay, prescaler, waveformPoints, C_NULL, C_NULL) ## int SD_AOU_AWGstreamingRelease(int moduleID, int nAWG); SD_AOU_AWGstreamingRelease(moduleID::Integer, nAWG::Integer) = ccall((:SD_AOU_AWGstreamingRelease, klib), Cint, (Cint, Cint), moduleID, nAWG) ## int SD_AOU_AWGidleValue(int moduleID, int nAWG, double value); SD_AOU_AWGidleValue(moduleID::Integer, nAWG::Integer, value::Real) = ccall((:SD_AOU_AWGidleValue, klib), Cint, (Cint, Cint, Cdouble), moduleID, nAWG, value) ## double SD_AOU_AWGidleValueRead(int moduleID, int nAWG); SD_AOU_AWGidleValueRead(moduleID::Integer, nAWG::Integer) = ccall((:SD_AOU_AWGidleValueRead, klib), Cdouble, (Cint, Cint), moduleID, nAWG) ## int SD_AOU_waveformLoadP2Pstart(int moduleID, int wfType, int points, int waveformNumber); SD_AOU_waveformLoadP2Pstart(moduleID::Integer, wfType::Integer, points::Integer, waveformNumber::Integer) = ccall((:SD_AOU_waveformLoadP2Pstart, klib), Cint, (Cint, Cint, Cint, Cint), moduleID, wfType, points, waveformNumber) ## int SD_AOU_waveformLoadP2Pclose(int moduleID, int nDWwritten); SD_AOU_waveformLoadP2Pclose(moduleID::Integer, nDWwritten::Integer) = ccall((:SD_AOU_waveformLoadP2Pclose, klib), Cint, (Cint, Cint), moduleID, nDWwritten) ## unsigned long long SD_AOU_waveformLoadP2PgetPhysicalAddress(int moduleID); SD_AOU_waveformLoadP2PgetPhysicalAddress(moduleID::Integer) = ccall((:SD_AOU_waveformLoadP2PgetPhysicalAddress, klib), Culonglong, (Cint,), moduleID) ## int SD_AOU_waveformLoadP2PwriteDataTest(int moduleID, int wfType, int points, short *dataRaw, int paddingMode SD_DEFAULT_NULL); function SD_AOU_waveformLoadP2PwriteDataTest(moduleID::Integer, wfType::Integer, dataRaw::Vector, paddingMode::Integer) c_dataRaw = Vector{Cshort}(dataRaw) points = length(c_dataRaw) val = ccall((:SD_AOU_waveformLoadP2PwriteDataTest, klib), Cint, (Cint, Cint, Cint, Ref{Cshort}, Cint), moduleID, wfType, points, c_dataRaw, paddingMode) return val end ## int SD_AOU_AWGstart(int moduleID, int nAWG); """ This function starts he selected AWG from the beginning of its queue. The generation will start immediately or when a trigger is received, depending on the trigger selection of the first waveform in the queue and provided that at least one waveform is queued in the AWG. """ SD_AOU_AWGstart(moduleID::Integer, nAWG::Integer) = ccall((:SD_AOU_AWGstart, klib), Cint, (Cint, Cint), moduleID, nAWG) ## int SD_AOU_AWGstop(int moduleID, int nAWG); """ This function stops the selected AWG, setting the output to zero and resetting the AWG queue to its initial position. All following incoming triggers are ignored. """ SD_AOU_AWGstop(moduleID::Integer, nAWG::Integer) = ccall((:SD_AOU_AWGstop, klib), Cint, (Cint, Cint), moduleID, nAWG) ## int SD_AOU_AWGresume(int moduleID, int nAWG); """ The function resumes the operation of the selected AWG from the current position of the queue. """ SD_AOU_AWGresume(moduleID::Integer, nAWG::Integer) = ccall((:SD_AOU_AWGresume, klib), Cint, (Cint, Cint), moduleID, nAWG) ## int SD_AOU_AWGpause(int moduleID, int nAWG); """ This function pauses the selected AWG, leaving the last waveform point at the output, and ignoring all incoming triggers. The waveform generation can be resumed calling AWGresume. """ SD_AOU_AWGpause(moduleID::Integer, nAWG::Integer) = ccall((:SD_AOU_AWGpause, klib), Cint, (Cint, Cint), moduleID, nAWG) ## int SD_AOU_AWGtrigger(int moduleID, int nAWG); """ This function triggers the selected AWG. The waveform waiting in the current position of the queue is launched provided it is configured with VI/HVI Trigger. """ SD_AOU_AWGtrigger(moduleID::Integer, nAWG::Integer) = ccall((:SD_AOU_AWGtrigger, klib), Cint, (Cint, Cint), moduleID, nAWG) ## int SD_AOU_AWGjumpNextWaveform(int moduleID, int nAWG); """ This function forces a jump to the next waveform in the AWG queue. The jump is executed once the current waveform has finished a complete cycle. """ SD_AOU_AWGjumpNextWaveform(moduleID::Integer, nAWG::Integer) = ccall((:SD_AOU_AWGjumpNextWaveform, klib), Cint, (Cint, Cint), moduleID, nAWG) ## int SD_AOU_AWGjumpNextWaveformMultiple(int moduleID, int AWGmask); """ This function forces a jump to the next waveform in the queue of several AWGs. The jumps are executed once the current waveforms have finished a complete cycle. """ SD_AOU_AWGjumpNextWaveformMultiple(moduleID::Integer, AWGmask::Integer) = ccall((:SD_AOU_AWGjumpNextWaveformMultiple, klib), Cint, (Cint, Cint), moduleID, AWGmask) ## int SD_AOU_AWGisRunning(int moduleID, int nAWG); """ This function returns if the AWG is running or stopped. """ SD_AOU_AWGisRunning(moduleID::Integer, nAWG::Integer) = ccall((:SD_AOU_AWGisRunning, klib), Cint, (Cint, Cint), moduleID, nAWG) ## int SD_AOU_AWGnWFplaying(int moduleID, int nAWG); """ This function returns the waveformNumber of the waveform which is currently being generated. """ SD_AOU_AWGnWFplaying(moduleID::Integer, nAWG::Integer) = ccall((:SD_AOU_AWGnWFplaying, klib), Cint, (Cint, Cint), moduleID, nAWG) ## int SD_AOU_AWGstartMultiple(int moduleID, int AWGmask); """ This function starts the selected AWGs from the beginning of their queues. The generation will start immediately or when a trigger is received, depending on the trigger selection of the first waveform in their queues and provided that at least one waveform is queued in these AWGs (functions AWGqueueWaveform, or AWG). """ SD_AOU_AWGstartMultiple(moduleID::Integer, AWGmask::Integer) = ccall((:SD_AOU_AWGstartMultiple, klib), Cint, (Cint, Cint), moduleID, AWGmask) ## int SD_AOU_AWGstopMultiple(int moduleID, int AWGmask); """ This function stops the selected AWGs, setting their outputs to zero and resetting their respective queues to the initial positions. All following incoming triggers are ignored. """ SD_AOU_AWGstopMultiple(moduleID::Integer, AWGmask::Integer) = ccall((:SD_AOU_AWGstopMultiple, klib), Cint, (Cint, Cint), moduleID, AWGmask) ## int SD_AOU_AWGresumeMultiple(int moduleID, int AWGmask); """ This function resumes the operation of the selected AWGs from the current position of their respective queues. """ SD_AOU_AWGresumeMultiple(moduleID::Integer, AWGmask::Integer) = ccall((:SD_AOU_AWGresumeMultiple, klib), Cint, (Cint, Cint), moduleID, AWGmask) ## int SD_AOU_AWGpauseMultiple(int moduleID, int AWGmask); """ This function pauses the selected AWGs, leaving the last waveform point at the output, and ignoring all incoming triggers. The waveform generation can be resumed calling AWGresume. """ SD_AOU_AWGpauseMultiple(moduleID::Integer, AWGmask::Integer) = ccall((:SD_AOU_AWGpauseMultiple, klib), Cint, (Cint, Cint), moduleID, AWGmask) ## int SD_AOU_AWGtriggerMultiple(int moduleID, int AWGmask); """ This function triggers the selected AWGs. The waveform waiting in the current position of the queue is launched provided it is configured with VI/HVI Trigger. """ SD_AOU_AWGtriggerMultiple(moduleID::Integer, AWGmask::Integer) = ccall((:SD_AOU_AWGtriggerMultiple, klib), Cint, (Cint, Cint), moduleID, AWGmask) ## int SD_AOU_AWGflush(int moduleID, int nAWG); """ This function empties the queue of the selected AWGs. Waveforms are not removed from the module onboard RAM. """ SD_AOU_AWGflush(moduleID::Integer, nAWG::Integer) = ccall((:SD_AOU_AWGflush, klib), Cint, (Cint, Cint), moduleID, nAWG) ## int SD_AOU_AWGfromFile(int moduleID, int nAWG, const char *waveformFile, int triggerMode, int startDelay, int cycles, int prescaler, int paddingMode SD_DEFAULT_NULL); SD_AOU_AWGfromFile(moduleID::Integer, nAWG::Integer, waveformFile::String, triggerMode::Integer, startDelay::Integer, cycles::Integer, prescaler::Integer, paddingMode::Integer) = ccall((:SD_AOU_AWGfromFile, klib), Cint, (Cint, Cint, Cstring, Cint, Cint, Cint, Cint, Cint), moduleID, nAWG, waveformFile, triggerMode, startDelay, cycles, prescaler, paddingMode) # not sure if waveformFile is a pointer to the file or just a string of filename ## int SD_AOU_AWGfromArray(int moduleID, int nAWG, int triggerMode, int startDelay, int cycles, int prescaler, int waveformType, int waveformPoints, double* waveformDataA, double* waveformDataB SD_DEFAULT_NULL, int paddingMode SD_DEFAULT_NULL); """ This function provides a one-step method to load, queue and start a single waveform in one of the module AWGs. The waveform can be loaded from an array of points in memory or from a file. ### AWG Trigger Mode - Auto : The waveform is launched automatically after function AWGstart, or when the previous waveform in the queue finishes --> AUTOTRIG = 0 - Software / HVI : Software trigger. The AWG is triggered by the function AWGtrigger, provided that the AWG is running. AWGtrigger can be executed from the user application (VI) or from an HVI --> SWHVITRIG = 1 - Software / HVI (per cycle) : Software trigger. Identical to the previous option, but the trigger is required per each waveform cycle --> SWHVITRIG_CYCLE = 5 - External Trigger : Hardware trigger. The AWG waits for an external trigger --> EXTTRIG = 2 - External Trigger (per cycle) : Hardware trigger. Identical to the previous option, but the trigger is required per each waveform cycle --> EXTTRIG_CYCLE = 6 """ function SD_AOU_AWGfromArray(moduleID::Integer, nAWG::Integer, triggerMode::Integer, startDelay::Integer, cycles::Integer, prescaler::Integer, waveformType::Integer, waveformDataA::Vector, waveformDataB::Vector=0, paddingMode::Integer=0) waveformPoints = length(waveformDataA) c_waveformDataA = Vector{Cdouble}(waveformDataA) c_waveformDataB = (waveformDataB==0)? 0: Vector{Cdouble}(waveformDataB) val = ccall((:SD_AOU_AWGfromArray, klib), Cint, (Cint, Cint, Cint, Cint, Cint, Cint, Cint, Cint, Ref{Cdouble}, Ref{Cdouble}), moduleID, nAWG, triggerMode, startDelay, cycles, prescaler, waveformType, waveformPoints, c_waveformDataA, c_waveformDataB, paddingMode) return val end ## int SD_AOU_AWGtriggerExternalConfig(int moduleID, int nAWG, int externalSource, int triggerBehavior, int sync); """ This function configures the external triggers for the selected AWG. The external trigger is used in case the waveform is queued with the external trigger mode option (function AWGqueueWaveform). ### AWG External Trigger Source - External I/O Trigger : The AWG trigger is a TRG connector/line of the module I/O Triggers. PXI form factor only: this trigger can be synchronized to CLK10 --> TRIG_EXTERNAL = 0 - PXI Trigger [0..n] : PXI form factor only. The AWG external trigger is a PXI trigger line and it is synchronized to CLK10 --> TRIG_PXI_AWG(=4000) + Trigger No. ### AWG External Trigger Behavior - Active High : Trigger is active when it is at level high --> TRIG_HIGH = 1 - Active Low : Trigger is active when it is at level low --> TRIG_LOW = 2 - Rising Edge : Trigger is active on the rising edge --> TRIG_RISE = 3 - Falling Edge : Trigger is active on the falling edge --> TRIG_FALL = 4 """ SD_AOU_AWGtriggerExternalConfig(moduleID::Integer, nAWG::Integer, externalSource::Integer, triggerBehavior::Integer, sync::Integer) = ccall((:SD_AOU_AWGtriggerExternalConfig, klib), Cint, (Cint, Cint, Cint, Cint, Cint), moduleID, nAWG, externalSource, triggerBehavior, sync) ## int SD_AOU_AWGqueueConfig(int moduleID, int nAWG, int mode); """ This function configures the cyclic mode of the queue. All waveforms must be already queued in one of the AWGs of the module. """ SD_AOU_AWGqueueConfig(moduleID::Integer, nAWG::Integer, mode::Integer) = ccall((:SD_AOU_AWGqueueConfig, klib), Cint, (Cint, Cint, Cint), moduleID, nAWG, mode) ## int SD_AOU_AWGqueueConfigRead(int moduleID, int nAWG); """ This function reads the value of a cyclic mode of the queue. All waveforms must be already queued in one of the AWGs of the module. """ SD_AOU_AWGqueueConfigRead(moduleID::Integer, nAWG::Integer) = ccall((:SD_AOU_AWGqueueConfigRead, klib), Cint, (Cint, Cint), moduleID, nAWG) ## int SD_AOU_AWGqueueMarkerConfig(int moduleID, int nAWG, int markerMode, int trgPXImask, int trgIOmask, int value, int syncMode, int length, int delay); """ This function configures the Marker generation for each AWG. All waveforms must be already queued in one of the AWGs of the module. """ SD_AOU_AWGqueueMarkerConfig(moduleID::Integer, nAWG::Integer, markerMode::Integer, trgPXImask::Integer, trgIOmask::Integer, value::Integer, syncMode::Integer, length::Integer, delay::Integer) = ccall((:SD_AOU_AWGqueueMarkerConfig, klib), Cint, (Cint, Cint, Cint, Cint, Cint, Cint, Cint, Cint, Cint), moduleID, nAWG, markerMode, trgPXImask, trgIOmask, value, syncMode, length, delay) ## int SD_AOU_AWGqueueSyncMode(int moduleID, int nAWG, int syncMode); """ This function configures the sync mode of the queue. All waveforms must be already queued in one of the AWGs of the module. """ SD_AOU_AWGqueueSyncMode(moduleID::Integer, nAWG::Integer, syncMode::Integer) = ccall((:SD_AOU_AWGqueueSyncMode, klib), Cint, (Cint, Cint, Cint), moduleID, nAWG, syncMode) # Functions that exist in the manual, but not in the library `SD_AIN.h` file # ## AWGreset # """ # This function resets the selected AWG to its initial position. # """ # SD_AOU_AWGreset(moduleID::Integer, nAWG::Integer) = # ccall((:SD_AOU_AWGreset, klib), Cint, (Cint, Cint), moduleID, nAWG)
[ 2, 9834, 62, 32, 2606, 40480, 329, 26363, 432, 337, 2624, 8051, 32, 14, 44, 2091, 8051, 32, 14356, 33884, 198, 39344, 9834, 62, 32, 2606, 62, 36733, 1096, 11, 9834, 62, 32, 2606, 62, 15750, 3855, 37, 28707, 11, 9834, 62, 32, 2606, 62, 15750, 3855, 28985, 37, 28707, 11, 198, 220, 220, 220, 9834, 62, 32, 2606, 62, 15750, 7248, 37, 28707, 11, 9834, 62, 32, 2606, 62, 15750, 4965, 316, 35645, 11, 9834, 62, 32, 2606, 62, 17620, 39709, 33383, 11, 198, 220, 220, 220, 9834, 62, 32, 2606, 62, 17620, 37, 28707, 11, 9834, 62, 32, 2606, 62, 17620, 35645, 11, 9834, 62, 32, 2606, 62, 17620, 35645, 4965, 316, 11, 198, 220, 220, 220, 9834, 62, 32, 2606, 62, 17620, 35645, 4965, 316, 31217, 11, 9834, 62, 32, 2606, 62, 17620, 5840, 489, 3984, 11, 9834, 62, 32, 2606, 62, 17620, 34519, 11, 198, 220, 220, 220, 9834, 62, 32, 2606, 62, 4666, 1741, 13450, 293, 16934, 11, 9834, 62, 32, 2606, 62, 4666, 1741, 5840, 489, 3984, 16934, 11, 198, 220, 220, 220, 9834, 62, 32, 2606, 62, 4666, 1741, 33866, 11250, 11, 9834, 62, 32, 2606, 62, 15750, 9399, 11250, 11, 9834, 62, 32, 2606, 62, 46284, 9399, 11250, 53, 20, 11, 198, 220, 220, 220, 9834, 62, 32, 2606, 62, 46284, 9399, 11250, 11, 9834, 62, 32, 2606, 62, 46284, 9399, 13564, 11, 9834, 62, 32, 2606, 62, 46284, 9399, 961, 11, 198, 220, 220, 220, 9834, 62, 32, 2606, 62, 19204, 687, 3855, 20231, 11, 9834, 62, 32, 2606, 62, 19204, 687, 3855, 30871, 10699, 11, 198, 220, 220, 220, 9834, 62, 32, 2606, 62, 19204, 687, 30871, 3855, 16594, 20231, 11, 9834, 62, 32, 2606, 62, 19204, 687, 30871, 7248, 16594, 20231, 11, 198, 220, 220, 220, 9834, 62, 32, 2606, 62, 19204, 687, 3041, 8912, 19182, 5317, 1433, 11, 9834, 62, 32, 2606, 62, 19204, 687, 3041, 8912, 11, 198, 220, 220, 220, 9834, 62, 32, 2606, 62, 19204, 687, 8912, 19182, 5317, 1433, 11, 9834, 62, 32, 2606, 62, 19204, 687, 8912, 11, 9834, 62, 32, 2606, 62, 19204, 687, 7414, 1530, 11, 198, 220, 220, 220, 9834, 62, 32, 2606, 62, 12298, 38, 36560, 39709, 687, 11, 9834, 62, 32, 2606, 62, 12298, 38, 5532, 278, 16934, 11, 9834, 62, 32, 2606, 62, 12298, 38, 5532, 278, 26362, 11, 198, 220, 220, 220, 9834, 62, 32, 2606, 62, 12298, 38, 312, 293, 11395, 11, 9834, 62, 32, 2606, 62, 12298, 38, 312, 293, 11395, 5569, 11, 9834, 62, 32, 2606, 62, 19204, 687, 8912, 47, 17, 47, 9688, 11, 198, 220, 220, 220, 9834, 62, 32, 2606, 62, 19204, 687, 8912, 47, 17, 47, 19836, 11, 9834, 62, 32, 2606, 62, 19204, 687, 8912, 47, 17, 47, 1136, 31611, 20231, 11, 198, 220, 220, 220, 9834, 62, 32, 2606, 62, 19204, 687, 8912, 47, 17, 47, 13564, 6601, 14402, 11, 9834, 62, 32, 2606, 62, 12298, 38, 9688, 11, 9834, 62, 32, 2606, 62, 12298, 38, 11338, 11, 198, 220, 220, 220, 9834, 62, 32, 2606, 62, 12298, 38, 411, 2454, 11, 9834, 62, 32, 2606, 62, 12298, 38, 32125, 11, 9834, 62, 32, 2606, 62, 12298, 38, 46284, 11, 9834, 62, 32, 2606, 62, 12298, 38, 43327, 10019, 39709, 687, 11, 198, 220, 220, 220, 9834, 62, 32, 2606, 62, 12298, 38, 43327, 10019, 39709, 687, 31217, 11, 9834, 62, 32, 2606, 62, 12298, 38, 271, 28768, 11, 9834, 62, 32, 2606, 62, 12298, 38, 77, 48397, 17916, 11, 198, 220, 220, 220, 9834, 62, 32, 2606, 62, 12298, 38, 9688, 31217, 11, 9834, 62, 32, 2606, 62, 12298, 38, 11338, 31217, 11, 9834, 62, 32, 2606, 62, 12298, 38, 411, 2454, 31217, 11, 198, 220, 220, 220, 9834, 62, 32, 2606, 62, 12298, 38, 32125, 31217, 11, 9834, 62, 32, 2606, 62, 12298, 38, 46284, 31217, 11, 9834, 62, 32, 2606, 62, 12298, 38, 25925, 11, 198, 220, 220, 220, 9834, 62, 32, 2606, 62, 12298, 38, 6738, 8979, 11, 9834, 62, 32, 2606, 62, 12298, 38, 6738, 19182, 11, 9834, 62, 32, 2606, 62, 12298, 38, 46284, 41506, 16934, 11, 198, 220, 220, 220, 9834, 62, 32, 2606, 62, 12298, 38, 36560, 16934, 11, 9834, 62, 32, 2606, 62, 12298, 38, 36560, 16934, 5569, 11, 9834, 62, 32, 2606, 62, 12298, 38, 36560, 9704, 263, 16934, 11, 198, 220, 220, 220, 9834, 62, 32, 2606, 62, 12298, 38, 36560, 28985, 19076, 198, 198, 2235, 493, 9834, 62, 32, 2606, 62, 36733, 1096, 7, 600, 8265, 2389, 1776, 198, 10305, 62, 32, 2606, 62, 36733, 1096, 7, 21412, 2389, 3712, 46541, 8, 796, 198, 220, 220, 220, 269, 13345, 19510, 25, 10305, 62, 32, 2606, 62, 36733, 1096, 11, 479, 8019, 828, 327, 600, 11, 357, 34, 600, 11, 828, 8265, 2389, 8, 198, 198, 2235, 4274, 9834, 62, 32, 2606, 62, 15750, 3855, 37, 28707, 7, 600, 8265, 2389, 1776, 198, 37811, 198, 1212, 2163, 5860, 262, 1103, 6890, 8801, 8373, 13, 632, 743, 13238, 422, 262, 198, 35324, 900, 351, 262, 2163, 8801, 7248, 37, 28707, 11, 2233, 284, 262, 6890, 198, 35324, 6323, 13, 198, 37811, 198, 10305, 62, 32, 2606, 62, 15750, 3855, 37, 28707, 7, 21412, 2389, 3712, 46541, 8, 796, 198, 220, 220, 220, 269, 13345, 19510, 25, 10305, 62, 32, 2606, 62, 15750, 3855, 37, 28707, 11, 479, 8019, 828, 327, 23352, 11, 357, 34, 600, 11, 828, 8265, 2389, 8, 198, 198, 2235, 4274, 9834, 62, 32, 2606, 62, 15750, 3855, 28985, 37, 28707, 7, 600, 8265, 2389, 1776, 198, 37811, 198, 1212, 2163, 5860, 262, 8373, 286, 21328, 4482, 198, 37811, 198, 10305, 62, 32, 2606, 62, 15750, 3855, 28985, 37, 28707, 7, 21412, 2389, 3712, 46541, 8, 796, 198, 220, 220, 220, 269, 13345, 19510, 25, 10305, 62, 32, 2606, 62, 15750, 3855, 28985, 37, 28707, 11, 479, 8019, 828, 327, 600, 11, 357, 34, 600, 11, 828, 8265, 2389, 8, 198, 198, 2235, 4274, 9834, 62, 32, 2606, 62, 15750, 7248, 37, 28707, 7, 600, 8265, 2389, 11, 4274, 8373, 11, 493, 4235, 1776, 198, 37811, 198, 1212, 2163, 5621, 262, 8265, 8801, 8373, 13, 198, 21017, 7852, 42, 5345, 31902, 10363, 198, 12, 7754, 449, 1967, 10363, 1058, 383, 8801, 1080, 318, 900, 284, 4620, 262, 9016, 474, 1967, 11, 198, 30584, 81, 811, 278, 24549, 2866, 14610, 7852, 42, 62, 43, 3913, 62, 41, 2043, 5781, 796, 657, 198, 12, 12549, 13932, 278, 10363, 1058, 383, 8801, 1080, 318, 900, 284, 4620, 262, 9016, 24549, 640, 11, 198, 30584, 81, 811, 278, 474, 1967, 2854, 14610, 7852, 42, 62, 37, 11262, 62, 51, 41884, 796, 352, 198, 37811, 198, 10305, 62, 32, 2606, 62, 15750, 7248, 37, 28707, 7, 21412, 2389, 3712, 46541, 11, 8373, 3712, 15633, 11, 4235, 3712, 46541, 8, 796, 198, 220, 220, 220, 269, 13345, 19510, 25, 10305, 62, 32, 2606, 62, 15750, 7248, 37, 28707, 11, 479, 8019, 828, 327, 23352, 11, 357, 34, 600, 11, 327, 23352, 11, 327, 600, 828, 198, 220, 220, 220, 220, 220, 220, 220, 8265, 2389, 11, 8373, 11, 4235, 8, 628, 198, 2235, 493, 9834, 62, 32, 2606, 62, 15750, 4965, 316, 35645, 7, 600, 8265, 2389, 11, 493, 7616, 25267, 15759, 11, 493, 350, 55, 1026, 4359, 1362, 11, 4274, 43370, 1776, 198, 10305, 62, 32, 2606, 62, 15750, 4965, 316, 35645, 7, 21412, 2389, 3712, 46541, 11, 7616, 25267, 15759, 3712, 46541, 11, 198, 220, 220, 220, 350, 55, 1026, 4359, 1362, 3712, 46541, 11, 43370, 3712, 15633, 8, 796, 198, 220, 220, 220, 269, 13345, 19510, 25, 10305, 62, 32, 2606, 62, 15750, 4965, 316, 35645, 11, 479, 8019, 828, 327, 600, 11, 357, 34, 600, 11, 327, 600, 11, 327, 600, 11, 327, 23352, 828, 198, 220, 220, 220, 220, 220, 220, 220, 8265, 2389, 11, 7616, 25267, 15759, 11, 350, 55, 1026, 4359, 1362, 11, 43370, 8, 198, 198, 2235, 493, 9834, 62, 32, 2606, 62, 17620, 39709, 33383, 7, 600, 8265, 2389, 11, 493, 299, 29239, 11, 493, 6769, 33383, 1776, 198, 37811, 198, 1212, 2163, 5621, 262, 6518, 5072, 6769, 687, 2099, 13, 198, 21017, 25235, 26484, 29538, 198, 12, 367, 14887, 1058, 383, 5072, 6737, 318, 900, 284, 367, 14887, 357, 3919, 5072, 6737, 318, 2810, 11, 691, 198, 15182, 329, 337, 18, 19004, 32, 8, 317, 2606, 62, 39, 14887, 796, 532, 16, 198, 12, 1400, 26484, 1058, 383, 5072, 6737, 318, 900, 284, 657, 13, 1439, 584, 6518, 6460, 389, 198, 76, 2913, 1328, 14610, 317, 2606, 62, 27977, 796, 657, 357, 12286, 8, 198, 12, 10884, 385, 47502, 1058, 2980, 515, 416, 262, 15553, 35986, 14610, 317, 2606, 62, 50, 1268, 2937, 46, 2389, 1847, 796, 352, 198, 12, 7563, 21413, 1058, 2980, 515, 416, 262, 15553, 35986, 14610, 317, 2606, 62, 5446, 40, 15567, 37232, 796, 362, 198, 12, 9276, 1058, 2980, 515, 416, 262, 15553, 35986, 14610, 317, 2606, 62, 50, 10917, 12203, 796, 604, 198, 12, 6257, 45444, 1058, 383, 5072, 6257, 15004, 318, 900, 416, 262, 6518, 37188, 4634, 198, 46904, 317, 2606, 62, 9697, 796, 642, 198, 12, 33619, 11619, 17084, 687, 1058, 2980, 515, 416, 262, 33619, 11619, 17084, 687, 35986, 198, 46904, 317, 2606, 62, 12298, 38, 796, 718, 198, 12, 35532, 11102, 1058, 5514, 329, 5629, 9619, 13, 632, 318, 262, 5072, 286, 262, 2180, 198, 17620, 357, 1462, 2251, 22577, 10425, 11, 3503, 2014, 14610, 317, 2606, 62, 30709, 21479, 796, 807, 198, 37811, 198, 10305, 62, 32, 2606, 62, 17620, 39709, 33383, 7, 21412, 2389, 3712, 46541, 11, 299, 29239, 3712, 46541, 11, 6769, 33383, 3712, 46541, 8, 796, 198, 220, 220, 220, 269, 13345, 19510, 25, 10305, 62, 32, 2606, 62, 17620, 39709, 33383, 11, 479, 8019, 828, 327, 600, 11, 357, 34, 600, 11, 327, 600, 11, 327, 600, 828, 198, 220, 220, 220, 220, 220, 220, 220, 8265, 2389, 11, 299, 29239, 11, 6769, 33383, 8, 198, 198, 2235, 493, 9834, 62, 32, 2606, 62, 17620, 37, 28707, 7, 600, 8265, 2389, 11, 493, 299, 29239, 11, 4274, 8373, 1776, 198, 37811, 198, 1212, 2163, 5621, 262, 8373, 329, 262, 27458, 10425, 7560, 416, 262, 198, 22203, 2980, 2024, 13, 198, 37811, 198, 10305, 62, 32, 2606, 62, 17620, 37, 28707, 7, 21412, 2389, 3712, 46541, 11, 299, 29239, 3712, 46541, 11, 8373, 3712, 15633, 8, 796, 198, 220, 220, 220, 269, 13345, 19510, 25, 10305, 62, 32, 2606, 62, 17620, 37, 28707, 11, 479, 8019, 828, 327, 600, 11, 357, 34, 600, 11, 327, 600, 11, 327, 23352, 828, 198, 220, 220, 220, 220, 220, 220, 220, 8265, 2389, 11, 299, 29239, 11, 8373, 8, 198, 198, 2235, 493, 9834, 62, 32, 2606, 62, 17620, 35645, 7, 600, 8265, 2389, 11, 493, 299, 29239, 11, 4274, 7108, 1776, 198, 37811, 198, 1212, 2163, 5621, 262, 7108, 329, 262, 27458, 10425, 7560, 416, 262, 198, 22203, 2980, 2024, 13, 198, 37811, 198, 10305, 62, 32, 2606, 62, 17620, 35645, 7, 21412, 2389, 3712, 46541, 11, 299, 29239, 3712, 46541, 11, 7108, 3712, 15633, 8, 796, 198, 220, 220, 220, 269, 13345, 19510, 25, 10305, 62, 32, 2606, 62, 17620, 35645, 11, 479, 8019, 828, 327, 600, 11, 357, 34, 600, 11, 327, 600, 11, 327, 23352, 828, 198, 220, 220, 220, 220, 220, 220, 220, 8265, 2389, 11, 299, 29239, 11, 7108, 8, 198, 198, 2235, 493, 9834, 62, 32, 2606, 62, 17620, 35645, 4965, 316, 7, 600, 8265, 2389, 11, 493, 6518, 1776, 198, 37811, 198, 1212, 2163, 581, 1039, 262, 22425, 7108, 286, 262, 6163, 6737, 13, 770, 198, 4134, 388, 4817, 7108, 318, 262, 1255, 286, 262, 7108, 12948, 4905, 286, 262, 198, 11167, 13, 198, 37811, 198, 10305, 62, 32, 2606, 62, 17620, 35645, 4965, 316, 7, 21412, 2389, 3712, 46541, 11, 299, 29239, 3712, 46541, 8, 796, 198, 220, 220, 220, 269, 13345, 19510, 25, 10305, 62, 32, 2606, 62, 17620, 35645, 4965, 316, 11, 479, 8019, 828, 327, 600, 11, 357, 34, 600, 11, 327, 600, 828, 198, 220, 220, 220, 220, 220, 220, 220, 8265, 2389, 11, 299, 29239, 8, 198, 198, 2235, 493, 9834, 62, 32, 2606, 62, 17620, 35645, 4965, 316, 31217, 7, 600, 8265, 2389, 11, 493, 6518, 45195, 1776, 198, 37811, 198, 1212, 2163, 581, 1039, 262, 22425, 7108, 286, 262, 6163, 9619, 198, 14323, 9560, 3481, 13, 770, 22425, 7108, 318, 262, 1255, 286, 262, 7108, 12948, 198, 27184, 286, 262, 1720, 13, 198, 37811, 198, 10305, 62, 32, 2606, 62, 17620, 35645, 4965, 316, 31217, 7, 21412, 2389, 3712, 46541, 11, 6518, 45195, 3712, 46541, 8, 796, 198, 220, 220, 220, 269, 13345, 19510, 25, 10305, 62, 32, 2606, 62, 17620, 35645, 4965, 316, 31217, 11, 479, 8019, 828, 327, 600, 11, 357, 34, 600, 11, 327, 600, 828, 198, 220, 220, 220, 220, 220, 220, 220, 8265, 2389, 11, 6518, 45195, 8, 198, 198, 2235, 493, 9834, 62, 32, 2606, 62, 17620, 5840, 489, 3984, 7, 600, 8265, 2389, 11, 493, 299, 29239, 11, 4274, 37188, 1776, 198, 37811, 198, 1212, 2163, 5621, 262, 37188, 286, 257, 6518, 13, 198, 37811, 198, 10305, 62, 32, 2606, 62, 17620, 5840, 489, 3984, 7, 21412, 2389, 3712, 46541, 11, 299, 29239, 3712, 46541, 11, 37188, 3712, 15633, 8, 796, 198, 220, 220, 220, 269, 13345, 19510, 25, 10305, 62, 32, 2606, 62, 17620, 5840, 489, 3984, 11, 479, 8019, 828, 327, 600, 11, 357, 34, 600, 11, 327, 600, 11, 327, 23352, 828, 198, 220, 220, 220, 220, 220, 220, 220, 8265, 2389, 11, 299, 29239, 11, 37188, 8, 198, 198, 2235, 493, 9834, 62, 32, 2606, 62, 17620, 34519, 7, 600, 8265, 2389, 11, 493, 299, 29239, 11, 4274, 11677, 1776, 198, 37811, 198, 1212, 2163, 5621, 262, 6257, 11677, 286, 257, 6518, 13, 198, 37811, 198, 10305, 62, 32, 2606, 62, 17620, 34519, 7, 21412, 2389, 3712, 46541, 11, 299, 29239, 3712, 46541, 11, 11677, 3712, 15633, 8, 796, 198, 220, 220, 220, 269, 13345, 19510, 25, 10305, 62, 32, 2606, 62, 17620, 34519, 11, 479, 8019, 828, 327, 600, 11, 357, 34, 600, 11, 327, 600, 11, 327, 23352, 828, 198, 220, 220, 220, 220, 220, 220, 220, 8265, 2389, 11, 299, 29239, 11, 11677, 8, 198, 198, 2235, 493, 9834, 62, 32, 2606, 62, 4666, 1741, 13450, 293, 16934, 7, 600, 8265, 2389, 11, 493, 299, 29239, 11, 493, 39007, 6030, 11, 4274, 28833, 38, 391, 1776, 198, 37811, 198, 1212, 2163, 4566, 942, 262, 39007, 287, 8373, 14, 40715, 329, 262, 6163, 198, 17620, 13, 198, 21017, 42375, 3401, 1741, 24897, 198, 12, 1400, 3401, 1741, 1058, 3401, 1741, 318, 10058, 14610, 317, 2606, 62, 33365, 62, 27977, 796, 657, 357, 12286, 8, 198, 12, 31902, 3401, 1741, 1058, 383, 14356, 38, 318, 973, 284, 953, 5039, 262, 6518, 8373, 198, 46904, 317, 2606, 62, 33365, 62, 23264, 796, 352, 198, 12, 31902, 3401, 1741, 357, 2624, 10340, 2599, 383, 14356, 38, 318, 973, 284, 953, 5039, 262, 6518, 198, 35324, 13, 1114, 4981, 351, 532, 23127, 16, 10668, 39007, 3038, 14610, 317, 2606, 62, 33365, 62, 23264, 62, 2624, 65, 796, 352, 198, 12, 18983, 3401, 1741, 1058, 383, 14356, 38, 318, 973, 284, 953, 5039, 262, 6518, 7108, 198, 46904, 317, 2606, 62, 33365, 62, 5868, 796, 362, 198, 37811, 198, 10305, 62, 32, 2606, 62, 4666, 1741, 13450, 293, 16934, 7, 21412, 2389, 3712, 46541, 11, 299, 29239, 3712, 46541, 11, 198, 220, 220, 220, 39007, 6030, 3712, 46541, 11, 28833, 38, 391, 3712, 15633, 8, 796, 198, 220, 220, 220, 269, 13345, 19510, 25, 10305, 62, 32, 2606, 62, 4666, 1741, 13450, 293, 16934, 11, 479, 8019, 828, 327, 600, 11, 357, 34, 600, 11, 327, 600, 11, 327, 600, 11, 327, 23352, 828, 198, 220, 220, 220, 220, 220, 220, 220, 8265, 2389, 11, 299, 29239, 11, 39007, 6030, 11, 28833, 38, 391, 8, 198, 198, 2235, 493, 9834, 62, 32, 2606, 62, 4666, 1741, 5840, 489, 3984, 16934, 7, 600, 8265, 2389, 11, 493, 299, 29239, 11, 493, 39007, 6030, 11, 4274, 28833, 38, 391, 1776, 198, 37811, 198, 1212, 2163, 4566, 942, 262, 39007, 287, 37188, 14, 28968, 329, 262, 6163, 198, 17620, 13, 198, 37811, 198, 10305, 62, 32, 2606, 62, 4666, 1741, 5840, 489, 3984, 16934, 7, 21412, 2389, 3712, 46541, 11, 299, 29239, 3712, 46541, 11, 198, 220, 220, 220, 39007, 6030, 3712, 46541, 11, 28833, 38, 391, 3712, 15633, 8, 796, 198, 220, 220, 220, 269, 13345, 19510, 25, 10305, 62, 32, 2606, 62, 4666, 1741, 5840, 489, 3984, 16934, 11, 479, 8019, 828, 327, 600, 11, 357, 34, 600, 11, 327, 600, 11, 327, 600, 11, 198, 220, 220, 220, 220, 220, 220, 220, 327, 23352, 828, 8265, 2389, 11, 299, 29239, 11, 39007, 6030, 11, 28833, 38, 391, 8, 198, 198, 2235, 493, 9834, 62, 32, 2606, 62, 4666, 1741, 33866, 11250, 7, 600, 8265, 2389, 11, 493, 299, 29239, 11, 493, 7139, 1776, 198, 37811, 198, 1212, 2163, 5621, 262, 18248, 39007, 329, 262, 6163, 6518, 13, 198, 21017, 44074, 3984, 3401, 1741, 18634, 198, 12, 1400, 3401, 1741, 1058, 3401, 1741, 318, 10058, 13, 383, 6518, 37188, 290, 11677, 389, 198, 8807, 900, 416, 262, 1388, 28441, 900, 416, 262, 1388, 28441, 198, 46904, 317, 2606, 62, 33365, 62, 27977, 796, 657, 357, 12286, 8, 198, 12, 44074, 3984, 3401, 1741, 1058, 383, 953, 8306, 6737, 318, 973, 284, 953, 5039, 262, 6518, 198, 321, 489, 3984, 14610, 317, 2606, 62, 33365, 62, 2390, 796, 352, 198, 12, 3242, 2617, 3401, 1741, 1058, 383, 953, 8306, 6737, 318, 973, 284, 953, 5039, 262, 6518, 198, 28968, 14610, 317, 2606, 62, 33365, 62, 27977, 28480, 796, 362, 198, 37811, 198, 10305, 62, 32, 2606, 62, 4666, 1741, 33866, 11250, 7, 21412, 2389, 3712, 46541, 11, 299, 29239, 3712, 46541, 11, 7139, 3712, 46541, 8, 796, 198, 220, 220, 220, 269, 13345, 19510, 25, 10305, 62, 32, 2606, 62, 4666, 1741, 33866, 11250, 11, 479, 8019, 828, 327, 600, 11, 357, 34, 600, 11, 327, 600, 11, 327, 600, 828, 198, 220, 220, 220, 220, 220, 220, 220, 8265, 2389, 11, 299, 29239, 11, 7139, 8, 198, 198, 2, 21328, 198, 2235, 493, 9834, 62, 32, 2606, 62, 15750, 9399, 11250, 7, 600, 8265, 2389, 11, 493, 8801, 16934, 1776, 198, 37811, 198, 1212, 2163, 4566, 942, 262, 4905, 286, 262, 8801, 5072, 21716, 13, 198, 21017, 7852, 42, 25235, 17056, 20074, 198, 12, 31529, 1058, 383, 7852, 42, 21716, 318, 10058, 14610, 7852, 42, 62, 10943, 45, 62, 26288, 6242, 30465, 796, 657, 357, 12286, 8, 198, 12, 7852, 42, 5420, 25235, 1058, 317, 4866, 286, 262, 4941, 8801, 318, 1695, 379, 262, 7852, 42, 198, 8443, 273, 14610, 7852, 42, 62, 31688, 62, 2606, 7250, 3843, 796, 352, 198, 37811, 198, 10305, 62, 32, 2606, 62, 15750, 9399, 11250, 7, 21412, 2389, 3712, 46541, 11, 8801, 16934, 3712, 46541, 8, 796, 198, 220, 220, 220, 269, 13345, 19510, 25, 10305, 62, 32, 2606, 62, 15750, 9399, 11250, 11, 479, 8019, 828, 327, 600, 11, 357, 34, 600, 11, 327, 600, 828, 8265, 2389, 11, 198, 220, 220, 220, 220, 220, 220, 220, 8801, 9399, 11250, 8, 198, 198, 2, 24593, 198, 2235, 493, 9834, 62, 32, 2606, 62, 46284, 9399, 11250, 53, 20, 7, 600, 8265, 2389, 11, 493, 4571, 11, 493, 17510, 19076, 1776, 198, 10305, 62, 32, 2606, 62, 46284, 9399, 11250, 53, 20, 7, 21412, 2389, 3712, 46541, 11, 4571, 3712, 46541, 11, 17510, 19076, 3712, 46541, 8, 796, 198, 220, 220, 220, 269, 13345, 19510, 25, 10305, 62, 32, 2606, 62, 46284, 9399, 11250, 53, 20, 11, 479, 8019, 828, 327, 600, 11, 357, 34, 600, 11, 327, 600, 11, 327, 600, 828, 198, 220, 220, 220, 220, 220, 220, 220, 8265, 2389, 11, 4571, 11, 17510, 19076, 8, 198, 198, 2235, 493, 9834, 62, 32, 2606, 62, 46284, 9399, 11250, 7, 600, 8265, 2389, 11, 493, 4571, 1776, 198, 37811, 198, 1212, 2163, 4566, 942, 262, 7616, 21716, 14, 1370, 4571, 290, 198, 28869, 11413, 1634, 14, 37687, 11347, 2446, 198, 21017, 24593, 314, 14, 46, 18634, 198, 12, 24593, 25235, 357, 46155, 8, 1058, 7579, 38, 14051, 355, 257, 2276, 4007, 4875, 5072, 198, 12683, 282, 11, 543, 460, 307, 3194, 416, 262, 2836, 3788, 14610, 317, 2606, 62, 5446, 38, 62, 12425, 796, 657, 198, 12, 24593, 23412, 1058, 7579, 38, 14051, 355, 257, 7616, 5128, 11, 393, 355, 2276, 4007, 198, 34725, 5128, 6737, 11, 543, 460, 307, 1100, 416, 262, 2836, 3788, 14610, 317, 2606, 62, 5446, 38, 62, 1268, 796, 352, 198, 21017, 24593, 16065, 11413, 1634, 14, 16305, 11347, 18634, 198, 12, 8504, 12, 28869, 11413, 1143, 4235, 1058, 383, 7616, 318, 35846, 351, 281, 5387, 1802, 19805, 8801, 198, 46904, 19704, 7792, 62, 45, 11651, 796, 657, 198, 12, 16065, 11413, 1143, 4235, 1058, 357, 47, 55, 40, 1296, 5766, 691, 8, 383, 7616, 318, 35846, 1262, 7852, 42, 940, 198, 46904, 19704, 7792, 62, 5097, 42, 62, 15, 796, 352, 198, 37811, 198, 10305, 62, 32, 2606, 62, 46284, 9399, 11250, 7, 21412, 2389, 3712, 46541, 11, 4571, 3712, 46541, 8, 796, 198, 220, 220, 220, 269, 13345, 19510, 25, 10305, 62, 32, 2606, 62, 46284, 9399, 11250, 11, 479, 8019, 828, 327, 600, 11, 357, 34, 600, 11, 327, 600, 828, 8265, 2389, 11, 4571, 8, 198, 198, 2235, 493, 9834, 62, 32, 2606, 62, 46284, 9399, 13564, 7, 600, 8265, 2389, 11, 493, 1988, 11, 493, 17510, 19076, 1776, 198, 37811, 198, 1212, 2163, 5621, 262, 7616, 5072, 13, 383, 7616, 1276, 307, 17839, 355, 5072, 198, 3500, 2163, 7616, 9399, 11250, 13, 198, 37811, 198, 10305, 62, 32, 2606, 62, 46284, 9399, 13564, 7, 21412, 2389, 3712, 46541, 11, 1988, 3712, 46541, 11, 17510, 19076, 3712, 46541, 8, 796, 198, 220, 220, 220, 269, 13345, 19510, 25, 10305, 62, 32, 2606, 62, 46284, 9399, 13564, 11, 479, 8019, 828, 327, 600, 11, 357, 34, 600, 11, 327, 600, 11, 327, 600, 828, 198, 220, 220, 220, 220, 220, 220, 220, 8265, 2389, 11, 1988, 11, 17510, 19076, 8, 198, 198, 2235, 493, 9834, 62, 32, 2606, 62, 46284, 9399, 961, 7, 600, 8265, 2389, 1776, 198, 37811, 198, 1212, 2163, 9743, 262, 7616, 5128, 13, 198, 37811, 198, 10305, 62, 32, 2606, 62, 46284, 9399, 961, 7, 21412, 2389, 3712, 46541, 8, 796, 198, 220, 220, 220, 269, 13345, 19510, 25, 10305, 62, 32, 2606, 62, 46284, 9399, 961, 11, 479, 8019, 828, 327, 600, 11, 357, 34, 600, 11, 828, 8265, 2389, 8, 198, 198, 2235, 493, 9834, 62, 32, 2606, 62, 19204, 687, 3855, 20231, 7, 600, 8265, 2389, 11, 493, 6769, 687, 15057, 1776, 198, 10305, 62, 32, 2606, 62, 19204, 687, 3855, 20231, 7, 21412, 2389, 3712, 46541, 11, 6769, 687, 15057, 3712, 46541, 8, 796, 198, 220, 220, 220, 269, 13345, 19510, 25, 10305, 62, 32, 2606, 62, 19204, 687, 3855, 20231, 11, 479, 8019, 828, 327, 600, 11, 357, 34, 600, 11, 327, 600, 828, 198, 220, 220, 220, 220, 220, 220, 220, 8265, 2389, 11, 6769, 687, 15057, 8, 198, 198, 2235, 493, 9834, 62, 32, 2606, 62, 19204, 687, 3855, 30871, 10699, 7, 600, 8265, 2389, 11, 493, 6769, 687, 15057, 1776, 198, 10305, 62, 32, 2606, 62, 19204, 687, 3855, 30871, 10699, 7, 21412, 2389, 3712, 46541, 11, 6769, 687, 15057, 3712, 46541, 8, 796, 198, 220, 220, 220, 269, 13345, 19510, 25, 10305, 62, 32, 2606, 62, 19204, 687, 3855, 30871, 10699, 11, 479, 8019, 828, 327, 600, 11, 357, 34, 600, 11, 327, 600, 828, 198, 220, 220, 220, 220, 220, 220, 220, 8265, 2389, 11, 6769, 687, 15057, 8, 198, 198, 2235, 493, 9834, 62, 32, 2606, 62, 19204, 687, 30871, 3855, 16594, 20231, 7, 600, 8265, 2389, 1776, 198, 10305, 62, 32, 2606, 62, 19204, 687, 30871, 3855, 16594, 20231, 7, 21412, 2389, 3712, 46541, 8, 796, 198, 220, 220, 220, 269, 13345, 19510, 25, 10305, 62, 32, 2606, 62, 19204, 687, 30871, 3855, 16594, 20231, 11, 479, 8019, 828, 327, 600, 11, 357, 34, 600, 11, 828, 8265, 2389, 8, 198, 198, 2235, 493, 9834, 62, 32, 2606, 62, 19204, 687, 30871, 7248, 16594, 20231, 7, 600, 8265, 2389, 11, 493, 3551, 20231, 1776, 198, 10305, 62, 32, 2606, 62, 19204, 687, 30871, 7248, 16594, 20231, 7, 21412, 2389, 3712, 46541, 11, 3551, 20231, 3712, 46541, 8, 796, 198, 220, 220, 220, 269, 13345, 19510, 25, 10305, 62, 32, 2606, 62, 19204, 687, 30871, 7248, 16594, 20231, 11, 479, 8019, 828, 327, 600, 11, 357, 34, 600, 11, 327, 600, 828, 198, 220, 220, 220, 220, 220, 220, 220, 8265, 2389, 11, 3551, 20231, 8, 198, 198, 2235, 493, 9834, 62, 32, 2606, 62, 19204, 687, 3041, 8912, 19182, 5317, 1433, 7, 600, 8265, 2389, 11, 493, 6769, 687, 6030, 11, 493, 6769, 687, 40710, 11, 1790, 1635, 19204, 687, 6601, 27369, 11, 493, 6769, 687, 15057, 11, 493, 24511, 19076, 9834, 62, 7206, 38865, 62, 33991, 1776, 198, 8818, 9834, 62, 32, 2606, 62, 19204, 687, 3041, 8912, 19182, 5317, 1433, 7, 21412, 2389, 3712, 46541, 11, 6769, 687, 6030, 3712, 46541, 11, 198, 220, 220, 220, 6769, 687, 6601, 27369, 3712, 38469, 11, 6769, 687, 15057, 3712, 46541, 11, 24511, 19076, 3712, 46541, 28, 15, 8, 198, 220, 220, 220, 269, 62, 19204, 687, 6601, 27369, 796, 20650, 90, 34, 19509, 92, 7, 19204, 687, 6601, 27369, 8, 198, 220, 220, 220, 6769, 687, 40710, 796, 4129, 7, 66, 62, 19204, 687, 6601, 27369, 8, 198, 220, 220, 220, 1188, 796, 269, 13345, 19510, 25, 10305, 62, 32, 2606, 62, 19204, 687, 3041, 8912, 19182, 5317, 1433, 11, 479, 8019, 828, 327, 600, 11, 198, 220, 220, 220, 220, 220, 220, 220, 357, 34, 600, 11, 327, 600, 11, 327, 600, 11, 6524, 90, 34, 19509, 5512, 327, 600, 11, 327, 600, 828, 8265, 2389, 11, 6769, 687, 6030, 11, 198, 220, 220, 220, 220, 220, 220, 220, 6769, 687, 40710, 11, 269, 62, 19204, 687, 6601, 27369, 11, 6769, 687, 15057, 11, 24511, 19076, 8, 198, 220, 220, 220, 1441, 1188, 198, 437, 198, 198, 2235, 493, 9834, 62, 32, 2606, 62, 19204, 687, 3041, 8912, 7, 600, 8265, 2389, 11, 493, 6769, 687, 2389, 11, 493, 6769, 687, 15057, 11, 493, 24511, 19076, 9834, 62, 7206, 38865, 62, 33991, 1776, 198, 37811, 198, 1212, 2163, 24020, 257, 6769, 687, 5140, 287, 262, 8265, 25863, 13931, 13, 383, 2546, 286, 198, 1169, 649, 6769, 687, 1276, 307, 4833, 621, 393, 4961, 284, 262, 4683, 6769, 687, 13, 198, 37811, 198, 10305, 62, 32, 2606, 62, 19204, 687, 3041, 8912, 7, 21412, 2389, 3712, 46541, 11, 6769, 687, 2389, 3712, 46541, 11, 6769, 687, 15057, 3712, 46541, 11, 198, 220, 220, 220, 24511, 19076, 3712, 46541, 28, 15, 8, 796, 198, 220, 220, 220, 269, 13345, 19510, 25, 10305, 62, 32, 2606, 62, 19204, 687, 3041, 8912, 11, 479, 8019, 828, 327, 600, 11, 357, 34, 600, 11, 327, 600, 11, 327, 600, 11, 327, 600, 828, 198, 220, 220, 220, 220, 220, 220, 220, 8265, 2389, 11, 6769, 687, 2389, 11, 6769, 687, 15057, 11, 24511, 19076, 8, 198, 198, 2235, 493, 9834, 62, 32, 2606, 62, 19204, 687, 8912, 19182, 5317, 1433, 7, 600, 8265, 2389, 11, 493, 6769, 687, 6030, 11, 493, 6769, 687, 40710, 11, 1790, 1635, 19204, 687, 6601, 27369, 11, 493, 6769, 687, 15057, 11, 493, 24511, 19076, 9834, 62, 7206, 38865, 62, 33991, 1776, 198, 8818, 9834, 62, 32, 2606, 62, 19204, 687, 8912, 19182, 5317, 1433, 7, 21412, 2389, 3712, 46541, 11, 6769, 687, 6030, 3712, 46541, 11, 198, 220, 220, 220, 6769, 687, 6601, 27369, 3712, 38469, 11, 6769, 687, 15057, 3712, 46541, 11, 24511, 19076, 3712, 46541, 28, 15, 8, 198, 220, 220, 220, 269, 62, 19204, 687, 6601, 27369, 796, 20650, 90, 34, 19509, 92, 7, 19204, 687, 6601, 27369, 8, 198, 220, 220, 220, 6769, 687, 40710, 796, 4129, 7, 66, 62, 19204, 687, 6601, 27369, 8, 1303, 1892, 1654, 492, 198, 220, 220, 220, 1188, 796, 269, 13345, 19510, 25, 10305, 62, 32, 2606, 62, 19204, 687, 8912, 19182, 5317, 1433, 11, 479, 8019, 828, 327, 600, 11, 198, 220, 220, 220, 220, 220, 220, 220, 357, 34, 600, 11, 327, 600, 11, 327, 600, 11, 6524, 90, 34, 19509, 5512, 327, 600, 11, 327, 600, 828, 8265, 2389, 11, 6769, 687, 6030, 11, 198, 220, 220, 220, 220, 220, 220, 220, 6769, 687, 40710, 11, 269, 62, 19204, 687, 6601, 27369, 11, 6769, 687, 15057, 11, 24511, 19076, 8, 198, 220, 220, 220, 1441, 1188, 198, 437, 198, 198, 2235, 493, 9834, 62, 32, 2606, 62, 19204, 687, 8912, 7, 600, 8265, 2389, 11, 493, 6769, 687, 2389, 11, 493, 6769, 687, 15057, 11, 493, 24511, 19076, 9834, 62, 7206, 38865, 62, 33991, 1776, 198, 37811, 198, 1212, 2163, 15989, 262, 7368, 6769, 687, 656, 262, 8265, 25863, 13931, 13, 198, 39709, 23914, 1276, 307, 2727, 717, 351, 262, 9834, 12, 39709, 1398, 13, 198, 37811, 198, 10305, 62, 32, 2606, 62, 19204, 687, 8912, 7, 21412, 2389, 3712, 46541, 11, 6769, 687, 2389, 3712, 46541, 11, 198, 220, 220, 220, 6769, 687, 15057, 3712, 46541, 11, 24511, 19076, 3712, 46541, 28, 15, 8, 796, 198, 220, 220, 220, 269, 13345, 19510, 25, 10305, 62, 32, 2606, 62, 19204, 687, 8912, 11, 479, 8019, 828, 327, 600, 11, 357, 34, 600, 11, 327, 600, 11, 327, 600, 11, 327, 600, 828, 198, 220, 220, 220, 220, 220, 220, 220, 8265, 2389, 11, 6769, 687, 2389, 11, 6769, 687, 15057, 11, 24511, 19076, 8, 198, 198, 2235, 493, 9834, 62, 32, 2606, 62, 19204, 687, 7414, 1530, 7, 600, 8265, 2389, 1776, 198, 37811, 198, 1212, 2163, 28128, 274, 477, 262, 6769, 23914, 422, 262, 8265, 25863, 13931, 290, 781, 17237, 198, 439, 262, 14356, 38, 43359, 13, 198, 37811, 198, 10305, 62, 32, 2606, 62, 19204, 687, 7414, 1530, 7, 21412, 2389, 3712, 46541, 8, 796, 198, 220, 220, 220, 269, 13345, 19510, 25, 10305, 62, 32, 2606, 62, 19204, 687, 7414, 1530, 11, 479, 8019, 828, 327, 600, 11, 357, 34, 600, 11, 828, 8265, 2389, 8, 198, 198, 2235, 493, 9834, 62, 32, 2606, 62, 12298, 38, 36560, 39709, 687, 7, 600, 8265, 2389, 11, 493, 299, 12298, 38, 11, 493, 6769, 687, 15057, 11, 493, 7616, 19076, 11, 493, 923, 13856, 323, 11, 493, 16006, 11, 493, 906, 9948, 263, 1776, 198, 37811, 198, 1212, 2163, 43359, 262, 7368, 6769, 687, 287, 530, 286, 262, 14356, 33884, 286, 262, 8265, 13, 198, 464, 6769, 687, 1276, 307, 1541, 9639, 287, 262, 8265, 25863, 13931, 13, 198, 37811, 198, 10305, 62, 32, 2606, 62, 12298, 38, 36560, 39709, 687, 7, 21412, 2389, 3712, 46541, 11, 299, 12298, 38, 3712, 46541, 11, 6769, 687, 15057, 3712, 46541, 11, 198, 220, 220, 220, 7616, 19076, 3712, 46541, 11, 923, 13856, 323, 3712, 46541, 11, 16006, 3712, 46541, 11, 906, 9948, 263, 3712, 46541, 8, 796, 198, 220, 220, 220, 269, 13345, 19510, 25, 10305, 62, 32, 2606, 62, 12298, 38, 36560, 39709, 687, 11, 479, 8019, 828, 327, 600, 11, 357, 34, 600, 11, 327, 600, 11, 327, 600, 11, 327, 600, 11, 327, 600, 11, 198, 220, 220, 220, 220, 220, 220, 220, 327, 600, 11, 327, 600, 828, 8265, 2389, 11, 299, 12298, 38, 11, 6769, 687, 15057, 11, 7616, 19076, 11, 923, 13856, 323, 11, 198, 220, 220, 220, 220, 220, 220, 220, 16006, 11, 906, 9948, 263, 8, 198, 198, 2235, 493, 9834, 62, 32, 2606, 62, 12298, 38, 5532, 278, 16934, 7, 600, 8265, 2389, 11, 493, 299, 12298, 38, 11, 493, 7616, 19076, 11, 493, 923, 13856, 323, 11, 493, 906, 9948, 263, 11, 493, 6769, 687, 40710, 11, 23838, 54, 16960, 2213, 23838, 22203, 11, 7951, 1635, 47423, 12982, 49201, 1776, 198, 10305, 62, 32, 2606, 62, 12298, 38, 5532, 278, 16934, 7, 21412, 2389, 3712, 46541, 11, 299, 12298, 38, 3712, 46541, 11, 7616, 19076, 3712, 46541, 11, 198, 220, 220, 220, 923, 13856, 323, 3712, 46541, 11, 906, 9948, 263, 3712, 46541, 11, 6769, 687, 40710, 3712, 46541, 8, 796, 198, 220, 220, 220, 269, 13345, 19510, 25, 10305, 62, 32, 2606, 62, 12298, 38, 5532, 278, 16934, 11, 479, 8019, 828, 327, 600, 11, 198, 220, 220, 220, 357, 34, 600, 11, 327, 600, 11, 327, 600, 11, 327, 600, 11, 327, 600, 11, 327, 600, 11, 350, 2213, 90, 53, 1868, 5512, 350, 2213, 90, 53, 1868, 92, 828, 198, 220, 220, 220, 8265, 2389, 11, 299, 12298, 38, 11, 7616, 19076, 11, 923, 13856, 323, 11, 906, 9948, 263, 11, 6769, 687, 40710, 11, 198, 220, 220, 220, 327, 62, 33991, 11, 327, 62, 33991, 8, 198, 198, 2235, 493, 9834, 62, 32, 2606, 62, 12298, 38, 5532, 278, 26362, 7, 600, 8265, 2389, 11, 493, 299, 12298, 38, 1776, 198, 10305, 62, 32, 2606, 62, 12298, 38, 5532, 278, 26362, 7, 21412, 2389, 3712, 46541, 11, 299, 12298, 38, 3712, 46541, 8, 796, 198, 220, 220, 220, 269, 13345, 19510, 25, 10305, 62, 32, 2606, 62, 12298, 38, 5532, 278, 26362, 11, 479, 8019, 828, 327, 600, 11, 357, 34, 600, 11, 327, 600, 828, 8265, 2389, 11, 198, 220, 220, 220, 220, 220, 220, 220, 299, 12298, 38, 8, 198, 198, 2235, 493, 9834, 62, 32, 2606, 62, 12298, 38, 312, 293, 11395, 7, 600, 8265, 2389, 11, 493, 299, 12298, 38, 11, 4274, 1988, 1776, 198, 10305, 62, 32, 2606, 62, 12298, 38, 312, 293, 11395, 7, 21412, 2389, 3712, 46541, 11, 299, 12298, 38, 3712, 46541, 11, 1988, 3712, 15633, 8, 796, 198, 220, 220, 220, 269, 13345, 19510, 25, 10305, 62, 32, 2606, 62, 12298, 38, 312, 293, 11395, 11, 479, 8019, 828, 327, 600, 11, 357, 34, 600, 11, 327, 600, 11, 327, 23352, 828, 198, 220, 220, 220, 220, 220, 220, 220, 8265, 2389, 11, 299, 12298, 38, 11, 1988, 8, 198, 198, 2235, 4274, 9834, 62, 32, 2606, 62, 12298, 38, 312, 293, 11395, 5569, 7, 600, 8265, 2389, 11, 493, 299, 12298, 38, 1776, 198, 10305, 62, 32, 2606, 62, 12298, 38, 312, 293, 11395, 5569, 7, 21412, 2389, 3712, 46541, 11, 299, 12298, 38, 3712, 46541, 8, 796, 198, 220, 220, 220, 269, 13345, 19510, 25, 10305, 62, 32, 2606, 62, 12298, 38, 312, 293, 11395, 5569, 11, 479, 8019, 828, 327, 23352, 11, 357, 34, 600, 11, 327, 600, 828, 8265, 2389, 11, 299, 12298, 38, 8, 198, 198, 2235, 493, 9834, 62, 32, 2606, 62, 19204, 687, 8912, 47, 17, 47, 9688, 7, 600, 8265, 2389, 11, 493, 266, 69, 6030, 11, 493, 2173, 11, 493, 6769, 687, 15057, 1776, 198, 10305, 62, 32, 2606, 62, 19204, 687, 8912, 47, 17, 47, 9688, 7, 21412, 2389, 3712, 46541, 11, 266, 69, 6030, 3712, 46541, 11, 2173, 3712, 46541, 11, 198, 220, 220, 220, 6769, 687, 15057, 3712, 46541, 8, 796, 198, 220, 220, 220, 269, 13345, 19510, 25, 10305, 62, 32, 2606, 62, 19204, 687, 8912, 47, 17, 47, 9688, 11, 479, 8019, 828, 327, 600, 11, 357, 34, 600, 11, 327, 600, 11, 327, 600, 11, 327, 600, 828, 198, 220, 220, 220, 220, 220, 220, 220, 8265, 2389, 11, 266, 69, 6030, 11, 2173, 11, 6769, 687, 15057, 8, 198, 198, 2235, 493, 9834, 62, 32, 2606, 62, 19204, 687, 8912, 47, 17, 47, 19836, 7, 600, 8265, 2389, 11, 493, 299, 42955, 15266, 1776, 198, 10305, 62, 32, 2606, 62, 19204, 687, 8912, 47, 17, 47, 19836, 7, 21412, 2389, 3712, 46541, 11, 299, 42955, 15266, 3712, 46541, 8, 796, 198, 220, 220, 220, 269, 13345, 19510, 25, 10305, 62, 32, 2606, 62, 19204, 687, 8912, 47, 17, 47, 19836, 11, 479, 8019, 828, 327, 600, 11, 357, 34, 600, 11, 327, 600, 828, 8265, 2389, 11, 198, 220, 220, 220, 220, 220, 220, 220, 299, 42955, 15266, 8, 198, 198, 2235, 22165, 890, 890, 9834, 62, 32, 2606, 62, 19204, 687, 8912, 47, 17, 47, 1136, 31611, 20231, 7, 600, 8265, 2389, 1776, 198, 10305, 62, 32, 2606, 62, 19204, 687, 8912, 47, 17, 47, 1136, 31611, 20231, 7, 21412, 2389, 3712, 46541, 8, 796, 198, 220, 220, 220, 269, 13345, 19510, 25, 10305, 62, 32, 2606, 62, 19204, 687, 8912, 47, 17, 47, 1136, 31611, 20231, 11, 479, 8019, 828, 32559, 506, 6511, 11, 198, 220, 220, 220, 220, 220, 220, 220, 357, 34, 600, 11, 828, 8265, 2389, 8, 198, 198, 2235, 493, 9834, 62, 32, 2606, 62, 19204, 687, 8912, 47, 17, 47, 13564, 6601, 14402, 7, 600, 8265, 2389, 11, 493, 266, 69, 6030, 11, 493, 2173, 11, 1790, 1635, 7890, 27369, 11, 493, 24511, 19076, 9834, 62, 7206, 38865, 62, 33991, 1776, 198, 8818, 9834, 62, 32, 2606, 62, 19204, 687, 8912, 47, 17, 47, 13564, 6601, 14402, 7, 21412, 2389, 3712, 46541, 11, 266, 69, 6030, 3712, 46541, 11, 198, 220, 220, 220, 1366, 27369, 3712, 38469, 11, 24511, 19076, 3712, 46541, 8, 198, 220, 220, 220, 269, 62, 7890, 27369, 796, 20650, 90, 34, 19509, 92, 7, 7890, 27369, 8, 198, 220, 220, 220, 2173, 796, 4129, 7, 66, 62, 7890, 27369, 8, 198, 220, 220, 220, 1188, 796, 269, 13345, 19510, 25, 10305, 62, 32, 2606, 62, 19204, 687, 8912, 47, 17, 47, 13564, 6601, 14402, 11, 479, 8019, 828, 327, 600, 11, 198, 220, 220, 220, 220, 220, 220, 220, 357, 34, 600, 11, 327, 600, 11, 327, 600, 11, 6524, 90, 34, 19509, 5512, 327, 600, 828, 8265, 2389, 11, 266, 69, 6030, 11, 2173, 11, 198, 220, 220, 220, 220, 220, 220, 220, 269, 62, 7890, 27369, 11, 24511, 19076, 8, 198, 220, 220, 220, 1441, 1188, 198, 437, 198, 198, 2235, 493, 9834, 62, 32, 2606, 62, 12298, 38, 9688, 7, 600, 8265, 2389, 11, 493, 299, 12298, 38, 1776, 198, 37811, 198, 1212, 2163, 4940, 339, 6163, 14356, 38, 422, 262, 3726, 286, 663, 16834, 13, 383, 198, 20158, 481, 923, 3393, 393, 618, 257, 7616, 318, 2722, 11, 6906, 319, 198, 1169, 7616, 6356, 286, 262, 717, 6769, 687, 287, 262, 16834, 290, 2810, 326, 379, 198, 293, 459, 530, 6769, 687, 318, 8358, 1739, 287, 262, 14356, 38, 13, 198, 37811, 198, 10305, 62, 32, 2606, 62, 12298, 38, 9688, 7, 21412, 2389, 3712, 46541, 11, 299, 12298, 38, 3712, 46541, 8, 796, 198, 220, 220, 220, 269, 13345, 19510, 25, 10305, 62, 32, 2606, 62, 12298, 38, 9688, 11, 479, 8019, 828, 327, 600, 11, 357, 34, 600, 11, 327, 600, 828, 8265, 2389, 11, 299, 12298, 38, 8, 198, 198, 2235, 493, 9834, 62, 32, 2606, 62, 12298, 38, 11338, 7, 600, 8265, 2389, 11, 493, 299, 12298, 38, 1776, 198, 37811, 198, 1212, 2163, 9911, 262, 6163, 14356, 38, 11, 4634, 262, 5072, 284, 6632, 290, 13259, 889, 198, 1169, 14356, 38, 16834, 284, 663, 4238, 2292, 13, 1439, 1708, 15619, 20022, 389, 198, 570, 1850, 13, 198, 37811, 198, 10305, 62, 32, 2606, 62, 12298, 38, 11338, 7, 21412, 2389, 3712, 46541, 11, 299, 12298, 38, 3712, 46541, 8, 796, 198, 220, 220, 220, 269, 13345, 19510, 25, 10305, 62, 32, 2606, 62, 12298, 38, 11338, 11, 479, 8019, 828, 327, 600, 11, 357, 34, 600, 11, 327, 600, 828, 8265, 2389, 11, 299, 12298, 38, 8, 198, 198, 2235, 493, 9834, 62, 32, 2606, 62, 12298, 38, 411, 2454, 7, 600, 8265, 2389, 11, 493, 299, 12298, 38, 1776, 198, 37811, 198, 464, 2163, 42626, 262, 4905, 286, 262, 6163, 14356, 38, 422, 262, 1459, 198, 9150, 286, 262, 16834, 13, 198, 37811, 198, 10305, 62, 32, 2606, 62, 12298, 38, 411, 2454, 7, 21412, 2389, 3712, 46541, 11, 299, 12298, 38, 3712, 46541, 8, 796, 198, 220, 220, 220, 269, 13345, 19510, 25, 10305, 62, 32, 2606, 62, 12298, 38, 411, 2454, 11, 479, 8019, 828, 327, 600, 11, 357, 34, 600, 11, 327, 600, 828, 8265, 2389, 11, 299, 12298, 38, 8, 198, 198, 2235, 493, 9834, 62, 32, 2606, 62, 12298, 38, 32125, 7, 600, 8265, 2389, 11, 493, 299, 12298, 38, 1776, 198, 37811, 198, 1212, 2163, 37622, 262, 6163, 14356, 38, 11, 4305, 262, 938, 6769, 687, 966, 379, 262, 198, 22915, 11, 290, 15482, 477, 15619, 20022, 13, 383, 6769, 687, 5270, 460, 307, 198, 411, 18940, 4585, 14356, 38, 411, 2454, 13, 198, 37811, 198, 10305, 62, 32, 2606, 62, 12298, 38, 32125, 7, 21412, 2389, 3712, 46541, 11, 299, 12298, 38, 3712, 46541, 8, 796, 198, 220, 220, 220, 269, 13345, 19510, 25, 10305, 62, 32, 2606, 62, 12298, 38, 32125, 11, 479, 8019, 828, 327, 600, 11, 357, 34, 600, 11, 327, 600, 828, 8265, 2389, 11, 299, 12298, 38, 8, 198, 198, 2235, 493, 9834, 62, 32, 2606, 62, 12298, 38, 46284, 7, 600, 8265, 2389, 11, 493, 299, 12298, 38, 1776, 198, 37811, 198, 1212, 2163, 20022, 262, 6163, 14356, 38, 13, 383, 6769, 687, 4953, 287, 262, 1459, 198, 9150, 286, 262, 16834, 318, 5611, 2810, 340, 318, 17839, 351, 13889, 14, 39, 12861, 24593, 13, 198, 37811, 198, 10305, 62, 32, 2606, 62, 12298, 38, 46284, 7, 21412, 2389, 3712, 46541, 11, 299, 12298, 38, 3712, 46541, 8, 796, 198, 220, 220, 220, 269, 13345, 19510, 25, 10305, 62, 32, 2606, 62, 12298, 38, 46284, 11, 479, 8019, 828, 327, 600, 11, 357, 34, 600, 11, 327, 600, 828, 8265, 2389, 11, 299, 12298, 38, 8, 198, 198, 2235, 493, 9834, 62, 32, 2606, 62, 12298, 38, 43327, 10019, 39709, 687, 7, 600, 8265, 2389, 11, 493, 299, 12298, 38, 1776, 198, 37811, 198, 1212, 2163, 3386, 257, 4391, 284, 262, 1306, 6769, 687, 287, 262, 14356, 38, 16834, 13, 383, 4391, 318, 198, 18558, 7241, 1752, 262, 1459, 6769, 687, 468, 5201, 257, 1844, 6772, 13, 198, 37811, 198, 10305, 62, 32, 2606, 62, 12298, 38, 43327, 10019, 39709, 687, 7, 21412, 2389, 3712, 46541, 11, 299, 12298, 38, 3712, 46541, 8, 796, 198, 220, 220, 220, 269, 13345, 19510, 25, 10305, 62, 32, 2606, 62, 12298, 38, 43327, 10019, 39709, 687, 11, 479, 8019, 828, 327, 600, 11, 357, 34, 600, 11, 327, 600, 828, 8265, 2389, 11, 299, 12298, 38, 8, 198, 198, 2235, 493, 9834, 62, 32, 2606, 62, 12298, 38, 43327, 10019, 39709, 687, 31217, 7, 600, 8265, 2389, 11, 493, 14356, 38, 27932, 1776, 198, 37811, 198, 1212, 2163, 3386, 257, 4391, 284, 262, 1306, 6769, 687, 287, 262, 16834, 286, 1811, 14356, 33884, 13, 198, 464, 18045, 389, 10945, 1752, 262, 1459, 6769, 23914, 423, 5201, 257, 1844, 198, 13696, 13, 198, 37811, 198, 10305, 62, 32, 2606, 62, 12298, 38, 43327, 10019, 39709, 687, 31217, 7, 21412, 2389, 3712, 46541, 11, 14356, 38, 27932, 3712, 46541, 8, 796, 198, 220, 220, 220, 269, 13345, 19510, 25, 10305, 62, 32, 2606, 62, 12298, 38, 43327, 10019, 39709, 687, 31217, 11, 479, 8019, 828, 327, 600, 11, 357, 34, 600, 11, 327, 600, 828, 198, 220, 220, 220, 220, 220, 220, 220, 8265, 2389, 11, 14356, 38, 27932, 8, 198, 198, 2235, 493, 9834, 62, 32, 2606, 62, 12298, 38, 271, 28768, 7, 600, 8265, 2389, 11, 493, 299, 12298, 38, 1776, 198, 37811, 198, 1212, 2163, 5860, 611, 262, 14356, 38, 318, 2491, 393, 5025, 13, 198, 37811, 198, 10305, 62, 32, 2606, 62, 12298, 38, 271, 28768, 7, 21412, 2389, 3712, 46541, 11, 299, 12298, 38, 3712, 46541, 8, 796, 198, 220, 220, 220, 269, 13345, 19510, 25, 10305, 62, 32, 2606, 62, 12298, 38, 271, 28768, 11, 479, 8019, 828, 327, 600, 11, 357, 34, 600, 11, 327, 600, 828, 8265, 2389, 11, 299, 12298, 38, 8, 198, 198, 2235, 493, 9834, 62, 32, 2606, 62, 12298, 38, 77, 48397, 17916, 7, 600, 8265, 2389, 11, 493, 299, 12298, 38, 1776, 198, 37811, 198, 1212, 2163, 5860, 262, 6769, 687, 15057, 286, 262, 6769, 687, 543, 318, 3058, 198, 11873, 7560, 13, 198, 37811, 198, 10305, 62, 32, 2606, 62, 12298, 38, 77, 48397, 17916, 7, 21412, 2389, 3712, 46541, 11, 299, 12298, 38, 3712, 46541, 8, 796, 198, 220, 220, 220, 269, 13345, 19510, 25, 10305, 62, 32, 2606, 62, 12298, 38, 77, 48397, 17916, 11, 479, 8019, 828, 327, 600, 11, 357, 34, 600, 11, 327, 600, 828, 8265, 2389, 11, 299, 12298, 38, 8, 198, 198, 2235, 493, 9834, 62, 32, 2606, 62, 12298, 38, 9688, 31217, 7, 600, 8265, 2389, 11, 493, 14356, 38, 27932, 1776, 198, 37811, 198, 1212, 2163, 4940, 262, 6163, 14356, 33884, 422, 262, 3726, 286, 511, 43359, 13, 383, 198, 20158, 481, 923, 3393, 393, 618, 257, 7616, 318, 2722, 11, 6906, 319, 198, 1169, 7616, 6356, 286, 262, 717, 6769, 687, 287, 511, 43359, 290, 2810, 326, 379, 198, 293, 459, 530, 6769, 687, 318, 8358, 1739, 287, 777, 14356, 33884, 357, 12543, 2733, 14356, 38, 36560, 39709, 687, 11, 393, 14356, 38, 737, 198, 37811, 198, 10305, 62, 32, 2606, 62, 12298, 38, 9688, 31217, 7, 21412, 2389, 3712, 46541, 11, 14356, 38, 27932, 3712, 46541, 8, 796, 198, 220, 220, 220, 269, 13345, 19510, 25, 10305, 62, 32, 2606, 62, 12298, 38, 9688, 31217, 11, 479, 8019, 828, 327, 600, 11, 357, 34, 600, 11, 327, 600, 828, 198, 220, 220, 220, 220, 220, 220, 220, 8265, 2389, 11, 14356, 38, 27932, 8, 198, 198, 2235, 493, 9834, 62, 32, 2606, 62, 12298, 38, 11338, 31217, 7, 600, 8265, 2389, 11, 493, 14356, 38, 27932, 1776, 198, 37811, 198, 1212, 2163, 9911, 262, 6163, 14356, 33884, 11, 4634, 511, 23862, 284, 6632, 290, 198, 411, 35463, 511, 11756, 43359, 284, 262, 4238, 6116, 13, 1439, 1708, 198, 259, 4976, 20022, 389, 9514, 13, 198, 37811, 198, 10305, 62, 32, 2606, 62, 12298, 38, 11338, 31217, 7, 21412, 2389, 3712, 46541, 11, 14356, 38, 27932, 3712, 46541, 8, 796, 198, 220, 220, 220, 269, 13345, 19510, 25, 10305, 62, 32, 2606, 62, 12298, 38, 11338, 31217, 11, 479, 8019, 828, 327, 600, 11, 357, 34, 600, 11, 327, 600, 828, 8265, 2389, 11, 14356, 38, 27932, 8, 198, 198, 2235, 493, 9834, 62, 32, 2606, 62, 12298, 38, 411, 2454, 31217, 7, 600, 8265, 2389, 11, 493, 14356, 38, 27932, 1776, 198, 37811, 198, 1212, 2163, 42626, 262, 4905, 286, 262, 6163, 14356, 33884, 422, 262, 1459, 198, 9150, 286, 511, 11756, 43359, 13, 198, 37811, 198, 10305, 62, 32, 2606, 62, 12298, 38, 411, 2454, 31217, 7, 21412, 2389, 3712, 46541, 11, 14356, 38, 27932, 3712, 46541, 8, 796, 198, 220, 220, 220, 269, 13345, 19510, 25, 10305, 62, 32, 2606, 62, 12298, 38, 411, 2454, 31217, 11, 479, 8019, 828, 327, 600, 11, 357, 34, 600, 11, 327, 600, 828, 8265, 2389, 11, 198, 220, 220, 220, 220, 220, 220, 220, 14356, 38, 27932, 8, 198, 198, 2235, 493, 9834, 62, 32, 2606, 62, 12298, 38, 32125, 31217, 7, 600, 8265, 2389, 11, 493, 14356, 38, 27932, 1776, 198, 37811, 198, 1212, 2163, 37622, 262, 6163, 14356, 33884, 11, 4305, 262, 938, 6769, 687, 966, 379, 262, 198, 22915, 11, 290, 15482, 477, 15619, 20022, 13, 383, 6769, 687, 5270, 460, 307, 198, 411, 18940, 4585, 14356, 38, 411, 2454, 13, 198, 37811, 198, 10305, 62, 32, 2606, 62, 12298, 38, 32125, 31217, 7, 21412, 2389, 3712, 46541, 11, 14356, 38, 27932, 3712, 46541, 8, 796, 198, 220, 220, 220, 269, 13345, 19510, 25, 10305, 62, 32, 2606, 62, 12298, 38, 32125, 31217, 11, 479, 8019, 828, 327, 600, 11, 357, 34, 600, 11, 327, 600, 828, 8265, 2389, 11, 198, 220, 220, 220, 220, 220, 220, 220, 14356, 38, 27932, 8, 198, 198, 2235, 493, 9834, 62, 32, 2606, 62, 12298, 38, 46284, 31217, 7, 600, 8265, 2389, 11, 493, 14356, 38, 27932, 1776, 198, 37811, 198, 1212, 2163, 20022, 262, 6163, 14356, 33884, 13, 383, 6769, 687, 4953, 287, 262, 1459, 198, 9150, 286, 262, 16834, 318, 5611, 2810, 340, 318, 17839, 351, 13889, 14, 39, 12861, 24593, 13, 198, 37811, 198, 10305, 62, 32, 2606, 62, 12298, 38, 46284, 31217, 7, 21412, 2389, 3712, 46541, 11, 14356, 38, 27932, 3712, 46541, 8, 796, 198, 220, 220, 220, 269, 13345, 19510, 25, 10305, 62, 32, 2606, 62, 12298, 38, 46284, 31217, 11, 479, 8019, 828, 327, 600, 11, 357, 34, 600, 11, 327, 600, 828, 8265, 2389, 11, 198, 220, 220, 220, 220, 220, 220, 220, 14356, 38, 27932, 8, 198, 198, 2235, 493, 9834, 62, 32, 2606, 62, 12298, 38, 25925, 7, 600, 8265, 2389, 11, 493, 299, 12298, 38, 1776, 198, 37811, 198, 1212, 2163, 23909, 444, 262, 16834, 286, 262, 6163, 14356, 33884, 13, 17084, 23914, 389, 407, 4615, 198, 6738, 262, 8265, 25863, 13931, 13, 198, 37811, 198, 10305, 62, 32, 2606, 62, 12298, 38, 25925, 7, 21412, 2389, 3712, 46541, 11, 299, 12298, 38, 3712, 46541, 8, 796, 198, 220, 220, 220, 269, 13345, 19510, 25, 10305, 62, 32, 2606, 62, 12298, 38, 25925, 11, 479, 8019, 828, 327, 600, 11, 357, 34, 600, 11, 327, 600, 828, 8265, 2389, 11, 299, 12298, 38, 8, 198, 198, 2235, 493, 9834, 62, 32, 2606, 62, 12298, 38, 6738, 8979, 7, 600, 8265, 2389, 11, 493, 299, 12298, 38, 11, 1500, 1149, 1635, 19204, 687, 8979, 11, 493, 7616, 19076, 11, 493, 923, 13856, 323, 11, 493, 16006, 11, 493, 906, 9948, 263, 11, 493, 24511, 19076, 9834, 62, 7206, 38865, 62, 33991, 1776, 198, 10305, 62, 32, 2606, 62, 12298, 38, 6738, 8979, 7, 21412, 2389, 3712, 46541, 11, 299, 12298, 38, 3712, 46541, 11, 6769, 687, 8979, 3712, 10100, 11, 198, 220, 220, 220, 7616, 19076, 3712, 46541, 11, 923, 13856, 323, 3712, 46541, 11, 16006, 3712, 46541, 11, 198, 220, 220, 220, 906, 9948, 263, 3712, 46541, 11, 24511, 19076, 3712, 46541, 8, 796, 198, 220, 220, 220, 269, 13345, 19510, 25, 10305, 62, 32, 2606, 62, 12298, 38, 6738, 8979, 11, 479, 8019, 828, 327, 600, 11, 357, 34, 600, 11, 327, 600, 11, 327, 8841, 11, 327, 600, 11, 327, 600, 11, 198, 220, 220, 220, 220, 220, 220, 220, 327, 600, 11, 327, 600, 11, 327, 600, 828, 8265, 2389, 11, 299, 12298, 38, 11, 6769, 687, 8979, 11, 7616, 19076, 11, 923, 13856, 323, 11, 198, 220, 220, 220, 220, 220, 220, 220, 16006, 11, 906, 9948, 263, 11, 24511, 19076, 8, 198, 2, 407, 1654, 611, 6769, 687, 8979, 318, 257, 17562, 284, 262, 2393, 393, 655, 257, 4731, 286, 29472, 198, 198, 2235, 493, 9834, 62, 32, 2606, 62, 12298, 38, 6738, 19182, 7, 600, 8265, 2389, 11, 493, 299, 12298, 38, 11, 493, 7616, 19076, 11, 493, 923, 13856, 323, 11, 493, 16006, 11, 493, 906, 9948, 263, 11, 493, 6769, 687, 6030, 11, 493, 6769, 687, 40710, 11, 4274, 9, 6769, 687, 6601, 32, 11, 4274, 9, 6769, 687, 6601, 33, 9834, 62, 7206, 38865, 62, 33991, 11, 493, 24511, 19076, 9834, 62, 7206, 38865, 62, 33991, 1776, 198, 37811, 198, 1212, 2163, 3769, 257, 530, 12, 9662, 2446, 284, 3440, 11, 16834, 290, 923, 257, 2060, 198, 19204, 687, 287, 530, 286, 262, 8265, 14356, 33884, 13, 383, 6769, 687, 460, 307, 9639, 422, 281, 7177, 286, 198, 13033, 287, 4088, 393, 422, 257, 2393, 13, 198, 21017, 14356, 38, 24593, 10363, 198, 12, 11160, 1058, 383, 6769, 687, 318, 5611, 6338, 706, 2163, 14356, 38, 9688, 11, 393, 198, 12518, 262, 2180, 6769, 687, 287, 262, 16834, 20271, 14610, 47044, 2394, 49, 3528, 796, 657, 198, 12, 10442, 1220, 367, 12861, 1058, 10442, 7616, 13, 383, 14356, 38, 318, 13973, 416, 262, 2163, 198, 12298, 38, 46284, 11, 2810, 326, 262, 14356, 38, 318, 2491, 13, 14356, 38, 46284, 460, 307, 10945, 422, 198, 1169, 2836, 3586, 357, 12861, 8, 393, 422, 281, 367, 12861, 14610, 311, 12418, 53, 2043, 49, 3528, 796, 352, 198, 12, 10442, 1220, 367, 12861, 357, 525, 6772, 8, 1058, 10442, 7616, 13, 11440, 605, 284, 262, 2180, 198, 18076, 11, 475, 262, 7616, 318, 2672, 583, 1123, 6769, 687, 6772, 198, 46904, 311, 12418, 53, 2043, 49, 3528, 62, 34, 56, 29931, 796, 642, 198, 12, 34579, 24593, 1058, 28715, 7616, 13, 383, 14356, 38, 28364, 329, 281, 7097, 7616, 198, 46904, 27489, 5446, 3528, 796, 362, 198, 12, 34579, 24593, 357, 525, 6772, 8, 1058, 28715, 7616, 13, 11440, 605, 284, 262, 2180, 198, 18076, 11, 475, 262, 7616, 318, 2672, 583, 1123, 6769, 687, 6772, 14610, 27489, 5446, 3528, 62, 34, 56, 29931, 796, 718, 198, 37811, 198, 8818, 9834, 62, 32, 2606, 62, 12298, 38, 6738, 19182, 7, 21412, 2389, 3712, 46541, 11, 299, 12298, 38, 3712, 46541, 11, 7616, 19076, 3712, 46541, 11, 198, 220, 220, 220, 923, 13856, 323, 3712, 46541, 11, 16006, 3712, 46541, 11, 906, 9948, 263, 3712, 46541, 11, 6769, 687, 6030, 3712, 46541, 11, 198, 220, 220, 220, 6769, 687, 6601, 32, 3712, 38469, 11, 6769, 687, 6601, 33, 3712, 38469, 28, 15, 11, 24511, 19076, 3712, 46541, 28, 15, 8, 198, 220, 220, 220, 6769, 687, 40710, 796, 4129, 7, 19204, 687, 6601, 32, 8, 198, 220, 220, 220, 269, 62, 19204, 687, 6601, 32, 796, 20650, 90, 34, 23352, 92, 7, 19204, 687, 6601, 32, 8, 198, 220, 220, 220, 269, 62, 19204, 687, 6601, 33, 796, 357, 19204, 687, 6601, 33, 855, 15, 19427, 657, 25, 20650, 90, 34, 23352, 92, 7, 19204, 687, 6601, 33, 8, 198, 220, 220, 220, 1188, 796, 269, 13345, 19510, 25, 10305, 62, 32, 2606, 62, 12298, 38, 6738, 19182, 11, 479, 8019, 828, 327, 600, 11, 357, 34, 600, 11, 327, 600, 11, 327, 600, 11, 327, 600, 11, 198, 220, 220, 220, 220, 220, 220, 220, 327, 600, 11, 327, 600, 11, 327, 600, 11, 327, 600, 11, 6524, 90, 34, 23352, 5512, 6524, 90, 34, 23352, 92, 828, 8265, 2389, 11, 299, 12298, 38, 11, 198, 220, 220, 220, 220, 220, 220, 220, 7616, 19076, 11, 923, 13856, 323, 11, 16006, 11, 906, 9948, 263, 11, 6769, 687, 6030, 11, 198, 220, 220, 220, 220, 220, 220, 220, 6769, 687, 40710, 11, 269, 62, 19204, 687, 6601, 32, 11, 269, 62, 19204, 687, 6601, 33, 11, 24511, 19076, 8, 198, 220, 220, 220, 1441, 1188, 198, 437, 198, 198, 2235, 493, 9834, 62, 32, 2606, 62, 12298, 38, 46284, 41506, 16934, 7, 600, 8265, 2389, 11, 493, 299, 12298, 38, 11, 493, 7097, 7416, 11, 493, 7616, 25267, 15759, 11, 493, 17510, 1776, 198, 37811, 198, 1212, 2163, 4566, 942, 262, 7097, 20022, 329, 262, 6163, 14356, 38, 13, 383, 198, 22615, 7616, 318, 973, 287, 1339, 262, 6769, 687, 318, 8358, 1739, 351, 262, 7097, 198, 46284, 4235, 3038, 357, 8818, 14356, 38, 36560, 39709, 687, 737, 198, 21017, 14356, 38, 34579, 24593, 8090, 198, 12, 34579, 314, 14, 46, 24593, 1058, 383, 14356, 38, 7616, 318, 257, 7579, 38, 21716, 14, 1370, 286, 262, 8265, 198, 40, 14, 46, 833, 328, 5355, 13, 350, 55, 40, 1296, 5766, 691, 25, 428, 7616, 460, 307, 47192, 284, 7852, 42, 940, 198, 46904, 7579, 3528, 62, 6369, 31800, 1847, 796, 657, 198, 12, 350, 55, 40, 24593, 685, 15, 492, 77, 60, 1058, 350, 55, 40, 1296, 5766, 691, 13, 383, 14356, 38, 7097, 7616, 318, 257, 350, 55, 40, 198, 46284, 1627, 290, 340, 318, 47192, 284, 7852, 42, 940, 14610, 7579, 3528, 62, 47, 55, 40, 62, 12298, 38, 7, 28, 27559, 8, 1343, 24593, 1400, 13, 198, 21017, 14356, 38, 34579, 24593, 20181, 198, 12, 14199, 3334, 1058, 24593, 318, 4075, 618, 340, 318, 379, 1241, 1029, 14610, 7579, 3528, 62, 39, 18060, 796, 352, 198, 12, 14199, 7754, 1058, 24593, 318, 4075, 618, 340, 318, 379, 1241, 1877, 14610, 7579, 3528, 62, 43, 3913, 796, 362, 198, 12, 17658, 13113, 1058, 24593, 318, 4075, 319, 262, 7396, 5743, 14610, 7579, 3528, 62, 49, 24352, 796, 513, 198, 12, 42914, 13113, 1058, 24593, 318, 4075, 319, 262, 7463, 5743, 14610, 7579, 3528, 62, 37, 7036, 796, 604, 198, 37811, 198, 10305, 62, 32, 2606, 62, 12298, 38, 46284, 41506, 16934, 7, 21412, 2389, 3712, 46541, 11, 299, 12298, 38, 3712, 46541, 11, 7097, 7416, 3712, 46541, 11, 198, 220, 220, 220, 7616, 25267, 15759, 3712, 46541, 11, 17510, 3712, 46541, 8, 796, 198, 220, 220, 220, 269, 13345, 19510, 25, 10305, 62, 32, 2606, 62, 12298, 38, 46284, 41506, 16934, 11, 479, 8019, 828, 327, 600, 11, 357, 34, 600, 11, 327, 600, 11, 327, 600, 11, 198, 220, 220, 220, 220, 220, 220, 220, 327, 600, 11, 327, 600, 828, 8265, 2389, 11, 299, 12298, 38, 11, 7097, 7416, 11, 7616, 25267, 15759, 11, 17510, 8, 198, 198, 2235, 493, 9834, 62, 32, 2606, 62, 12298, 38, 36560, 16934, 7, 600, 8265, 2389, 11, 493, 299, 12298, 38, 11, 493, 4235, 1776, 198, 37811, 198, 1212, 2163, 4566, 942, 262, 11700, 291, 4235, 286, 262, 16834, 13, 1439, 6769, 23914, 1276, 307, 198, 282, 1493, 8358, 1739, 287, 530, 286, 262, 14356, 33884, 286, 262, 8265, 13, 198, 37811, 198, 10305, 62, 32, 2606, 62, 12298, 38, 36560, 16934, 7, 21412, 2389, 3712, 46541, 11, 299, 12298, 38, 3712, 46541, 11, 4235, 3712, 46541, 8, 796, 198, 220, 220, 220, 269, 13345, 19510, 25, 10305, 62, 32, 2606, 62, 12298, 38, 36560, 16934, 11, 479, 8019, 828, 327, 600, 11, 357, 34, 600, 11, 327, 600, 11, 327, 600, 828, 8265, 2389, 11, 198, 220, 220, 220, 220, 220, 220, 220, 299, 12298, 38, 11, 4235, 8, 198, 198, 2235, 493, 9834, 62, 32, 2606, 62, 12298, 38, 36560, 16934, 5569, 7, 600, 8265, 2389, 11, 493, 299, 12298, 38, 1776, 198, 37811, 198, 1212, 2163, 9743, 262, 1988, 286, 257, 11700, 291, 4235, 286, 262, 16834, 13, 1439, 6769, 23914, 1276, 198, 1350, 1541, 8358, 1739, 287, 530, 286, 262, 14356, 33884, 286, 262, 8265, 13, 198, 37811, 198, 10305, 62, 32, 2606, 62, 12298, 38, 36560, 16934, 5569, 7, 21412, 2389, 3712, 46541, 11, 299, 12298, 38, 3712, 46541, 8, 796, 198, 220, 220, 220, 269, 13345, 19510, 25, 10305, 62, 32, 2606, 62, 12298, 38, 36560, 16934, 5569, 11, 479, 8019, 828, 327, 600, 11, 357, 34, 600, 11, 327, 600, 828, 8265, 2389, 11, 299, 12298, 38, 8, 198, 198, 2235, 493, 9834, 62, 32, 2606, 62, 12298, 38, 36560, 9704, 263, 16934, 7, 600, 8265, 2389, 11, 493, 299, 12298, 38, 11, 493, 18364, 19076, 11, 493, 491, 70, 47, 55, 3546, 2093, 11, 493, 491, 70, 9399, 27932, 11, 493, 1988, 11, 493, 17510, 19076, 11, 493, 4129, 11, 493, 5711, 1776, 198, 37811, 198, 1212, 2163, 4566, 942, 262, 2940, 263, 5270, 329, 1123, 14356, 38, 13, 1439, 6769, 23914, 1276, 198, 1350, 1541, 8358, 1739, 287, 530, 286, 262, 14356, 33884, 286, 262, 8265, 13, 198, 37811, 198, 10305, 62, 32, 2606, 62, 12298, 38, 36560, 9704, 263, 16934, 7, 21412, 2389, 3712, 46541, 11, 299, 12298, 38, 3712, 46541, 11, 18364, 19076, 3712, 46541, 11, 198, 220, 220, 220, 491, 70, 47, 55, 3546, 2093, 3712, 46541, 11, 491, 70, 9399, 27932, 3712, 46541, 11, 1988, 3712, 46541, 11, 17510, 19076, 3712, 46541, 11, 198, 220, 220, 220, 4129, 3712, 46541, 11, 5711, 3712, 46541, 8, 796, 198, 220, 220, 220, 269, 13345, 19510, 25, 10305, 62, 32, 2606, 62, 12298, 38, 36560, 9704, 263, 16934, 11, 479, 8019, 828, 327, 600, 11, 198, 220, 220, 220, 220, 220, 220, 220, 357, 34, 600, 11, 327, 600, 11, 327, 600, 11, 327, 600, 11, 327, 600, 11, 327, 600, 11, 327, 600, 11, 327, 600, 11, 327, 600, 828, 198, 220, 220, 220, 220, 220, 220, 220, 8265, 2389, 11, 299, 12298, 38, 11, 18364, 19076, 11, 491, 70, 47, 55, 3546, 2093, 11, 491, 70, 9399, 27932, 11, 1988, 11, 17510, 19076, 11, 198, 220, 220, 220, 220, 220, 220, 220, 4129, 11, 5711, 8, 198, 198, 2235, 493, 9834, 62, 32, 2606, 62, 12298, 38, 36560, 28985, 19076, 7, 600, 8265, 2389, 11, 493, 299, 12298, 38, 11, 493, 17510, 19076, 1776, 198, 37811, 198, 1212, 2163, 4566, 942, 262, 17510, 4235, 286, 262, 16834, 13, 1439, 6769, 23914, 1276, 307, 198, 282, 1493, 8358, 1739, 287, 530, 286, 262, 14356, 33884, 286, 262, 8265, 13, 198, 37811, 198, 10305, 62, 32, 2606, 62, 12298, 38, 36560, 28985, 19076, 7, 21412, 2389, 3712, 46541, 11, 299, 12298, 38, 3712, 46541, 11, 17510, 19076, 3712, 46541, 8, 796, 198, 220, 220, 220, 269, 13345, 19510, 25, 10305, 62, 32, 2606, 62, 12298, 38, 36560, 28985, 19076, 11, 479, 8019, 828, 327, 600, 11, 357, 34, 600, 11, 327, 600, 11, 327, 600, 828, 198, 220, 220, 220, 220, 220, 220, 220, 8265, 2389, 11, 299, 12298, 38, 11, 17510, 19076, 8, 198, 198, 2, 40480, 326, 2152, 287, 262, 10107, 11, 475, 407, 287, 262, 5888, 4600, 10305, 62, 29833, 13, 71, 63, 2393, 198, 2, 22492, 14356, 38, 42503, 198, 2, 37227, 198, 2, 770, 2163, 581, 1039, 262, 6163, 14356, 38, 284, 663, 4238, 2292, 13, 198, 2, 37227, 198, 2, 9834, 62, 32, 2606, 62, 12298, 38, 42503, 7, 21412, 2389, 3712, 46541, 11, 299, 12298, 38, 3712, 46541, 8, 796, 198, 2, 220, 220, 220, 220, 269, 13345, 19510, 25, 10305, 62, 32, 2606, 62, 12298, 38, 42503, 11, 479, 8019, 828, 327, 600, 11, 357, 34, 600, 11, 327, 600, 828, 8265, 2389, 11, 299, 12298, 38, 8, 198 ]
2.855343
10,238
include("Graph.jl") include("Centrality.jl") function doExp(ags1) G0 = readDiGraph("data/"*ags1*".txt") G = LSCC(G0) lg = open("log.txt", "a") println(lg, ags1, " ", G0.n, " ", G0.m, " ", G.n, " ", G.m) println(lg, "PageRank : ", getPc(PageRank(G))) println(lg, "Eigenvector : ", getPc(EigenvectorCentrality(G))) println(lg) end doExp(ARGS[1])
[ 17256, 7203, 37065, 13, 20362, 4943, 198, 17256, 7203, 30645, 414, 13, 20362, 4943, 198, 198, 8818, 466, 16870, 7, 3775, 16, 8, 220, 198, 220, 220, 220, 402, 15, 796, 1100, 18683, 37065, 7203, 7890, 30487, 9, 3775, 16, 9, 1911, 14116, 4943, 198, 220, 220, 220, 402, 796, 30948, 4093, 7, 38, 15, 8, 198, 220, 220, 220, 300, 70, 796, 1280, 7203, 6404, 13, 14116, 1600, 366, 64, 4943, 198, 220, 220, 220, 44872, 7, 75, 70, 11, 556, 82, 16, 11, 366, 33172, 402, 15, 13, 77, 11, 366, 33172, 402, 15, 13, 76, 11, 366, 33172, 402, 13, 77, 11, 366, 33172, 402, 13, 76, 8, 198, 220, 220, 220, 44872, 7, 75, 70, 11, 366, 9876, 27520, 1058, 33172, 651, 47, 66, 7, 9876, 27520, 7, 38, 22305, 198, 220, 220, 220, 44872, 7, 75, 70, 11, 366, 36, 9324, 31364, 1058, 33172, 651, 47, 66, 7, 36, 9324, 31364, 30645, 414, 7, 38, 22305, 198, 220, 220, 220, 44872, 7, 75, 70, 8, 198, 437, 198, 198, 4598, 16870, 7, 1503, 14313, 58, 16, 12962 ]
2.054945
182
<filename>src/loglikelihood.jl<gh_stars>1-10 abstract type LogLikelihood{T} end struct GaussianLogLikelihood{T, V<:AbstractVector{T}, S<:AbstractMatrix{T}} <: LogLikelihood{T} μ::V Σ::S end Base.copy(logf::GaussianLogLikelihood) = GaussianLogLikelihood(copy(logf.μ), copy(logf.Σ)) function (logf::GaussianLogLikelihood{T})(x::V) where {T, V<:AbstractVector{T}} T(-0.5)*dot(x-logf.μ, logf.Σ\(x-logf.μ)) end (logf::GaussianLogLikelihood)(x, ::Val{:v}) = logf(x) (logf::GaussianLogLikelihood)(x, ::Val{:g}) = -logf.Σ\(x - logf.μ) function (logf::GaussianLogLikelihood{T})(x::V, ::Val{:vg}) where {T, V<:AbstractVector{T}} invΣx = logf.Σ\(x - logf.μ) return T(-0.5)*dot(x - logf.μ, invΣx), -invΣx end struct RLogLikelihood{T, V <: LogLikelihood{T}, W <: AbstractMatrix{T}} <: LogLikelihood{T} orglogf::V R::W end Base.copy(logf::RLogLikelihood) = RLogLikelihood(copy(logf.orglogf), copy(logf.R)) function (logf::RLogLikelihood{T})(x::V) where {T, V<:AbstractVector{T}} rx = logf.R*x return logf.orglogf(rx) end (logf::RLogLikelihood)(x, ::Val{:v}) = logf(x) function (logf::RLogLikelihood{T})(x::V, ::Val{:g}) where {T, V<:AbstractVector{T}} rx = logf.R*x return R'*logf.orglogf(rx, Val(:g)) end function (logf::RLogLikelihood{T})(x::V, ::Val{:vg}) where {T, V<:AbstractVector{T}} rx = logf.R*x v, g = logf.orglogf(rx, Val(:vg)) return v, logf.R'*g end
[ 27, 34345, 29, 10677, 14, 6404, 2339, 11935, 13, 20362, 27, 456, 62, 30783, 29, 16, 12, 940, 198, 397, 8709, 2099, 5972, 7594, 11935, 90, 51, 92, 886, 198, 198, 7249, 12822, 31562, 11187, 7594, 11935, 90, 51, 11, 569, 27, 25, 23839, 38469, 90, 51, 5512, 311, 27, 25, 23839, 46912, 90, 51, 11709, 1279, 25, 5972, 7594, 11935, 90, 51, 92, 198, 220, 220, 220, 18919, 3712, 53, 198, 220, 220, 220, 7377, 96, 3712, 50, 198, 437, 198, 198, 14881, 13, 30073, 7, 6404, 69, 3712, 35389, 31562, 11187, 7594, 11935, 8, 796, 12822, 31562, 11187, 7594, 11935, 7, 30073, 7, 6404, 69, 13, 34703, 828, 4866, 7, 6404, 69, 13, 138, 96, 4008, 198, 198, 8818, 357, 6404, 69, 3712, 35389, 31562, 11187, 7594, 11935, 90, 51, 92, 5769, 87, 3712, 53, 8, 810, 1391, 51, 11, 569, 27, 25, 23839, 38469, 90, 51, 11709, 198, 220, 220, 220, 309, 32590, 15, 13, 20, 27493, 26518, 7, 87, 12, 6404, 69, 13, 34703, 11, 2604, 69, 13, 138, 96, 59, 7, 87, 12, 6404, 69, 13, 34703, 4008, 198, 437, 198, 7, 6404, 69, 3712, 35389, 31562, 11187, 7594, 11935, 5769, 87, 11, 7904, 7762, 90, 25, 85, 30072, 796, 2604, 69, 7, 87, 8, 198, 7, 6404, 69, 3712, 35389, 31562, 11187, 7594, 11935, 5769, 87, 11, 7904, 7762, 90, 25, 70, 30072, 796, 532, 6404, 69, 13, 138, 96, 59, 7, 87, 532, 2604, 69, 13, 34703, 8, 198, 8818, 357, 6404, 69, 3712, 35389, 31562, 11187, 7594, 11935, 90, 51, 92, 5769, 87, 3712, 53, 11, 7904, 7762, 90, 25, 45119, 30072, 810, 1391, 51, 11, 569, 27, 25, 23839, 38469, 90, 51, 11709, 198, 220, 220, 220, 800, 138, 96, 87, 796, 2604, 69, 13, 138, 96, 59, 7, 87, 532, 2604, 69, 13, 34703, 8, 198, 220, 220, 220, 1441, 309, 32590, 15, 13, 20, 27493, 26518, 7, 87, 532, 2604, 69, 13, 34703, 11, 800, 138, 96, 87, 828, 532, 16340, 138, 96, 87, 198, 437, 628, 198, 7249, 371, 11187, 7594, 11935, 90, 51, 11, 569, 1279, 25, 5972, 7594, 11935, 90, 51, 5512, 370, 1279, 25, 27741, 46912, 90, 51, 11709, 1279, 25, 5972, 7594, 11935, 90, 51, 92, 198, 220, 220, 220, 393, 4743, 519, 69, 3712, 53, 198, 220, 220, 220, 371, 3712, 54, 198, 437, 198, 198, 14881, 13, 30073, 7, 6404, 69, 3712, 7836, 519, 7594, 11935, 8, 796, 371, 11187, 7594, 11935, 7, 30073, 7, 6404, 69, 13, 2398, 6404, 69, 828, 4866, 7, 6404, 69, 13, 49, 4008, 198, 198, 8818, 357, 6404, 69, 3712, 7836, 519, 7594, 11935, 90, 51, 92, 5769, 87, 3712, 53, 8, 810, 1391, 51, 11, 569, 27, 25, 23839, 38469, 90, 51, 11709, 198, 220, 220, 220, 374, 87, 796, 2604, 69, 13, 49, 9, 87, 198, 220, 220, 220, 1441, 2604, 69, 13, 2398, 6404, 69, 7, 40914, 8, 198, 437, 198, 198, 7, 6404, 69, 3712, 7836, 519, 7594, 11935, 5769, 87, 11, 7904, 7762, 90, 25, 85, 30072, 796, 2604, 69, 7, 87, 8, 198, 198, 8818, 357, 6404, 69, 3712, 7836, 519, 7594, 11935, 90, 51, 92, 5769, 87, 3712, 53, 11, 7904, 7762, 90, 25, 70, 30072, 810, 1391, 51, 11, 569, 27, 25, 23839, 38469, 90, 51, 11709, 198, 220, 220, 220, 374, 87, 796, 2604, 69, 13, 49, 9, 87, 198, 220, 220, 220, 1441, 371, 6, 9, 6404, 69, 13, 2398, 6404, 69, 7, 40914, 11, 3254, 7, 25, 70, 4008, 198, 437, 198, 198, 8818, 357, 6404, 69, 3712, 7836, 519, 7594, 11935, 90, 51, 92, 5769, 87, 3712, 53, 11, 7904, 7762, 90, 25, 45119, 30072, 810, 1391, 51, 11, 569, 27, 25, 23839, 38469, 90, 51, 11709, 198, 220, 220, 220, 374, 87, 796, 2604, 69, 13, 49, 9, 87, 198, 220, 220, 220, 410, 11, 308, 796, 2604, 69, 13, 2398, 6404, 69, 7, 40914, 11, 3254, 7, 25, 45119, 4008, 198, 220, 220, 220, 1441, 410, 11, 2604, 69, 13, 49, 6, 9, 70, 198, 437, 628, 628 ]
2.097633
676
<reponame>JuliaAstro/BoxLeastSquares.jl using LoopVectorization """ BLSPeriodogram A convenient wrapper for outputs from [`BLS`](@ref). # Methods * [`BoxLeastSquares.params`](@ref) * [`BoxLeastSquares.power`](@ref) * [`BoxLeastSquares.periods`](@ref) # Attributes * `t` - input time grid * `y` - input data * `yerr` - input data uncertainty * `periods` - the input periods * `duration_in` - the input durations * `objective` - the objective that was maximized * `power` - the power calculated at each period * `duration` - the best duration at each period * `t0` - the best transit time at each period * `depth` - the best transit depth at each period * `snr` - the signal-to-noise ratio at each period * `loglike` - the log-likeilhood at each period # Plotting Plotting recipes are provided for `BLSPeriodogram` which automatically plots the period and the power """ struct BLSPeriodogram{TT,FT,FET,PT,DT,VTT<:AbstractVector{TT},VFT<:AbstractVector{FT},VFET<:AbstractVector{FET},T1,T2,T3,T4,T5,T6} t::VTT y::VFT yerr::VFET periods::PT duration_in::DT objective::Symbol power::T1 duration::T2 t0::T3 depth::T4 snr::T5 loglike::T6 end """ BoxLeastSquares.periods(::BLSPeriodogram) Return the period grid for the periodogram """ periods(bls::BLSPeriodogram) = bls.periods """ BoxLeastSquares.power(::BLSPeriodogram) Return the power calculated for each period for the periodogram """ power(bls::BLSPeriodogram) = bls.power """ BoxLeastSquares.params(::BLSPeriodogram) Return the transit parameters for the best fitting period. Returns period, duration, t0, and power as well as the index of the max-power period. """ function params(bls::BLSPeriodogram) ind = argmax(power(bls)) pow = power(bls)[ind] per = periods(bls)[ind] dur = bls.duration[ind] t0 = bls.t0[ind] depth = bls.depth[ind] snr = bls.snr[ind] depth_err = depth / snr loglike = bls.loglike[ind] return (index=ind, power=pow, period=per, duration=dur, t0=t0, depth=depth, depth_err=depth_err, snr=snr, loglike=loglike) end """ autoperiod(t, duration; minimum_n_transit=3, frequency_factor=1.0, [minimum_period, maximum_period]) Automatically determine a period grid from the given times and duration(s). Periods are selected such that at least `minimum_n_trasnit` transits occur. The default minimum period is twice the maximum duration. The default maximum period is `(maximum(t) - minimum(t)) / (minimum_n_transit - 1)`. The frequency factor changes the granularity in frequency space- a smaller frequency factor will create a finer period grid. """ function autoperiod(t::AbstractVector{T}, duration; minimum_n_transit=3, minimum_period=default_minimum_period(duration), maximum_period=default_maximum_period(t, minimum_n_transit), frequency_factor=1.0) where T baseline = maximum(t) - minimum(t) df = frequency_factor * minimum(duration) / baseline^2 if maximum_period < minimum_period minimum_period, maximum_period = maximum_period, minimum_period end minimum_period ≥ zero(T) || error("minimum period must be positive") minimum_frequency = inv(maximum_period) maximum_frequency = inv(minimum_period) nf = 1 + (maximum_frequency - minimum_frequency) ÷ df return @. convert(T, inv(maximum_frequency - df * (0:nf))) end default_minimum_period(duration) = 2 * maximum(duration) function default_maximum_period(t, minimum_n_transit) minimum_n_transit > 1 || error("minimum number of transits must be greater than 1") baseline = maximum(t) - minimum(t) return baseline / (minimum_n_transit - 1) end @inline wrap(x, period) = x - period * trunc(x / period) @inline function wrap_index(t::Real, min_t, P, bin_duration) unsafe_trunc(Int, wrap(t - min_t, P) / bin_duration) + 1 end # this method will catch e.g. AbstractQuantity <: Number # which is important because unsafe_trunc not defined @inline function wrap_index(t, min_t, P, bin_duration) trunc(Int, wrap(t - min_t, P) / bin_duration) + 1 end """ BLS(t, y, [yerr]; duration, periods=autoperiod(t, duration, kwargs...), objective=:likelihood, oversample=10, kwargs...) Compute the box-least-squares periodogram. # Parameters * `t` - the time for each observation. Units are irrelevant, except that they must be consistent for all temporal parameters (e.g., `duration`). `Unitful.jl` units work seamlessly without needing to convert. * `y` - the flux value for each observation * `yerr`, optional - the uncertainty for each observation, if not provided, will default to ones * `duration` - The duration or durations to consider. Same units as `t` * `periods`, optional - The period grid to computer the BLS power over. If not provided, [`autoperiod`](@ref) will be called along with any extra keyword arguments (like `minimum_period`) * `objective`, optional - Choose between maximizing the likeilhood (`:likeilhood`, default) or the signal-to-noise ratio (`:snr`). * `oversample`, optional - The number of bins per duration that should be used. Larger values of `oversample` will lead to a finer grid. The returned values are wrapped into a convenience type [`BoxLeastSquares.BLSPeriodogram`](@ref) """ function BLS(t, y, yerr=fill!(similar(y), one(eltype(y))); duration, periods=nothing, objective=:likelihood, oversample=10, kwargs...) if isnothing(periods) periods = autoperiod(t, duration; kwargs...) end # set up arrays powers = similar(periods, Float64) durations = similar(powers, eltype(duration)) t0s = similar(powers, eltype(t)) depths = similar(powers, eltype(y)) snrs = similar(powers) loglikes = similar(powers) # find parameter ranges max_P = maximum(periods) min_τ = minimum(duration) bin_duration = min_τ / oversample max_bins = ceil(Int, max_P / bin_duration) + oversample # work arrays mean_y = similar(y, typeof(inv(first(y))), max_bins + 1) mean_ivar = similar(yerr, typeof(inv(first(yerr)^2)), max_bins + 1) _begin = firstindex(mean_y) # need this because @turbo can't use implicit begin # pre-accumulate some factors ymed = median(y) min_t = minimum(t) sum_y = zero(eltype(mean_y)) sum_ivar = zero(eltype(mean_ivar)) @inbounds for i in eachindex(y, yerr) iv = inv(yerr[i]^2) sum_y += (y[i] - ymed) * iv sum_ivar += iv end # loop over periods in grid search @inbounds for idx in eachindex(periods, powers, durations, t0s, depths, snrs, loglikes) P = periods[idx] n_bins = ceil(Int, P / bin_duration) + oversample @turbo for n in 0:n_bins mean_y[_begin + n] = zero(eltype(mean_y)) mean_ivar[_begin + n] = zero(eltype(mean_ivar)) end @turbo for idx in eachindex(t, y, yerr) ind = wrap_index(t[idx], min_t, P, bin_duration) iv = inv(yerr[idx]^2) mean_y[_begin + ind] += (y[idx] - ymed) * iv mean_ivar[_begin + ind] += iv end # simplify calcualations by wrapping binned values ind = n_bins - oversample for n in 1:oversample mean_y[begin + ind] = mean_y[begin + n] mean_ivar[begin + ind] = mean_ivar[begin + n] ind += 1 end for n in 1:n_bins mean_y[begin + n] += mean_y[begin + n - 1] mean_ivar[begin + n] += mean_ivar[begin + n - 1] end # now, loop over phases powers[idx] = -Inf for dur in duration τ = round(Int, dur / bin_duration) for n in 0:n_bins - τ # estimate in- and out-of-transit flux y_in = mean_y[begin + n + τ] - mean_y[begin + n] ivar_in = mean_ivar[begin + n + τ] - mean_ivar[begin + n] y_out = sum_y - y_in ivar_out = sum_ivar - ivar_in # check if no points in transit (iszero(ivar_in) || iszero(ivar_out)) && continue # normalize y_in /= ivar_in y_out /= ivar_out # check if negative SNR y_out < y_in && continue # compute best-fit depth depth = y_out - y_in depth_err = sqrt(inv(ivar_in) + inv(ivar_out)) # calculate objectives snr = depth / depth_err loglike = 0.5 * ivar_in * (y_out - y_in)^2 if objective === :snr power = snr elseif objective === :likelihood power = loglike else error("invalid objective $objective. Should be one of `:snr` or `:likelihood`") end if power > powers[idx] powers[idx] = power durations[idx] = τ * bin_duration t0s[idx] = mod(n * bin_duration + 0.5 * durations[idx] + min_t, P) depths[idx] = depth snrs[idx] = snr loglikes[idx] = loglike end end end end return BLSPeriodogram(t, y, yerr, periods, duration, objective, powers, durations, t0s, depths, snrs, loglikes) end
[ 27, 7856, 261, 480, 29, 16980, 544, 32, 20661, 14, 14253, 3123, 459, 22266, 3565, 13, 20362, 198, 3500, 26304, 38469, 1634, 198, 198, 37811, 198, 220, 220, 220, 9878, 4303, 263, 2101, 21857, 198, 198, 32, 11282, 29908, 329, 23862, 422, 685, 63, 33, 6561, 63, 16151, 31, 5420, 737, 198, 198, 2, 25458, 198, 9, 685, 63, 14253, 3123, 459, 22266, 3565, 13, 37266, 63, 16151, 31, 5420, 8, 198, 9, 685, 63, 14253, 3123, 459, 22266, 3565, 13, 6477, 63, 16151, 31, 5420, 8, 198, 9, 685, 63, 14253, 3123, 459, 22266, 3565, 13, 41007, 82, 63, 16151, 31, 5420, 8, 198, 198, 2, 49213, 198, 9, 4600, 83, 63, 532, 5128, 640, 10706, 198, 9, 4600, 88, 63, 532, 5128, 1366, 198, 9, 4600, 88, 8056, 63, 532, 5128, 1366, 13479, 198, 9, 4600, 41007, 82, 63, 532, 262, 5128, 9574, 198, 9, 4600, 32257, 62, 259, 63, 532, 262, 5128, 288, 20074, 198, 9, 4600, 15252, 425, 63, 532, 262, 9432, 326, 373, 12991, 1143, 198, 9, 4600, 6477, 63, 532, 262, 1176, 10488, 379, 1123, 2278, 198, 9, 4600, 32257, 63, 532, 262, 1266, 9478, 379, 1123, 2278, 198, 9, 4600, 83, 15, 63, 532, 262, 1266, 11168, 640, 379, 1123, 2278, 198, 9, 4600, 18053, 63, 532, 262, 1266, 11168, 6795, 379, 1123, 2278, 198, 9, 4600, 16184, 81, 63, 532, 262, 6737, 12, 1462, 12, 3919, 786, 8064, 379, 1123, 2278, 198, 9, 4600, 6404, 2339, 63, 532, 262, 2604, 12, 2339, 346, 2894, 379, 1123, 2278, 198, 198, 2, 28114, 889, 198, 198, 43328, 889, 14296, 389, 2810, 329, 4600, 9148, 4303, 263, 2101, 21857, 63, 543, 6338, 21528, 262, 2278, 290, 262, 1176, 198, 37811, 198, 7249, 9878, 4303, 263, 2101, 21857, 90, 15751, 11, 9792, 11, 37, 2767, 11, 11571, 11, 24544, 11, 53, 15751, 27, 25, 23839, 38469, 90, 15751, 5512, 53, 9792, 27, 25, 23839, 38469, 90, 9792, 5512, 53, 37, 2767, 27, 25, 23839, 38469, 90, 37, 2767, 5512, 51, 16, 11, 51, 17, 11, 51, 18, 11, 51, 19, 11, 51, 20, 11, 51, 21, 92, 198, 220, 220, 220, 256, 3712, 53, 15751, 198, 220, 220, 220, 331, 3712, 53, 9792, 198, 220, 220, 220, 331, 8056, 3712, 53, 37, 2767, 198, 220, 220, 220, 9574, 3712, 11571, 198, 220, 220, 220, 9478, 62, 259, 3712, 24544, 198, 220, 220, 220, 9432, 3712, 13940, 23650, 628, 220, 220, 220, 1176, 3712, 51, 16, 198, 220, 220, 220, 9478, 3712, 51, 17, 198, 220, 220, 220, 256, 15, 3712, 51, 18, 198, 220, 220, 220, 6795, 3712, 51, 19, 198, 220, 220, 220, 3013, 81, 3712, 51, 20, 198, 220, 220, 220, 2604, 2339, 3712, 51, 21, 198, 437, 198, 198, 37811, 198, 220, 220, 220, 8315, 3123, 459, 22266, 3565, 13, 41007, 82, 7, 3712, 9148, 4303, 263, 2101, 21857, 8, 198, 198, 13615, 262, 2278, 10706, 329, 262, 2278, 21857, 198, 37811, 198, 41007, 82, 7, 2436, 82, 3712, 9148, 4303, 263, 2101, 21857, 8, 796, 698, 82, 13, 41007, 82, 198, 37811, 198, 220, 220, 220, 8315, 3123, 459, 22266, 3565, 13, 6477, 7, 3712, 9148, 4303, 263, 2101, 21857, 8, 198, 198, 13615, 262, 1176, 10488, 329, 1123, 2278, 329, 262, 2278, 21857, 198, 37811, 198, 6477, 7, 2436, 82, 3712, 9148, 4303, 263, 2101, 21857, 8, 796, 698, 82, 13, 6477, 198, 198, 37811, 198, 220, 220, 220, 8315, 3123, 459, 22266, 3565, 13, 37266, 7, 3712, 9148, 4303, 263, 2101, 21857, 8, 198, 198, 13615, 262, 11168, 10007, 329, 262, 1266, 15830, 2278, 13, 16409, 2278, 11, 9478, 11, 256, 15, 11, 290, 1176, 355, 880, 355, 262, 6376, 286, 262, 3509, 12, 6477, 2278, 13, 198, 37811, 198, 8818, 42287, 7, 2436, 82, 3712, 9148, 4303, 263, 2101, 21857, 8, 198, 220, 220, 220, 773, 796, 1822, 9806, 7, 6477, 7, 2436, 82, 4008, 198, 220, 220, 220, 7182, 796, 1176, 7, 2436, 82, 38381, 521, 60, 198, 220, 220, 220, 583, 796, 9574, 7, 2436, 82, 38381, 521, 60, 198, 220, 220, 220, 22365, 796, 698, 82, 13, 32257, 58, 521, 60, 198, 220, 220, 220, 256, 15, 796, 698, 82, 13, 83, 15, 58, 521, 60, 198, 220, 220, 220, 6795, 796, 698, 82, 13, 18053, 58, 521, 60, 198, 220, 220, 220, 3013, 81, 796, 698, 82, 13, 16184, 81, 58, 521, 60, 198, 220, 220, 220, 6795, 62, 8056, 796, 6795, 1220, 3013, 81, 198, 220, 220, 220, 2604, 2339, 796, 698, 82, 13, 6404, 2339, 58, 521, 60, 198, 220, 220, 220, 1441, 357, 9630, 28, 521, 11, 1176, 28, 79, 322, 11, 2278, 28, 525, 11, 9478, 28, 67, 333, 11, 256, 15, 28, 83, 15, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6795, 28, 18053, 11, 6795, 62, 8056, 28, 18053, 62, 8056, 11, 3013, 81, 28, 16184, 81, 11, 2604, 2339, 28, 6404, 2339, 8, 198, 437, 198, 198, 37811, 198, 220, 220, 220, 1960, 3575, 2101, 7, 83, 11, 9478, 26, 198, 220, 220, 220, 220, 220, 220, 220, 5288, 62, 77, 62, 7645, 270, 28, 18, 11, 8373, 62, 31412, 28, 16, 13, 15, 11, 198, 220, 220, 220, 220, 220, 220, 220, 685, 39504, 62, 41007, 11, 5415, 62, 41007, 12962, 198, 198, 38062, 4142, 5004, 257, 2278, 10706, 422, 262, 1813, 1661, 290, 9478, 7, 82, 737, 18581, 82, 389, 6163, 884, 326, 379, 1551, 4600, 39504, 62, 77, 62, 2213, 292, 48825, 63, 1007, 896, 3051, 13, 383, 4277, 5288, 2278, 318, 5403, 262, 5415, 9478, 13, 383, 4277, 5415, 2278, 318, 4600, 7, 47033, 7, 83, 8, 532, 5288, 7, 83, 4008, 1220, 357, 39504, 62, 77, 62, 7645, 270, 532, 352, 8, 44646, 383, 8373, 5766, 2458, 262, 19468, 33737, 287, 8373, 2272, 12, 257, 4833, 8373, 5766, 481, 2251, 257, 38575, 2278, 10706, 13, 198, 37811, 198, 8818, 1960, 3575, 2101, 7, 83, 3712, 23839, 38469, 90, 51, 5512, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9478, 26, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5288, 62, 77, 62, 7645, 270, 28, 18, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5288, 62, 41007, 28, 12286, 62, 39504, 62, 41007, 7, 32257, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5415, 62, 41007, 28, 12286, 62, 47033, 62, 41007, 7, 83, 11, 5288, 62, 77, 62, 7645, 270, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8373, 62, 31412, 28, 16, 13, 15, 8, 810, 309, 198, 220, 220, 220, 14805, 796, 5415, 7, 83, 8, 532, 5288, 7, 83, 8, 198, 220, 220, 220, 47764, 796, 8373, 62, 31412, 1635, 5288, 7, 32257, 8, 1220, 14805, 61, 17, 628, 220, 220, 220, 611, 5415, 62, 41007, 1279, 5288, 62, 41007, 198, 220, 220, 220, 220, 220, 220, 220, 5288, 62, 41007, 11, 5415, 62, 41007, 796, 5415, 62, 41007, 11, 5288, 62, 41007, 198, 220, 220, 220, 886, 198, 220, 220, 220, 5288, 62, 41007, 26870, 6632, 7, 51, 8, 8614, 4049, 7203, 39504, 2278, 1276, 307, 3967, 4943, 628, 220, 220, 220, 5288, 62, 35324, 796, 800, 7, 47033, 62, 41007, 8, 198, 220, 220, 220, 5415, 62, 35324, 796, 800, 7, 39504, 62, 41007, 8, 628, 220, 220, 220, 299, 69, 796, 352, 1343, 357, 47033, 62, 35324, 532, 5288, 62, 35324, 8, 6184, 115, 47764, 198, 220, 220, 220, 1441, 2488, 13, 10385, 7, 51, 11, 800, 7, 47033, 62, 35324, 532, 47764, 1635, 357, 15, 25, 77, 69, 22305, 198, 437, 198, 198, 12286, 62, 39504, 62, 41007, 7, 32257, 8, 796, 362, 1635, 5415, 7, 32257, 8, 198, 8818, 4277, 62, 47033, 62, 41007, 7, 83, 11, 5288, 62, 77, 62, 7645, 270, 8, 198, 220, 220, 220, 5288, 62, 77, 62, 7645, 270, 1875, 352, 8614, 4049, 7203, 39504, 1271, 286, 1007, 896, 1276, 307, 3744, 621, 352, 4943, 198, 220, 220, 220, 14805, 796, 5415, 7, 83, 8, 532, 5288, 7, 83, 8, 198, 220, 220, 220, 1441, 14805, 1220, 357, 39504, 62, 77, 62, 7645, 270, 532, 352, 8, 198, 437, 198, 198, 31, 45145, 14441, 7, 87, 11, 2278, 8, 796, 2124, 532, 2278, 1635, 40122, 7, 87, 1220, 2278, 8, 198, 198, 31, 45145, 2163, 14441, 62, 9630, 7, 83, 3712, 15633, 11, 949, 62, 83, 11, 350, 11, 9874, 62, 32257, 8, 198, 220, 220, 220, 21596, 62, 2213, 19524, 7, 5317, 11, 14441, 7, 83, 532, 949, 62, 83, 11, 350, 8, 1220, 9874, 62, 32257, 8, 1343, 352, 198, 437, 198, 2, 428, 2446, 481, 4929, 304, 13, 70, 13, 27741, 31208, 1279, 25, 7913, 198, 2, 543, 318, 1593, 780, 21596, 62, 2213, 19524, 407, 5447, 198, 31, 45145, 2163, 14441, 62, 9630, 7, 83, 11, 949, 62, 83, 11, 350, 11, 9874, 62, 32257, 8, 198, 220, 220, 220, 40122, 7, 5317, 11, 14441, 7, 83, 532, 949, 62, 83, 11, 350, 8, 1220, 9874, 62, 32257, 8, 1343, 352, 198, 437, 198, 198, 37811, 198, 220, 220, 220, 347, 6561, 7, 83, 11, 331, 11, 685, 88, 8056, 11208, 198, 220, 220, 220, 220, 220, 220, 220, 9478, 11, 9574, 28, 2306, 3575, 2101, 7, 83, 11, 9478, 11, 479, 86, 22046, 986, 828, 220, 198, 220, 220, 220, 220, 220, 220, 220, 9432, 28, 25, 2339, 11935, 11, 10753, 1403, 28, 940, 11, 479, 86, 22046, 23029, 198, 198, 7293, 1133, 262, 3091, 12, 293, 459, 12, 16485, 3565, 2278, 21857, 13, 198, 198, 2, 40117, 198, 9, 4600, 83, 63, 532, 262, 640, 329, 1123, 13432, 13, 27719, 389, 18046, 11, 2845, 326, 484, 1276, 307, 6414, 329, 477, 21964, 10007, 357, 68, 13, 70, 1539, 4600, 32257, 63, 737, 4600, 26453, 913, 13, 20362, 63, 4991, 670, 33681, 1231, 18139, 284, 10385, 13, 198, 9, 4600, 88, 63, 532, 262, 28462, 1988, 329, 1123, 13432, 198, 9, 4600, 88, 8056, 47671, 11902, 532, 262, 13479, 329, 1123, 13432, 11, 611, 407, 2810, 11, 481, 4277, 284, 3392, 198, 9, 4600, 32257, 63, 532, 383, 9478, 393, 288, 20074, 284, 2074, 13, 16766, 4991, 355, 4600, 83, 63, 198, 9, 4600, 41007, 82, 47671, 11902, 532, 383, 2278, 10706, 284, 3644, 262, 347, 6561, 1176, 625, 13, 1002, 407, 2810, 11, 685, 63, 2306, 3575, 2101, 63, 16151, 31, 5420, 8, 481, 307, 1444, 1863, 351, 597, 3131, 21179, 7159, 357, 2339, 4600, 39504, 62, 41007, 63, 8, 198, 9, 4600, 15252, 425, 47671, 11902, 532, 17489, 1022, 48350, 262, 588, 346, 2894, 357, 63, 25, 2339, 346, 2894, 47671, 4277, 8, 393, 262, 6737, 12, 1462, 12, 3919, 786, 8064, 357, 63, 25, 16184, 81, 63, 737, 198, 9, 4600, 13801, 1403, 47671, 11902, 532, 383, 1271, 286, 41701, 583, 9478, 326, 815, 307, 973, 13, 406, 32270, 3815, 286, 4600, 13801, 1403, 63, 481, 1085, 284, 257, 38575, 10706, 13, 198, 198, 464, 4504, 3815, 389, 12908, 656, 257, 15607, 2099, 685, 63, 14253, 3123, 459, 22266, 3565, 13, 9148, 4303, 263, 2101, 21857, 63, 16151, 31, 5420, 8, 198, 37811, 198, 8818, 347, 6561, 7, 83, 11, 331, 11, 331, 8056, 28, 20797, 0, 7, 38610, 7, 88, 828, 530, 7, 417, 4906, 7, 88, 4008, 1776, 198, 220, 220, 220, 9478, 11, 198, 220, 220, 220, 9574, 28, 22366, 11, 198, 220, 220, 220, 9432, 28, 25, 2339, 11935, 11, 198, 220, 220, 220, 10753, 1403, 28, 940, 11, 198, 220, 220, 220, 479, 86, 22046, 23029, 198, 220, 220, 220, 611, 318, 22366, 7, 41007, 82, 8, 198, 220, 220, 220, 220, 220, 220, 220, 9574, 796, 1960, 3575, 2101, 7, 83, 11, 9478, 26, 479, 86, 22046, 23029, 198, 220, 220, 220, 886, 628, 220, 220, 220, 1303, 900, 510, 26515, 198, 220, 220, 220, 5635, 796, 2092, 7, 41007, 82, 11, 48436, 2414, 8, 198, 220, 220, 220, 288, 20074, 796, 2092, 7, 30132, 11, 1288, 4906, 7, 32257, 4008, 198, 220, 220, 220, 256, 15, 82, 796, 2092, 7, 30132, 11, 1288, 4906, 7, 83, 4008, 198, 220, 220, 220, 21593, 796, 2092, 7, 30132, 11, 1288, 4906, 7, 88, 4008, 198, 220, 220, 220, 3013, 3808, 796, 2092, 7, 30132, 8, 198, 220, 220, 220, 2604, 75, 7938, 796, 2092, 7, 30132, 8, 628, 220, 220, 220, 1303, 1064, 11507, 16069, 198, 220, 220, 220, 3509, 62, 47, 796, 5415, 7, 41007, 82, 8, 198, 220, 220, 220, 949, 62, 32830, 796, 5288, 7, 32257, 8, 198, 220, 220, 220, 9874, 62, 32257, 796, 949, 62, 32830, 1220, 10753, 1403, 198, 220, 220, 220, 3509, 62, 65, 1040, 796, 2906, 346, 7, 5317, 11, 3509, 62, 47, 1220, 9874, 62, 32257, 8, 1343, 10753, 1403, 198, 220, 220, 220, 1303, 670, 26515, 198, 220, 220, 220, 1612, 62, 88, 796, 2092, 7, 88, 11, 2099, 1659, 7, 16340, 7, 11085, 7, 88, 4008, 828, 3509, 62, 65, 1040, 1343, 352, 8, 198, 220, 220, 220, 1612, 62, 452, 283, 796, 2092, 7, 88, 8056, 11, 2099, 1659, 7, 16340, 7, 11085, 7, 88, 8056, 8, 61, 17, 36911, 3509, 62, 65, 1040, 1343, 352, 8, 198, 220, 220, 220, 4808, 27471, 796, 717, 9630, 7, 32604, 62, 88, 8, 1303, 761, 428, 780, 2488, 36590, 2127, 460, 470, 779, 16992, 2221, 628, 220, 220, 220, 1303, 662, 12, 4134, 388, 5039, 617, 5087, 198, 220, 220, 220, 331, 1150, 796, 14288, 7, 88, 8, 198, 220, 220, 220, 949, 62, 83, 796, 5288, 7, 83, 8, 628, 220, 220, 220, 2160, 62, 88, 796, 6632, 7, 417, 4906, 7, 32604, 62, 88, 4008, 198, 220, 220, 220, 2160, 62, 452, 283, 796, 6632, 7, 417, 4906, 7, 32604, 62, 452, 283, 4008, 198, 220, 220, 220, 2488, 259, 65, 3733, 329, 1312, 287, 1123, 9630, 7, 88, 11, 331, 8056, 8, 198, 220, 220, 220, 220, 220, 220, 220, 21628, 796, 800, 7, 88, 8056, 58, 72, 60, 61, 17, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2160, 62, 88, 15853, 357, 88, 58, 72, 60, 532, 331, 1150, 8, 1635, 21628, 198, 220, 220, 220, 220, 220, 220, 220, 2160, 62, 452, 283, 15853, 21628, 198, 220, 220, 220, 886, 628, 220, 220, 220, 1303, 9052, 625, 9574, 287, 10706, 2989, 198, 220, 220, 220, 2488, 259, 65, 3733, 329, 4686, 87, 287, 1123, 9630, 7, 41007, 82, 11, 5635, 11, 288, 20074, 11, 256, 15, 82, 11, 21593, 11, 3013, 3808, 11, 2604, 75, 7938, 8, 198, 220, 220, 220, 220, 220, 220, 220, 350, 796, 9574, 58, 312, 87, 60, 198, 220, 220, 220, 220, 220, 220, 220, 299, 62, 65, 1040, 796, 2906, 346, 7, 5317, 11, 350, 1220, 9874, 62, 32257, 8, 1343, 10753, 1403, 198, 220, 220, 220, 220, 220, 220, 220, 2488, 36590, 2127, 329, 299, 287, 657, 25, 77, 62, 65, 1040, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1612, 62, 88, 29795, 27471, 1343, 299, 60, 796, 6632, 7, 417, 4906, 7, 32604, 62, 88, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1612, 62, 452, 283, 29795, 27471, 1343, 299, 60, 796, 6632, 7, 417, 4906, 7, 32604, 62, 452, 283, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 886, 628, 220, 220, 220, 220, 220, 220, 220, 2488, 36590, 2127, 329, 4686, 87, 287, 1123, 9630, 7, 83, 11, 331, 11, 331, 8056, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 773, 796, 14441, 62, 9630, 7, 83, 58, 312, 87, 4357, 949, 62, 83, 11, 350, 11, 9874, 62, 32257, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 21628, 796, 800, 7, 88, 8056, 58, 312, 87, 60, 61, 17, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1612, 62, 88, 29795, 27471, 1343, 773, 60, 15853, 357, 88, 58, 312, 87, 60, 532, 331, 1150, 8, 1635, 21628, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1612, 62, 452, 283, 29795, 27471, 1343, 773, 60, 15853, 21628, 198, 220, 220, 220, 220, 220, 220, 220, 886, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 30276, 42302, 723, 602, 416, 27074, 9874, 2817, 3815, 198, 220, 220, 220, 220, 220, 220, 220, 773, 796, 299, 62, 65, 1040, 532, 10753, 1403, 198, 220, 220, 220, 220, 220, 220, 220, 329, 299, 287, 352, 25, 13801, 1403, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1612, 62, 88, 58, 27471, 1343, 773, 60, 796, 1612, 62, 88, 58, 27471, 1343, 299, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1612, 62, 452, 283, 58, 27471, 1343, 773, 60, 796, 1612, 62, 452, 283, 58, 27471, 1343, 299, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 773, 15853, 352, 198, 220, 220, 220, 220, 220, 220, 220, 886, 628, 220, 220, 220, 220, 220, 220, 220, 329, 299, 287, 352, 25, 77, 62, 65, 1040, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1612, 62, 88, 58, 27471, 1343, 299, 60, 15853, 1612, 62, 88, 58, 27471, 1343, 299, 532, 352, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1612, 62, 452, 283, 58, 27471, 1343, 299, 60, 15853, 1612, 62, 452, 283, 58, 27471, 1343, 299, 532, 352, 60, 198, 220, 220, 220, 220, 220, 220, 220, 886, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 783, 11, 9052, 625, 21164, 198, 220, 220, 220, 220, 220, 220, 220, 5635, 58, 312, 87, 60, 796, 532, 18943, 198, 220, 220, 220, 220, 220, 220, 220, 329, 22365, 287, 9478, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 46651, 796, 2835, 7, 5317, 11, 22365, 1220, 9874, 62, 32257, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 299, 287, 657, 25, 77, 62, 65, 1040, 532, 46651, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 8636, 287, 12, 290, 503, 12, 1659, 12, 7645, 270, 28462, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 331, 62, 259, 796, 1612, 62, 88, 58, 27471, 1343, 299, 1343, 46651, 60, 532, 1612, 62, 88, 58, 27471, 1343, 299, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 21628, 283, 62, 259, 796, 1612, 62, 452, 283, 58, 27471, 1343, 299, 1343, 46651, 60, 532, 1612, 62, 452, 283, 58, 27471, 1343, 299, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 331, 62, 448, 796, 2160, 62, 88, 532, 331, 62, 259, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 21628, 283, 62, 448, 796, 2160, 62, 452, 283, 532, 21628, 283, 62, 259, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 2198, 611, 645, 2173, 287, 11168, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 271, 22570, 7, 452, 283, 62, 259, 8, 8614, 318, 22570, 7, 452, 283, 62, 448, 4008, 11405, 220, 2555, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 3487, 1096, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 331, 62, 259, 1220, 28, 21628, 283, 62, 259, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 331, 62, 448, 1220, 28, 21628, 283, 62, 448, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 2198, 611, 4633, 11346, 49, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 331, 62, 448, 1279, 331, 62, 259, 11405, 2555, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 24061, 1266, 12, 11147, 6795, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6795, 796, 331, 62, 448, 532, 331, 62, 259, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6795, 62, 8056, 796, 19862, 17034, 7, 16340, 7, 452, 283, 62, 259, 8, 1343, 800, 7, 452, 283, 62, 448, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 15284, 15221, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3013, 81, 796, 6795, 1220, 6795, 62, 8056, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2604, 2339, 796, 657, 13, 20, 1635, 21628, 283, 62, 259, 1635, 357, 88, 62, 448, 532, 331, 62, 259, 8, 61, 17, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 9432, 24844, 1058, 16184, 81, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1176, 796, 3013, 81, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2073, 361, 9432, 24844, 1058, 2339, 11935, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1176, 796, 2604, 2339, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2073, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4049, 7203, 259, 12102, 9432, 720, 15252, 425, 13, 10358, 307, 530, 286, 4600, 25, 16184, 81, 63, 393, 4600, 25, 2339, 11935, 63, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 886, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 1176, 1875, 5635, 58, 312, 87, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5635, 58, 312, 87, 60, 796, 1176, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 288, 20074, 58, 312, 87, 60, 796, 46651, 1635, 9874, 62, 32257, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 256, 15, 82, 58, 312, 87, 60, 796, 953, 7, 77, 1635, 9874, 62, 32257, 1343, 657, 13, 20, 1635, 288, 20074, 58, 312, 87, 60, 1343, 949, 62, 83, 11, 350, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 21593, 58, 312, 87, 60, 796, 6795, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3013, 3808, 58, 312, 87, 60, 796, 3013, 81, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2604, 75, 7938, 58, 312, 87, 60, 796, 2604, 2339, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 886, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 886, 198, 220, 220, 220, 220, 220, 220, 220, 886, 198, 220, 220, 220, 886, 628, 220, 220, 220, 1441, 9878, 4303, 263, 2101, 21857, 7, 83, 11, 331, 11, 331, 8056, 11, 9574, 11, 9478, 11, 9432, 11, 5635, 11, 288, 20074, 11, 256, 15, 82, 11, 21593, 11, 3013, 3808, 11, 2604, 75, 7938, 8, 198, 437, 628 ]
2.330126
4,053
# returns the variable (or matrix), lagged from 1 to p times, # with the first p rows filled with ones (to avoid divide errors) # remember to drop those rows before doing analysis function lags(x,p) n = size(x,1) k = size(x,2) lagged_x = zeros(eltype(x),n,p*k) for i = 1:p lagged_x[:,i*k-k+1:i*k] = lag(x,i) end return lagged_x end
[ 2, 5860, 262, 7885, 357, 273, 17593, 828, 300, 14655, 422, 352, 284, 279, 1661, 11, 198, 2, 351, 262, 717, 279, 15274, 5901, 351, 3392, 357, 1462, 3368, 14083, 8563, 8, 198, 2, 3505, 284, 4268, 883, 15274, 878, 1804, 3781, 198, 8818, 220, 300, 3775, 7, 87, 11, 79, 8, 198, 197, 77, 796, 2546, 7, 87, 11, 16, 8, 198, 220, 220, 220, 479, 796, 2546, 7, 87, 11, 17, 8, 198, 197, 75, 14655, 62, 87, 796, 1976, 27498, 7, 417, 4906, 7, 87, 828, 77, 11, 79, 9, 74, 8, 198, 197, 1640, 1312, 796, 352, 25, 79, 198, 197, 197, 75, 14655, 62, 87, 58, 45299, 72, 9, 74, 12, 74, 10, 16, 25, 72, 9, 74, 60, 796, 19470, 7, 87, 11, 72, 8, 198, 197, 437, 198, 220, 220, 220, 1441, 300, 14655, 62, 87, 198, 437, 197, 198, 220, 198 ]
2.348993
149
<reponame>grahamas/AxisIndices.jl @testset "BroadcastStyle" begin A = typeof(AxisArray(ones(2,2))) B = typeof(ones(2,2)) @test Base.BroadcastStyle(A) isa AxisIndices.AxisArrayStyle SA = Base.BroadcastStyle(A) SB = Base.BroadcastStyle(B) @test Base.BroadcastStyle(SA, SA) isa AxisIndices.AxisArrayStyle @test Base.BroadcastStyle(SA, SB) isa AxisIndices.AxisArrayStyle @test Base.BroadcastStyle(SB, SA) isa AxisIndices.AxisArrayStyle end @testset "combine" begin #= @testset "broadcast_axis" begin @test @inferred(broadcast_axis(Axis(1:2), Axis(1:2))) isa Axis{Int64,Int64,UnitRange{Int64},Base.OneTo{Int64}} @test @inferred(broadcast_axis(Axis(1:2), SimpleAxis(1:2))) isa Axis{Int64,Int64,UnitRange{Int64},UnitRange{Int64}} @test @inferred(broadcast_axis(Axis(1:2), 1:2)) isa Axis{Int64,Int64,UnitRange{Int64},UnitRange{Int64}} @test @inferred(broadcast_axis(SimpleAxis(1:2), SimpleAxis(1:2))) isa SimpleAxis{Int,UnitRange{Int}} @test @inferred(broadcast_axis(SimpleAxis(1:2), 1:2)) isa SimpleAxis{Int,UnitRange{Int}} @test @inferred(broadcast_axis(SimpleAxis(1:2), Axis(1:2))) isa Axis{Int64,Int64,UnitRange{Int64},UnitRange{Int64}} @test @inferred(broadcast_axis(1:2, SimpleAxis(1:2))) isa SimpleAxis{Int,UnitRange{Int}} @test @inferred(broadcast_axis(1:2, 1:2)) isa UnitRange{Int} @test @inferred(broadcast_axis(1:2, Axis(1:2))) isa Axis{Int64,Int64,UnitRange{Int64},UnitRange{Int64}} @test @inferred(broadcast_axis(1:2, Symbol.(1:2))) isa Vector{Symbol} @test @inferred(broadcast_axis(Symbol.(1:2), 1:2)) isa Vector{Symbol} @test @inferred(broadcast_axis(1:2, string.(1:2))) isa Vector{String} @test @inferred(broadcast_axis(string.(1:2), 1:2)) isa Vector{String} #@test_throws ErrorException("No method available for combining keys of type Int64 and String.") combine_keys(12, "x") @test @inferred(broadcast_axis(1:2, SimpleAxis(1:2))) isa SimpleAxis{Int,UnitRange{Int}} end @test @inferred(broadcast_axis(SimpleAxis(1:2), SimpleAxis(1:2))) == SimpleAxis(1:2) =# @testset "Multiple broadcasts" begin @test (AxisArray(ones(2)) .- AxisArray(ones(2))) .^ 2 == zeros(2) end @test @inferred(Base.Broadcast.broadcast_shape((1:10,), (1:10, 1:10), (1:10,))) == (1:10, 1:10) b1 = Broadcast.broadcast_shape( axes(CartesianIndices((1,))), axes(CartesianIndices((3, 2, 2))), axes(CartesianIndices((3, 2, 2))) ) b2 = Broadcast.broadcast_shape( axes(CartesianAxes((1,))), axes(CartesianIndices((3, 2, 2))), axes(CartesianAxes((3, 2, 2))) ) @test b1 == b2 b1 = Broadcast.broadcast_shape( axes(LinearIndices((1,))), axes(LinearIndices((3, 2, 2))), axes(LinearIndices((3, 2, 2))) ) b2 = Broadcast.broadcast_shape( axes(LinearAxes((1,))), axes(LinearIndices((3, 2, 2))), axes(LinearAxes((3, 2, 2))) ) @test b1 == b2 @test_throws DimensionMismatch Broadcast.broadcast_shape(axes(LinearAxes((3, 2, 2))), axes(LinearAxes((3, 2, 5)))) @testset "combine_axes" begin @test Broadcast.combine_axes(CartesianIndices((1,)), CartesianIndices((3, 2, 2)), CartesianIndices((3, 2, 2))) == @inferred(Broadcast.combine_axes(CartesianAxes((1,)), CartesianIndices((3, 2, 2)), CartesianAxes((3, 2, 2)))) @test Broadcast.combine_axes(LinearIndices((1,)), LinearIndices((3, 2, 2)), LinearIndices((3, 2, 2))) == @inferred(Broadcast.combine_axes(LinearAxes((1,)), CartesianAxes((3, 2, 2)), CartesianAxes((3, 2, 2)))) cartinds = CartesianIndices((2, 2)); cartaxes = CartesianAxes((2:3, 3:4)); @test keys.(Broadcast.combine_axes(cartaxes, cartaxes, cartaxes)) == (2:3, 3:4) @test keys.(Broadcast.combine_axes(cartaxes, cartaxes, cartinds)) == (2:3, 3:4) @test keys.(Broadcast.combine_axes(cartaxes, cartinds, cartaxes)) == (2:3, 3:4) @test keys.(Broadcast.combine_axes(cartinds, cartaxes, cartaxes)) == (2:3, 3:4) end end @testset "Broadcasting" begin x = Axis(1:10, 1:10) y = SimpleAxis(1:10) z = 1:10 @test @inferred(broadcasted(bstyle, -, 2, x)) == @inferred(broadcasted(bstyle, -, 2, y)) == broadcasted(bstyle, -, 2, z) @test @inferred(broadcasted(bstyle, -, x, 2)) == @inferred(broadcasted(bstyle, -, y, 2)) == broadcasted(bstyle, -, z, 2) @test @inferred(broadcasted(bstyle, +, 2, x)) == @inferred(broadcasted(bstyle, +, 2, y)) == broadcasted(bstyle, +, 2, z) @test isa(broadcasted(bstyle, +, 2, x), Axis) @test isa(broadcasted(bstyle, +, 2, y), SimpleAxis) @test @inferred(broadcasted(bstyle, +, x, 2)) == @inferred(broadcasted(bstyle, +, y, 2)) == broadcasted(bstyle, +, z, 2) @test isa(broadcasted(bstyle, +, x, 2), Axis) @test isa(broadcasted(bstyle, +, y, 2), SimpleAxis) @test @inferred(broadcasted(bstyle, *, 2, x)) == @inferred(broadcasted(bstyle, *, 2, y)) == broadcasted(bstyle, *, 2, z) @test @inferred(broadcasted(bstyle, *, x, 2)) == @inferred(broadcasted(bstyle, *, y, 2)) == broadcasted(bstyle, *, z, 2) @test broadcasted(bstyle, -, x, 1//2) == 1//2:19//2 @test broadcasted(bstyle, -, y, 1//2) == 1//2:19//2 end @testset "Binary broadcasting operations (.+)" begin #= TODO moved to docs @testset "standard case" begin a = AxisArray(ones(3), (2:4,)) @test a .+ a == 2ones(3) @test keys(axes(a .+ a, 1)) == 2:4 @test a .+ a.+ a == 3ones(3) @test keys(axes(a .+ a .+ a, 1)) == 2:4 @test (a .= 0 .* a .+ 7) == [7, 7, 7] end =# #= TODO Need to explain how order matters @testset "Order matters" begin x = AxisArray(ones(3, 5), (:, nothing)) y = AxisArray(ones(3, 5), (nothing, :y)) lhs = x .+ y rhs = y .+ x @test dimnames(lhs) == (:x, :y) == dimnames(rhs) @test lhs == 2ones(3, 5) == rhs end =# @testset "broadcasting" begin v = AxisArray(zeros(3,), (2:4,)) m = AxisArray(ones(3, 3), (2:4, 3:5)) s = 0 @test @inferred(v .+ m) == ones(3, 3) == @inferred(m .+ v) @test @inferred(s .+ m) == ones(3, 3) == @inferred(m .+ s) @test @inferred(s .+ v .+ m) == ones(3, 3) == @inferred(m .+ s .+ v) @test keys.(axes(v .+ m)) == (2:4, 3:5) == keys.(axes(m .+ v)) @test keys.(axes(s .+ m)) == (2:4, 3:5) == keys.(axes(m .+ s)) @test keys.(axes(s .+ v .+ m)) == (2:4, 3:5) == keys.(axes(m .+ s .+ v)) end end
[ 27, 7856, 261, 480, 29, 70, 13220, 292, 14, 31554, 271, 5497, 1063, 13, 20362, 198, 198, 31, 9288, 2617, 366, 30507, 2701, 21466, 1, 2221, 198, 220, 220, 220, 317, 796, 2099, 1659, 7, 31554, 271, 19182, 7, 1952, 7, 17, 11, 17, 22305, 198, 220, 220, 220, 347, 796, 2099, 1659, 7, 1952, 7, 17, 11, 17, 4008, 198, 220, 220, 220, 2488, 9288, 7308, 13, 30507, 2701, 21466, 7, 32, 8, 318, 64, 38349, 5497, 1063, 13, 31554, 271, 19182, 21466, 198, 220, 220, 220, 14719, 796, 7308, 13, 30507, 2701, 21466, 7, 32, 8, 198, 220, 220, 220, 18056, 796, 7308, 13, 30507, 2701, 21466, 7, 33, 8, 198, 220, 220, 220, 2488, 9288, 7308, 13, 30507, 2701, 21466, 7, 4090, 11, 14719, 8, 318, 64, 38349, 5497, 1063, 13, 31554, 271, 19182, 21466, 198, 220, 220, 220, 2488, 9288, 7308, 13, 30507, 2701, 21466, 7, 4090, 11, 18056, 8, 318, 64, 38349, 5497, 1063, 13, 31554, 271, 19182, 21466, 198, 220, 220, 220, 2488, 9288, 7308, 13, 30507, 2701, 21466, 7, 16811, 11, 14719, 8, 318, 64, 38349, 5497, 1063, 13, 31554, 271, 19182, 21466, 198, 437, 198, 198, 31, 9288, 2617, 366, 24011, 500, 1, 2221, 198, 220, 220, 220, 1303, 28, 198, 220, 220, 220, 2488, 9288, 2617, 366, 36654, 2701, 62, 22704, 1, 2221, 198, 220, 220, 220, 220, 220, 220, 220, 2488, 9288, 2488, 259, 18186, 7, 36654, 2701, 62, 22704, 7, 31554, 271, 7, 16, 25, 17, 828, 38349, 7, 16, 25, 17, 22305, 220, 220, 220, 220, 220, 220, 318, 64, 38349, 90, 5317, 2414, 11, 5317, 2414, 11, 26453, 17257, 90, 5317, 2414, 5512, 14881, 13, 3198, 2514, 90, 5317, 2414, 11709, 198, 220, 220, 220, 220, 220, 220, 220, 2488, 9288, 2488, 259, 18186, 7, 36654, 2701, 62, 22704, 7, 31554, 271, 7, 16, 25, 17, 828, 17427, 31554, 271, 7, 16, 25, 17, 22305, 318, 64, 38349, 90, 5317, 2414, 11, 5317, 2414, 11, 26453, 17257, 90, 5317, 2414, 5512, 26453, 17257, 90, 5317, 2414, 11709, 198, 220, 220, 220, 220, 220, 220, 220, 2488, 9288, 2488, 259, 18186, 7, 36654, 2701, 62, 22704, 7, 31554, 271, 7, 16, 25, 17, 828, 352, 25, 17, 4008, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 318, 64, 38349, 90, 5317, 2414, 11, 5317, 2414, 11, 26453, 17257, 90, 5317, 2414, 5512, 26453, 17257, 90, 5317, 2414, 11709, 628, 220, 220, 220, 220, 220, 220, 220, 2488, 9288, 2488, 259, 18186, 7, 36654, 2701, 62, 22704, 7, 26437, 31554, 271, 7, 16, 25, 17, 828, 17427, 31554, 271, 7, 16, 25, 17, 22305, 318, 64, 17427, 31554, 271, 90, 5317, 11, 26453, 17257, 90, 5317, 11709, 198, 220, 220, 220, 220, 220, 220, 220, 2488, 9288, 2488, 259, 18186, 7, 36654, 2701, 62, 22704, 7, 26437, 31554, 271, 7, 16, 25, 17, 828, 352, 25, 17, 4008, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 318, 64, 17427, 31554, 271, 90, 5317, 11, 26453, 17257, 90, 5317, 11709, 198, 220, 220, 220, 220, 220, 220, 220, 2488, 9288, 2488, 259, 18186, 7, 36654, 2701, 62, 22704, 7, 26437, 31554, 271, 7, 16, 25, 17, 828, 38349, 7, 16, 25, 17, 22305, 220, 220, 220, 220, 220, 220, 318, 64, 38349, 90, 5317, 2414, 11, 5317, 2414, 11, 26453, 17257, 90, 5317, 2414, 5512, 26453, 17257, 90, 5317, 2414, 11709, 628, 220, 220, 220, 220, 220, 220, 220, 2488, 9288, 2488, 259, 18186, 7, 36654, 2701, 62, 22704, 7, 16, 25, 17, 11, 17427, 31554, 271, 7, 16, 25, 17, 22305, 318, 64, 17427, 31554, 271, 90, 5317, 11, 26453, 17257, 90, 5317, 11709, 198, 220, 220, 220, 220, 220, 220, 220, 2488, 9288, 2488, 259, 18186, 7, 36654, 2701, 62, 22704, 7, 16, 25, 17, 11, 352, 25, 17, 4008, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 318, 64, 11801, 17257, 90, 5317, 92, 198, 220, 220, 220, 220, 220, 220, 220, 2488, 9288, 2488, 259, 18186, 7, 36654, 2701, 62, 22704, 7, 16, 25, 17, 11, 38349, 7, 16, 25, 17, 22305, 220, 220, 220, 220, 220, 220, 318, 64, 38349, 90, 5317, 2414, 11, 5317, 2414, 11, 26453, 17257, 90, 5317, 2414, 5512, 26453, 17257, 90, 5317, 2414, 11709, 628, 220, 220, 220, 220, 220, 220, 220, 2488, 9288, 2488, 259, 18186, 7, 36654, 2701, 62, 22704, 7, 16, 25, 17, 11, 38357, 12195, 16, 25, 17, 22305, 318, 64, 20650, 90, 13940, 23650, 92, 198, 220, 220, 220, 220, 220, 220, 220, 2488, 9288, 2488, 259, 18186, 7, 36654, 2701, 62, 22704, 7, 13940, 23650, 12195, 16, 25, 17, 828, 352, 25, 17, 4008, 318, 64, 20650, 90, 13940, 23650, 92, 628, 220, 220, 220, 220, 220, 220, 220, 2488, 9288, 2488, 259, 18186, 7, 36654, 2701, 62, 22704, 7, 16, 25, 17, 11, 4731, 12195, 16, 25, 17, 22305, 318, 64, 20650, 90, 10100, 92, 198, 220, 220, 220, 220, 220, 220, 220, 2488, 9288, 2488, 259, 18186, 7, 36654, 2701, 62, 22704, 7, 8841, 12195, 16, 25, 17, 828, 352, 25, 17, 4008, 318, 64, 20650, 90, 10100, 92, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 31, 9288, 62, 400, 8516, 13047, 16922, 7203, 2949, 2446, 1695, 329, 19771, 8251, 286, 2099, 2558, 2414, 290, 10903, 19570, 12082, 62, 13083, 7, 1065, 11, 366, 87, 4943, 628, 220, 220, 220, 220, 220, 220, 220, 2488, 9288, 2488, 259, 18186, 7, 36654, 2701, 62, 22704, 7, 16, 25, 17, 11, 17427, 31554, 271, 7, 16, 25, 17, 22305, 318, 64, 17427, 31554, 271, 90, 5317, 11, 26453, 17257, 90, 5317, 11709, 198, 220, 220, 220, 886, 628, 220, 220, 220, 2488, 9288, 2488, 259, 18186, 7, 36654, 2701, 62, 22704, 7, 26437, 31554, 271, 7, 16, 25, 17, 828, 17427, 31554, 271, 7, 16, 25, 17, 22305, 6624, 17427, 31554, 271, 7, 16, 25, 17, 8, 198, 220, 220, 220, 796, 2, 628, 220, 220, 220, 2488, 9288, 2617, 366, 31217, 30423, 1, 2221, 198, 220, 220, 220, 220, 220, 220, 220, 2488, 9288, 357, 31554, 271, 19182, 7, 1952, 7, 17, 4008, 764, 12, 38349, 19182, 7, 1952, 7, 17, 22305, 764, 61, 362, 6624, 1976, 27498, 7, 17, 8, 198, 220, 220, 220, 886, 628, 220, 220, 220, 2488, 9288, 2488, 259, 18186, 7, 14881, 13, 30507, 2701, 13, 36654, 2701, 62, 43358, 19510, 16, 25, 940, 11, 828, 357, 16, 25, 940, 11, 352, 25, 940, 828, 357, 16, 25, 940, 11, 22305, 6624, 357, 16, 25, 940, 11, 352, 25, 940, 8, 198, 220, 220, 220, 275, 16, 796, 44244, 13, 36654, 2701, 62, 43358, 7, 198, 220, 220, 220, 220, 220, 220, 220, 34197, 7, 43476, 35610, 5497, 1063, 19510, 16, 11, 4008, 828, 198, 220, 220, 220, 220, 220, 220, 220, 34197, 7, 43476, 35610, 5497, 1063, 19510, 18, 11, 362, 11, 362, 4008, 828, 198, 220, 220, 220, 220, 220, 220, 220, 34197, 7, 43476, 35610, 5497, 1063, 19510, 18, 11, 362, 11, 362, 22305, 198, 220, 220, 220, 1267, 198, 220, 220, 220, 275, 17, 796, 44244, 13, 36654, 2701, 62, 43358, 7, 198, 220, 220, 220, 220, 220, 220, 220, 34197, 7, 43476, 35610, 31554, 274, 19510, 16, 11, 4008, 828, 198, 220, 220, 220, 220, 220, 220, 220, 34197, 7, 43476, 35610, 5497, 1063, 19510, 18, 11, 362, 11, 362, 4008, 828, 198, 220, 220, 220, 220, 220, 220, 220, 34197, 7, 43476, 35610, 31554, 274, 19510, 18, 11, 362, 11, 362, 22305, 198, 220, 220, 220, 1267, 198, 220, 220, 220, 2488, 9288, 275, 16, 6624, 275, 17, 628, 220, 220, 220, 275, 16, 796, 44244, 13, 36654, 2701, 62, 43358, 7, 198, 220, 220, 220, 220, 220, 220, 220, 34197, 7, 14993, 451, 5497, 1063, 19510, 16, 11, 4008, 828, 198, 220, 220, 220, 220, 220, 220, 220, 34197, 7, 14993, 451, 5497, 1063, 19510, 18, 11, 362, 11, 362, 4008, 828, 198, 220, 220, 220, 220, 220, 220, 220, 34197, 7, 14993, 451, 5497, 1063, 19510, 18, 11, 362, 11, 362, 22305, 198, 220, 220, 220, 1267, 198, 220, 220, 220, 275, 17, 796, 44244, 13, 36654, 2701, 62, 43358, 7, 198, 220, 220, 220, 220, 220, 220, 220, 34197, 7, 14993, 451, 31554, 274, 19510, 16, 11, 4008, 828, 198, 220, 220, 220, 220, 220, 220, 220, 34197, 7, 14993, 451, 5497, 1063, 19510, 18, 11, 362, 11, 362, 4008, 828, 198, 220, 220, 220, 220, 220, 220, 220, 34197, 7, 14993, 451, 31554, 274, 19510, 18, 11, 362, 11, 362, 22305, 198, 220, 220, 220, 1267, 198, 220, 220, 220, 2488, 9288, 275, 16, 6624, 275, 17, 628, 220, 220, 220, 2488, 9288, 62, 400, 8516, 34024, 44, 1042, 963, 44244, 13, 36654, 2701, 62, 43358, 7, 897, 274, 7, 14993, 451, 31554, 274, 19510, 18, 11, 362, 11, 362, 4008, 828, 34197, 7, 14993, 451, 31554, 274, 19510, 18, 11, 362, 11, 642, 35514, 628, 198, 220, 220, 220, 2488, 9288, 2617, 366, 24011, 500, 62, 897, 274, 1, 2221, 198, 220, 220, 220, 220, 220, 220, 220, 2488, 9288, 44244, 13, 24011, 500, 62, 897, 274, 7, 43476, 35610, 5497, 1063, 19510, 16, 35751, 828, 13690, 35610, 5497, 1063, 19510, 18, 11, 362, 11, 362, 36911, 13690, 35610, 5497, 1063, 19510, 18, 11, 362, 11, 362, 22305, 6624, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2488, 259, 18186, 7, 30507, 2701, 13, 24011, 500, 62, 897, 274, 7, 43476, 35610, 31554, 274, 19510, 16, 35751, 828, 13690, 35610, 5497, 1063, 19510, 18, 11, 362, 11, 362, 36911, 13690, 35610, 31554, 274, 19510, 18, 11, 362, 11, 362, 35514, 198, 220, 220, 220, 220, 220, 220, 220, 2488, 9288, 44244, 13, 24011, 500, 62, 897, 274, 7, 14993, 451, 5497, 1063, 19510, 16, 35751, 828, 44800, 5497, 1063, 19510, 18, 11, 362, 11, 362, 36911, 44800, 5497, 1063, 19510, 18, 11, 362, 11, 362, 22305, 6624, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2488, 259, 18186, 7, 30507, 2701, 13, 24011, 500, 62, 897, 274, 7, 14993, 451, 31554, 274, 19510, 16, 35751, 828, 13690, 35610, 31554, 274, 19510, 18, 11, 362, 11, 362, 36911, 13690, 35610, 31554, 274, 19510, 18, 11, 362, 11, 362, 35514, 628, 220, 220, 220, 220, 220, 220, 220, 6383, 521, 82, 796, 13690, 35610, 5497, 1063, 19510, 17, 11, 362, 18125, 198, 220, 220, 220, 220, 220, 220, 220, 6383, 897, 274, 796, 13690, 35610, 31554, 274, 19510, 17, 25, 18, 11, 513, 25, 19, 18125, 198, 220, 220, 220, 220, 220, 220, 220, 2488, 9288, 8251, 12195, 30507, 2701, 13, 24011, 500, 62, 897, 274, 7, 26674, 897, 274, 11, 6383, 897, 274, 11, 6383, 897, 274, 4008, 6624, 357, 17, 25, 18, 11, 513, 25, 19, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2488, 9288, 8251, 12195, 30507, 2701, 13, 24011, 500, 62, 897, 274, 7, 26674, 897, 274, 11, 6383, 897, 274, 11, 6383, 521, 82, 4008, 6624, 357, 17, 25, 18, 11, 513, 25, 19, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2488, 9288, 8251, 12195, 30507, 2701, 13, 24011, 500, 62, 897, 274, 7, 26674, 897, 274, 11, 6383, 521, 82, 11, 6383, 897, 274, 4008, 6624, 357, 17, 25, 18, 11, 513, 25, 19, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2488, 9288, 8251, 12195, 30507, 2701, 13, 24011, 500, 62, 897, 274, 7, 26674, 521, 82, 11, 6383, 897, 274, 11, 6383, 897, 274, 4008, 6624, 357, 17, 25, 18, 11, 513, 25, 19, 8, 198, 220, 220, 220, 886, 198, 437, 198, 198, 31, 9288, 2617, 366, 30507, 19913, 1, 2221, 198, 220, 220, 220, 2124, 796, 38349, 7, 16, 25, 940, 11, 352, 25, 940, 8, 198, 220, 220, 220, 331, 796, 17427, 31554, 271, 7, 16, 25, 940, 8, 198, 220, 220, 220, 1976, 796, 352, 25, 940, 628, 220, 220, 220, 2488, 9288, 2488, 259, 18186, 7, 36654, 2701, 276, 7, 65, 7635, 11, 532, 11, 362, 11, 2124, 4008, 6624, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2488, 259, 18186, 7, 36654, 2701, 276, 7, 65, 7635, 11, 532, 11, 362, 11, 331, 4008, 6624, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7025, 276, 7, 65, 7635, 11, 532, 11, 362, 11, 1976, 8, 628, 220, 220, 220, 2488, 9288, 2488, 259, 18186, 7, 36654, 2701, 276, 7, 65, 7635, 11, 532, 11, 2124, 11, 362, 4008, 6624, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2488, 259, 18186, 7, 36654, 2701, 276, 7, 65, 7635, 11, 532, 11, 331, 11, 362, 4008, 6624, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7025, 276, 7, 65, 7635, 11, 532, 11, 1976, 11, 362, 8, 628, 220, 220, 220, 2488, 9288, 2488, 259, 18186, 7, 36654, 2701, 276, 7, 65, 7635, 11, 1343, 11, 362, 11, 2124, 4008, 6624, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2488, 259, 18186, 7, 36654, 2701, 276, 7, 65, 7635, 11, 1343, 11, 362, 11, 331, 4008, 6624, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7025, 276, 7, 65, 7635, 11, 1343, 11, 362, 11, 1976, 8, 198, 220, 220, 220, 2488, 9288, 318, 64, 7, 36654, 2701, 276, 7, 65, 7635, 11, 1343, 11, 362, 11, 2124, 828, 38349, 8, 198, 220, 220, 220, 2488, 9288, 318, 64, 7, 36654, 2701, 276, 7, 65, 7635, 11, 1343, 11, 362, 11, 331, 828, 17427, 31554, 271, 8, 628, 220, 220, 220, 2488, 9288, 2488, 259, 18186, 7, 36654, 2701, 276, 7, 65, 7635, 11, 1343, 11, 2124, 11, 362, 4008, 6624, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2488, 259, 18186, 7, 36654, 2701, 276, 7, 65, 7635, 11, 1343, 11, 331, 11, 362, 4008, 6624, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7025, 276, 7, 65, 7635, 11, 1343, 11, 1976, 11, 362, 8, 198, 220, 220, 220, 2488, 9288, 318, 64, 7, 36654, 2701, 276, 7, 65, 7635, 11, 1343, 11, 2124, 11, 362, 828, 38349, 8, 198, 220, 220, 220, 2488, 9288, 318, 64, 7, 36654, 2701, 276, 7, 65, 7635, 11, 1343, 11, 331, 11, 362, 828, 17427, 31554, 271, 8, 628, 220, 220, 220, 2488, 9288, 2488, 259, 18186, 7, 36654, 2701, 276, 7, 65, 7635, 11, 1635, 11, 362, 11, 2124, 4008, 6624, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2488, 259, 18186, 7, 36654, 2701, 276, 7, 65, 7635, 11, 1635, 11, 362, 11, 331, 4008, 6624, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7025, 276, 7, 65, 7635, 11, 1635, 11, 362, 11, 1976, 8, 628, 220, 220, 220, 2488, 9288, 2488, 259, 18186, 7, 36654, 2701, 276, 7, 65, 7635, 11, 1635, 11, 2124, 11, 362, 4008, 6624, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2488, 259, 18186, 7, 36654, 2701, 276, 7, 65, 7635, 11, 1635, 11, 331, 11, 362, 4008, 6624, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7025, 276, 7, 65, 7635, 11, 1635, 11, 1976, 11, 362, 8, 628, 220, 220, 220, 2488, 9288, 7025, 276, 7, 65, 7635, 11, 532, 11, 2124, 11, 352, 1003, 17, 8, 6624, 352, 1003, 17, 25, 1129, 1003, 17, 198, 220, 220, 220, 2488, 9288, 7025, 276, 7, 65, 7635, 11, 532, 11, 331, 11, 352, 1003, 17, 8, 6624, 352, 1003, 17, 25, 1129, 1003, 17, 198, 437, 198, 198, 31, 9288, 2617, 366, 33, 3219, 22978, 4560, 20262, 10, 16725, 2221, 628, 220, 220, 220, 1303, 28, 16926, 46, 3888, 284, 34165, 198, 220, 220, 220, 2488, 9288, 2617, 366, 20307, 1339, 1, 2221, 198, 220, 220, 220, 220, 220, 220, 220, 257, 796, 38349, 19182, 7, 1952, 7, 18, 828, 357, 17, 25, 19, 11, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 2488, 9288, 257, 764, 10, 257, 6624, 362, 1952, 7, 18, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2488, 9288, 8251, 7, 897, 274, 7, 64, 764, 10, 257, 11, 352, 4008, 6624, 362, 25, 19, 628, 220, 220, 220, 220, 220, 220, 220, 2488, 9288, 257, 764, 10, 257, 13, 10, 257, 6624, 513, 1952, 7, 18, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2488, 9288, 8251, 7, 897, 274, 7, 64, 764, 10, 257, 764, 10, 257, 11, 352, 4008, 6624, 362, 25, 19, 628, 220, 220, 220, 220, 220, 220, 220, 2488, 9288, 357, 64, 764, 28, 657, 764, 9, 257, 764, 10, 767, 8, 6624, 685, 22, 11, 767, 11, 767, 60, 198, 220, 220, 220, 886, 198, 220, 220, 220, 796, 2, 628, 220, 220, 220, 1303, 28, 16926, 46, 10664, 284, 4727, 703, 1502, 6067, 198, 220, 220, 220, 2488, 9288, 2617, 366, 18743, 6067, 1, 2221, 198, 220, 220, 220, 220, 220, 220, 220, 2124, 796, 38349, 19182, 7, 1952, 7, 18, 11, 642, 828, 357, 45299, 2147, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 331, 796, 38349, 19182, 7, 1952, 7, 18, 11, 642, 828, 357, 22366, 11, 1058, 88, 4008, 628, 220, 220, 220, 220, 220, 220, 220, 300, 11994, 796, 2124, 764, 10, 331, 198, 220, 220, 220, 220, 220, 220, 220, 9529, 82, 796, 331, 764, 10, 2124, 198, 220, 220, 220, 220, 220, 220, 220, 2488, 9288, 5391, 14933, 7, 75, 11994, 8, 6624, 357, 25, 87, 11, 1058, 88, 8, 6624, 5391, 14933, 7, 81, 11994, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2488, 9288, 300, 11994, 6624, 362, 1952, 7, 18, 11, 642, 8, 6624, 9529, 82, 198, 220, 220, 220, 886, 198, 220, 220, 220, 796, 2, 628, 220, 220, 2488, 9288, 2617, 366, 36654, 19913, 1, 2221, 198, 220, 220, 220, 220, 220, 220, 220, 410, 796, 38349, 19182, 7, 9107, 418, 7, 18, 11, 828, 357, 17, 25, 19, 11, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 285, 796, 38349, 19182, 7, 1952, 7, 18, 11, 513, 828, 357, 17, 25, 19, 11, 513, 25, 20, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 264, 796, 657, 628, 220, 220, 220, 220, 220, 220, 220, 2488, 9288, 2488, 259, 18186, 7, 85, 764, 10, 285, 8, 6624, 3392, 7, 18, 11, 513, 8, 6624, 2488, 259, 18186, 7, 76, 764, 10, 410, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2488, 9288, 2488, 259, 18186, 7, 82, 764, 10, 285, 8, 6624, 3392, 7, 18, 11, 513, 8, 6624, 2488, 259, 18186, 7, 76, 764, 10, 264, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2488, 9288, 2488, 259, 18186, 7, 82, 764, 10, 410, 764, 10, 285, 8, 6624, 3392, 7, 18, 11, 513, 8, 6624, 2488, 259, 18186, 7, 76, 764, 10, 264, 764, 10, 410, 8, 628, 220, 220, 220, 220, 220, 220, 220, 2488, 9288, 8251, 12195, 897, 274, 7, 85, 764, 10, 285, 4008, 6624, 357, 17, 25, 19, 11, 513, 25, 20, 8, 6624, 8251, 12195, 897, 274, 7, 76, 764, 10, 410, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 2488, 9288, 8251, 12195, 897, 274, 7, 82, 764, 10, 285, 4008, 6624, 357, 17, 25, 19, 11, 513, 25, 20, 8, 6624, 8251, 12195, 897, 274, 7, 76, 764, 10, 264, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 2488, 9288, 8251, 12195, 897, 274, 7, 82, 764, 10, 410, 764, 10, 285, 4008, 6624, 357, 17, 25, 19, 11, 513, 25, 20, 8, 6624, 8251, 12195, 897, 274, 7, 76, 764, 10, 264, 764, 10, 410, 4008, 198, 220, 220, 220, 886, 198, 437, 628 ]
2.061683
3,291
struct ZeroPolynomialSet{DT <: AbstractSemialgebraicSet, BT <: AbstractPolynomialBasis, MT <: AbstractMonomial, MVT <: AbstractVector{MT}} <: MOI.AbstractVectorSet domain::DT basis::Type{BT} monomials::MVT end # `x`-in-`PlusMinusSet(set)` iff `x`-in-`set` and `-x`-in-`set`. struct PlusMinusSet{ST <: MOI.AbstractVectorSet} <: MOI.AbstractVectorSet set::ST end
[ 7249, 12169, 34220, 26601, 498, 7248, 90, 24544, 1279, 25, 27741, 13900, 498, 29230, 291, 7248, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 22205, 1279, 25, 27741, 34220, 26601, 498, 15522, 271, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19308, 1279, 25, 27741, 44, 6326, 498, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 32947, 51, 1279, 25, 27741, 38469, 90, 13752, 11709, 1279, 25, 13070, 40, 13, 23839, 38469, 7248, 198, 220, 220, 220, 7386, 3712, 24544, 198, 220, 220, 220, 4308, 3712, 6030, 90, 19313, 92, 198, 220, 220, 220, 937, 296, 8231, 3712, 44, 36392, 198, 437, 198, 198, 2, 4600, 87, 63, 12, 259, 12, 63, 17860, 9452, 385, 7248, 7, 2617, 8, 63, 611, 69, 4600, 87, 63, 12, 259, 12, 63, 2617, 63, 290, 4600, 12, 87, 63, 12, 259, 12, 63, 2617, 44646, 198, 7249, 8227, 9452, 385, 7248, 90, 2257, 1279, 25, 13070, 40, 13, 23839, 38469, 7248, 92, 1279, 25, 13070, 40, 13, 23839, 38469, 7248, 198, 220, 220, 220, 900, 3712, 2257, 198, 437, 198 ]
1.961039
231
<filename>src/wstp.jl struct MathLinkError <: Exception err::Error msg::String end function MathLinkError(link::Link) err = ccall((:MLError, mlib), Error, (CLink,), link) msg = unsafe_string(ccall((:MLErrorMessage, mlib), Cstring, (CLink,), link)) clearerror(link) newpacket(link) MathLinkError(err, msg) end clearerror(link::Link) = ccall((:MLClearError, mlib), Cint, (CLink,), link) endpacket(link::Link) = ccall((:MLEndPacket, mlib), Cint, (CLink,), link) newpacket(link::Link) = ccall((:MLNewPacket, mlib), Cint, (CLink,), link) nextpacket(link::Link) = ccall((:MLNextPacket, mlib), Packet, (CLink,), link) macro wschk(expr) link = expr.args[5] # first argument quote if $(esc(expr)) == 0 throw(MathLinkError($(esc(link)))) end end end function getargcount(link::Link) r = Ref{Cint}() # int WSGetArgCount(WSLINK link,int *n) @wschk ccall((:MLGetArgCount, mlib), Cint, (CLink, Ptr{Cint}), link, r) r[] end function putargcount(link::Link, n::Integer) # int WSPutArgCount(WSLINK link,int n) @wschk ccall((:MLPutArgCount, mlib), Cint, (CLink, Cint), link, n) nothing end function putfunction(link::Link, w::WSymbol, nargs::Integer) # int MLPutUTF8Function(( MLLINK l , const unsigned char * s , int v , int n ) @wschk ccall((:MLPutUTF8Function, mlib), Cint, (CLink, Ptr{UInt8}, Cint, Cint), link, w.name, sizeof(w.name), nargs) nothing end function getfunction(link::Link) r_str = Ref{Ptr{UInt8}}() r_bytes = Ref{Cint}() r_nargs = Ref{Cint}() # int MLGetUTF8Function( MLLINK l , const unsigned char ** s , int * v , int * n ) @wschk ccall((:MLGetUTF8Function, mlib), Cint, (CLink, Ptr{Ptr{UInt8}}, Ptr{Cint}, Ptr{Cint}), link, r_str, r_bytes, r_nargs) str = unsafe_string(r_str[], r_bytes[]) # void MLReleaseUTF8Symbol(MLLINK link,const unsigned char *s,int len) ccall((:MLReleaseUTF8Symbol, mlib), Cvoid, (CLink, Ptr{UInt8}, Cint), link, r_str[], r_bytes[]) return WSymbol(str), r_nargs[] end # WSymbol function put(link::Link, w::WSymbol) # int MLPutUTF8Symbol(MLLINK link,const unsigned char *s,int len) @wschk ccall((:MLPutUTF8Symbol, mlib), Cint, (CLink, Ptr{UInt8}, Cint), link, w.name, sizeof(w.name)) nothing end function get(link::Link, ::Type{WSymbol}) r_str = Ref{Ptr{UInt8}}() r_bytes = Ref{Cint}() r_chars = Ref{Cint}() # int MLGetUTF8Symbol(MLLINK link,const unsigned char **s,int *b,int *c) @wschk ccall((:MLGetUTF8Symbol, mlib), Cint, (CLink, Ptr{Ptr{UInt8}}, Ptr{Cint}, Ptr{Cint}), link, r_str, r_bytes, r_chars) str = unsafe_string(r_str[], r_bytes[]) # void MLReleaseUTF8Symbol(MLLINK link,const unsigned char *s,int len) ccall((:MLReleaseUTF8Symbol, mlib), Cvoid, (CLink, Ptr{UInt8}, Cint), link, r_str[], r_bytes[]) return WSymbol(str) end # WReal/WInteger function put(link::Link, w::WReal) # int MLPutRealNumberAsUTF8String(MLLINK l, const unsigned char *s, int n) @wschk ccall((:MLPutRealNumberAsUTF8String, mlib), Cint, (CLink, Ptr{UInt8}, Cint), link, w.value, sizeof(w.value)) nothing end function get(link::Link, ::Type{W}) where W <: Union{WReal,WInteger} r_str = Ref{Ptr{UInt8}}() r_bytes = Ref{Cint}() r_chars = Ref{Cint}() # int MLGetNumberAsUTF8String(MLLINK l, const unsigned char **s, int *v, int *c) @wschk ccall((:MLGetNumberAsUTF8String, mlib), Cint, (CLink, Ptr{Ptr{UInt8}}, Ptr{Cint}, Ptr{Cint}), link, r_str, r_bytes, r_chars) str = unsafe_string(r_str[], r_bytes[]) # void MLReleaseUTF8String(MLLINK link,const unsigned char *s,int len) ccall((:MLReleaseUTF8String, mlib), Cvoid, (CLink, Ptr{UInt8}, Cint), link, r_str[], r_bytes[]) return W(str) end # String function put(link::Link, str::Union{String,SubString}) # int MLPutUTF8String(MLLINK link,const unsigned char *s,int len) @wschk ccall((:MLPutUTF8String, mlib), Cint, (CLink, Ptr{UInt8}, Cint), link, str, sizeof(str)) nothing end function get(link::Link, ::Type{String}) r_str = Ref{Ptr{UInt8}}() r_bytes = Ref{Cint}() r_chars = Ref{Cint}() # int MLGetUTF8String(MLLINK link,const unsigned char **s,int *b,int *c) @wschk ccall((:MLGetUTF8String, mlib), Cint, (CLink, Ptr{Ptr{UInt8}}, Ptr{Cint}, Ptr{Cint}), link, r_str, r_bytes, r_chars) str = unsafe_string(r_str[], r_bytes[]) # void MLReleaseUTF8String(MLLINK link,const unsigned char *s,int len) ccall((:MLReleaseUTF8String, mlib), Cvoid, (CLink, Ptr{UInt8}, Cint), link, r_str[], r_bytes[]) return str end for (f, T) in [ (:Integer8, Int8) (:Integer16, Int16) (:Integer32, Int32) (:Integer64, Int64) (:Real32, Float32) (:Real64, Float64) ] @eval begin function put(link::Link, x::$T) # note slightly bizarre handling of Float32 @wschk ccall(($(QuoteNode(Symbol(:MLPut, f))), mlib), Cint, (CLink, $(f == :Real32 ? Float64 : T)), link, x) nothing end function get(link::Link, ::Type{$T}) r = Ref{$T}() @wschk ccall(($(QuoteNode(Symbol(:MLGet, f))), mlib), Cint, (CLink, Ptr{$T}), link, r) r[] end end end # Get fns gettype(link::Link) = ccall((:MLGetType, mlib), Token, (CLink,), link) getrawtype(link::Link) = ccall((:MLGetRawType, mlib), Token, (CLink,), link) puttype(link::Link, t::Token) = @wschk ccall((:MLPutType, mlib), Cint, (CLink, Token), link, t) getnext(link::Link) = ccall((:MLGetNext, mlib), Token, (CLink,), link) getnextraw(link::Link) = ccall((:MLGetNextRaw, mlib), Token, (CLink,), link)
[ 27, 34345, 29, 10677, 14, 86, 301, 79, 13, 20362, 198, 7249, 16320, 11280, 12331, 1279, 25, 35528, 198, 220, 220, 220, 11454, 3712, 12331, 198, 220, 220, 220, 31456, 3712, 10100, 198, 437, 198, 8818, 16320, 11280, 12331, 7, 8726, 3712, 11280, 8, 198, 220, 220, 220, 11454, 796, 269, 13345, 19510, 25, 44, 2538, 81, 1472, 11, 285, 8019, 828, 13047, 11, 357, 5097, 676, 11, 828, 2792, 8, 198, 220, 220, 220, 31456, 796, 21596, 62, 8841, 7, 535, 439, 19510, 25, 44, 2538, 81, 1472, 12837, 11, 285, 8019, 828, 327, 8841, 11, 357, 5097, 676, 11, 828, 2792, 4008, 198, 220, 220, 220, 22363, 1472, 7, 8726, 8, 198, 220, 220, 220, 649, 8002, 316, 7, 8726, 8, 198, 220, 220, 220, 16320, 11280, 12331, 7, 8056, 11, 31456, 8, 198, 437, 198, 198, 2375, 11258, 1472, 7, 8726, 3712, 11280, 8, 796, 198, 220, 220, 220, 269, 13345, 19510, 25, 44, 5639, 3238, 12331, 11, 285, 8019, 828, 327, 600, 11, 357, 5097, 676, 11, 828, 2792, 8, 198, 437, 8002, 316, 7, 8726, 3712, 11280, 8, 796, 198, 220, 220, 220, 269, 13345, 19510, 25, 44, 2538, 358, 47, 8317, 11, 285, 8019, 828, 327, 600, 11, 357, 5097, 676, 11, 828, 2792, 8, 198, 3605, 8002, 316, 7, 8726, 3712, 11280, 8, 796, 198, 220, 220, 220, 269, 13345, 19510, 25, 5805, 3791, 47, 8317, 11, 285, 8019, 828, 327, 600, 11, 357, 5097, 676, 11, 828, 2792, 8, 198, 198, 19545, 8002, 316, 7, 8726, 3712, 11280, 8, 796, 198, 220, 220, 220, 269, 13345, 19510, 25, 5805, 10019, 47, 8317, 11, 285, 8019, 828, 6400, 316, 11, 357, 5097, 676, 11, 828, 2792, 8, 198, 198, 20285, 305, 266, 20601, 74, 7, 31937, 8, 198, 220, 220, 220, 2792, 796, 44052, 13, 22046, 58, 20, 60, 1303, 717, 4578, 198, 220, 220, 220, 9577, 198, 220, 220, 220, 220, 220, 220, 220, 611, 29568, 3798, 7, 31937, 4008, 6624, 657, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3714, 7, 37372, 11280, 12331, 16763, 7, 3798, 7, 8726, 35514, 198, 220, 220, 220, 220, 220, 220, 220, 886, 198, 220, 220, 220, 886, 198, 437, 198, 198, 8818, 651, 853, 9127, 7, 8726, 3712, 11280, 8, 198, 220, 220, 220, 374, 796, 6524, 90, 34, 600, 92, 3419, 198, 220, 220, 220, 1303, 493, 25290, 3855, 28100, 12332, 7, 54, 8634, 17248, 2792, 11, 600, 1635, 77, 8, 198, 220, 220, 220, 2488, 18504, 354, 74, 269, 13345, 19510, 25, 5805, 3855, 28100, 12332, 11, 285, 8019, 828, 327, 600, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 5097, 676, 11, 350, 2213, 90, 34, 600, 92, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2792, 11, 374, 8, 198, 220, 220, 220, 374, 21737, 198, 437, 198, 198, 8818, 1234, 853, 9127, 7, 8726, 3712, 11280, 11, 299, 3712, 46541, 8, 198, 220, 220, 220, 1303, 493, 370, 4303, 315, 28100, 12332, 7, 54, 8634, 17248, 2792, 11, 600, 299, 8, 198, 220, 220, 220, 2488, 18504, 354, 74, 269, 13345, 19510, 25, 5805, 11588, 28100, 12332, 11, 285, 8019, 828, 327, 600, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 5097, 676, 11, 327, 600, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2792, 11, 299, 8, 198, 220, 220, 220, 2147, 198, 437, 198, 8818, 1234, 8818, 7, 8726, 3712, 11280, 11, 266, 3712, 54, 13940, 23650, 11, 299, 22046, 3712, 46541, 8, 198, 220, 220, 220, 1303, 493, 10373, 11588, 48504, 23, 22203, 19510, 337, 3069, 17248, 300, 837, 1500, 22165, 1149, 1635, 264, 837, 493, 410, 837, 493, 299, 1267, 220, 198, 220, 220, 220, 2488, 18504, 354, 74, 269, 13345, 19510, 25, 5805, 11588, 48504, 23, 22203, 11, 285, 8019, 828, 327, 600, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 5097, 676, 11, 350, 2213, 90, 52, 5317, 23, 5512, 327, 600, 11, 327, 600, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2792, 11, 266, 13, 3672, 11, 39364, 7, 86, 13, 3672, 828, 299, 22046, 8, 198, 220, 220, 220, 2147, 198, 437, 198, 8818, 651, 8818, 7, 8726, 3712, 11280, 8, 198, 220, 220, 220, 374, 62, 2536, 796, 6524, 90, 46745, 90, 52, 5317, 23, 11709, 3419, 198, 220, 220, 220, 374, 62, 33661, 796, 6524, 90, 34, 600, 92, 3419, 198, 220, 220, 220, 374, 62, 77, 22046, 796, 6524, 90, 34, 600, 92, 3419, 198, 220, 220, 220, 1303, 493, 10373, 3855, 48504, 23, 22203, 7, 337, 3069, 17248, 300, 837, 1500, 22165, 1149, 12429, 264, 837, 493, 1635, 410, 837, 493, 1635, 299, 1267, 198, 220, 220, 220, 2488, 18504, 354, 74, 269, 13345, 19510, 25, 5805, 3855, 48504, 23, 22203, 11, 285, 8019, 828, 327, 600, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 5097, 676, 11, 350, 2213, 90, 46745, 90, 52, 5317, 23, 92, 5512, 350, 2213, 90, 34, 600, 5512, 350, 2213, 90, 34, 600, 92, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2792, 11, 374, 62, 2536, 11, 374, 62, 33661, 11, 374, 62, 77, 22046, 8, 198, 220, 220, 220, 965, 796, 21596, 62, 8841, 7, 81, 62, 2536, 58, 4357, 374, 62, 33661, 58, 12962, 198, 220, 220, 220, 1303, 7951, 10373, 26362, 48504, 23, 13940, 23650, 7, 44, 3069, 17248, 2792, 11, 9979, 22165, 1149, 1635, 82, 11, 600, 18896, 8, 198, 220, 220, 220, 269, 13345, 19510, 25, 5805, 26362, 48504, 23, 13940, 23650, 11, 285, 8019, 828, 327, 19382, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 5097, 676, 11, 350, 2213, 90, 52, 5317, 23, 5512, 327, 600, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2792, 11, 374, 62, 2536, 58, 4357, 374, 62, 33661, 58, 12962, 198, 220, 220, 220, 1441, 370, 13940, 23650, 7, 2536, 828, 374, 62, 77, 22046, 21737, 198, 437, 198, 198, 2, 370, 13940, 23650, 198, 8818, 1234, 7, 8726, 3712, 11280, 11, 266, 3712, 54, 13940, 23650, 8, 198, 220, 220, 220, 1303, 493, 10373, 11588, 48504, 23, 13940, 23650, 7, 44, 3069, 17248, 2792, 11, 9979, 22165, 1149, 1635, 82, 11, 600, 18896, 8, 198, 220, 220, 220, 2488, 18504, 354, 74, 269, 13345, 19510, 25, 5805, 11588, 48504, 23, 13940, 23650, 11, 285, 8019, 828, 327, 600, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 5097, 676, 11, 350, 2213, 90, 52, 5317, 23, 5512, 327, 600, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2792, 11, 266, 13, 3672, 11, 39364, 7, 86, 13, 3672, 4008, 220, 220, 220, 220, 198, 220, 220, 220, 2147, 198, 437, 198, 8818, 651, 7, 8726, 3712, 11280, 11, 7904, 6030, 90, 54, 13940, 23650, 30072, 198, 220, 220, 220, 374, 62, 2536, 796, 6524, 90, 46745, 90, 52, 5317, 23, 11709, 3419, 198, 220, 220, 220, 374, 62, 33661, 796, 6524, 90, 34, 600, 92, 3419, 198, 220, 220, 220, 374, 62, 354, 945, 796, 6524, 90, 34, 600, 92, 3419, 198, 220, 220, 220, 1303, 493, 10373, 3855, 48504, 23, 13940, 23650, 7, 44, 3069, 17248, 2792, 11, 9979, 22165, 1149, 12429, 82, 11, 600, 1635, 65, 11, 600, 1635, 66, 8, 198, 220, 220, 220, 2488, 18504, 354, 74, 269, 13345, 19510, 25, 5805, 3855, 48504, 23, 13940, 23650, 11, 285, 8019, 828, 327, 600, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 5097, 676, 11, 350, 2213, 90, 46745, 90, 52, 5317, 23, 92, 5512, 350, 2213, 90, 34, 600, 5512, 350, 2213, 90, 34, 600, 92, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2792, 11, 374, 62, 2536, 11, 374, 62, 33661, 11, 374, 62, 354, 945, 8, 198, 220, 220, 220, 965, 796, 21596, 62, 8841, 7, 81, 62, 2536, 58, 4357, 374, 62, 33661, 58, 12962, 198, 220, 220, 220, 1303, 7951, 10373, 26362, 48504, 23, 13940, 23650, 7, 44, 3069, 17248, 2792, 11, 9979, 22165, 1149, 1635, 82, 11, 600, 18896, 8, 198, 220, 220, 220, 269, 13345, 19510, 25, 5805, 26362, 48504, 23, 13940, 23650, 11, 285, 8019, 828, 327, 19382, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 5097, 676, 11, 350, 2213, 90, 52, 5317, 23, 5512, 327, 600, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2792, 11, 374, 62, 2536, 58, 4357, 374, 62, 33661, 58, 12962, 198, 220, 220, 220, 1441, 370, 13940, 23650, 7, 2536, 8, 198, 437, 198, 198, 2, 11342, 2287, 14, 54, 46541, 198, 8818, 1234, 7, 8726, 3712, 11280, 11, 266, 3712, 54, 15633, 8, 198, 220, 220, 220, 1303, 493, 10373, 11588, 15633, 15057, 1722, 48504, 23, 10100, 7, 44, 3069, 17248, 300, 11, 1500, 22165, 1149, 1635, 82, 11, 493, 299, 8, 198, 220, 220, 220, 2488, 18504, 354, 74, 269, 13345, 19510, 25, 5805, 11588, 15633, 15057, 1722, 48504, 23, 10100, 11, 285, 8019, 828, 327, 600, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 5097, 676, 11, 350, 2213, 90, 52, 5317, 23, 5512, 327, 600, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2792, 11, 266, 13, 8367, 11, 39364, 7, 86, 13, 8367, 4008, 220, 220, 220, 220, 198, 220, 220, 220, 2147, 198, 437, 198, 8818, 651, 7, 8726, 3712, 11280, 11, 7904, 6030, 90, 54, 30072, 810, 370, 1279, 25, 4479, 90, 54, 15633, 11, 54, 46541, 92, 198, 220, 220, 220, 374, 62, 2536, 796, 6524, 90, 46745, 90, 52, 5317, 23, 11709, 3419, 198, 220, 220, 220, 374, 62, 33661, 796, 6524, 90, 34, 600, 92, 3419, 198, 220, 220, 220, 374, 62, 354, 945, 796, 6524, 90, 34, 600, 92, 3419, 198, 220, 220, 220, 1303, 493, 10373, 3855, 15057, 1722, 48504, 23, 10100, 7, 44, 3069, 17248, 300, 11, 1500, 22165, 1149, 12429, 82, 11, 493, 1635, 85, 11, 493, 1635, 66, 8, 198, 220, 220, 220, 2488, 18504, 354, 74, 269, 13345, 19510, 25, 5805, 3855, 15057, 1722, 48504, 23, 10100, 11, 285, 8019, 828, 327, 600, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 5097, 676, 11, 350, 2213, 90, 46745, 90, 52, 5317, 23, 92, 5512, 350, 2213, 90, 34, 600, 5512, 350, 2213, 90, 34, 600, 92, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2792, 11, 374, 62, 2536, 11, 374, 62, 33661, 11, 374, 62, 354, 945, 8, 198, 220, 220, 220, 965, 796, 21596, 62, 8841, 7, 81, 62, 2536, 58, 4357, 374, 62, 33661, 58, 12962, 198, 220, 220, 220, 1303, 7951, 10373, 26362, 48504, 23, 10100, 7, 44, 3069, 17248, 2792, 11, 9979, 22165, 1149, 1635, 82, 11, 600, 18896, 8, 198, 220, 220, 220, 269, 13345, 19510, 25, 5805, 26362, 48504, 23, 10100, 11, 285, 8019, 828, 327, 19382, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 5097, 676, 11, 350, 2213, 90, 52, 5317, 23, 5512, 327, 600, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2792, 11, 374, 62, 2536, 58, 4357, 374, 62, 33661, 58, 12962, 198, 220, 220, 220, 1441, 370, 7, 2536, 8, 198, 437, 628, 198, 2, 10903, 198, 8818, 1234, 7, 8726, 3712, 11280, 11, 965, 3712, 38176, 90, 10100, 11, 7004, 10100, 30072, 198, 220, 220, 220, 1303, 493, 10373, 11588, 48504, 23, 10100, 7, 44, 3069, 17248, 2792, 11, 9979, 22165, 1149, 1635, 82, 11, 600, 18896, 8, 198, 220, 220, 220, 2488, 18504, 354, 74, 269, 13345, 19510, 25, 5805, 11588, 48504, 23, 10100, 11, 285, 8019, 828, 327, 600, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 5097, 676, 11, 350, 2213, 90, 52, 5317, 23, 5512, 327, 600, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2792, 11, 965, 11, 39364, 7, 2536, 4008, 198, 220, 220, 220, 2147, 198, 437, 198, 8818, 651, 7, 8726, 3712, 11280, 11, 7904, 6030, 90, 10100, 30072, 198, 220, 220, 220, 374, 62, 2536, 796, 6524, 90, 46745, 90, 52, 5317, 23, 11709, 3419, 198, 220, 220, 220, 374, 62, 33661, 796, 6524, 90, 34, 600, 92, 3419, 198, 220, 220, 220, 374, 62, 354, 945, 796, 6524, 90, 34, 600, 92, 3419, 198, 220, 220, 220, 1303, 493, 10373, 3855, 48504, 23, 10100, 7, 44, 3069, 17248, 2792, 11, 9979, 22165, 1149, 12429, 82, 11, 600, 1635, 65, 11, 600, 1635, 66, 8, 198, 220, 220, 220, 2488, 18504, 354, 74, 269, 13345, 19510, 25, 5805, 3855, 48504, 23, 10100, 11, 285, 8019, 828, 327, 600, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 5097, 676, 11, 350, 2213, 90, 46745, 90, 52, 5317, 23, 92, 5512, 350, 2213, 90, 34, 600, 5512, 350, 2213, 90, 34, 600, 92, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2792, 11, 374, 62, 2536, 11, 374, 62, 33661, 11, 374, 62, 354, 945, 8, 198, 220, 220, 220, 965, 796, 21596, 62, 8841, 7, 81, 62, 2536, 58, 4357, 374, 62, 33661, 58, 12962, 198, 220, 220, 220, 1303, 7951, 10373, 26362, 48504, 23, 10100, 7, 44, 3069, 17248, 2792, 11, 9979, 22165, 1149, 1635, 82, 11, 600, 18896, 8, 198, 220, 220, 220, 269, 13345, 19510, 25, 5805, 26362, 48504, 23, 10100, 11, 285, 8019, 828, 327, 19382, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 5097, 676, 11, 350, 2213, 90, 52, 5317, 23, 5512, 327, 600, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2792, 11, 374, 62, 2536, 58, 4357, 374, 62, 33661, 58, 12962, 198, 220, 220, 220, 1441, 965, 198, 437, 198, 198, 1640, 357, 69, 11, 309, 8, 287, 685, 198, 220, 220, 220, 357, 25, 46541, 23, 11, 2558, 23, 8, 198, 220, 220, 220, 357, 25, 46541, 1433, 11, 2558, 1433, 8, 198, 220, 220, 220, 357, 25, 46541, 2624, 11, 2558, 2624, 8, 198, 220, 220, 220, 357, 25, 46541, 2414, 11, 2558, 2414, 8, 198, 220, 220, 220, 357, 25, 15633, 2624, 11, 48436, 2624, 8, 198, 220, 220, 220, 357, 25, 15633, 2414, 11, 48436, 2414, 8, 198, 60, 198, 220, 220, 220, 2488, 18206, 2221, 198, 220, 220, 220, 220, 220, 220, 220, 2163, 1234, 7, 8726, 3712, 11280, 11, 2124, 3712, 3, 51, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 3465, 4622, 13699, 9041, 286, 48436, 2624, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2488, 18504, 354, 74, 269, 13345, 7, 16763, 7, 25178, 19667, 7, 13940, 23650, 7, 25, 5805, 11588, 11, 277, 4008, 828, 285, 8019, 828, 327, 600, 11, 357, 5097, 676, 11, 29568, 69, 6624, 1058, 15633, 2624, 5633, 48436, 2414, 1058, 309, 36911, 2792, 11, 2124, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2147, 198, 220, 220, 220, 220, 220, 220, 220, 886, 198, 220, 220, 220, 220, 220, 220, 220, 2163, 651, 7, 8726, 3712, 11280, 11, 7904, 6030, 90, 3, 51, 30072, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 374, 796, 6524, 90, 3, 51, 92, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2488, 18504, 354, 74, 269, 13345, 7, 16763, 7, 25178, 19667, 7, 13940, 23650, 7, 25, 5805, 3855, 11, 277, 4008, 828, 285, 8019, 828, 327, 600, 11, 357, 5097, 676, 11, 350, 2213, 90, 3, 51, 92, 828, 2792, 11, 374, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 374, 21737, 198, 220, 220, 220, 220, 220, 220, 220, 886, 198, 220, 220, 220, 886, 198, 437, 628, 198, 198, 2, 3497, 277, 5907, 198, 1136, 4906, 7, 8726, 3712, 11280, 8, 796, 198, 220, 220, 220, 269, 13345, 19510, 25, 5805, 3855, 6030, 11, 285, 8019, 828, 29130, 11, 357, 5097, 676, 11, 828, 2792, 8, 198, 198, 1136, 1831, 4906, 7, 8726, 3712, 11280, 8, 796, 198, 220, 220, 220, 269, 13345, 19510, 25, 5805, 3855, 27369, 6030, 11, 285, 8019, 828, 29130, 11, 357, 5097, 676, 11, 828, 2792, 8, 198, 198, 1996, 4906, 7, 8726, 3712, 11280, 11, 256, 3712, 30642, 8, 796, 198, 220, 220, 220, 2488, 18504, 354, 74, 269, 13345, 19510, 25, 5805, 11588, 6030, 11, 285, 8019, 828, 327, 600, 11, 357, 5097, 676, 11, 29130, 828, 2792, 11, 256, 8, 198, 198, 1136, 19545, 7, 8726, 3712, 11280, 8, 796, 198, 220, 220, 220, 269, 13345, 19510, 25, 5805, 3855, 10019, 11, 285, 8019, 828, 29130, 11, 357, 5097, 676, 11, 828, 2792, 8, 198, 198, 1136, 19545, 1831, 7, 8726, 3712, 11280, 8, 796, 198, 220, 220, 220, 269, 13345, 19510, 25, 5805, 3855, 10019, 27369, 11, 285, 8019, 828, 29130, 11, 357, 5097, 676, 11, 828, 2792, 8, 628 ]
2.033512
2,984
""" Abstract population. The top node of the Population type hierarchy. """ abstract type AbstractPopulation end """ Abstract network population. Interactors are nodes of some network. """ abstract type AbstractNetworkPopulation <: AbstractPopulation end """ Abstract spatial population. Represents any type of population in which interactors have a spatial representation (e.g. a point on a plane). """ abstract type AbstractSpatialPopulation <: AbstractPopulation end """ Abstract lattice population: interactors on some lattice. """ abstract type AbstractLatticePopulation <: AbstractSpatialPopulation end
[ 37811, 198, 23839, 3265, 13, 383, 1353, 10139, 286, 262, 20133, 2099, 18911, 13, 198, 37811, 198, 397, 8709, 2099, 27741, 45251, 886, 198, 198, 37811, 198, 23839, 3127, 3265, 13, 4225, 529, 669, 389, 13760, 286, 617, 3127, 13, 198, 37811, 198, 397, 8709, 2099, 27741, 26245, 45251, 1279, 25, 27741, 45251, 886, 198, 198, 37811, 198, 23839, 21739, 3265, 13, 1432, 6629, 597, 2099, 286, 3265, 287, 543, 198, 3849, 529, 669, 423, 257, 21739, 10552, 357, 68, 13, 70, 13, 257, 966, 319, 257, 6614, 737, 198, 37811, 198, 397, 8709, 2099, 27741, 4561, 34961, 45251, 1279, 25, 27741, 45251, 886, 198, 198, 37811, 198, 23839, 47240, 501, 3265, 25, 9427, 669, 319, 617, 47240, 501, 13, 198, 37811, 198, 397, 8709, 2099, 27741, 43, 1078, 501, 45251, 1279, 25, 27741, 4561, 34961, 45251, 886, 628 ]
4.410072
139
<reponame>apatlpo/UnderwaterAcoustics.jl using Documenter using Plots push!(LOAD_PATH,"../src/") using UnderwaterAcoustics makedocs( sitename = "UnderwaterAcoustics.jl", format = Documenter.HTML(prettyurls = false), linkcheck = !("skiplinks" in ARGS), pages = Any[ "Home" => "index.md", "Manual" => Any[ "uw_basic.md", "pm_basic.md", "pm_envref.md", "pm_api.md" ], "Propagation models" => Any[ "pm_pekeris.md", "pm_rays.md", "pm_bellhop.md" ], "Tutorials" => Any[ "tut_turing.md", "tut_autodiff.md" ] ] ) deploydocs( repo = "github.com/org-arl/UnderwaterAcoustics.jl.git", branch = "gh-pages", devbranch = "master", devurl = "dev", versions = ["stable" => "v^", "v#.#", "dev" => "dev"] )
[ 27, 7856, 261, 480, 29, 499, 25864, 7501, 14, 9203, 7050, 12832, 23968, 873, 13, 20362, 198, 3500, 16854, 263, 198, 3500, 1345, 1747, 198, 198, 14689, 0, 7, 35613, 62, 34219, 553, 40720, 10677, 14, 4943, 198, 3500, 4698, 7050, 12832, 23968, 873, 198, 198, 76, 4335, 420, 82, 7, 198, 220, 1650, 12453, 796, 366, 9203, 7050, 12832, 23968, 873, 13, 20362, 1600, 198, 220, 5794, 796, 16854, 263, 13, 28656, 7, 37784, 6371, 82, 796, 3991, 828, 198, 220, 2792, 9122, 796, 5145, 7203, 20545, 489, 2973, 1, 287, 5923, 14313, 828, 198, 220, 5468, 796, 4377, 58, 198, 220, 220, 220, 366, 16060, 1, 5218, 366, 9630, 13, 9132, 1600, 198, 220, 220, 220, 366, 5124, 723, 1, 5218, 4377, 58, 198, 220, 220, 220, 220, 220, 366, 84, 86, 62, 35487, 13, 9132, 1600, 198, 220, 220, 220, 220, 220, 366, 4426, 62, 35487, 13, 9132, 1600, 198, 220, 220, 220, 220, 220, 366, 4426, 62, 24330, 5420, 13, 9132, 1600, 198, 220, 220, 220, 220, 220, 366, 4426, 62, 15042, 13, 9132, 1, 198, 220, 220, 220, 16589, 198, 220, 220, 220, 366, 24331, 363, 341, 4981, 1, 5218, 4377, 58, 198, 220, 220, 220, 220, 220, 366, 4426, 62, 431, 6122, 271, 13, 9132, 1600, 198, 220, 220, 220, 220, 220, 366, 4426, 62, 20477, 13, 9132, 1600, 198, 220, 220, 220, 220, 220, 366, 4426, 62, 7923, 8548, 13, 9132, 1, 198, 220, 220, 220, 16589, 198, 220, 220, 220, 366, 51, 44917, 82, 1, 5218, 4377, 58, 198, 220, 220, 220, 220, 220, 366, 83, 315, 62, 83, 870, 13, 9132, 1600, 198, 220, 220, 220, 220, 220, 366, 83, 315, 62, 2306, 375, 733, 13, 9132, 1, 198, 220, 220, 220, 2361, 198, 220, 2361, 198, 8, 198, 198, 2934, 1420, 31628, 7, 198, 220, 29924, 796, 366, 12567, 13, 785, 14, 2398, 12, 7063, 14, 9203, 7050, 12832, 23968, 873, 13, 20362, 13, 18300, 1600, 198, 220, 8478, 796, 366, 456, 12, 31126, 1600, 198, 220, 1614, 1671, 3702, 796, 366, 9866, 1600, 198, 220, 1614, 6371, 796, 366, 7959, 1600, 198, 220, 6300, 796, 14631, 31284, 1, 5218, 366, 85, 61, 1600, 366, 85, 2, 32535, 1600, 366, 7959, 1, 5218, 366, 7959, 8973, 198, 8, 198 ]
2.092348
379
<reponame>JuliaTagBot/DESPOT.jl import DESPOT: lower_bound mutable struct DESPOTDefaultLowerBound #placeholder for now end function init_bound{S,A,O}(ub::DESPOTDefaultLowerBound, pomdp::POMDP{S,A,O}, config::DESPOTConfig) error("Function init_bound for $(typeof(ub)) has not been implemented yet") end function lower_bound{S,A,O}(lb::DESPOTDefaultLowerBound, pomdp::POMDP{S,A,O}, particles::Vector{DESPOTParticle{S}}, config::DESPOTConfig) error("Function lower_bound for $(typeof(lb)) has not been implemented yet") end
[ 27, 7856, 261, 480, 29, 16980, 544, 24835, 20630, 14, 30910, 47, 2394, 13, 20362, 198, 11748, 22196, 47, 2394, 25, 198, 220, 220, 220, 220, 220, 220, 220, 2793, 62, 7784, 198, 198, 76, 18187, 2878, 22196, 47, 2394, 19463, 31426, 49646, 198, 220, 220, 220, 1303, 5372, 13829, 329, 783, 198, 437, 198, 198, 8818, 2315, 62, 7784, 90, 50, 11, 32, 11, 46, 92, 7, 549, 3712, 30910, 47, 2394, 19463, 31426, 49646, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 279, 296, 26059, 3712, 47, 2662, 6322, 90, 50, 11, 32, 11, 46, 5512, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4566, 3712, 30910, 47, 2394, 16934, 8, 198, 220, 220, 220, 4049, 7203, 22203, 2315, 62, 7784, 329, 29568, 4906, 1659, 7, 549, 4008, 468, 407, 587, 9177, 1865, 4943, 198, 437, 198, 198, 8818, 2793, 62, 7784, 90, 50, 11, 32, 11, 46, 92, 7, 23160, 3712, 30910, 47, 2394, 19463, 31426, 49646, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 279, 296, 26059, 3712, 47, 2662, 6322, 90, 50, 11, 32, 11, 46, 5512, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 13166, 3712, 38469, 90, 30910, 47, 2394, 7841, 1548, 90, 50, 92, 5512, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4566, 3712, 30910, 47, 2394, 16934, 8, 198, 220, 220, 220, 4049, 7203, 22203, 2793, 62, 7784, 329, 29568, 4906, 1659, 7, 23160, 4008, 468, 407, 587, 9177, 1865, 4943, 198, 437, 198 ]
2.093851
309
@testset "Select" begin @testset "Dense" begin #dense first X = GBMatrix(rand(-10.0:0.05:10.0, 10, 10)) test_frule(map, UnaryOps.SIN, X) test_rrule(map, UnaryOps.SIN, X) test_frule(map, UnaryOps.COS, X) test_rrule(map, UnaryOps.COS, X) test_frule(map, UnaryOps.COSH, X) test_rrule(map, UnaryOps.COSH, X) test_frule(map, UnaryOps.SINH, X) test_rrule(map, UnaryOps.SINH, X) test_frule(map, UnaryOps.TANH, X) test_rrule(map, UnaryOps.TANH, X) test_frule(map, UnaryOps.MINV, X) test_rrule(map, UnaryOps.MINV, X) test_frule(map, UnaryOps.ABS, X) test_rrule(map, UnaryOps.ABS, X) test_frule(map, UnaryOps.IDENTITY, X) test_rrule(map, UnaryOps.IDENTITY, X) test_frule(map, UnaryOps.EXP, X) test_rrule(map, UnaryOps.EXP, X) end @testset "Sparse" begin X = GBMatrix(sprand(50, 50, 0.15)) end end
[ 31, 9288, 2617, 366, 17563, 1, 2221, 198, 220, 220, 220, 2488, 9288, 2617, 366, 35, 1072, 1, 2221, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 67, 1072, 717, 198, 220, 220, 220, 220, 220, 220, 220, 1395, 796, 402, 12261, 265, 8609, 7, 25192, 32590, 940, 13, 15, 25, 15, 13, 2713, 25, 940, 13, 15, 11, 838, 11, 838, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 1332, 62, 69, 25135, 7, 8899, 11, 791, 560, 41472, 13, 50, 1268, 11, 1395, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1332, 62, 81, 25135, 7, 8899, 11, 791, 560, 41472, 13, 50, 1268, 11, 1395, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1332, 62, 69, 25135, 7, 8899, 11, 791, 560, 41472, 13, 34, 2640, 11, 1395, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1332, 62, 81, 25135, 7, 8899, 11, 791, 560, 41472, 13, 34, 2640, 11, 1395, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1332, 62, 69, 25135, 7, 8899, 11, 791, 560, 41472, 13, 34, 45704, 11, 1395, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1332, 62, 81, 25135, 7, 8899, 11, 791, 560, 41472, 13, 34, 45704, 11, 1395, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1332, 62, 69, 25135, 7, 8899, 11, 791, 560, 41472, 13, 50, 1268, 39, 11, 1395, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1332, 62, 81, 25135, 7, 8899, 11, 791, 560, 41472, 13, 50, 1268, 39, 11, 1395, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1332, 62, 69, 25135, 7, 8899, 11, 791, 560, 41472, 13, 51, 1565, 39, 11, 1395, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1332, 62, 81, 25135, 7, 8899, 11, 791, 560, 41472, 13, 51, 1565, 39, 11, 1395, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1332, 62, 69, 25135, 7, 8899, 11, 791, 560, 41472, 13, 23678, 53, 11, 1395, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1332, 62, 81, 25135, 7, 8899, 11, 791, 560, 41472, 13, 23678, 53, 11, 1395, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1332, 62, 69, 25135, 7, 8899, 11, 791, 560, 41472, 13, 32, 4462, 11, 1395, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1332, 62, 81, 25135, 7, 8899, 11, 791, 560, 41472, 13, 32, 4462, 11, 1395, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1332, 62, 69, 25135, 7, 8899, 11, 791, 560, 41472, 13, 25256, 9050, 11, 1395, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1332, 62, 81, 25135, 7, 8899, 11, 791, 560, 41472, 13, 25256, 9050, 11, 1395, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1332, 62, 69, 25135, 7, 8899, 11, 791, 560, 41472, 13, 49864, 11, 1395, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1332, 62, 81, 25135, 7, 8899, 11, 791, 560, 41472, 13, 49864, 11, 1395, 8, 198, 220, 220, 220, 886, 198, 220, 220, 220, 2488, 9288, 2617, 366, 50, 29572, 1, 2221, 198, 220, 220, 220, 220, 220, 220, 220, 1395, 796, 402, 12261, 265, 8609, 7, 34975, 392, 7, 1120, 11, 2026, 11, 657, 13, 1314, 4008, 198, 220, 220, 220, 886, 198, 437, 198 ]
1.76867
549
<filename>src/grammar.jl<gh_stars>0 import ParserCombinator: PInt64, Eos, set_fix, Drop, Star, Space, @with_pre, Parse, @p_str, Pattern, Alt, Delayed, parse_one, @E_str import Dates space = Drop(Star(Space())) PNonZeroInt64() = Parse(p"-?[1-9][0-9]*", Int64) PPosInt64() = Parse(p"[1-9][0-9]*", Int64) PPosZeroInt64() = Parse(p"[0-9][0-9]*", Int64) PCalendarNames() = p"[a-zA-Z0-9-\/\s|]+" @with_pre space begin sum = Delayed() weekday_short = Alt(map(x -> Pattern(uppercase(x)), Dates.ENGLISH.days_of_week_abbr)...) month_short = Alt(map(x -> Pattern(uppercase(x)), Dates.ENGLISH.months_abbr)...) brackets = E"(" + space + sum + space + E")" repeat = E"Repeat(" + space + sum + space + E")" > rd -> Repeat(rd) rdate_term = Alt() next = E"Next(" + (space + sum) + (E"," + space + sum)[0:end] + space + E")" |> parts -> Next(parts) next_inc = E"Next!(" + (space + sum) + (E"," + space + sum)[0:end] + space + E")" |> parts -> Next(parts, true) previous = E"Previous(" + (space + sum) + (E"," + space + sum)[0:end] + space + E")" |> parts -> Previous(parts) previous_inc = E"Previous!(" + (space + sum) + (E"," + space + sum)[0:end] + space + E")" |> parts -> Previous(parts, true) rdate_expr = rdate_term | brackets | repeat | next | next_inc | previous | previous_inc neg = Delayed() neg.matcher = rdate_expr | (E"-" + neg > -) cal_adj = neg + (E"@" + PCalendarNames() + E"[" + Alt(map(Pattern, collect(keys(HOLIDAY_ROUNDING_MAPPINGS)))...) + E"]")[0:1] |> xs -> length(xs) == 1 ? xs[1] : CalendarAdj(map(String, split(xs[2], "|")), xs[1], HOLIDAY_ROUNDING_MAPPINGS[xs[3]]) mult = Delayed() mult = cal_adj | ((PPosInt64() + space + E"*" + space + cal_adj) > (c,rd) -> multiply(rd, c)) | ((cal_adj + space + E"*" + space + PPosInt64()) > (rd,c) -> multiply(rd, c)) add = E"+" + mult sub = E"-" + mult > - sum.matcher = (sub | mult) + (add | mult)[0:end] |> Base.sum entry = sum + Eos() end function register_grammar!(term) # Handle the spacing correctly push!(rdate_term.matchers[2].matchers, term) end macro rd_str(arg::String) val = parse_one(arg, entry)[1] isa(val, RDate) || error("Unable to parse $(arg) as RDate") return val end function rdate(arg::String) val = parse_one(arg, entry)[1] isa(val, RDate) || error("Unable to parse $(arg) as RDate") return val end
[ 27, 34345, 29, 10677, 14, 4546, 3876, 13, 20362, 27, 456, 62, 30783, 29, 15, 198, 11748, 23042, 263, 20575, 20900, 25, 350, 5317, 2414, 11, 412, 418, 11, 900, 62, 13049, 11, 14258, 11, 2907, 11, 4687, 11, 2488, 4480, 62, 3866, 11, 2547, 325, 11, 2488, 79, 62, 2536, 11, 23939, 11, 12344, 11, 4216, 16548, 11, 21136, 62, 505, 11, 2488, 36, 62, 2536, 198, 11748, 44712, 198, 198, 13200, 796, 14258, 7, 8248, 7, 14106, 3419, 4008, 198, 198, 13137, 261, 28667, 5317, 2414, 3419, 796, 2547, 325, 7, 79, 26793, 30, 58, 16, 12, 24, 7131, 15, 12, 24, 60, 9, 1600, 2558, 2414, 8, 198, 10246, 418, 5317, 2414, 3419, 796, 2547, 325, 7, 79, 17912, 16, 12, 24, 7131, 15, 12, 24, 60, 9, 1600, 2558, 2414, 8, 198, 10246, 418, 28667, 5317, 2414, 3419, 796, 2547, 325, 7, 79, 17912, 15, 12, 24, 7131, 15, 12, 24, 60, 9, 1600, 2558, 2414, 8, 198, 5662, 282, 9239, 36690, 3419, 796, 279, 17912, 64, 12, 89, 32, 12, 57, 15, 12, 24, 12, 11139, 59, 82, 91, 48688, 1, 198, 198, 31, 4480, 62, 3866, 2272, 2221, 198, 220, 220, 220, 2160, 796, 4216, 16548, 3419, 628, 220, 220, 220, 28269, 62, 19509, 796, 12344, 7, 8899, 7, 87, 4613, 23939, 7, 7211, 2798, 589, 7, 87, 36911, 44712, 13, 1677, 8763, 18422, 13, 12545, 62, 1659, 62, 10464, 62, 397, 1671, 8, 23029, 198, 220, 220, 220, 1227, 62, 19509, 796, 12344, 7, 8899, 7, 87, 4613, 23939, 7, 7211, 2798, 589, 7, 87, 36911, 44712, 13, 1677, 8763, 18422, 13, 41537, 62, 397, 1671, 8, 23029, 628, 220, 220, 220, 28103, 796, 412, 1, 7203, 1343, 2272, 1343, 2160, 1343, 2272, 1343, 412, 4943, 1, 198, 220, 220, 220, 9585, 796, 412, 1, 40322, 7203, 1343, 2272, 1343, 2160, 1343, 2272, 1343, 412, 4943, 1, 1875, 374, 67, 4613, 30021, 7, 4372, 8, 198, 220, 220, 220, 374, 4475, 62, 4354, 796, 12344, 3419, 628, 220, 220, 220, 1306, 796, 412, 1, 10019, 7203, 1343, 357, 13200, 1343, 2160, 8, 1343, 357, 36, 2430, 1343, 2272, 1343, 2160, 38381, 15, 25, 437, 60, 1343, 2272, 1343, 412, 4943, 1, 930, 29, 3354, 4613, 7406, 7, 42632, 8, 198, 220, 220, 220, 1306, 62, 1939, 796, 412, 1, 10019, 0, 7203, 1343, 357, 13200, 1343, 2160, 8, 1343, 357, 36, 2430, 1343, 2272, 1343, 2160, 38381, 15, 25, 437, 60, 1343, 2272, 1343, 412, 4943, 1, 930, 29, 3354, 4613, 7406, 7, 42632, 11, 2081, 8, 198, 220, 220, 220, 2180, 796, 412, 1, 21448, 7203, 1343, 357, 13200, 1343, 2160, 8, 1343, 357, 36, 2430, 1343, 2272, 1343, 2160, 38381, 15, 25, 437, 60, 1343, 2272, 1343, 412, 4943, 1, 930, 29, 3354, 4613, 21801, 7, 42632, 8, 198, 220, 220, 220, 2180, 62, 1939, 796, 412, 1, 21448, 0, 7203, 1343, 357, 13200, 1343, 2160, 8, 1343, 357, 36, 2430, 1343, 2272, 1343, 2160, 38381, 15, 25, 437, 60, 1343, 2272, 1343, 412, 4943, 1, 930, 29, 3354, 4613, 21801, 7, 42632, 11, 2081, 8, 628, 220, 220, 220, 374, 4475, 62, 31937, 796, 374, 4475, 62, 4354, 930, 28103, 930, 9585, 930, 1306, 930, 1306, 62, 1939, 930, 2180, 930, 2180, 62, 1939, 628, 220, 220, 220, 2469, 796, 4216, 16548, 3419, 198, 220, 220, 220, 2469, 13, 6759, 2044, 796, 374, 4475, 62, 31937, 930, 357, 36, 1, 21215, 1343, 2469, 1875, 532, 8, 198, 220, 220, 220, 2386, 62, 41255, 796, 2469, 1343, 357, 36, 1, 31, 1, 1343, 4217, 282, 9239, 36690, 3419, 1343, 412, 1, 14692, 1343, 12344, 7, 8899, 7, 47546, 11, 2824, 7, 13083, 7, 39, 3535, 2389, 4792, 62, 49, 15919, 2751, 62, 44, 24805, 20754, 22305, 23029, 1343, 412, 8973, 4943, 58, 15, 25, 16, 60, 930, 29, 2124, 82, 4613, 4129, 7, 34223, 8, 6624, 352, 5633, 2124, 82, 58, 16, 60, 1058, 26506, 2782, 73, 7, 8899, 7, 10100, 11, 6626, 7, 34223, 58, 17, 4357, 366, 91, 4943, 828, 2124, 82, 58, 16, 4357, 49707, 2389, 4792, 62, 49, 15919, 2751, 62, 44, 24805, 20754, 58, 34223, 58, 18, 11907, 8, 628, 198, 220, 220, 220, 1963, 796, 4216, 16548, 3419, 198, 220, 220, 220, 1963, 796, 2386, 62, 41255, 930, 14808, 10246, 418, 5317, 2414, 3419, 1343, 2272, 1343, 412, 1, 9, 1, 1343, 2272, 1343, 2386, 62, 41255, 8, 1875, 357, 66, 11, 4372, 8, 4613, 29162, 7, 4372, 11, 269, 4008, 930, 14808, 9948, 62, 41255, 1343, 2272, 1343, 412, 1, 9, 1, 1343, 2272, 1343, 21082, 418, 5317, 2414, 28955, 1875, 357, 4372, 11, 66, 8, 4613, 29162, 7, 4372, 11, 269, 4008, 628, 220, 220, 220, 751, 796, 412, 1, 10, 1, 1343, 1963, 198, 220, 220, 220, 850, 796, 412, 1, 21215, 1343, 1963, 1875, 532, 198, 220, 220, 220, 2160, 13, 6759, 2044, 796, 357, 7266, 930, 1963, 8, 1343, 357, 2860, 930, 1963, 38381, 15, 25, 437, 60, 930, 29, 7308, 13, 16345, 628, 220, 220, 220, 5726, 796, 2160, 1343, 412, 418, 3419, 198, 437, 198, 198, 8818, 7881, 62, 4546, 3876, 0, 7, 4354, 8, 198, 220, 220, 220, 1303, 33141, 262, 31050, 9380, 198, 220, 220, 220, 4574, 0, 7, 4372, 378, 62, 4354, 13, 6759, 3533, 58, 17, 4083, 6759, 3533, 11, 3381, 8, 198, 437, 198, 198, 20285, 305, 374, 67, 62, 2536, 7, 853, 3712, 10100, 8, 198, 220, 220, 220, 1188, 796, 21136, 62, 505, 7, 853, 11, 5726, 38381, 16, 60, 198, 220, 220, 220, 318, 64, 7, 2100, 11, 371, 10430, 8, 8614, 4049, 7203, 3118, 540, 284, 21136, 29568, 853, 8, 355, 371, 10430, 4943, 198, 220, 220, 220, 1441, 1188, 198, 437, 198, 198, 8818, 374, 4475, 7, 853, 3712, 10100, 8, 198, 220, 220, 220, 1188, 796, 21136, 62, 505, 7, 853, 11, 5726, 38381, 16, 60, 198, 220, 220, 220, 318, 64, 7, 2100, 11, 371, 10430, 8, 8614, 4049, 7203, 3118, 540, 284, 21136, 29568, 853, 8, 355, 371, 10430, 4943, 198, 220, 220, 220, 1441, 1188, 198, 437, 198 ]
2.361933
1,014
<gh_stars>1-10 using Test using LinearAlgebra using LinearAlgebra: norm using Ferrite using StaticArrays using TopOpt using TrussTopOpt.TrussTopOptProblems using TrussTopOpt.TrussTopOptProblems: buckling using Crayons.Box using GLMakie problem_json = ["mgz_geom_stiff_ex9.1.json", "buckling_2d_debug.json"] ins_dir = joinpath(@__DIR__, "instances", "fea_examples"); # @testset "Buckling problem solve - $(problem_json[i])" for i in 1:length(problem_json) i = 1 file_name = problem_json[i] problem_file = joinpath(ins_dir, file_name) node_points, elements, mats, crosssecs, fixities, _ = parse_truss_json(problem_file); P_val = 400 # kN P = Dict(2 => SVector{2}(P_val * [0.05, -1.0])) nnode = length(node_points) # Newton iteration setup max_newton_itr = 50 NEWTON_TOL = 1e-8 function dict2vec(dict, veclen) v = zeros(veclen) for (nid, val) in dict v[2*nid-1:2*nid] = val end return v end # Δu = Dict(nid => SVector{2,Float64}(0,0) for nid in keys(node_points)) updated_nodes = copy(node_points) problem = TrussProblem(Val{:Linear}, node_points, elements, P, fixities, mats, crosssecs); solver = FEASolver(Displacement, Direct, problem) solver() K, Kσ = buckling(problem, solver.globalinfo, solver.elementinfo; u=zeros(2*nnode)) Kt = K + Kσ P_vec = solver.globalinfo.f # * initialize displacements as zero ut = zeros(nnode*2) # tracking iteration history for plotting ub_t = [] p_t = [] newton_itr = -1 # Newton-Raphson Iterations # https://people.duke.edu/~hpgavin/cee421/truss-finite-def.pdf # https://kristofferc.github.io/JuAFEM.jl/dev/examples/hyperelasticity/ while true global newton_itr, Kt, P_vec, ut, updated_nodes newton_itr += 1 reaction = Kt * ut @show res_norm = norm(reaction - P_vec) push!(ub_t, ut[2*2-1]) push!(p_t,-reaction[2*2]) if res_norm < NEWTON_TOL break elseif newton_itr > max_newton_itr break # error("Reached maximum Newton iterations, aborting") end # construct new stiffness matrix ut = Kt \ P_vec updated_nodes = Dict(nid => pt + ut[2*nid-1:2*nid] for (nid, pt) in updated_nodes) problem = TrussProblem(Val{:Linear}, updated_nodes, elements, P, fixities, mats, crosssecs); solver = FEASolver(Displacement, Direct, problem) solver() K, Kσ = buckling(problem, solver.globalinfo, solver.elementinfo; u=ut) Kt = K + Kσ end scatter(ub_t, p_t) lines!(ub_t, p_t, color = :blue, linewidth = 3) current_figure() # scene, layout = draw_truss_problem(problem; u=v, default_exagg=1.0, exagg_range=10.0, # default_load_scale=0.2, default_support_scale=0.2, default_arrow_size=0.03) # end # end test set # =#
[ 27, 456, 62, 30783, 29, 16, 12, 940, 198, 3500, 6208, 198, 3500, 44800, 2348, 29230, 198, 3500, 44800, 2348, 29230, 25, 2593, 198, 3500, 12880, 6525, 198, 3500, 36125, 3163, 20477, 198, 198, 3500, 5849, 27871, 198, 3500, 833, 1046, 9126, 27871, 13, 2898, 1046, 9126, 27871, 2964, 22143, 198, 3500, 833, 1046, 9126, 27871, 13, 2898, 1046, 9126, 27871, 2964, 22143, 25, 10230, 1359, 198, 3500, 327, 2433, 684, 13, 14253, 198, 3500, 10188, 44, 461, 494, 198, 198, 45573, 62, 17752, 796, 14631, 11296, 89, 62, 469, 296, 62, 301, 733, 62, 1069, 24, 13, 16, 13, 17752, 1600, 366, 27041, 1359, 62, 17, 67, 62, 24442, 13, 17752, 8973, 198, 1040, 62, 15908, 796, 4654, 6978, 7, 31, 834, 34720, 834, 11, 366, 8625, 1817, 1600, 366, 5036, 64, 62, 1069, 12629, 15341, 198, 198, 2, 2488, 9288, 2617, 366, 33, 1347, 1359, 1917, 8494, 532, 29568, 45573, 62, 17752, 58, 72, 12962, 1, 329, 1312, 287, 352, 25, 13664, 7, 45573, 62, 17752, 8, 198, 220, 220, 220, 1312, 796, 352, 198, 220, 220, 220, 2393, 62, 3672, 796, 1917, 62, 17752, 58, 72, 60, 198, 220, 220, 220, 1917, 62, 7753, 796, 4654, 6978, 7, 1040, 62, 15908, 11, 2393, 62, 3672, 8, 628, 220, 220, 220, 10139, 62, 13033, 11, 4847, 11, 46054, 11, 3272, 2363, 82, 11, 4259, 871, 11, 4808, 796, 21136, 62, 2213, 1046, 62, 17752, 7, 45573, 62, 7753, 1776, 628, 220, 220, 220, 350, 62, 2100, 796, 7337, 1303, 479, 45, 198, 220, 220, 220, 350, 796, 360, 713, 7, 17, 5218, 20546, 9250, 90, 17, 92, 7, 47, 62, 2100, 1635, 685, 15, 13, 2713, 11, 532, 16, 13, 15, 60, 4008, 198, 220, 220, 220, 299, 17440, 796, 4129, 7, 17440, 62, 13033, 8, 628, 220, 220, 220, 1303, 17321, 24415, 9058, 198, 220, 220, 220, 3509, 62, 3605, 1122, 62, 270, 81, 796, 2026, 198, 220, 220, 220, 12682, 11357, 62, 51, 3535, 796, 352, 68, 12, 23, 628, 220, 220, 220, 2163, 8633, 17, 35138, 7, 11600, 11, 1569, 565, 268, 8, 198, 220, 220, 220, 220, 220, 220, 220, 410, 796, 1976, 27498, 7, 303, 565, 268, 8, 198, 220, 220, 220, 220, 220, 220, 220, 329, 357, 77, 312, 11, 1188, 8, 287, 8633, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 410, 58, 17, 9, 77, 312, 12, 16, 25, 17, 9, 77, 312, 60, 796, 1188, 198, 220, 220, 220, 220, 220, 220, 220, 886, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 410, 198, 220, 220, 220, 886, 628, 220, 220, 220, 1303, 37455, 84, 796, 360, 713, 7, 77, 312, 5218, 20546, 9250, 90, 17, 11, 43879, 2414, 92, 7, 15, 11, 15, 8, 329, 299, 312, 287, 8251, 7, 17440, 62, 13033, 4008, 628, 220, 220, 220, 6153, 62, 77, 4147, 796, 4866, 7, 17440, 62, 13033, 8, 198, 220, 220, 220, 1917, 796, 833, 1046, 40781, 7, 7762, 90, 25, 14993, 451, 5512, 10139, 62, 13033, 11, 4847, 11, 350, 11, 4259, 871, 11, 46054, 11, 3272, 2363, 82, 1776, 198, 220, 220, 220, 1540, 332, 796, 18630, 1921, 14375, 7, 7279, 489, 5592, 11, 4128, 11, 1917, 8, 198, 220, 220, 220, 1540, 332, 3419, 198, 220, 220, 220, 509, 11, 509, 38392, 796, 10230, 1359, 7, 45573, 11, 1540, 332, 13, 20541, 10951, 11, 1540, 332, 13, 30854, 10951, 26, 334, 28, 9107, 418, 7, 17, 9, 77, 17440, 4008, 198, 220, 220, 220, 509, 83, 796, 509, 1343, 509, 38392, 198, 220, 220, 220, 350, 62, 35138, 796, 1540, 332, 13, 20541, 10951, 13, 69, 198, 220, 220, 220, 1303, 1635, 41216, 7845, 28613, 355, 6632, 198, 220, 220, 220, 3384, 796, 1976, 27498, 7, 77, 17440, 9, 17, 8, 628, 220, 220, 220, 1303, 9646, 24415, 2106, 329, 29353, 198, 220, 220, 220, 20967, 62, 83, 796, 17635, 198, 220, 220, 220, 279, 62, 83, 796, 17635, 628, 220, 220, 220, 649, 1122, 62, 270, 81, 796, 532, 16, 628, 220, 220, 220, 1303, 17321, 12, 49, 6570, 1559, 40806, 602, 198, 220, 220, 220, 1303, 3740, 1378, 15332, 13, 646, 365, 13, 15532, 14, 93, 71, 6024, 20637, 14, 344, 68, 46636, 14, 2213, 1046, 12, 69, 9504, 12, 4299, 13, 12315, 198, 220, 220, 220, 1303, 3740, 1378, 74, 1585, 2364, 2798, 13, 12567, 13, 952, 14, 33018, 8579, 3620, 13, 20362, 14, 7959, 14, 1069, 12629, 14, 71, 2981, 2411, 3477, 414, 14, 198, 220, 220, 220, 981, 2081, 198, 220, 220, 220, 220, 220, 220, 220, 3298, 649, 1122, 62, 270, 81, 11, 509, 83, 11, 350, 62, 35138, 11, 3384, 11, 6153, 62, 77, 4147, 198, 220, 220, 220, 220, 220, 220, 220, 649, 1122, 62, 270, 81, 15853, 352, 198, 220, 220, 220, 220, 220, 220, 220, 6317, 796, 509, 83, 1635, 3384, 198, 220, 220, 220, 220, 220, 220, 220, 2488, 12860, 581, 62, 27237, 796, 2593, 7, 260, 2673, 532, 350, 62, 35138, 8, 198, 220, 220, 220, 220, 220, 220, 220, 4574, 0, 7, 549, 62, 83, 11, 3384, 58, 17, 9, 17, 12, 16, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 4574, 0, 7, 79, 62, 83, 12095, 260, 2673, 58, 17, 9, 17, 12962, 628, 220, 220, 220, 220, 220, 220, 220, 611, 581, 62, 27237, 1279, 12682, 11357, 62, 51, 3535, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2270, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 361, 649, 1122, 62, 270, 81, 1875, 3509, 62, 3605, 1122, 62, 270, 81, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2270, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 4049, 7203, 3041, 2317, 5415, 17321, 34820, 11, 15614, 278, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 886, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 5678, 649, 49586, 17593, 198, 220, 220, 220, 220, 220, 220, 220, 3384, 796, 509, 83, 3467, 350, 62, 35138, 198, 220, 220, 220, 220, 220, 220, 220, 6153, 62, 77, 4147, 796, 360, 713, 7, 77, 312, 5218, 42975, 1343, 3384, 58, 17, 9, 77, 312, 12, 16, 25, 17, 9, 77, 312, 60, 329, 357, 77, 312, 11, 42975, 8, 287, 6153, 62, 77, 4147, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1917, 796, 833, 1046, 40781, 7, 7762, 90, 25, 14993, 451, 5512, 6153, 62, 77, 4147, 11, 4847, 11, 350, 11, 4259, 871, 11, 46054, 11, 3272, 2363, 82, 1776, 198, 220, 220, 220, 220, 220, 220, 220, 1540, 332, 796, 18630, 1921, 14375, 7, 7279, 489, 5592, 11, 4128, 11, 1917, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1540, 332, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 509, 11, 509, 38392, 796, 10230, 1359, 7, 45573, 11, 1540, 332, 13, 20541, 10951, 11, 1540, 332, 13, 30854, 10951, 26, 334, 28, 315, 8, 198, 220, 220, 220, 220, 220, 220, 220, 509, 83, 796, 509, 1343, 509, 38392, 198, 220, 220, 220, 886, 198, 220, 220, 220, 41058, 7, 549, 62, 83, 11, 279, 62, 83, 8, 198, 220, 220, 220, 3951, 0, 7, 549, 62, 83, 11, 279, 62, 83, 11, 3124, 796, 1058, 17585, 11, 9493, 413, 5649, 796, 513, 8, 198, 220, 220, 220, 1459, 62, 26875, 3419, 628, 220, 220, 220, 1303, 3715, 11, 12461, 796, 3197, 62, 2213, 1046, 62, 45573, 7, 45573, 26, 334, 28, 85, 11, 4277, 62, 1069, 9460, 28, 16, 13, 15, 11, 409, 9460, 62, 9521, 28, 940, 13, 15, 11, 198, 220, 220, 220, 1303, 220, 220, 220, 220, 4277, 62, 2220, 62, 9888, 28, 15, 13, 17, 11, 4277, 62, 11284, 62, 9888, 28, 15, 13, 17, 11, 4277, 62, 6018, 62, 7857, 28, 15, 13, 3070, 8, 198, 198, 2, 886, 1303, 886, 1332, 900, 198, 198, 2, 796, 2 ]
2.196523
1,323
<filename>src/data/competitions.jl<gh_stars>0 # This file contains functions to get access to the list of all available competitions and seasons depending on the loader. """ PublicWyscoutCompetitions """ Base.@kwdef mutable struct PublicWyscoutCompetitions data::DataFrame end """ function competitions() Return a dataframe with all available competitions and seasons in PublicWyscoutLoader """ function competitions(events_data::PublicWyscoutLoader)::PublicWyscoutCompetitions competitions_data = PublicWyscoutCompetitions(data = get_df(joinpath(events_data.path, "competitions.json"))) rename!(competitions_data.data, :wyId => :competition_id, :name => :competition_name) country_names = DataFrame(competitions_data.data[:, :area])[:,:name] for i in eachindex(country_names) if country_names[i] == "" country_names[i] = "International" end end insertcols!(competitions_data.data, :country_name => country_names, :competition_gender => "male") competitions_data.data = competitions_data.data[:,[:competition_id, :competition_name, :country_name, :competition_gender]] competitions_data.data = leftjoin(competitions_data.data, unique(events_data.match_index[:,[:competition_id, :season_id, :season_name]]), on = [:competition_id]) return competitions_data end
[ 27, 34345, 29, 10677, 14, 7890, 14, 5589, 316, 1756, 13, 20362, 27, 456, 62, 30783, 29, 15, 198, 2, 770, 2393, 4909, 5499, 284, 651, 1895, 284, 262, 1351, 286, 477, 1695, 24174, 290, 7028, 6906, 319, 262, 40213, 13, 628, 198, 37811, 198, 220, 220, 220, 5094, 54, 28349, 448, 7293, 316, 1756, 198, 37811, 198, 14881, 13, 31, 46265, 4299, 4517, 540, 2878, 5094, 54, 28349, 448, 7293, 316, 1756, 220, 198, 220, 220, 220, 1366, 3712, 6601, 19778, 198, 437, 628, 198, 37811, 198, 8818, 24174, 3419, 198, 13615, 257, 1366, 14535, 351, 477, 1695, 24174, 290, 7028, 287, 5094, 54, 28349, 448, 17401, 198, 37811, 198, 8818, 24174, 7, 31534, 62, 7890, 3712, 15202, 54, 28349, 448, 17401, 2599, 25, 15202, 54, 28349, 448, 7293, 316, 1756, 198, 220, 220, 220, 24174, 62, 7890, 796, 5094, 54, 28349, 448, 7293, 316, 1756, 7, 7890, 796, 651, 62, 7568, 7, 22179, 6978, 7, 31534, 62, 7890, 13, 6978, 11, 366, 5589, 316, 1756, 13, 17752, 1, 22305, 628, 220, 220, 220, 36265, 0, 7, 5589, 316, 1756, 62, 7890, 13, 7890, 11, 1058, 21768, 7390, 5218, 1058, 5589, 15620, 62, 312, 11, 1058, 3672, 5218, 1058, 5589, 15620, 62, 3672, 8, 628, 220, 220, 220, 1499, 62, 14933, 796, 6060, 19778, 7, 5589, 316, 1756, 62, 7890, 13, 7890, 58, 45299, 1058, 20337, 12962, 58, 45299, 25, 3672, 60, 198, 220, 220, 220, 329, 1312, 287, 1123, 9630, 7, 19315, 62, 14933, 8, 198, 220, 220, 220, 220, 220, 220, 220, 611, 1499, 62, 14933, 58, 72, 60, 6624, 13538, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1499, 62, 14933, 58, 72, 60, 796, 366, 24274, 1, 198, 220, 220, 220, 220, 220, 220, 220, 886, 220, 198, 220, 220, 220, 886, 198, 220, 220, 220, 7550, 4033, 82, 0, 7, 5589, 316, 1756, 62, 7890, 13, 7890, 11, 1058, 19315, 62, 3672, 5218, 1499, 62, 14933, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1058, 5589, 15620, 62, 8388, 5218, 366, 22606, 4943, 628, 220, 220, 220, 24174, 62, 7890, 13, 7890, 796, 24174, 62, 7890, 13, 7890, 58, 25, 17414, 25, 5589, 15620, 62, 312, 11, 1058, 5589, 15620, 62, 3672, 11, 1058, 19315, 62, 3672, 11, 1058, 5589, 15620, 62, 8388, 11907, 628, 220, 220, 220, 24174, 62, 7890, 13, 7890, 796, 1364, 22179, 7, 5589, 316, 1756, 62, 7890, 13, 7890, 11, 3748, 7, 31534, 62, 7890, 13, 15699, 62, 9630, 58, 25, 17414, 25, 5589, 15620, 62, 312, 11, 1058, 6230, 62, 312, 11, 1058, 6230, 62, 3672, 11907, 828, 319, 796, 685, 25, 5589, 15620, 62, 312, 12962, 628, 220, 220, 220, 1441, 24174, 62, 7890, 198, 437, 198 ]
2.91863
467
# Note that this script can accept some limited command-line arguments, run # `julia build_tarballs.jl --help` to see a usage message. using BinaryBuilder, Pkg name = "rubberband" version = v"1.9.0" # Collection of sources required to complete build sources = [ GitSource("https://github.com/breakfastquay/rubberband.git", "6659d61f010e19080d62aa2fd2eae88f16e5d9c9") ] # Bash recipe for building across all platforms script = raw""" cd $WORKSPACE/srcdir/rubberband/ ./configure --prefix=${prefix} --build=${MACHTYPE} --host=${target} CXXFLAGS="${CXXFLAGS} -DHAVE_FFTW3 -DHAVE_LIBSAMPLERATE" enable_vamp=no enable_ladspa=no make DYNAMIC_LDFLAGS="${LDFLAGS} -shared" DYNAMIC_EXTENSION=".$dlext" DYNAMIC_EXTENSION=".$dlext" PROGRAM_TARGET="bin/rubberband$exeext" make install DYNAMIC_EXTENSION=".$dlext" PROGRAM_TARGET="bin/rubberband$exeext" """ # These are the platforms we will build for by default, unless further # platforms are passed in on the command line platforms = expand_cxxstring_abis(supported_platforms()) # The products that we will ensure are always built products = [ LibraryProduct("librubberband", :librubberband) ExecutableProduct("rubberband", :rubberband) ] # Dependencies that must be installed before this package can be built dependencies = Dependency[ Dependency("FFTW_jll"), Dependency("libsamplerate_jll"), Dependency("libsndfile_jll"), ] # Build the tarballs, and possibly a `build.jl` as well. build_tarballs(ARGS, name, version, sources, script, platforms, products, dependencies)
[ 2, 5740, 326, 428, 4226, 460, 2453, 617, 3614, 3141, 12, 1370, 7159, 11, 1057, 198, 2, 4600, 73, 43640, 1382, 62, 18870, 21591, 13, 20362, 1377, 16794, 63, 284, 766, 257, 8748, 3275, 13, 198, 3500, 45755, 32875, 11, 350, 10025, 198, 198, 3672, 796, 366, 25089, 527, 3903, 1, 198, 9641, 796, 410, 1, 16, 13, 24, 13, 15, 1, 198, 198, 2, 12251, 286, 4237, 2672, 284, 1844, 1382, 198, 82, 2203, 796, 685, 198, 220, 220, 220, 15151, 7416, 7203, 5450, 1378, 12567, 13, 785, 14, 9032, 7217, 421, 323, 14, 25089, 527, 3903, 13, 18300, 1600, 366, 2791, 3270, 67, 5333, 69, 20943, 68, 19782, 1795, 67, 5237, 7252, 17, 16344, 17, 68, 3609, 3459, 69, 1433, 68, 20, 67, 24, 66, 24, 4943, 198, 60, 198, 198, 2, 15743, 8364, 329, 2615, 1973, 477, 9554, 198, 12048, 796, 8246, 37811, 198, 10210, 720, 33249, 4303, 11598, 14, 10677, 15908, 14, 25089, 527, 3903, 14, 198, 19571, 11250, 495, 1377, 40290, 28, 38892, 40290, 92, 1377, 11249, 28, 38892, 44721, 6535, 56, 11401, 92, 1377, 4774, 28, 38892, 16793, 92, 327, 8051, 38948, 50, 2625, 38892, 34, 8051, 38948, 50, 92, 532, 35, 7801, 6089, 62, 5777, 34551, 18, 532, 35, 7801, 6089, 62, 31271, 4462, 2390, 6489, 1137, 6158, 1, 7139, 62, 85, 696, 28, 3919, 7139, 62, 9435, 2777, 64, 28, 3919, 198, 15883, 360, 40760, 2390, 2149, 62, 11163, 38948, 50, 2625, 38892, 11163, 38948, 50, 92, 532, 28710, 1, 360, 40760, 2390, 2149, 62, 13918, 16938, 2849, 28, 1911, 3, 67, 293, 742, 1, 360, 40760, 2390, 2149, 62, 13918, 16938, 2849, 28, 1911, 3, 67, 293, 742, 1, 46805, 62, 51, 46095, 2625, 8800, 14, 25089, 527, 3903, 3, 1069, 1453, 742, 1, 198, 15883, 2721, 360, 40760, 2390, 2149, 62, 13918, 16938, 2849, 28, 1911, 3, 67, 293, 742, 1, 46805, 62, 51, 46095, 2625, 8800, 14, 25089, 527, 3903, 3, 1069, 1453, 742, 1, 198, 37811, 198, 198, 2, 2312, 389, 262, 9554, 356, 481, 1382, 329, 416, 4277, 11, 4556, 2252, 198, 2, 9554, 389, 3804, 287, 319, 262, 3141, 1627, 198, 24254, 82, 796, 4292, 62, 66, 5324, 8841, 62, 8102, 7, 15999, 62, 24254, 82, 28955, 198, 198, 2, 383, 3186, 326, 356, 481, 4155, 389, 1464, 3170, 198, 29498, 796, 685, 198, 220, 220, 220, 10074, 15667, 7203, 75, 2889, 549, 527, 3903, 1600, 1058, 75, 2889, 549, 527, 3903, 8, 198, 220, 220, 220, 8393, 18187, 15667, 7203, 25089, 527, 3903, 1600, 1058, 25089, 527, 3903, 8, 198, 60, 198, 198, 2, 37947, 3976, 326, 1276, 307, 6589, 878, 428, 5301, 460, 307, 3170, 198, 45841, 3976, 796, 37947, 1387, 58, 198, 220, 220, 220, 37947, 1387, 7203, 5777, 34551, 62, 73, 297, 12340, 198, 220, 220, 220, 37947, 1387, 7203, 8019, 37687, 20053, 378, 62, 73, 297, 12340, 198, 220, 220, 220, 37947, 1387, 7203, 8019, 82, 358, 7753, 62, 73, 297, 12340, 198, 60, 198, 198, 2, 10934, 262, 13422, 21591, 11, 290, 5457, 257, 4600, 11249, 13, 20362, 63, 355, 880, 13, 198, 11249, 62, 18870, 21591, 7, 1503, 14313, 11, 1438, 11, 2196, 11, 4237, 11, 4226, 11, 9554, 11, 3186, 11, 20086, 8, 198 ]
2.875
536
<filename>test/examples/example_18_new_sliders.jl using Makie using MakieLayout using Printf begin scene = Scene(camera=campixel!) screen = display(scene) outergrid = GridLayout(scene; alignmode=Outside(30)) innergrid = outergrid[1, 1] = GridLayout() lagrid = innergrid[1, 1] = GridLayout() la = lagrid[1, 1] = LAxis(scene) # la.xoppositespinevisible = false # la.yoppositespinevisible = false la.xgridvisible = false la.ygridvisible = false la.xautolimitmargin = (0, 0) la.yautolimitmargin = (0, 0) slidergrid = innergrid[2, 1] = GridLayout() ls1 = slidergrid[1, 1] = LSlider(scene, range=50:0.01:100, height=50) slidergrid[1, 2] = LText(scene, text=lift(x->@sprintf("%.2f", x), ls1.value), alignment=(:right, :center), width=140, height=40, padding=(10, 10, 5, 5)) slidergrid[1, 2] = LRect(scene, color=:white, strokewidth=2f0, strokecolor=RGBf0(0.9, 0.9, 0.9)) ls2 = slidergrid[2, 1] = LSlider(scene, range=LinRange(0.1, 3, 1000), startvalue=1, height=50) t2 = slidergrid[2, 2] = LText(scene, text=lift(x->@sprintf("%.2f", x), ls2.value), alignment=(:right, :center), width=140, height=40, padding=(10, 10, 5, 5)) slidergrid[2, 2] = LRect(scene, color=:white, strokewidth=2f0, strokecolor=RGBf0(0.9, 0.9, 0.9)) ls3 = innergrid[1, end+1] = LSlider(scene, range=0.1:0.01:1, width=50, horizontal=false) buttongrid = slidergrid[3, :] = GridLayout() buttongrid[1, 1] = LButton(scene, height=40) b2 = buttongrid[1, 2] = LButton(scene, autoshrink=(false, false), label="Change colormap") data = lift(ls2.value, ls3.value) do v1, v2 [sin(x * y / 1000 * v1) * v2 for x in 1:100, y in 1:100] end hmap = heatmap!(la, data) lc = lagrid[1, 2] = LColorbar(scene, hmap, width=40) tight_ticklabel_spacing!(lc) on(b2.clicks) do c hmap.colormap = rand(setdiff([:viridis, :heat, :rainbow, :blues], [hmap.colormap[]])) end end
[ 27, 34345, 29, 9288, 14, 1069, 12629, 14, 20688, 62, 1507, 62, 3605, 62, 6649, 4157, 13, 20362, 198, 3500, 15841, 494, 198, 3500, 15841, 494, 32517, 198, 3500, 12578, 69, 628, 198, 27471, 198, 220, 220, 220, 3715, 796, 28315, 7, 25695, 28, 16544, 7168, 8133, 198, 220, 220, 220, 3159, 796, 3359, 7, 29734, 8, 628, 220, 220, 220, 12076, 25928, 796, 24846, 32517, 7, 29734, 26, 10548, 14171, 28, 30815, 7, 1270, 4008, 628, 220, 220, 220, 8434, 25928, 796, 12076, 25928, 58, 16, 11, 352, 60, 796, 24846, 32517, 3419, 628, 220, 220, 220, 19470, 6058, 796, 8434, 25928, 58, 16, 11, 352, 60, 796, 24846, 32517, 3419, 198, 220, 220, 220, 8591, 796, 19470, 6058, 58, 16, 11, 352, 60, 796, 9131, 87, 271, 7, 29734, 8, 198, 220, 220, 220, 1303, 8591, 13, 87, 10365, 418, 2737, 23908, 23504, 796, 3991, 198, 220, 220, 220, 1303, 8591, 13, 8226, 381, 418, 2737, 23908, 23504, 796, 3991, 198, 220, 220, 220, 8591, 13, 87, 25928, 23504, 796, 3991, 198, 220, 220, 220, 8591, 13, 88, 25928, 23504, 796, 3991, 198, 220, 220, 220, 8591, 13, 87, 2306, 349, 320, 270, 36153, 796, 357, 15, 11, 657, 8, 198, 220, 220, 220, 8591, 13, 88, 2306, 349, 320, 270, 36153, 796, 357, 15, 11, 657, 8, 628, 198, 220, 220, 220, 28982, 25928, 796, 8434, 25928, 58, 17, 11, 352, 60, 796, 24846, 32517, 3419, 628, 220, 220, 220, 43979, 16, 796, 28982, 25928, 58, 16, 11, 352, 60, 796, 406, 11122, 1304, 7, 29734, 11, 2837, 28, 1120, 25, 15, 13, 486, 25, 3064, 11, 6001, 28, 1120, 8, 198, 220, 220, 220, 28982, 25928, 58, 16, 11, 362, 60, 796, 406, 8206, 7, 29734, 11, 2420, 28, 26282, 7, 87, 3784, 31, 82, 37435, 7203, 7225, 17, 69, 1600, 2124, 828, 43979, 16, 13, 8367, 828, 198, 220, 220, 220, 220, 220, 220, 220, 19114, 16193, 25, 3506, 11, 1058, 16159, 828, 9647, 28, 15187, 11, 6001, 28, 1821, 11, 24511, 16193, 940, 11, 838, 11, 642, 11, 642, 4008, 198, 220, 220, 220, 28982, 25928, 58, 16, 11, 362, 60, 796, 37491, 478, 7, 29734, 11, 3124, 28, 25, 11186, 11, 14000, 10394, 28, 17, 69, 15, 11, 14000, 8043, 28, 36982, 69, 15, 7, 15, 13, 24, 11, 657, 13, 24, 11, 657, 13, 24, 4008, 628, 220, 220, 220, 43979, 17, 796, 28982, 25928, 58, 17, 11, 352, 60, 796, 406, 11122, 1304, 7, 29734, 11, 2837, 28, 14993, 17257, 7, 15, 13, 16, 11, 513, 11, 8576, 828, 923, 8367, 28, 16, 11, 6001, 28, 1120, 8, 198, 220, 220, 220, 256, 17, 796, 28982, 25928, 58, 17, 11, 362, 60, 796, 406, 8206, 7, 29734, 11, 2420, 28, 26282, 7, 87, 3784, 31, 82, 37435, 7203, 7225, 17, 69, 1600, 2124, 828, 43979, 17, 13, 8367, 828, 198, 220, 220, 220, 220, 220, 220, 220, 19114, 16193, 25, 3506, 11, 1058, 16159, 828, 9647, 28, 15187, 11, 6001, 28, 1821, 11, 24511, 16193, 940, 11, 838, 11, 642, 11, 642, 4008, 198, 220, 220, 220, 28982, 25928, 58, 17, 11, 362, 60, 796, 37491, 478, 7, 29734, 11, 3124, 28, 25, 11186, 11, 14000, 10394, 28, 17, 69, 15, 11, 14000, 8043, 28, 36982, 69, 15, 7, 15, 13, 24, 11, 657, 13, 24, 11, 657, 13, 24, 4008, 628, 220, 220, 220, 43979, 18, 796, 8434, 25928, 58, 16, 11, 886, 10, 16, 60, 796, 406, 11122, 1304, 7, 29734, 11, 2837, 28, 15, 13, 16, 25, 15, 13, 486, 25, 16, 11, 9647, 28, 1120, 11, 16021, 28, 9562, 8, 628, 220, 220, 220, 8530, 506, 6058, 796, 28982, 25928, 58, 18, 11, 1058, 60, 796, 24846, 32517, 3419, 198, 220, 220, 220, 8530, 506, 6058, 58, 16, 11, 352, 60, 796, 406, 21864, 7, 29734, 11, 6001, 28, 1821, 8, 198, 220, 220, 220, 275, 17, 796, 8530, 506, 6058, 58, 16, 11, 362, 60, 796, 406, 21864, 7, 29734, 11, 1960, 3768, 81, 676, 16193, 9562, 11, 3991, 828, 6167, 2625, 19400, 951, 579, 499, 4943, 628, 220, 220, 220, 1366, 796, 10303, 7, 7278, 17, 13, 8367, 11, 43979, 18, 13, 8367, 8, 466, 410, 16, 11, 410, 17, 198, 220, 220, 220, 220, 220, 220, 220, 685, 31369, 7, 87, 1635, 331, 1220, 8576, 1635, 410, 16, 8, 1635, 410, 17, 329, 2124, 287, 352, 25, 3064, 11, 331, 287, 352, 25, 3064, 60, 198, 220, 220, 220, 886, 628, 220, 220, 220, 289, 8899, 796, 4894, 8899, 0, 7, 5031, 11, 1366, 8, 628, 220, 220, 220, 300, 66, 796, 19470, 6058, 58, 16, 11, 362, 60, 796, 406, 10258, 5657, 7, 29734, 11, 289, 8899, 11, 9647, 28, 1821, 8, 198, 220, 220, 220, 5381, 62, 42298, 18242, 62, 2777, 4092, 0, 7, 44601, 8, 628, 220, 220, 220, 319, 7, 65, 17, 13, 565, 3378, 8, 466, 269, 198, 220, 220, 220, 220, 220, 220, 220, 289, 8899, 13, 4033, 579, 499, 796, 43720, 7, 2617, 26069, 26933, 25, 37040, 29207, 11, 1058, 25080, 11, 1058, 3201, 8176, 11, 1058, 2436, 947, 4357, 685, 71, 8899, 13, 4033, 579, 499, 58, 11907, 4008, 198, 220, 220, 220, 886, 198, 437, 198 ]
2.269805
871
<gh_stars>10-100 @testset "AutoFlux" begin @testset "ImageClassifier smoketest" begin using NaiveGAflux.AutoFlux import NaiveGAflux.AutoFlux.ImageClassification: TrainSplitAccuracy, TrainIterConfig, BatchedIterConfig, ShuffleIterConfig, AccuracyVsSize, TrainAccuracyVsSize, EliteAndTournamentSelection, EliteAndSusSelection, GlobalOptimizerMutation, modelname using Random rng = MersenneTwister(123) x = randn(rng, Float32, 32,32,2,4) y = Float32.(Flux.onehotbatch(rand(rng, 0:5,4), 0:5)) dummydir = joinpath(NaiveGAflux.modeldir, "ImageClassifier_smoketest") c = ImageClassifier(popsize = 5, seed=1, mdir=dummydir, insize=size(x), outsize=size(y,1)) f = TrainSplitAccuracy(;split=0.25, accuracyconfig=BatchedIterConfig(batchsize=1), accuracyfitness=data -> AccuracyVsSize(data, 3;accwrap=EwmaFitness), trainconfig=TrainIterConfig(nbatches_per_gen=1, baseconfig=ShuffleIterConfig(batchsize=1))) # Logs are mainly to prevent CI timeouts @info "\tSmoke test with TrainSplitAccuracy and EliteAndSusSelection" pop = @test_logs (:info, "Begin generation 1") (:info, "Begin generation 2") (:info, "Begin generation 3") (:info, r"Mutate model") match_mode=:any fit(c, x, y, fitnesstrategy=f, evolutionstrategy = GlobalOptimizerMutation(EliteAndSusSelection(popsize=c.popsize, nelites=1)), stopcriterion = pop -> generation(pop) == 3) @test length(pop) == c.popsize @test modelname.(pop) == ["model$i" for i in 1:length(pop)] globallearningrate(c::AbstractCandidate) = globallearningrate(c.c) globallearningrate(c::CandidateOptModel) = globallearningrate(c.opt) globallearningrate(o::Flux.Optimiser) = prod(globallearningrate.(o.os)) globallearningrate(o) = 1 globallearningrate(o::ShieldedOpt{Descent}) = o.opt.eta @test unique(globallearningrate.(pop)) != [1] @test length(unique(globallearningrate.(pop))) == 1 # Now try TrainAccuracyVsSize and EliteAndTournamentSelection f = TrainAccuracyVsSize(;trainconfig= TrainIterConfig(nbatches_per_gen=1, baseconfig=ShuffleIterConfig(batchsize=1))) @info "\tSmoke test with TrainAccuracyVsSize and EliteAndTournamentSelection" pop = @test_logs (:info, "Begin generation 1") (:info, "Begin generation 2") (:info, "Begin generation 3") (:info, r"Mutate model") match_mode=:any fit(c, x, y, fitnesstrategy=f, evolutionstrategy = GlobalOptimizerMutation(EliteAndTournamentSelection(popsize=c.popsize, nelites=1, k=2)), stopcriterion = pop -> generation(pop) == 3) @test length(pop) == c.popsize @test modelname.(pop) == ["model$i" for i in 1:length(pop)] @test unique(globallearningrate.(pop)) != [1] @test length(unique(globallearningrate.(pop))) == 1 end @testset "sizevs" begin import NaiveGAflux.AutoFlux.ImageClassification: sizevs struct SizeVsTestFitness <: AbstractFitness fitness end NaiveGAflux._fitness(s::SizeVsTestFitness, c) = s.fitness struct SizeVsTestFakeModel <: AbstractCandidate nparams::Int end NaiveGAflux.nparams(s::SizeVsTestFakeModel) = s.nparams basefitness = SizeVsTestFitness(0.12345678) testfitness = sizevs(basefitness, 2) @test fitness(testfitness, SizeVsTestFakeModel(1)) == 0.121 @test fitness(testfitness, SizeVsTestFakeModel(100_000)) ≈ 0.12001 testfitness = sizevs(basefitness, 3) @test fitness(testfitness, SizeVsTestFakeModel(1)) == 0.1231 @test fitness(testfitness, SizeVsTestFakeModel(100_000)) ≈ 0.12301 testfitness = sizevs(basefitness, 4) @test fitness(testfitness, SizeVsTestFakeModel(1)) == 0.12351 @test fitness(testfitness, SizeVsTestFakeModel(100_000)) ≈ 0.12351 end @testset "TrainIterConfig" begin import NaiveGAflux.AutoFlux.ImageClassification: TrainIterConfig, ShuffleIterConfig, dataiter nexamples = 10 x = randn(Float32, 4,4,3, nexamples) y = rand(0:7, nexamples) @testset "Test $ne epochs and $nbpg batches per generation" for ne in (1, 2, 10), nbpg in (2, 10) bs = 3 s = TrainIterConfig(nbatches_per_gen=nbpg, baseconfig=ShuffleIterConfig(batchsize=bs, iterwrap=identity)) itr = Iterators.take(dataiter(s, x, y), cld(ne * nexamples, nbpg)) totnrofexamples = ne * nexamples @test mapreduce(length ∘ collect, +, itr) == totnrofexamples @test length(itr |> first) == min(nbpg, totnrofexamples) @test size(itr |> first |> first |> first, 4) == bs # All models shall see the same examples for iitr in itr @test collect(iitr) == collect(iitr) end end end end
[ 27, 456, 62, 30783, 29, 940, 12, 3064, 198, 31, 9288, 2617, 366, 27722, 37, 22564, 1, 2221, 628, 220, 220, 220, 2488, 9288, 2617, 366, 5159, 9487, 7483, 895, 482, 316, 395, 1, 2221, 198, 220, 220, 220, 220, 220, 220, 220, 1262, 11013, 425, 9273, 69, 22564, 13, 27722, 37, 22564, 198, 220, 220, 220, 220, 220, 220, 220, 1330, 11013, 425, 9273, 69, 22564, 13, 27722, 37, 22564, 13, 5159, 9487, 2649, 25, 16835, 41205, 17320, 23843, 11, 16835, 29993, 16934, 11, 6577, 1740, 29993, 16934, 11, 911, 18137, 29993, 16934, 11, 33222, 23266, 10699, 11, 16835, 17320, 23843, 23266, 10699, 11, 16158, 1870, 51, 5138, 4653, 1564, 11, 16158, 1870, 30746, 4653, 1564, 11, 8060, 27871, 320, 7509, 44, 7094, 11, 2746, 3672, 198, 220, 220, 220, 220, 220, 220, 220, 1262, 14534, 628, 220, 220, 220, 220, 220, 220, 220, 374, 782, 796, 337, 364, 29727, 5080, 1694, 7, 10163, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2124, 796, 43720, 77, 7, 81, 782, 11, 48436, 2624, 11, 3933, 11, 2624, 11, 17, 11, 19, 8, 198, 220, 220, 220, 220, 220, 220, 220, 331, 796, 48436, 2624, 12195, 37, 22564, 13, 505, 8940, 43501, 7, 25192, 7, 81, 782, 11, 657, 25, 20, 11, 19, 828, 657, 25, 20, 4008, 628, 220, 220, 220, 220, 220, 220, 220, 31548, 15908, 796, 4654, 6978, 7, 26705, 425, 9273, 69, 22564, 13, 14171, 335, 343, 11, 366, 5159, 9487, 7483, 62, 5796, 482, 316, 395, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 269, 796, 7412, 9487, 7483, 7, 79, 2840, 1096, 796, 642, 11, 9403, 28, 16, 11, 285, 15908, 28, 67, 13513, 15908, 11, 1035, 1096, 28, 7857, 7, 87, 828, 503, 7857, 28, 7857, 7, 88, 11, 16, 4008, 628, 220, 220, 220, 220, 220, 220, 220, 277, 796, 16835, 41205, 17320, 23843, 7, 26, 35312, 28, 15, 13, 1495, 11, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9922, 11250, 28, 33, 14265, 29993, 16934, 7, 43501, 7857, 28, 16, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9922, 69, 3659, 28, 7890, 4613, 33222, 23266, 10699, 7, 7890, 11, 513, 26, 4134, 37150, 28, 36, 86, 2611, 37, 3659, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4512, 11250, 28, 44077, 29993, 16934, 7, 77, 8664, 2052, 62, 525, 62, 5235, 28, 16, 11, 2779, 11250, 28, 2484, 18137, 29993, 16934, 7, 43501, 7857, 28, 16, 22305, 220, 628, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 5972, 82, 389, 8384, 284, 2948, 14514, 640, 5269, 198, 220, 220, 220, 220, 220, 220, 220, 2488, 10951, 37082, 83, 7556, 2088, 1332, 351, 16835, 41205, 17320, 23843, 290, 16158, 1870, 30746, 4653, 1564, 1, 198, 220, 220, 220, 220, 220, 220, 220, 1461, 796, 2488, 9288, 62, 6404, 82, 357, 25, 10951, 11, 366, 44140, 5270, 352, 4943, 357, 25, 10951, 11, 366, 44140, 5270, 362, 4943, 357, 25, 10951, 11, 366, 44140, 5270, 513, 4943, 357, 25, 10951, 11, 374, 1, 41603, 378, 2746, 4943, 2872, 62, 14171, 28, 25, 1092, 4197, 7, 66, 11, 2124, 11, 331, 11, 4197, 2516, 2536, 4338, 28, 69, 11, 6954, 2536, 4338, 796, 8060, 27871, 320, 7509, 44, 7094, 7, 9527, 578, 1870, 30746, 4653, 1564, 7, 79, 2840, 1096, 28, 66, 13, 79, 2840, 1096, 11, 299, 417, 2737, 28, 16, 36911, 2245, 22213, 28019, 796, 1461, 4613, 5270, 7, 12924, 8, 6624, 513, 8, 628, 220, 220, 220, 220, 220, 220, 220, 2488, 9288, 4129, 7, 12924, 8, 6624, 269, 13, 79, 2840, 1096, 198, 220, 220, 220, 220, 220, 220, 220, 2488, 9288, 2746, 3672, 12195, 12924, 8, 6624, 14631, 19849, 3, 72, 1, 329, 1312, 287, 352, 25, 13664, 7, 12924, 15437, 628, 220, 220, 220, 220, 220, 220, 220, 3298, 40684, 4873, 7, 66, 3712, 23839, 41572, 20540, 8, 796, 3298, 40684, 4873, 7, 66, 13, 66, 8, 198, 220, 220, 220, 220, 220, 220, 220, 3298, 40684, 4873, 7, 66, 3712, 41572, 20540, 27871, 17633, 8, 796, 3298, 40684, 4873, 7, 66, 13, 8738, 8, 198, 220, 220, 220, 220, 220, 220, 220, 3298, 40684, 4873, 7, 78, 3712, 37, 22564, 13, 27871, 320, 5847, 8, 796, 40426, 7, 20541, 40684, 4873, 12195, 78, 13, 418, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 3298, 40684, 4873, 7, 78, 8, 796, 352, 198, 220, 220, 220, 220, 220, 220, 220, 3298, 40684, 4873, 7, 78, 3712, 33651, 276, 27871, 90, 5960, 1087, 30072, 796, 267, 13, 8738, 13, 17167, 628, 220, 220, 220, 220, 220, 220, 220, 2488, 9288, 3748, 7, 20541, 40684, 4873, 12195, 12924, 4008, 14512, 685, 16, 60, 198, 220, 220, 220, 220, 220, 220, 220, 2488, 9288, 4129, 7, 34642, 7, 20541, 40684, 4873, 12195, 12924, 22305, 6624, 352, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 2735, 1949, 16835, 17320, 23843, 23266, 10699, 290, 16158, 1870, 51, 5138, 4653, 1564, 198, 220, 220, 220, 220, 220, 220, 220, 277, 796, 16835, 17320, 23843, 23266, 10699, 7, 26, 27432, 11250, 28, 16835, 29993, 16934, 7, 77, 8664, 2052, 62, 525, 62, 5235, 28, 16, 11, 2779, 11250, 28, 2484, 18137, 29993, 16934, 7, 43501, 7857, 28, 16, 22305, 628, 220, 220, 220, 220, 220, 220, 220, 2488, 10951, 37082, 83, 7556, 2088, 1332, 351, 16835, 17320, 23843, 23266, 10699, 290, 16158, 1870, 51, 5138, 4653, 1564, 1, 198, 220, 220, 220, 220, 220, 220, 220, 1461, 796, 2488, 9288, 62, 6404, 82, 357, 25, 10951, 11, 366, 44140, 5270, 352, 4943, 357, 25, 10951, 11, 366, 44140, 5270, 362, 4943, 357, 25, 10951, 11, 366, 44140, 5270, 513, 4943, 357, 25, 10951, 11, 374, 1, 41603, 378, 2746, 4943, 2872, 62, 14171, 28, 25, 1092, 4197, 7, 66, 11, 2124, 11, 331, 11, 4197, 2516, 2536, 4338, 28, 69, 11, 6954, 2536, 4338, 796, 8060, 27871, 320, 7509, 44, 7094, 7, 9527, 578, 1870, 51, 5138, 4653, 1564, 7, 79, 2840, 1096, 28, 66, 13, 79, 2840, 1096, 11, 299, 417, 2737, 28, 16, 11, 479, 28, 17, 36911, 2245, 22213, 28019, 796, 1461, 4613, 5270, 7, 12924, 8, 6624, 513, 8, 628, 220, 220, 220, 220, 220, 220, 220, 2488, 9288, 4129, 7, 12924, 8, 6624, 269, 13, 79, 2840, 1096, 198, 220, 220, 220, 220, 220, 220, 220, 2488, 9288, 2746, 3672, 12195, 12924, 8, 6624, 14631, 19849, 3, 72, 1, 329, 1312, 287, 352, 25, 13664, 7, 12924, 15437, 628, 220, 220, 220, 220, 220, 220, 220, 2488, 9288, 3748, 7, 20541, 40684, 4873, 12195, 12924, 4008, 14512, 685, 16, 60, 198, 220, 220, 220, 220, 220, 220, 220, 2488, 9288, 4129, 7, 34642, 7, 20541, 40684, 4873, 12195, 12924, 22305, 6624, 352, 198, 220, 220, 220, 886, 628, 220, 220, 220, 2488, 9288, 2617, 366, 7857, 14259, 1, 2221, 198, 220, 220, 220, 220, 220, 220, 220, 1330, 11013, 425, 9273, 69, 22564, 13, 27722, 37, 22564, 13, 5159, 9487, 2649, 25, 2546, 14259, 198, 220, 220, 220, 220, 220, 220, 220, 2878, 12849, 23266, 14402, 37, 3659, 1279, 25, 27741, 37, 3659, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 13547, 198, 220, 220, 220, 220, 220, 220, 220, 886, 198, 220, 220, 220, 220, 220, 220, 220, 11013, 425, 9273, 69, 22564, 13557, 69, 3659, 7, 82, 3712, 10699, 23266, 14402, 37, 3659, 11, 269, 8, 796, 264, 13, 69, 3659, 628, 220, 220, 220, 220, 220, 220, 220, 2878, 12849, 23266, 14402, 49233, 17633, 1279, 25, 27741, 41572, 20540, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 299, 37266, 3712, 5317, 198, 220, 220, 220, 220, 220, 220, 220, 886, 198, 220, 220, 220, 220, 220, 220, 220, 11013, 425, 9273, 69, 22564, 13, 77, 37266, 7, 82, 3712, 10699, 23266, 14402, 49233, 17633, 8, 796, 264, 13, 77, 37266, 628, 220, 220, 220, 220, 220, 220, 220, 2779, 69, 3659, 796, 12849, 23266, 14402, 37, 3659, 7, 15, 13, 10163, 2231, 30924, 8, 628, 220, 220, 220, 220, 220, 220, 220, 1332, 69, 3659, 796, 2546, 14259, 7, 8692, 69, 3659, 11, 362, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2488, 9288, 13547, 7, 9288, 69, 3659, 11, 12849, 23266, 14402, 49233, 17633, 7, 16, 4008, 6624, 657, 13, 19244, 198, 220, 220, 220, 220, 220, 220, 220, 2488, 9288, 13547, 7, 9288, 69, 3659, 11, 12849, 23266, 14402, 49233, 17633, 7, 3064, 62, 830, 4008, 15139, 230, 657, 13, 1065, 8298, 628, 220, 220, 220, 220, 220, 220, 220, 1332, 69, 3659, 796, 2546, 14259, 7, 8692, 69, 3659, 11, 513, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2488, 9288, 13547, 7, 9288, 69, 3659, 11, 12849, 23266, 14402, 49233, 17633, 7, 16, 4008, 6624, 657, 13, 1065, 3132, 198, 220, 220, 220, 220, 220, 220, 220, 2488, 9288, 13547, 7, 9288, 69, 3659, 11, 12849, 23266, 14402, 49233, 17633, 7, 3064, 62, 830, 4008, 15139, 230, 657, 13, 10163, 486, 628, 220, 220, 220, 220, 220, 220, 220, 1332, 69, 3659, 796, 2546, 14259, 7, 8692, 69, 3659, 11, 604, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2488, 9288, 13547, 7, 9288, 69, 3659, 11, 12849, 23266, 14402, 49233, 17633, 7, 16, 4008, 6624, 657, 13, 1065, 35273, 198, 220, 220, 220, 220, 220, 220, 220, 2488, 9288, 13547, 7, 9288, 69, 3659, 11, 12849, 23266, 14402, 49233, 17633, 7, 3064, 62, 830, 4008, 15139, 230, 657, 13, 1065, 35273, 198, 220, 220, 220, 886, 628, 220, 220, 220, 2488, 9288, 2617, 366, 44077, 29993, 16934, 1, 2221, 198, 220, 220, 220, 220, 220, 220, 220, 1330, 11013, 425, 9273, 69, 22564, 13, 27722, 37, 22564, 13, 5159, 9487, 2649, 25, 16835, 29993, 16934, 11, 911, 18137, 29993, 16934, 11, 1366, 2676, 198, 220, 220, 220, 220, 220, 220, 220, 497, 87, 12629, 796, 838, 198, 220, 220, 220, 220, 220, 220, 220, 2124, 796, 43720, 77, 7, 43879, 2624, 11, 604, 11, 19, 11, 18, 11, 497, 87, 12629, 8, 198, 220, 220, 220, 220, 220, 220, 220, 331, 796, 43720, 7, 15, 25, 22, 11, 497, 87, 12629, 8, 628, 220, 220, 220, 220, 220, 220, 220, 2488, 9288, 2617, 366, 14402, 720, 710, 36835, 82, 290, 720, 46803, 6024, 37830, 583, 5270, 1, 329, 497, 287, 357, 16, 11, 362, 11, 838, 828, 299, 65, 6024, 287, 357, 17, 11, 838, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 275, 82, 796, 513, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 264, 796, 16835, 29993, 16934, 7, 77, 8664, 2052, 62, 525, 62, 5235, 28, 46803, 6024, 11, 2779, 11250, 28, 2484, 18137, 29993, 16934, 7, 43501, 7857, 28, 1443, 11, 11629, 37150, 28, 738, 414, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 340, 81, 796, 220, 40806, 2024, 13, 20657, 7, 7890, 2676, 7, 82, 11, 2124, 11, 331, 828, 269, 335, 7, 710, 1635, 497, 87, 12629, 11, 299, 65, 6024, 4008, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2006, 77, 305, 69, 1069, 12629, 796, 497, 1635, 497, 87, 12629, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2488, 9288, 3975, 445, 7234, 7, 13664, 18872, 246, 2824, 11, 1343, 11, 340, 81, 8, 6624, 2006, 77, 305, 69, 1069, 12629, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2488, 9288, 4129, 7, 270, 81, 930, 29, 717, 8, 6624, 949, 7, 46803, 6024, 11, 2006, 77, 305, 69, 1069, 12629, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2488, 9288, 2546, 7, 270, 81, 930, 29, 717, 930, 29, 717, 930, 29, 717, 11, 604, 8, 6624, 275, 82, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 1439, 4981, 2236, 766, 262, 976, 6096, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 1312, 270, 81, 287, 340, 81, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2488, 9288, 2824, 7, 72, 270, 81, 8, 6624, 2824, 7, 72, 270, 81, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 886, 198, 220, 220, 220, 220, 220, 220, 220, 886, 198, 220, 220, 220, 886, 198, 437, 198 ]
2.358173
2,080
<gh_stars>10-100 module ScenTrees include("TreeStructure.jl") include("TreeApprox.jl") include("StochPaths.jl") include("LatticeApprox.jl") include("KernelDensityEstimation.jl") include("bushinessNesDistance.jl") export tree_approximation!,lattice_approximation,Tree,Lattice,stage,height,leaves,nodes,root, part_tree,build_probabilities!,tree_plot,plot_hd,plot_lattice,gaussian_path1D,gaussian_path2D, running_maximum1D,running_maximum2D,path,bushiness_nesdistance,kernel_scenarios end
[ 27, 456, 62, 30783, 29, 940, 12, 3064, 198, 21412, 1446, 268, 51, 6037, 198, 17256, 7203, 27660, 1273, 5620, 13, 20362, 4943, 198, 17256, 7203, 27660, 4677, 13907, 13, 20362, 4943, 198, 17256, 7203, 1273, 5374, 15235, 82, 13, 20362, 4943, 198, 17256, 7203, 43, 1078, 501, 4677, 13907, 13, 20362, 4943, 198, 17256, 7203, 42, 7948, 35, 6377, 22362, 18991, 13, 20362, 4943, 198, 17256, 7203, 50231, 1272, 45, 274, 45767, 13, 20362, 4943, 198, 39344, 5509, 62, 1324, 13907, 18991, 28265, 75, 1078, 501, 62, 1324, 13907, 18991, 11, 27660, 11, 43, 1078, 501, 11, 14247, 11, 17015, 11, 293, 3080, 11, 77, 4147, 11, 15763, 11, 198, 220, 220, 220, 220, 220, 220, 220, 636, 62, 21048, 11, 11249, 62, 1676, 65, 5738, 28265, 21048, 62, 29487, 11, 29487, 62, 31298, 11, 29487, 62, 75, 1078, 501, 11, 4908, 31562, 62, 6978, 16, 35, 11, 4908, 31562, 62, 6978, 17, 35, 11, 198, 220, 220, 220, 220, 220, 220, 220, 2491, 62, 47033, 16, 35, 11, 20270, 62, 47033, 17, 35, 11, 6978, 11, 50231, 1272, 62, 2516, 30246, 11, 33885, 62, 1416, 268, 13010, 198, 437, 198 ]
2.614583
192
module TestTraits using MLJBase using Test using MLJIteration using ..DummyModel model = DummyIterativeModel() imodel = IteratedModel(model=model, measure=mae) @test is_wrapper(imodel) @test !MLJBase.caches_data_by_default(imodel) @test !supports_weights(imodel) @test !supports_class_weights(imodel) @test load_path(imodel) == "MLJIteration.DeterministicIteratedModel" @test package_name(imodel) == "MLJIteration" @test package_uuid(imodel) == "614be32b-d00c-4edb-bd02-1eb411ab5e55" @test package_url(imodel) == "https://github.com/JuliaAI/MLJIteration.jl" @test package_license(imodel) == "MIT" @test is_pure_julia(imodel) == is_pure_julia(model) @test input_scitype(imodel) == input_scitype(model) @test output_scitype(imodel) == output_scitype(model) @test target_scitype(imodel) == target_scitype(model) end true
[ 21412, 6208, 15721, 896, 198, 198, 3500, 10373, 41, 14881, 198, 3500, 6208, 198, 3500, 10373, 41, 29993, 341, 198, 3500, 11485, 35, 13513, 17633, 198, 198, 19849, 796, 360, 13513, 29993, 876, 17633, 3419, 198, 320, 375, 417, 796, 40806, 515, 17633, 7, 19849, 28, 19849, 11, 3953, 28, 2611, 68, 8, 198, 198, 31, 9288, 318, 62, 48553, 7, 320, 375, 417, 8, 198, 31, 9288, 5145, 5805, 41, 14881, 13, 66, 3694, 62, 7890, 62, 1525, 62, 12286, 7, 320, 375, 417, 8, 198, 31, 9288, 5145, 18608, 2096, 62, 43775, 7, 320, 375, 417, 8, 198, 31, 9288, 5145, 18608, 2096, 62, 4871, 62, 43775, 7, 320, 375, 417, 8, 198, 31, 9288, 3440, 62, 6978, 7, 320, 375, 417, 8, 6624, 366, 5805, 41, 29993, 341, 13, 35, 2357, 49228, 29993, 515, 17633, 1, 198, 31, 9288, 5301, 62, 3672, 7, 320, 375, 417, 8, 6624, 366, 5805, 41, 29993, 341, 1, 198, 31, 9288, 5301, 62, 12303, 312, 7, 320, 375, 417, 8, 6624, 366, 46841, 1350, 2624, 65, 12, 67, 405, 66, 12, 19, 276, 65, 12, 17457, 2999, 12, 16, 1765, 42224, 397, 20, 68, 2816, 1, 198, 31, 9288, 5301, 62, 6371, 7, 320, 375, 417, 8, 6624, 366, 5450, 1378, 12567, 13, 785, 14, 16980, 544, 20185, 14, 5805, 41, 29993, 341, 13, 20362, 1, 198, 31, 9288, 5301, 62, 43085, 7, 320, 375, 417, 8, 6624, 366, 36393, 1, 198, 31, 9288, 318, 62, 37424, 62, 73, 43640, 7, 320, 375, 417, 8, 6624, 318, 62, 37424, 62, 73, 43640, 7, 19849, 8, 198, 31, 9288, 5128, 62, 1416, 414, 431, 7, 320, 375, 417, 8, 6624, 5128, 62, 1416, 414, 431, 7, 19849, 8, 198, 31, 9288, 5072, 62, 1416, 414, 431, 7, 320, 375, 417, 8, 6624, 5072, 62, 1416, 414, 431, 7, 19849, 8, 198, 31, 9288, 2496, 62, 1416, 414, 431, 7, 320, 375, 417, 8, 6624, 2496, 62, 1416, 414, 431, 7, 19849, 8, 198, 198, 437, 198, 198, 7942, 198 ]
2.442136
337
export Editor, editor, setbars, barson, barsoff, setcursor type Editor file w::Window end filetitle(e) = e.file == nothing ? "Julia" : basename(e.file) Blink.msg(e::Editor, args...) = Blink.msg(e.w, args...) Blink.handlers(e::Editor) = Blink.handlers(e.w) # I know, I know, this code is a mess. function loadeditor(p::Page; value = "", ver = "5.0.0") for f in ["codemirror.min.js" "codemirror.min.css" "addon/display/rulers.min.js" "addon/selection/active-line.min.js" "addon/search/searchcursor.min.js" "keymap/sublime.min.js"] load!(p, "https://cdnjs.cloudflare.com/ajax/libs/codemirror/$ver/$f") end for f in ["julia.js", "editor.css", "june.css", "bars.js", "bars.css"] load!(p, Pkg.dir("DevTools", "res", f)) end @js_ p CodeMirror.keyMap.blink = d("fallthrough"=>"sublime") body!(p, "", fade = false) @js_ p cm = CodeMirror(document.body, $(d(:value => value, :mode=>"julia2", :theme=>"june", :keyMap=>"blink", :lineNumbers=>true, :styleActiveLine=>true, :rulers=>[80], :showCursorWhenSelecting=>true))) @js_ p Bars.hook(cm) handle_eval(p) end function Editor(value = ""; file = nothing) w = Window(d(:title=>file == nothing ? "Julia" : basename(file))) loadeditor(w.content, value = value) ed = Editor(file, w) handle_dirty(ed) handle_save(ed) return ed end editor(f) = Editor(read(f, String), file = f) setbars(e, ls) = @js_ e Bars.set(cm, $ls) barson(e) = @js_ e Bars.on(cm) barsoff(e) = @js_ e Bars.off(cm) function centrecursor(ed) @js_ ed begin @var l = cm.getCursor().line @var y = cm.charCoords(d("line"=>l, "ch"=>0), "local").top @var height = cm.getScrollerElement().offsetHeight cm.scrollTo(0, y - height/2 + 55) end end function setcursor(ed, line, ch = 0) @js_ ed cm.setCursor($(line-1), $ch) centrecursor(ed) end norm(key::AbstractString) = replace(key, r"\bc\b"i, Sys.is_apple() ? "Cmd" : "Ctrl") function keymap(ed, key, res) @js_ ed begin @var map = CodeMirror.keyMap.blink map[$(norm(key))] = $res # CodeMirror.normalizeKeyMap(map) end end function handle_dirty(e::Editor) @js_ e cm.on("changes", () -> Blink.msg("change", d("clean"=>cm.isClean()))) handle(e, "change") do data t = filetitle(e) data["clean"] || (t *= "*") title(e.w, t) end end function handle_save(ed::Editor) keymap(ed, "C-S", :(cm -> Blink.msg("save", d("code"=>cm.getValue())))) handle(ed, "save") do data if ed.file != nothing && isfile(ed.file) @js_ ed cm.markClean() title(ed.w, filetitle(ed)) open(io -> write(io, data["code"]), ed.file, "w") end end end function handle_eval(ed) keymap(ed, "Shift-Enter", :(cm -> Blink.msg("eval", d("code"=>cm.getSelection())))) handle(ed, "eval") do data try result = eval(Main, parse(data["code"])) @js_ ed console.log($(sprint(show, result))) catch e @js_ ed console.log($(sprint(showerror, e, catch_backtrace()))) end end end
[ 39344, 12058, 11, 5464, 11, 900, 34046, 11, 9210, 261, 11, 2318, 568, 487, 11, 900, 66, 21471, 198, 198, 4906, 12058, 198, 220, 2393, 198, 220, 266, 3712, 27703, 198, 437, 198, 198, 7753, 7839, 7, 68, 8, 796, 304, 13, 7753, 6624, 2147, 5633, 366, 16980, 544, 1, 1058, 1615, 12453, 7, 68, 13, 7753, 8, 198, 198, 3629, 676, 13, 19662, 7, 68, 3712, 17171, 11, 26498, 23029, 796, 41732, 13, 19662, 7, 68, 13, 86, 11, 26498, 23029, 198, 3629, 676, 13, 4993, 8116, 7, 68, 3712, 17171, 8, 796, 41732, 13, 4993, 8116, 7, 68, 13, 86, 8, 198, 198, 2, 314, 760, 11, 314, 760, 11, 428, 2438, 318, 257, 2085, 13, 198, 198, 8818, 9639, 2072, 7, 79, 3712, 9876, 26, 1988, 796, 366, 1600, 3326, 796, 366, 20, 13, 15, 13, 15, 4943, 198, 220, 329, 277, 287, 14631, 19815, 368, 343, 1472, 13, 1084, 13, 8457, 1, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 19815, 368, 343, 1472, 13, 1084, 13, 25471, 1, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 48078, 14, 13812, 14, 81, 377, 364, 13, 1084, 13, 8457, 1, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 48078, 14, 49283, 14, 5275, 12, 1370, 13, 1084, 13, 8457, 1, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 48078, 14, 12947, 14, 12947, 66, 21471, 13, 1084, 13, 8457, 1, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 2539, 8899, 14, 7266, 27299, 13, 1084, 13, 8457, 8973, 198, 220, 220, 220, 3440, 0, 7, 79, 11, 366, 5450, 1378, 32341, 8457, 13, 17721, 2704, 533, 13, 785, 14, 1228, 897, 14, 8019, 82, 14, 19815, 368, 343, 1472, 32624, 332, 32624, 69, 4943, 198, 220, 886, 628, 220, 329, 277, 287, 14631, 73, 43640, 13, 8457, 1600, 366, 35352, 13, 25471, 1600, 366, 73, 1726, 13, 25471, 1600, 366, 34046, 13, 8457, 1600, 366, 34046, 13, 25471, 8973, 198, 220, 220, 220, 3440, 0, 7, 79, 11, 350, 10025, 13, 15908, 7203, 13603, 33637, 1600, 366, 411, 1600, 277, 4008, 198, 220, 886, 628, 220, 2488, 8457, 62, 279, 6127, 27453, 1472, 13, 2539, 13912, 13, 2436, 676, 796, 288, 7203, 7207, 9579, 1, 14804, 1, 7266, 27299, 4943, 628, 220, 1767, 0, 7, 79, 11, 366, 1600, 22100, 796, 3991, 8, 198, 220, 2488, 8457, 62, 279, 12067, 796, 6127, 27453, 1472, 7, 22897, 13, 2618, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 29568, 67, 7, 25, 8367, 5218, 1988, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1058, 14171, 14804, 1, 73, 43640, 17, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1058, 43810, 14804, 1, 73, 1726, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1058, 2539, 13912, 14804, 1, 2436, 676, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1058, 1370, 49601, 14804, 7942, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1058, 7635, 13739, 13949, 14804, 7942, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1058, 81, 377, 364, 14804, 58, 1795, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1058, 12860, 34, 21471, 2215, 17563, 278, 14804, 7942, 22305, 198, 220, 2488, 8457, 62, 279, 39924, 13, 25480, 7, 11215, 8, 198, 220, 5412, 62, 18206, 7, 79, 8, 198, 437, 198, 198, 8818, 12058, 7, 8367, 796, 366, 8172, 2393, 796, 2147, 8, 198, 220, 266, 796, 26580, 7, 67, 7, 25, 7839, 14804, 7753, 6624, 2147, 5633, 366, 16980, 544, 1, 1058, 1615, 12453, 7, 7753, 22305, 198, 220, 9639, 2072, 7, 86, 13, 11299, 11, 1988, 796, 1988, 8, 198, 220, 1225, 796, 12058, 7, 7753, 11, 266, 8, 198, 220, 5412, 62, 49075, 7, 276, 8, 198, 220, 5412, 62, 21928, 7, 276, 8, 198, 220, 1441, 1225, 198, 437, 198, 198, 35352, 7, 69, 8, 796, 12058, 7, 961, 7, 69, 11, 10903, 828, 2393, 796, 277, 8, 198, 198, 2617, 34046, 7, 68, 11, 43979, 8, 796, 2488, 8457, 62, 304, 39924, 13, 2617, 7, 11215, 11, 720, 7278, 8, 198, 65, 12613, 7, 68, 8, 796, 2488, 8457, 62, 304, 39924, 13, 261, 7, 11215, 8, 198, 5657, 568, 487, 7, 68, 8, 796, 2488, 8457, 62, 304, 39924, 13, 2364, 7, 11215, 8, 198, 198, 8818, 7372, 66, 21471, 7, 276, 8, 198, 220, 2488, 8457, 62, 1225, 2221, 198, 220, 220, 220, 2488, 7785, 300, 796, 12067, 13, 1136, 34, 21471, 22446, 1370, 198, 220, 220, 220, 2488, 7785, 331, 796, 12067, 13, 10641, 7222, 3669, 7, 67, 7203, 1370, 1, 14804, 75, 11, 366, 354, 1, 14804, 15, 828, 366, 12001, 11074, 4852, 198, 220, 220, 220, 2488, 7785, 6001, 796, 12067, 13, 1136, 3351, 10646, 20180, 22446, 28968, 23106, 198, 220, 220, 220, 12067, 13, 48728, 2514, 7, 15, 11, 331, 532, 6001, 14, 17, 1343, 5996, 8, 198, 220, 886, 198, 437, 198, 198, 8818, 900, 66, 21471, 7, 276, 11, 1627, 11, 442, 796, 657, 8, 198, 220, 2488, 8457, 62, 1225, 12067, 13, 2617, 34, 21471, 16763, 7, 1370, 12, 16, 828, 720, 354, 8, 198, 220, 7372, 66, 21471, 7, 276, 8, 198, 437, 198, 198, 27237, 7, 2539, 3712, 23839, 10100, 8, 796, 6330, 7, 2539, 11, 374, 1, 59, 15630, 59, 65, 1, 72, 11, 311, 893, 13, 271, 62, 18040, 3419, 5633, 366, 40109, 1, 1058, 366, 40069, 4943, 198, 198, 8818, 1994, 8899, 7, 276, 11, 1994, 11, 581, 8, 198, 220, 2488, 8457, 62, 1225, 2221, 198, 220, 220, 220, 2488, 7785, 3975, 796, 6127, 27453, 1472, 13, 2539, 13912, 13, 2436, 676, 198, 220, 220, 220, 3975, 58, 3, 7, 27237, 7, 2539, 4008, 60, 796, 720, 411, 198, 2, 220, 220, 220, 220, 6127, 27453, 1472, 13, 11265, 1096, 9218, 13912, 7, 8899, 8, 198, 220, 886, 198, 437, 198, 198, 8818, 5412, 62, 49075, 7, 68, 3712, 17171, 8, 198, 220, 2488, 8457, 62, 304, 12067, 13, 261, 7203, 36653, 1600, 7499, 4613, 41732, 13, 19662, 7203, 3803, 1600, 288, 7203, 27773, 1, 14804, 11215, 13, 271, 32657, 3419, 22305, 628, 220, 5412, 7, 68, 11, 366, 3803, 4943, 466, 1366, 198, 220, 220, 220, 256, 796, 2393, 7839, 7, 68, 8, 198, 220, 220, 220, 1366, 14692, 27773, 8973, 8614, 357, 83, 1635, 28, 366, 9, 4943, 198, 220, 220, 220, 3670, 7, 68, 13, 86, 11, 256, 8, 198, 220, 886, 198, 437, 198, 198, 8818, 5412, 62, 21928, 7, 276, 3712, 17171, 8, 198, 220, 1994, 8899, 7, 276, 11, 366, 34, 12, 50, 1600, 36147, 11215, 4613, 41732, 13, 19662, 7203, 21928, 1600, 288, 7203, 8189, 1, 14804, 11215, 13, 1136, 11395, 3419, 35514, 628, 220, 5412, 7, 276, 11, 366, 21928, 4943, 466, 1366, 198, 220, 220, 220, 611, 1225, 13, 7753, 14512, 2147, 11405, 318, 7753, 7, 276, 13, 7753, 8, 198, 220, 220, 220, 220, 220, 2488, 8457, 62, 1225, 12067, 13, 4102, 32657, 3419, 198, 220, 220, 220, 220, 220, 3670, 7, 276, 13, 86, 11, 2393, 7839, 7, 276, 4008, 198, 220, 220, 220, 220, 220, 1280, 7, 952, 4613, 3551, 7, 952, 11, 1366, 14692, 8189, 8973, 828, 1225, 13, 7753, 11, 366, 86, 4943, 198, 220, 220, 220, 886, 198, 220, 886, 198, 437, 198, 198, 8818, 5412, 62, 18206, 7, 276, 8, 198, 220, 1994, 8899, 7, 276, 11, 366, 33377, 12, 17469, 1600, 36147, 11215, 4613, 41732, 13, 19662, 7203, 18206, 1600, 288, 7203, 8189, 1, 14804, 11215, 13, 1136, 4653, 1564, 3419, 35514, 628, 220, 5412, 7, 276, 11, 366, 18206, 4943, 466, 1366, 198, 220, 220, 220, 1949, 198, 220, 220, 220, 220, 220, 1255, 796, 5418, 7, 13383, 11, 21136, 7, 7890, 14692, 8189, 8973, 4008, 198, 220, 220, 220, 220, 220, 2488, 8457, 62, 1225, 8624, 13, 6404, 16763, 7, 82, 4798, 7, 12860, 11, 1255, 22305, 198, 220, 220, 220, 4929, 304, 198, 220, 220, 220, 220, 220, 2488, 8457, 62, 1225, 8624, 13, 6404, 16763, 7, 82, 4798, 7, 1477, 789, 1472, 11, 304, 11, 4929, 62, 1891, 40546, 3419, 22305, 198, 220, 220, 220, 886, 198, 220, 886, 198, 437, 198 ]
2.101167
1,542
<reponame>erwanlecarpentier/IICGP.jl<filename>scripts/atari_monocgp.jl<gh_stars>1-10 using ArcadeLearningEnvironment using ArgParse using Cambrian using CartesianGeneticProgramming using Dates using IICGP using Random # function extension import Cambrian.mutate import Cambrian.evaluate s = ArgParseSettings() @add_arg_table! s begin "--cfg" help = "configuration script" default = "cfg/test_mono.yaml" "--game" help = "game rom name" default = "assault" "--seed" help = "random seed for evolution" arg_type = Int default = 0 "--ind" help = "individual for evaluation" arg_type = String default = "" end args = parse_args(ARGS, s) const game = args["game"] const seed = args["seed"] Random.seed!(seed) main_cfg, cont_cfg, reducer, bootstrap = IICGP.monocgp_config(args["cfg"], game) const max_frames = main_cfg["max_frames"] const stickiness = main_cfg["stickiness"] const grayscale = main_cfg["grayscale"] const downscale = main_cfg["downscale"] const logid = cont_cfg.id const state_ref = get_state_ref(game, seed) function play_atari( reducer::Reducer, controller::CGPInd, lck::ReentrantLock; rom=game, seed=seed, rom_state_ref=state_ref, max_frames=max_frames, grayscale=grayscale, downscale=downscale, stickiness=stickiness ) # Random.seed!(seed) mt = MersenneTwister(seed) game = Game(rom, seed, lck=lck, state_ref=rom_state_ref) reward = 0.0 frames = 0 prev_action = Int32(0) while ~game_over(game.ale) if rand(mt) > stickiness || frames == 0 s = get_state(game, grayscale, downscale) output = IICGP.process(reducer, controller, s) action = game.actions[argmax(output)] else action = prev_action end reward += act(game.ale, action) frames += 1 prev_action = action if frames > max_frames break end end close!(game) [reward] end if length(args["ind"]) > 0 ind = CGPInd(cfg, read(args["ind"], String)) ftn = fitness(ind, inps, outs) println("Fitness: ", ftn) else mutate(ind::CGPInd) = goldman_mutate(cont_cfg, ind) lck = ReentrantLock() fit(controller::CGPInd) = play_atari(reducer, controller, lck) evaluate(e::CGPEvolution) = IICGP.fitness_evaluate(e, e.fitness) e = CartesianGeneticProgramming.CGPEvolution(cont_cfg, fit) init_backup(logid, args["cfg"]) run!(e) end
[ 27, 7856, 261, 480, 29, 263, 8149, 293, 66, 5117, 298, 959, 14, 40, 2149, 16960, 13, 20362, 27, 34345, 29, 46521, 14, 35554, 62, 2144, 420, 31197, 13, 20362, 27, 456, 62, 30783, 29, 16, 12, 940, 198, 3500, 23190, 41730, 31441, 198, 3500, 20559, 10044, 325, 198, 3500, 21456, 4484, 198, 3500, 13690, 35610, 13746, 5139, 15167, 2229, 198, 3500, 44712, 198, 3500, 314, 2149, 16960, 198, 3500, 14534, 198, 198, 2, 2163, 7552, 198, 11748, 21456, 4484, 13, 21973, 378, 198, 11748, 21456, 4484, 13, 49786, 628, 198, 82, 796, 20559, 10044, 325, 26232, 3419, 198, 31, 2860, 62, 853, 62, 11487, 0, 264, 2221, 198, 220, 220, 220, 366, 438, 37581, 1, 198, 220, 220, 220, 1037, 796, 366, 11250, 3924, 4226, 1, 198, 220, 220, 220, 4277, 796, 366, 37581, 14, 9288, 62, 2144, 78, 13, 88, 43695, 1, 198, 220, 220, 220, 366, 438, 6057, 1, 198, 220, 220, 220, 1037, 796, 366, 6057, 9267, 1438, 1, 198, 220, 220, 220, 4277, 796, 366, 46635, 1, 198, 220, 220, 220, 366, 438, 28826, 1, 198, 220, 220, 220, 1037, 796, 366, 25120, 9403, 329, 6954, 1, 198, 220, 220, 220, 1822, 62, 4906, 796, 2558, 198, 220, 220, 220, 4277, 796, 657, 198, 220, 220, 220, 366, 438, 521, 1, 198, 220, 220, 220, 1037, 796, 366, 43129, 329, 12660, 1, 198, 220, 220, 220, 1822, 62, 4906, 796, 10903, 198, 220, 220, 220, 4277, 796, 13538, 198, 437, 198, 22046, 796, 21136, 62, 22046, 7, 1503, 14313, 11, 264, 8, 198, 9979, 983, 796, 26498, 14692, 6057, 8973, 198, 9979, 9403, 796, 26498, 14692, 28826, 8973, 198, 29531, 13, 28826, 0, 7, 28826, 8, 198, 198, 12417, 62, 37581, 11, 542, 62, 37581, 11, 2027, 2189, 11, 6297, 26418, 796, 314, 2149, 16960, 13, 2144, 420, 31197, 62, 11250, 7, 22046, 14692, 37581, 33116, 983, 8, 198, 198, 9979, 3509, 62, 37805, 796, 1388, 62, 37581, 14692, 9806, 62, 37805, 8973, 198, 9979, 4859, 1272, 796, 1388, 62, 37581, 14692, 13915, 1272, 8973, 198, 9979, 1036, 592, 38765, 796, 1388, 62, 37581, 14692, 2164, 592, 38765, 8973, 198, 9979, 866, 9888, 796, 1388, 62, 37581, 14692, 2902, 9888, 8973, 198, 9979, 2604, 312, 796, 542, 62, 37581, 13, 312, 198, 9979, 1181, 62, 5420, 796, 651, 62, 5219, 62, 5420, 7, 6057, 11, 9403, 8, 198, 198, 8818, 711, 62, 35554, 7, 198, 220, 220, 220, 2027, 2189, 3712, 7738, 48915, 11, 198, 220, 220, 220, 10444, 3712, 34, 16960, 5497, 11, 198, 220, 220, 220, 300, 694, 3712, 3041, 298, 5250, 25392, 26, 198, 220, 220, 220, 9267, 28, 6057, 11, 198, 220, 220, 220, 9403, 28, 28826, 11, 198, 220, 220, 220, 9267, 62, 5219, 62, 5420, 28, 5219, 62, 5420, 11, 198, 220, 220, 220, 3509, 62, 37805, 28, 9806, 62, 37805, 11, 198, 220, 220, 220, 1036, 592, 38765, 28, 2164, 592, 38765, 11, 198, 220, 220, 220, 866, 9888, 28, 2902, 9888, 11, 198, 220, 220, 220, 4859, 1272, 28, 13915, 1272, 198, 8, 198, 220, 220, 220, 1303, 14534, 13, 28826, 0, 7, 28826, 8, 198, 220, 220, 220, 45079, 796, 337, 364, 29727, 5080, 1694, 7, 28826, 8, 198, 220, 220, 220, 983, 796, 3776, 7, 398, 11, 9403, 11, 300, 694, 28, 75, 694, 11, 1181, 62, 5420, 28, 398, 62, 5219, 62, 5420, 8, 198, 220, 220, 220, 6721, 796, 657, 13, 15, 198, 220, 220, 220, 13431, 796, 657, 198, 220, 220, 220, 8654, 62, 2673, 796, 2558, 2624, 7, 15, 8, 198, 220, 220, 220, 981, 5299, 6057, 62, 2502, 7, 6057, 13, 1000, 8, 198, 220, 220, 220, 220, 220, 220, 220, 611, 43720, 7, 16762, 8, 1875, 4859, 1272, 8614, 13431, 6624, 657, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 264, 796, 651, 62, 5219, 7, 6057, 11, 1036, 592, 38765, 11, 866, 9888, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5072, 796, 314, 2149, 16960, 13, 14681, 7, 445, 48915, 11, 10444, 11, 264, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2223, 796, 983, 13, 4658, 58, 853, 9806, 7, 22915, 15437, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2223, 796, 8654, 62, 2673, 198, 220, 220, 220, 220, 220, 220, 220, 886, 198, 220, 220, 220, 220, 220, 220, 220, 6721, 15853, 719, 7, 6057, 13, 1000, 11, 2223, 8, 198, 220, 220, 220, 220, 220, 220, 220, 13431, 15853, 352, 198, 220, 220, 220, 220, 220, 220, 220, 8654, 62, 2673, 796, 2223, 198, 220, 220, 220, 220, 220, 220, 220, 611, 13431, 1875, 3509, 62, 37805, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2270, 198, 220, 220, 220, 220, 220, 220, 220, 886, 198, 220, 220, 220, 886, 198, 220, 220, 220, 1969, 0, 7, 6057, 8, 198, 220, 220, 220, 685, 260, 904, 60, 198, 437, 198, 198, 361, 4129, 7, 22046, 14692, 521, 8973, 8, 1875, 657, 198, 220, 220, 220, 773, 796, 327, 16960, 5497, 7, 37581, 11, 1100, 7, 22046, 14692, 521, 33116, 10903, 4008, 198, 220, 220, 220, 10117, 77, 796, 13547, 7, 521, 11, 287, 862, 11, 12198, 8, 198, 220, 220, 220, 44872, 7203, 37, 3659, 25, 33172, 10117, 77, 8, 198, 17772, 198, 220, 220, 220, 4517, 378, 7, 521, 3712, 34, 16960, 5497, 8, 796, 3869, 805, 62, 21973, 378, 7, 3642, 62, 37581, 11, 773, 8, 198, 220, 220, 220, 300, 694, 796, 797, 298, 5250, 25392, 3419, 198, 220, 220, 220, 4197, 7, 36500, 3712, 34, 16960, 5497, 8, 796, 711, 62, 35554, 7, 445, 48915, 11, 10444, 11, 300, 694, 8, 198, 220, 220, 220, 13446, 7, 68, 3712, 39816, 11401, 85, 2122, 8, 796, 314, 2149, 16960, 13, 69, 3659, 62, 49786, 7, 68, 11, 304, 13, 69, 3659, 8, 198, 220, 220, 220, 304, 796, 13690, 35610, 13746, 5139, 15167, 2229, 13, 39816, 11401, 85, 2122, 7, 3642, 62, 37581, 11, 4197, 8, 198, 220, 220, 220, 2315, 62, 1891, 929, 7, 6404, 312, 11, 26498, 14692, 37581, 8973, 8, 198, 220, 220, 220, 1057, 0, 7, 68, 8, 198, 437, 198 ]
2.372849
1,046
<reponame>Leticia-maria/IndividualDisplacements.jl<filename>examples/basics/solid_body_rotation.jl<gh_stars>1-10 ### A Pluto.jl notebook ### # v0.17.0 using Markdown using InteractiveUtils # ╔═╡ 0fea38f6-2c9e-43c6-bfc1-267ff220a0cc begin using IndividualDisplacements, DataFrames, MeshArrays, PlutoUI import CairoMakie as Mkie "done with loading packages" end # ╔═╡ 5c7e4e72-3f69-11ec-258b-6bcfdc7b1d65 md"""# Simple Three Dimensional Flow Field Simulate the trajectory of an individual point, first in a perfectly circular flow (a.k.a. solid body rotation). Then add a convergent term to obtain a spiraling trajectory, and a constant vertical velocity for the third dimension. These simple flow configurations can be thought of as idealized models e.g. ocean meso-scale eddies. For additional documentation e.g. see : [1](https://JuliaClimate.github.io/IndividualDisplacements.jl/dev/), [2](https://JuliaClimate.github.io/MeshArrays.jl/dev/), [3](https://docs.juliadiffeq.org/latest/solvers/ode_solve.html), [4](https://en.wikipedia.org/wiki/Displacement_(vector)) ### Exercise examples: - make the sinking velocity decrease with time (hint: it increases in the original notebook) - change the number of times the particle goes around the origin - flow field parameters (e.g. intensity and sign of the convergent term) """ # ╔═╡ aadd082a-3ed9-41b7-ba5e-7c5f77d59508 TableOfContents() # ╔═╡ 011c89a7-f3d1-4cea-b71a-3d6f96a1801c begin function solid_body_rotation(np,nz) Γ=simple_periodic_domain(np) Γ = UnitGrid(Γ.XC.grid;option="full") γ=Γ.XC.grid; #Solid-body rotation around central location ... i=Int(np/2+1) u=-(Γ.YG.-Γ.YG[1][i,i]) v=(Γ.XG.-Γ.XG[1][i,i]) #... plus a convergent term to / from central location d=-0.01 u=u+d*(Γ.XG.-Γ.XG[1][i,i]) v=v+d*(Γ.YG.-Γ.YG[1][i,i]) #Replicate u,v in vertical dimension uu=MeshArray(γ,γ.ioPrec,nz) [uu[k]=u[1] for k=1:nz] vv=MeshArray(γ,γ.ioPrec,nz) [vv[k]=v[1] for k=1:nz] #Vertical velocity component w w=fill(-0.01,MeshArray(γ,γ.ioPrec,nz+1)) return write(uu),write(vv),write(w) end md"""## 1. Problem Configuration ### 1.1 Gridded Flow Fields **solid\_body\_rotation(np,nz)** Set up an idealized flow field which consists of [rigid body rotation](https://en.wikipedia.org/wiki/Rigid_body), plus a convergent term, plus a sinking term. """ end # ╔═╡ 2200503c-605c-4dfd-878f-ffea2431f7ba begin np,nz=16,4 #gridded domain size (horizontal and vertical) u,v,w=solid_body_rotation(np,nz) #staggered velocity arrays 𝐹=FlowFields(u,u,v,v,0*w,1*w,[0,19.95*2*pi]); #FlowFields data structure "Done with defining the flow fields." end # ╔═╡ bde49eaf-3747-4edf-b712-3ee6f08ffe20 md"""### 1.2 Initialize Individuals Here just one individual is initialized at [np*1/3,np*1/3,nz*1/3] in the three-dimensional space of the flow fields.""" # ╔═╡ c60a48e0-6f51-44b0-bd6e-332e04d2d332 begin (x,y,z)=(np*1/3,np*1/3,nz*1/3) 𝐼=Individuals(𝐹,x,y,z) end # ╔═╡ 45762eb1-7404-4524-8d1d-788a70f8f5ef md"""### 1.3 A Closer Look The above `Individuals` constructor wraps up 𝐹, the initial position, and other needed components within 𝐼. **At this point, you can either jump to section 2 or read through the next code cell** to learn more about how the details as needed e.g. if you wanted to overide default options that were selected for you by the section 1.2 constructor. """ # ╔═╡ b70d76d1-09f3-462a-b550-8fa51cb90c2c begin # Initial position is 📌=[x,y,z] # and the data structure ([DataFrame](http://juliadata.github.io/DataFrames.jl/stable/)) # to record properties along the individual's path accordingly. 🔴 = DataFrame(ID=Int[], x=Float64[], y=Float64[], z=Float64[], t=Float64[]) # It is the postprocessing function's responsibility to provide the record. It is thus # important that this intermediary (`postproc`) be consistent with the solver setup (`sol`) # and the expected record format (`🔴`). function postproc(sol,𝐹::FlowFields;id=missing,𝑇=missing) df=postprocess_xy(sol,𝐹,id=id,𝑇=𝑇) #add third coordinate z=sol[3,:] df.z=z[:] return df end # The velocity function `🚄` relies only on flow fields obtained from # `𝐹` (which is defined above) to interpolate velocity at the specified # space-time position (e.g. those of individuals). 🚄 = dxdt! # Now that every thing needed to carry out the computation is in place, # we wrap up the problem configuration in a struct (`Individuals`) which # links to the initial positions, flow fields, etc. all that will be # necessary to compute trajectories over time (`∫!(𝐼,𝑇)`). #assemble as a NamedTuple: I=(position=📌,record=🔴,velocity=🚄, postprocessing=postproc,parameters=𝐹) #construct Individuals from NamedTuple: 𝐽=Individuals(I) end # ╔═╡ 8cc54cc2-5284-40b1-9a30-0ad6f725053f md"""## 2 Trajectory Simulations The `∫!` function call below returns the final positions & updates `𝐼.📌` accordingly. It also records properties observed along the trajectory in `𝐼.🔴`. Simple methods to visualize the individual trajectory (plot or movie) are provided at the end. ### 2.1 Compute Trajectory """ # ╔═╡ 503c8702-df0b-4495-8245-4ba6608431e3 begin 𝑇=(0.0,𝐼.𝑃.𝑇[2]) ∫!(𝐼,𝑇) end # ╔═╡ 32a8b0ee-e61d-495b-ba53-56a6c6126950 md"""### 2.2 Visualize Trajectory""" # ╔═╡ dd62433c-2274-4c6f-9e27-34bc2c620df1 begin nt=length(𝐼.🔴.x) time = Mkie.Node(nt) xx=Mkie.@lift( [𝐼.🔴.x[1:$time];fill(NaN,nt-$time)] ) yy=Mkie.@lift( [𝐼.🔴.y[1:$time];fill(NaN,nt-$time)] ) zz=Mkie.@lift( [𝐼.🔴.z[1:$time];fill(NaN,nt-$time)] ) Mkie.set_theme!(Mkie.theme_light()) f=Mkie.Figure(resolution = (900, 600)) a = Mkie.Axis3(f[1, 1],xlabel="x",ylabel="y",zlabel="z", title="Solid body rotation / Spiral example") Mkie.lines!(a,xx,yy,zz,linewidth=1.0,color=:black) Mkie.scatter!(a,[𝐼.🔴.x[1]],[𝐼.🔴.y[1]],[𝐼.🔴.z[1]],color=:red) Mkie.scatter!(a,[𝐼.🔴.x[nt]],[𝐼.🔴.y[nt]],[𝐼.🔴.z[nt]],color=:green) f end # ╔═╡ 250d011e-57db-4d80-b16e-dbc28fec9fba begin #plt=myplot(nt) #scatter!(plt,[📌[1]],[📌[2]],[📌[3]]) #scatter!(plt,[𝐼.🔴.x[end]],[𝐼.🔴.y[end]],[𝐼.🔴.z[end]]) #scatter!(plt,[𝐼.🔴.x[1]],[𝐼.🔴.y[1]],[𝐼.🔴.z[1]]) end # ╔═╡ a0bf6d10-5d42-481b-8720-dadd3f727e8b md"""### 2.3 Animation example""" # ╔═╡ 2b8ee43d-1225-4475-91c9-161cf612bfb2 begin if false p=Int(ceil(nt/50)) tt=1:p:nt tt=tt.+(nt-maximum(tt)) fil=joinpath(tempdir(),"solid_body_rotation.mp4") Mkie.record(f,fil, tt; framerate = 20) do t time[] = t end LocalResource(fil) else """try code in this cell to generate animation""" end end # ╔═╡ 00000000-0000-0000-0000-000000000001 PLUTO_PROJECT_TOML_CONTENTS = """ [deps] CairoMakie = "13f3f980-e62b-5c42-98c6-ff1f3baf88f0" DataFrames = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0" IndividualDisplacements = "b92f0c32-5b7e-11e9-1d7b-238b2da8b0e6" MeshArrays = "cb8c808f-1acf-59a3-9d2b-6e38d009f683" PlutoUI = "7f904dfe-b85e-4ff6-b463-dae2292396a8" [compat] CairoMakie = "~0.6.6" DataFrames = "~1.2.2" IndividualDisplacements = "~0.3.3" MeshArrays = "~0.2.26" PlutoUI = "~0.7.18" """ # ╔═╡ 00000000-0000-0000-0000-000000000002 PLUTO_MANIFEST_TOML_CONTENTS = """ # This file is machine-generated - editing it directly is not advised [[AbstractFFTs]] deps = ["LinearAlgebra"] git-tree-sha1 = "485ee0867925449198280d4af84bdb46a2a404d0" uuid = "621f4979-c628-5d54-868e-fcf4e3e8185c" version = "1.0.1" [[AbstractPlutoDingetjes]] deps = ["Pkg"] git-tree-sha1 = "0ec322186e078db08ea3e7da5b8b2885c099b393" uuid = "6e696c72-6542-2067-7265-42206c756150" version = "1.1.0" [[AbstractTrees]] git-tree-sha1 = "03e0550477d86222521d254b741d470ba17ea0b5" uuid = "1520ce14-60c1-5f80-bbc7-55ef81b5835c" version = "0.3.4" [[Adapt]] deps = ["LinearAlgebra"] git-tree-sha1 = "84918055d15b3114ede17ac6a7182f68870c16f7" uuid = "79e6a3ab-5dfb-504d-930d-738a2a938a0e" version = "3.3.1" [[Animations]] deps = ["Colors"] git-tree-sha1 = "e81c509d2c8e49592413bfb0bb3b08150056c79d" uuid = "27a7e980-b3e6-11e9-2bcd-0b925532e340" version = "0.4.1" [[ArgTools]] uuid = "0dad84c5-d112-42e6-8d28-ef12dabb789f" [[ArnoldiMethod]] deps = ["LinearAlgebra", "Random", "StaticArrays"] git-tree-sha1 = "f87e559f87a45bece9c9ed97458d3afe98b1ebb9" uuid = "ec485272-7323-5ecc-a04f-4719b315124d" version = "0.1.0" [[ArrayInterface]] deps = ["Compat", "IfElse", "LinearAlgebra", "Requires", "SparseArrays", "Static"] git-tree-sha1 = "e527b258413e0c6d4f66ade574744c94edef81f8" uuid = "4fba245c-0d91-5ea0-9b3e-6abc04ee57a9" version = "3.1.40" [[Artifacts]] uuid = "56f22d72-fd6d-98f1-02f0-08ddc0907c33" [[Automa]] deps = ["Printf", "ScanByte", "TranscodingStreams"] git-tree-sha1 = "d50976f217489ce799e366d9561d56a98a30d7fe" uuid = "67c07d97-cdcb-5c2c-af73-a7f9c32a568b" version = "0.8.2" [[AxisAlgorithms]] deps = ["LinearAlgebra", "Random", "SparseArrays", "WoodburyMatrices"] git-tree-sha1 = "66771c8d21c8ff5e3a93379480a2307ac36863f7" uuid = "13072b0f-2c55-5437-9ae7-d433b7a33950" version = "1.0.1" [[Base64]] uuid = "2a0f44e3-6c83-55bd-87e4-b1978d98bd5f" [[BitTwiddlingConvenienceFunctions]] deps = ["Static"] git-tree-sha1 = "bc1317f71de8dce26ea67fcdf7eccc0d0693b75b" uuid = "62783981-4cbd-42fc-bca8-16325de8dc4b" version = "0.1.1" [[Bzip2_jll]] deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg"] git-tree-sha1 = "19a35467a82e236ff51bc17a3a44b69ef35185a2" uuid = "6e34b625-4abd-537c-b88f-471c36dfa7a0" version = "1.0.8+0" [[CEnum]] git-tree-sha1 = "215a9aa4a1f23fbd05b92769fdd62559488d70e9" uuid = "fa961155-64e5-5f13-b03f-caf6b980ea82" version = "0.4.1" [[CFTime]] deps = ["Dates", "Printf"] git-tree-sha1 = "bca6cb6ee746e6485ca4535f6cc29cf3579a0f20" uuid = "179af706-886a-5703-950a-314cd64e0468" version = "0.1.1" [[CPUSummary]] deps = ["Hwloc", "IfElse", "Static"] git-tree-sha1 = "87b0c9c6ee0124d6c1f4ce8cb035dcaf9f90b803" uuid = "2a0fbf3d-bb9c-48f3-b0a9-814d99fd7ab9" version = "0.1.6" [[CSV]] deps = ["CodecZlib", "Dates", "FilePathsBase", "InlineStrings", "Mmap", "Parsers", "PooledArrays", "SentinelArrays", "Tables", "Unicode", "WeakRefStrings"] git-tree-sha1 = "74147e877531d7c172f70b492995bc2b5ca3a843" uuid = "336ed68f-0bac-5ca0-87d4-7b16caf5d00b" version = "0.9.10" [[Cairo]] deps = ["Cairo_jll", "Colors", "Glib_jll", "Graphics", "Libdl", "Pango_jll"] git-tree-sha1 = "d0b3f8b4ad16cb0a2988c6788646a5e6a17b6b1b" uuid = "159f3aea-2a34-519c-b102-8c37f9878175" version = "1.0.5" [[CairoMakie]] deps = ["Base64", "Cairo", "Colors", "FFTW", "FileIO", "FreeType", "GeometryBasics", "LinearAlgebra", "Makie", "SHA", "StaticArrays"] git-tree-sha1 = "774ff1cce3ae930af3948c120c15eeb96c886c33" uuid = "13f3f980-e62b-5c42-98c6-ff1f3baf88f0" version = "0.6.6" [[Cairo_jll]] deps = ["Artifacts", "Bzip2_jll", "Fontconfig_jll", "FreeType2_jll", "Glib_jll", "JLLWrappers", "LZO_jll", "Libdl", "Pixman_jll", "Pkg", "Xorg_libXext_jll", "Xorg_libXrender_jll", "Zlib_jll", "libpng_jll"] git-tree-sha1 = "f2202b55d816427cd385a9a4f3ffb226bee80f99" uuid = "83423d85-b0ee-5818-9007-b63ccbeb887a" version = "1.16.1+0" [[CatViews]] deps = ["Random", "Test"] git-tree-sha1 = "23d1f1e10d4e24374112fcf800ac981d14a54b24" uuid = "81a5f4ea-a946-549a-aa7e-2a7f63a27d31" version = "1.0.0" [[ChainRulesCore]] deps = ["Compat", "LinearAlgebra", "SparseArrays"] git-tree-sha1 = "f885e7e7c124f8c92650d61b9477b9ac2ee607dd" uuid = "d360d2e6-b24c-11e9-a2a3-2a2ae2dbcce4" version = "1.11.1" [[ChangesOfVariables]] deps = ["LinearAlgebra", "Test"] git-tree-sha1 = "9a1d594397670492219635b35a3d830b04730d62" uuid = "9e997f8a-9a97-42d5-a9f1-ce6bfc15e2c0" version = "0.1.1" [[CloseOpenIntervals]] deps = ["ArrayInterface", "Static"] git-tree-sha1 = "7b8f09d58294dc8aa13d91a8544b37c8a1dcbc06" uuid = "fb6a15b2-703c-40df-9091-08a04967cfa9" version = "0.1.4" [[CodecZlib]] deps = ["TranscodingStreams", "Zlib_jll"] git-tree-sha1 = "ded953804d019afa9a3f98981d99b33e3db7b6da" uuid = "944b1d66-785c-5afd-91f1-9de20f533193" version = "0.7.0" [[ColorBrewer]] deps = ["Colors", "JSON", "Test"] git-tree-sha1 = "61c5334f33d91e570e1d0c3eb5465835242582c4" uuid = "a2cac450-b92f-5266-8821-25eda20663c8" version = "0.4.0" [[ColorSchemes]] deps = ["ColorTypes", "Colors", "FixedPointNumbers", "Random"] git-tree-sha1 = "a851fec56cb73cfdf43762999ec72eff5b86882a" uuid = "35d6a980-a343-548e-a6ea-1d62b119f2f4" version = "3.15.0" [[ColorTypes]] deps = ["FixedPointNumbers", "Random"] git-tree-sha1 = "024fe24d83e4a5bf5fc80501a314ce0d1aa35597" uuid = "3da002f7-5984-5a60-b8a6-cbb66c0b333f" version = "0.11.0" [[ColorVectorSpace]] deps = ["ColorTypes", "FixedPointNumbers", "LinearAlgebra", "SpecialFunctions", "Statistics", "TensorCore"] git-tree-sha1 = "45efb332df2e86f2cb2e992239b6267d97c9e0b6" uuid = "c3611d14-8923-5661-9e6a-0046d554d3a4" version = "0.9.7" [[Colors]] deps = ["ColorTypes", "FixedPointNumbers", "Reexport"] git-tree-sha1 = "417b0ed7b8b838aa6ca0a87aadf1bb9eb111ce40" uuid = "5ae59095-9a9b-59fe-a467-6f913c188581" version = "0.12.8" [[CommonSolve]] git-tree-sha1 = "68a0743f578349ada8bc911a5cbd5a2ef6ed6d1f" uuid = "38540f10-b2f7-11e9-35d8-d573e4eb0ff2" version = "0.2.0" [[CommonSubexpressions]] deps = ["MacroTools", "Test"] git-tree-sha1 = "7b8a93dba8af7e3b42fecabf646260105ac373f7" uuid = "bbf7d656-a473-5ed7-a52c-81e309532950" version = "0.3.0" [[Compat]] deps = ["Base64", "Dates", "DelimitedFiles", "Distributed", "InteractiveUtils", "LibGit2", "Libdl", "LinearAlgebra", "Markdown", "Mmap", "Pkg", "Printf", "REPL", "Random", "SHA", "Serialization", "SharedArrays", "Sockets", "SparseArrays", "Statistics", "Test", "UUIDs", "Unicode"] git-tree-sha1 = "dce3e3fea680869eaa0b774b2e8343e9ff442313" uuid = "34da2185-b29b-5c13-b0c7-acf172513d20" version = "3.40.0" [[CompilerSupportLibraries_jll]] deps = ["Artifacts", "Libdl"] uuid = "e66e0078-7015-5450-92f7-15fbd957f2ae" [[ConstructionBase]] deps = ["LinearAlgebra"] git-tree-sha1 = "f74e9d5388b8620b4cee35d4c5a618dd4dc547f4" uuid = "187b0558-2788-49d3-abe0-74a17ed4e7c9" version = "1.3.0" [[Contour]] deps = ["StaticArrays"] git-tree-sha1 = "9f02045d934dc030edad45944ea80dbd1f0ebea7" uuid = "d38c429a-6771-53c6-b99e-75d170b6e991" version = "0.5.7" [[Crayons]] git-tree-sha1 = "3f71217b538d7aaee0b69ab47d9b7724ca8afa0d" uuid = "a8cc5b0e-0ffa-5ad4-8c14-923d3ee1735f" version = "4.0.4" [[CyclicArrays]] git-tree-sha1 = "4ab3cb8563aceca605a543a19aacaf09c6781dd3" uuid = "6023044f-b3ef-4c22-8399-3ec90a0c9b75" version = "0.5.0" [[DEDataArrays]] deps = ["ArrayInterface", "DocStringExtensions", "LinearAlgebra", "RecursiveArrayTools", "SciMLBase", "StaticArrays"] git-tree-sha1 = "31186e61936fbbccb41d809ad4338c9f7addf7ae" uuid = "754358af-613d-5f8d-9788-280bf1605d4c" version = "0.2.0" [[DataAPI]] git-tree-sha1 = "cc70b17275652eb47bc9e5f81635981f13cea5c8" uuid = "9a962f9c-6df0-11e9-0e5d-c546b8b5ee8a" version = "1.9.0" [[DataFrames]] deps = ["Compat", "DataAPI", "Future", "InvertedIndices", "IteratorInterfaceExtensions", "LinearAlgebra", "Markdown", "Missings", "PooledArrays", "PrettyTables", "Printf", "REPL", "Reexport", "SortingAlgorithms", "Statistics", "TableTraits", "Tables", "Unicode"] git-tree-sha1 = "d785f42445b63fc86caa08bb9a9351008be9b765" uuid = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0" version = "1.2.2" [[DataStructures]] deps = ["Compat", "InteractiveUtils", "OrderedCollections"] git-tree-sha1 = "7d9d316f04214f7efdbb6398d545446e246eff02" uuid = "864edb3b-99cc-5e75-8d2d-829cb0a9cfe8" version = "0.18.10" [[DataValueInterfaces]] git-tree-sha1 = "bfc1187b79289637fa0ef6d4436ebdfe6905cbd6" uuid = "e2d170a0-9d28-54be-80f0-106bbe20a464" version = "1.0.0" [[Dates]] deps = ["Printf"] uuid = "ade2ca70-3891-5945-98fb-dc099432e06a" [[DelimitedFiles]] deps = ["Mmap"] uuid = "8bb1440f-4735-579b-a4ab-409b98df4dab" [[DiffEqBase]] deps = ["ArrayInterface", "ChainRulesCore", "DEDataArrays", "DataStructures", "Distributions", "DocStringExtensions", "FastBroadcast", "ForwardDiff", "FunctionWrappers", "IterativeSolvers", "LabelledArrays", "LinearAlgebra", "Logging", "MuladdMacro", "NonlinearSolve", "Parameters", "PreallocationTools", "Printf", "RecursiveArrayTools", "RecursiveFactorization", "Reexport", "Requires", "SciMLBase", "Setfield", "SparseArrays", "StaticArrays", "Statistics", "SuiteSparse", "ZygoteRules"] git-tree-sha1 = "5c3d877ddfc2da61ce5cc1f5ce330ff97789c57c" uuid = "2b5f629d-d688-5b77-993f-72d75c75574e" version = "6.76.0" [[DiffResults]] deps = ["StaticArrays"] git-tree-sha1 = "c18e98cba888c6c25d1c3b048e4b3380ca956805" uuid = "163ba53b-c6d8-5494-b064-1a9d43ac40c5" version = "1.0.3" [[DiffRules]] deps = ["LogExpFunctions", "NaNMath", "Random", "SpecialFunctions"] git-tree-sha1 = "3287dacf67c3652d3fed09f4c12c187ae4dbb89a" uuid = "b552c78f-8df3-52c6-915a-8e097449b14b" version = "1.4.0" [[DiskArrays]] git-tree-sha1 = "6a50d800025a1664c99a8e819e0568c75e3ac0c7" uuid = "3c3547ce-8d99-4f5e-a174-61eb10b00ae3" version = "0.2.12" [[Distances]] deps = ["LinearAlgebra", "Statistics", "StatsAPI"] git-tree-sha1 = "837c83e5574582e07662bbbba733964ff7c26b9d" uuid = "b4f34e82-e78d-54a5-968a-f98e89d6e8f7" version = "0.10.6" [[Distributed]] deps = ["Random", "Serialization", "Sockets"] uuid = "8ba89e20-285c-5b6f-9357-94700520ee1b" [[Distributions]] deps = ["ChainRulesCore", "FillArrays", "LinearAlgebra", "PDMats", "Printf", "QuadGK", "Random", "SparseArrays", "SpecialFunctions", "Statistics", "StatsBase", "StatsFuns"] git-tree-sha1 = "72dcda9e19f88d09bf21b5f9507a0bb430bce2aa" uuid = "31c24e10-a181-5473-b8eb-7969acd0382f" version = "0.25.24" [[DocStringExtensions]] deps = ["LibGit2"] git-tree-sha1 = "b19534d1895d702889b219c382a6e18010797f0b" uuid = "ffbed154-4ef7-542d-bbb7-c09d3a79fcae" version = "0.8.6" [[Downloads]] deps = ["ArgTools", "LibCURL", "NetworkOptions"] uuid = "f43a241f-c20a-4ad4-852c-f6b1247861c6" [[EarCut_jll]] deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg"] git-tree-sha1 = "3f3a2501fa7236e9b911e0f7a588c657e822bb6d" uuid = "5ae413db-bbd1-5e63-b57d-d24a61df00f5" version = "2.2.3+0" [[EllipsisNotation]] deps = ["ArrayInterface"] git-tree-sha1 = "9aad812fb7c4c038da7cab5a069f502e6e3ae030" uuid = "da5c29d0-fa7d-589e-88eb-ea29b0a81949" version = "1.1.1" [[Expat_jll]] deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg"] git-tree-sha1 = "b3bfd02e98aedfa5cf885665493c5598c350cd2f" uuid = "2e619515-83b5-522b-bb60-26c02a35a201" version = "2.2.10+0" [[ExponentialUtilities]] deps = ["ArrayInterface", "LinearAlgebra", "Printf", "Requires", "SparseArrays"] git-tree-sha1 = "cb39752c2a1f83bbe0fda393c51c480a296042ad" uuid = "d4d017d3-3776-5f7e-afef-a10c40355c18" version = "1.10.1" [[FFMPEG]] deps = ["FFMPEG_jll"] git-tree-sha1 = "b57e3acbe22f8484b4b5ff66a7499717fe1a9cc8" uuid = "c87230d0-a227-11e9-1b43-d7ebe4e7570a" version = "0.4.1" [[FFMPEG_jll]] deps = ["Artifacts", "Bzip2_jll", "FreeType2_jll", "FriBidi_jll", "JLLWrappers", "LAME_jll", "Libdl", "Ogg_jll", "OpenSSL_jll", "Opus_jll", "Pkg", "Zlib_jll", "libass_jll", "libfdk_aac_jll", "libvorbis_jll", "x264_jll", "x265_jll"] git-tree-sha1 = "d8a578692e3077ac998b50c0217dfd67f21d1e5f" uuid = "b22a6f82-2f65-5046-a5b2-351ab43fb4e5" version = "4.4.0+0" [[FFTW]] deps = ["AbstractFFTs", "FFTW_jll", "LinearAlgebra", "MKL_jll", "Preferences", "Reexport"] git-tree-sha1 = "463cb335fa22c4ebacfd1faba5fde14edb80d96c" uuid = "7a1cc6ca-52ef-59f5-83cd-3a7055c09341" version = "1.4.5" [[FFTW_jll]] deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg"] git-tree-sha1 = "c6033cc3892d0ef5bb9cd29b7f2f0331ea5184ea" uuid = "f5851436-0d7a-5f13-b9de-f02708fd171a" version = "3.3.10+0" [[FastBroadcast]] deps = ["LinearAlgebra", "Polyester", "Static"] git-tree-sha1 = "e32a81c505ab234c992ca978f31ed8b0dabbc327" uuid = "7034ab61-46d4-4ed7-9d0f-46aef9175898" version = "0.1.11" [[FastClosures]] git-tree-sha1 = "acebe244d53ee1b461970f8910c235b259e772ef" uuid = "9aa1b823-49e4-5ca5-8b0f-3971ec8bab6a" version = "0.3.2" [[FileIO]] deps = ["Pkg", "Requires", "UUIDs"] git-tree-sha1 = "2db648b6712831ecb333eae76dbfd1c156ca13bb" uuid = "5789e2e9-d7fb-5bc7-8068-2c6fae9b9549" version = "1.11.2" [[FilePathsBase]] deps = ["Dates", "Mmap", "Printf", "Test", "UUIDs"] git-tree-sha1 = "5440c1d26aa29ca9ea848559216e5ee5f16a8627" uuid = "48062228-2e41-5def-b9a4-89aafe57970f" version = "0.9.14" [[FillArrays]] deps = ["LinearAlgebra", "Random", "SparseArrays", "Statistics"] git-tree-sha1 = "8756f9935b7ccc9064c6eef0bff0ad643df733a3" uuid = "1a297f60-69ca-5386-bcde-b61e274b549b" version = "0.12.7" [[FiniteDiff]] deps = ["ArrayInterface", "LinearAlgebra", "Requires", "SparseArrays", "StaticArrays"] git-tree-sha1 = "8b3c09b56acaf3c0e581c66638b85c8650ee9dca" uuid = "6a86dc24-6348-571c-b903-95158fe2bd41" version = "2.8.1" [[FixedPointNumbers]] deps = ["Statistics"] git-tree-sha1 = "335bfdceacc84c5cdf16aadc768aa5ddfc5383cc" uuid = "53c48c17-4a7d-5ca2-90c5-79b7896eea93" version = "0.8.4" [[Fontconfig_jll]] deps = ["Artifacts", "Bzip2_jll", "Expat_jll", "FreeType2_jll", "JLLWrappers", "Libdl", "Libuuid_jll", "Pkg", "Zlib_jll"] git-tree-sha1 = "21efd19106a55620a188615da6d3d06cd7f6ee03" uuid = "a3f928ae-7b40-5064-980b-68af3947d34b" version = "2.13.93+0" [[Formatting]] deps = ["Printf"] git-tree-sha1 = "8339d61043228fdd3eb658d86c926cb282ae72a8" uuid = "59287772-0a20-5a39-b81b-1366585eb4c0" version = "0.4.2" [[ForwardDiff]] deps = ["CommonSubexpressions", "DiffResults", "DiffRules", "LinearAlgebra", "NaNMath", "Preferences", "Printf", "Random", "SpecialFunctions", "StaticArrays"] git-tree-sha1 = "ef3fec65f9db26fa2cf8f4133c697c5b7ce63c1d" uuid = "f6369f11-7733-5829-9624-2563aa707210" version = "0.10.22" [[FreeType]] deps = ["CEnum", "FreeType2_jll"] git-tree-sha1 = "cabd77ab6a6fdff49bfd24af2ebe76e6e018a2b4" uuid = "b38be410-82b0-50bf-ab77-7b57e271db43" version = "4.0.0" [[FreeType2_jll]] deps = ["Artifacts", "Bzip2_jll", "JLLWrappers", "Libdl", "Pkg", "Zlib_jll"] git-tree-sha1 = "87eb71354d8ec1a96d4a7636bd57a7347dde3ef9" uuid = "d7e528f0-a631-5988-bf34-fe36492bcfd7" version = "2.10.4+0" [[FreeTypeAbstraction]] deps = ["ColorVectorSpace", "Colors", "FreeType", "GeometryBasics", "StaticArrays"] git-tree-sha1 = "19d0f1e234c13bbfd75258e55c52aa1d876115f5" uuid = "663a7486-cb36-511b-a19d-713bb74d65c9" version = "0.9.2" [[FriBidi_jll]] deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg"] git-tree-sha1 = "aa31987c2ba8704e23c6c8ba8a4f769d5d7e4f91" uuid = "559328eb-81f9-559d-9380-de523a88c83c" version = "1.0.10+0" [[FunctionWrappers]] git-tree-sha1 = "241552bc2209f0fa068b6415b1942cc0aa486bcc" uuid = "069b7b12-0de2-55c6-9aab-29f3d0a68a2e" version = "1.1.2" [[Future]] deps = ["Random"] uuid = "9fa8497b-333b-5362-9e8d-4d0656e87820" [[GeometryBasics]] deps = ["EarCut_jll", "IterTools", "LinearAlgebra", "StaticArrays", "StructArrays", "Tables"] git-tree-sha1 = "58bcdf5ebc057b085e58d95c138725628dd7453c" uuid = "5c1252a2-5f33-56bf-86c9-59e7332b4326" version = "0.4.1" [[Gettext_jll]] deps = ["Artifacts", "CompilerSupportLibraries_jll", "JLLWrappers", "Libdl", "Libiconv_jll", "Pkg", "XML2_jll"] git-tree-sha1 = "9b02998aba7bf074d14de89f9d37ca24a1a0b046" uuid = "78b55507-aeef-58d4-861c-77aaff3498b1" version = "0.21.0+0" [[Glib_jll]] deps = ["Artifacts", "Gettext_jll", "JLLWrappers", "Libdl", "Libffi_jll", "Libiconv_jll", "Libmount_jll", "PCRE_jll", "Pkg", "Zlib_jll"] git-tree-sha1 = "7bf67e9a481712b3dbe9cb3dac852dc4b1162e02" uuid = "7746bdde-850d-59dc-9ae8-88ece973131d" version = "2.68.3+0" [[Graphics]] deps = ["Colors", "LinearAlgebra", "NaNMath"] git-tree-sha1 = "1c5a84319923bea76fa145d49e93aa4394c73fc2" uuid = "a2bd30eb-e257-5431-a919-1863eab51364" version = "1.1.1" [[Graphite2_jll]] deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg"] git-tree-sha1 = "344bf40dcab1073aca04aa0df4fb092f920e4011" uuid = "3b182d85-2403-5c21-9c21-1e1f0cc25472" version = "1.3.14+0" [[GridLayoutBase]] deps = ["GeometryBasics", "InteractiveUtils", "Match", "Observables"] git-tree-sha1 = "e2f606c87d09d5187bb6069dab8cee0af7c77bdb" uuid = "3955a311-db13-416c-9275-1d80ed98e5e9" version = "0.6.1" [[Grisu]] git-tree-sha1 = "53bb909d1151e57e2484c3d1b53e19552b887fb2" uuid = "42e2da0e-8278-4e71-bc24-59509adca0fe" version = "1.0.2" [[HDF5_jll]] deps = ["Artifacts", "JLLWrappers", "LibCURL_jll", "Libdl", "OpenSSL_jll", "Pkg", "Zlib_jll"] git-tree-sha1 = "fd83fa0bde42e01952757f01149dd968c06c4dba" uuid = "0234f1f7-429e-5d53-9886-15a909be8d59" version = "1.12.0+1" [[HarfBuzz_jll]] deps = ["Artifacts", "Cairo_jll", "Fontconfig_jll", "FreeType2_jll", "Glib_jll", "Graphite2_jll", "JLLWrappers", "Libdl", "Libffi_jll", "Pkg"] git-tree-sha1 = "8a954fed8ac097d5be04921d595f741115c1b2ad" uuid = "2e76f6c2-a576-52d4-95c1-20adfe4de566" version = "2.8.1+0" [[HostCPUFeatures]] deps = ["BitTwiddlingConvenienceFunctions", "IfElse", "Libdl", "Static"] git-tree-sha1 = "8f0dc80088981ab55702b04bba38097a44a1a3a9" uuid = "3e5b6fbb-0976-4d2c-9146-d79de83f2fb0" version = "0.1.5" [[Hwloc]] deps = ["Hwloc_jll"] git-tree-sha1 = "92d99146066c5c6888d5a3abc871e6a214388b91" uuid = "0e44f5e4-bd66-52a0-8798-143a42290a1d" version = "2.0.0" [[Hwloc_jll]] deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg"] git-tree-sha1 = "3395d4d4aeb3c9d31f5929d32760d8baeee88aaf" uuid = "e33a78d0-f292-5ffc-b300-72abe9b543c8" version = "2.5.0+0" [[Hyperscript]] deps = ["Test"] git-tree-sha1 = "8d511d5b81240fc8e6802386302675bdf47737b9" uuid = "47d2ed2b-36de-50cf-bf87-49c2cf4b8b91" version = "0.0.4" [[HypertextLiteral]] git-tree-sha1 = "2b078b5a615c6c0396c77810d92ee8c6f470d238" uuid = "ac1192a8-f4b3-4bfe-ba22-af5b92cd3ab2" version = "0.9.3" [[IOCapture]] deps = ["Logging", "Random"] git-tree-sha1 = "f7be53659ab06ddc986428d3a9dcc95f6fa6705a" uuid = "b5f81e59-6552-4d32-b1f0-c071b021bf89" version = "0.2.2" [[IfElse]] git-tree-sha1 = "debdd00ffef04665ccbb3e150747a77560e8fad1" uuid = "615f187c-cbe4-4ef1-ba3b-2fcf58d6d173" version = "0.1.1" [[ImageCore]] deps = ["AbstractFFTs", "ColorVectorSpace", "Colors", "FixedPointNumbers", "Graphics", "MappedArrays", "MosaicViews", "OffsetArrays", "PaddedViews", "Reexport"] git-tree-sha1 = "9a5c62f231e5bba35695a20988fc7cd6de7eeb5a" uuid = "a09fc81d-aa75-5fe9-8630-4744c3626534" version = "0.9.3" [[ImageIO]] deps = ["FileIO", "Netpbm", "OpenEXR", "PNGFiles", "TiffImages", "UUIDs"] git-tree-sha1 = "a2951c93684551467265e0e32b577914f69532be" uuid = "82e4d734-157c-48bb-816b-45c225c6df19" version = "0.5.9" [[Imath_jll]] deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg"] git-tree-sha1 = "87f7662e03a649cffa2e05bf19c303e168732d3e" uuid = "905a6f67-0a94-5f89-b386-d35d92009cd1" version = "3.1.2+0" [[IndirectArrays]] git-tree-sha1 = "012e604e1c7458645cb8b436f8fba789a51b257f" uuid = "9b13fd28-a010-5f03-acff-a1bbcff69959" version = "1.0.0" [[IndividualDisplacements]] deps = ["CFTime", "CSV", "CyclicArrays", "DataFrames", "Dates", "MeshArrays", "NetCDF", "OrdinaryDiffEq", "Pkg", "Random", "UnPack"] git-tree-sha1 = "3ebe0723d67f2c2a608542d6db654c2504426d1a" uuid = "b92f0c32-5b7e-11e9-1d7b-238b2da8b0e6" version = "0.3.3" [[Inflate]] git-tree-sha1 = "f5fc07d4e706b84f72d54eedcc1c13d92fb0871c" uuid = "d25df0c9-e2be-5dd7-82c8-3ad0b3e990b9" version = "0.1.2" [[InlineStrings]] deps = ["Parsers"] git-tree-sha1 = "19cb49649f8c41de7fea32d089d37de917b553da" uuid = "842dd82b-1e85-43dc-bf29-5d0ee9dffc48" version = "1.0.1" [[IntelOpenMP_jll]] deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg"] git-tree-sha1 = "d979e54b71da82f3a65b62553da4fc3d18c9004c" uuid = "1d5cc7b8-4909-519e-a0f8-d0f5ad9712d0" version = "2018.0.3+2" [[InteractiveUtils]] deps = ["Markdown"] uuid = "b77e0a4c-d291-57a0-90e8-8db25a27a240" [[Interpolations]] deps = ["AxisAlgorithms", "ChainRulesCore", "LinearAlgebra", "OffsetArrays", "Random", "Ratios", "Requires", "SharedArrays", "SparseArrays", "StaticArrays", "WoodburyMatrices"] git-tree-sha1 = "61aa005707ea2cebf47c8d780da8dc9bc4e0c512" uuid = "a98d9a8b-a2ab-59e6-89dd-64a1c18fca59" version = "0.13.4" [[IntervalSets]] deps = ["Dates", "EllipsisNotation", "Statistics"] git-tree-sha1 = "3cc368af3f110a767ac786560045dceddfc16758" uuid = "8197267c-284f-5f27-9208-e0e47529a953" version = "0.5.3" [[InverseFunctions]] deps = ["Test"] git-tree-sha1 = "a7254c0acd8e62f1ac75ad24d5db43f5f19f3c65" uuid = "3587e190-3f89-42d0-90ee-14403ec27112" version = "0.1.2" [[InvertedIndices]] git-tree-sha1 = "bee5f1ef5bf65df56bdd2e40447590b272a5471f" uuid = "41ab1584-1d38-5bbf-9106-f11c6c58b48f" version = "1.1.0" [[IrrationalConstants]] git-tree-sha1 = "7fd44fd4ff43fc60815f8e764c0f352b83c49151" uuid = "92d709cd-6900-40b7-9082-c6be49f344b6" version = "0.1.1" [[Isoband]] deps = ["isoband_jll"] git-tree-sha1 = "f9b6d97355599074dc867318950adaa6f9946137" uuid = "f1662d9f-8043-43de-a69a-05efc1cc6ff4" version = "0.1.1" [[IterTools]] git-tree-sha1 = "05110a2ab1fc5f932622ffea2a003221f4782c18" uuid = "c8e1da08-722c-5040-9ed9-7db0dc04731e" version = "1.3.0" [[IterativeSolvers]] deps = ["LinearAlgebra", "Printf", "Random", "RecipesBase", "SparseArrays"] git-tree-sha1 = "1169632f425f79429f245113b775a0e3d121457c" uuid = "42fd0dbc-a981-5370-80f2-aaf504508153" version = "0.9.2" [[IteratorInterfaceExtensions]] git-tree-sha1 = "a3f24677c21f5bbe9d2a714f95dcd58337fb2856" uuid = "82899510-4779-5014-852e-03e436cf321d" version = "1.0.0" [[JLLWrappers]] deps = ["Preferences"] git-tree-sha1 = "642a199af8b68253517b80bd3bfd17eb4e84df6e" uuid = "692b3bcd-3c85-4b1f-b108-f13ce0eb3210" version = "1.3.0" [[JSON]] deps = ["Dates", "Mmap", "Parsers", "Unicode"] git-tree-sha1 = "8076680b162ada2a031f707ac7b4953e30667a37" uuid = "682c06a0-de6a-54ab-a142-c8b1cf79cde6" version = "0.21.2" [[KernelDensity]] deps = ["Distributions", "DocStringExtensions", "FFTW", "Interpolations", "StatsBase"] git-tree-sha1 = "591e8dc09ad18386189610acafb970032c519707" uuid = "5ab0869b-81aa-558d-bb23-cbf5423bbe9b" version = "0.6.3" [[LAME_jll]] deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg"] git-tree-sha1 = "f6250b16881adf048549549fba48b1161acdac8c" uuid = "c1c5ebd0-6772-5130-a774-d5fcae4a789d" version = "3.100.1+0" [[LZO_jll]] deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg"] git-tree-sha1 = "e5b909bcf985c5e2605737d2ce278ed791b89be6" uuid = "dd4b983a-f0e5-5f8d-a1b7-129d4a5fb1ac" version = "2.10.1+0" [[LaTeXStrings]] git-tree-sha1 = "f2355693d6778a178ade15952b7ac47a4ff97996" uuid = "b964fa9f-0449-5b57-a5c2-d3ea65f4040f" version = "1.3.0" [[LabelledArrays]] deps = ["ArrayInterface", "LinearAlgebra", "MacroTools", "StaticArrays"] git-tree-sha1 = "8f5fd068dfee92655b79e0859ecad8b492dfe8b1" uuid = "2ee39098-c373-598a-b85f-a56591580800" version = "1.6.5" [[LayoutPointers]] deps = ["ArrayInterface", "LinearAlgebra", "ManualMemory", "SIMDTypes", "Static"] git-tree-sha1 = "83b56449c39342a47f3fcdb3bc782bd6d66e1d97" uuid = "10f19ff3-798f-405d-979b-55457f8fc047" version = "0.1.4" [[LazyArtifacts]] deps = ["Artifacts", "Pkg"] uuid = "4af54fe1-eca0-43a8-85a7-787d91b784e3" [[LibCURL]] deps = ["LibCURL_jll", "MozillaCACerts_jll"] uuid = "b27032c2-a3e7-50c8-80cd-2d36dbcbfd21" [[LibCURL_jll]] deps = ["Artifacts", "LibSSH2_jll", "Libdl", "MbedTLS_jll", "Zlib_jll", "nghttp2_jll"] uuid = "deac9b47-8bc7-5906-a0fe-35ac56dc84c0" [[LibGit2]] deps = ["Base64", "NetworkOptions", "Printf", "SHA"] uuid = "76f85450-5226-5b5a-8eaa-529ad045b433" [[LibSSH2_jll]] deps = ["Artifacts", "Libdl", "MbedTLS_jll"] uuid = "29816b5a-b9ab-546f-933c-edad1886dfa8" [[Libdl]] uuid = "8f399da3-3557-5675-b5ff-fb832c97cbdb" [[Libffi_jll]] deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg"] git-tree-sha1 = "761a393aeccd6aa92ec3515e428c26bf99575b3b" uuid = "e9f186c6-92d2-5b65-8a66-fee21dc1b490" version = "3.2.2+0" [[Libgcrypt_jll]] deps = ["Artifacts", "JLLWrappers", "Libdl", "Libgpg_error_jll", "Pkg"] git-tree-sha1 = "64613c82a59c120435c067c2b809fc61cf5166ae" uuid = "d4300ac3-e22c-5743-9152-c294e39db1e4" version = "1.8.7+0" [[Libgpg_error_jll]] deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg"] git-tree-sha1 = "c333716e46366857753e273ce6a69ee0945a6db9" uuid = "7add5ba3-2f88-524e-9cd5-f83b8a55f7b8" version = "1.42.0+0" [[Libiconv_jll]] deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg"] git-tree-sha1 = "42b62845d70a619f063a7da093d995ec8e15e778" uuid = "94ce4f54-9a6c-5748-9c1c-f9c7231a4531" version = "1.16.1+1" [[Libmount_jll]] deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg"] git-tree-sha1 = "9c30530bf0effd46e15e0fdcf2b8636e78cbbd73" uuid = "4b2f31a3-9ecc-558c-b454-b3730dcb73e9" version = "2.35.0+0" [[Libuuid_jll]] deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg"] git-tree-sha1 = "7f3efec06033682db852f8b3bc3c1d2b0a0ab066" uuid = "38a345b3-de98-5d2b-a5d3-14cd9215e700" version = "2.36.0+0" [[LightGraphs]] deps = ["ArnoldiMethod", "DataStructures", "Distributed", "Inflate", "LinearAlgebra", "Random", "SharedArrays", "SimpleTraits", "SparseArrays", "Statistics"] git-tree-sha1 = "432428df5f360964040ed60418dd5601ecd240b6" uuid = "093fc24a-ae57-5d10-9952-331d41423f4d" version = "1.3.5" [[LineSearches]] deps = ["LinearAlgebra", "NLSolversBase", "NaNMath", "Parameters", "Printf"] git-tree-sha1 = "f27132e551e959b3667d8c93eae90973225032dd" uuid = "d3d80556-e9d4-5f37-9878-2ab0fcc64255" version = "7.1.1" [[LinearAlgebra]] deps = ["Libdl"] uuid = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e" [[LogExpFunctions]] deps = ["ChainRulesCore", "ChangesOfVariables", "DocStringExtensions", "InverseFunctions", "IrrationalConstants", "LinearAlgebra"] git-tree-sha1 = "be9eef9f9d78cecb6f262f3c10da151a6c5ab827" uuid = "2ab3a3ac-af41-5b50-aa03-7779005ae688" version = "0.3.5" [[Logging]] uuid = "56ddb016-857b-54e1-b83d-db4d58db5568" [[LoopVectorization]] deps = ["ArrayInterface", "CPUSummary", "CloseOpenIntervals", "DocStringExtensions", "HostCPUFeatures", "IfElse", "LayoutPointers", "LinearAlgebra", "OffsetArrays", "PolyesterWeave", "Requires", "SIMDDualNumbers", "SLEEFPirates", "Static", "ThreadingUtilities", "UnPack", "VectorizationBase"] git-tree-sha1 = "caaa2d3518fe6312327819cdd485a4258e52ece0" uuid = "bdcacae8-1622-11e9-2a5c-532679323890" version = "0.12.95" [[MKL_jll]] deps = ["Artifacts", "IntelOpenMP_jll", "JLLWrappers", "LazyArtifacts", "Libdl", "Pkg"] git-tree-sha1 = "5455aef09b40e5020e1520f551fa3135040d4ed0" uuid = "856f044c-d86e-5d09-b602-aeab76dc8ba7" version = "2021.1.1+2" [[MacroTools]] deps = ["Markdown", "Random"] git-tree-sha1 = "3d3e902b31198a27340d0bf00d6ac452866021cf" uuid = "1914dd2f-81c6-5fcd-8719-6d5c9610ff09" version = "0.5.9" [[Makie]] deps = ["Animations", "Base64", "ColorBrewer", "ColorSchemes", "ColorTypes", "Colors", "Contour", "Distributions", "DocStringExtensions", "FFMPEG", "FileIO", "FixedPointNumbers", "Formatting", "FreeType", "FreeTypeAbstraction", "GeometryBasics", "GridLayoutBase", "ImageIO", "IntervalSets", "Isoband", "KernelDensity", "LaTeXStrings", "LinearAlgebra", "MakieCore", "Markdown", "Match", "MathTeXEngine", "Observables", "Packing", "PlotUtils", "PolygonOps", "Printf", "Random", "RelocatableFolders", "Serialization", "Showoff", "SignedDistanceFields", "SparseArrays", "StaticArrays", "Statistics", "StatsBase", "StatsFuns", "StructArrays", "UnicodeFun"] git-tree-sha1 = "56b0b7772676c499430dc8eb15cfab120c05a150" uuid = "ee78f7c6-11fb-53f2-987a-cfe4a2b5a57a" version = "0.15.3" [[MakieCore]] deps = ["Observables"] git-tree-sha1 = "7bcc8323fb37523a6a51ade2234eee27a11114c8" uuid = "20f20a25-4f0e-4fdf-b5d1-57303727442b" version = "0.1.3" [[ManualMemory]] git-tree-sha1 = "9cb207b18148b2199db259adfa923b45593fe08e" uuid = "d125e4d3-2237-4719-b19c-fa641b8a4667" version = "0.1.6" [[MappedArrays]] git-tree-sha1 = "e8b359ef06ec72e8c030463fe02efe5527ee5142" uuid = "dbb5928d-eab1-5f90-85c2-b9b0edb7c900" version = "0.4.1" [[Markdown]] deps = ["Base64"] uuid = "d6f4376e-aef5-505a-96c1-9c027394607a" [[Match]] git-tree-sha1 = "5cf525d97caf86d29307150fcba763a64eaa9cbe" uuid = "7eb4fadd-790c-5f42-8a69-bfa0b872bfbf" version = "1.1.0" [[MathTeXEngine]] deps = ["AbstractTrees", "Automa", "DataStructures", "FreeTypeAbstraction", "GeometryBasics", "LaTeXStrings", "REPL", "RelocatableFolders", "Test"] git-tree-sha1 = "70e733037bbf02d691e78f95171a1fa08cdc6332" uuid = "0a4f8689-d25c-4efe-a92b-7142dfc1aa53" version = "0.2.1" [[MbedTLS_jll]] deps = ["Artifacts", "Libdl"] uuid = "c8ffd9c3-330d-5841-b78e-0817d7145fa1" [[MeshArrays]] deps = ["CatViews", "Dates", "LazyArtifacts", "NearestNeighbors", "Pkg", "Printf", "SparseArrays", "Statistics", "Unitful"] git-tree-sha1 = "628c1e1ee3b69635027a76f208e2e76541cd1162" uuid = "cb8c808f-1acf-59a3-9d2b-6e38d009f683" version = "0.2.26" [[Missings]] deps = ["DataAPI"] git-tree-sha1 = "bf210ce90b6c9eed32d25dbcae1ebc565df2687f" uuid = "e1d29d7a-bbdc-5cf2-9ac0-f12de2c33e28" version = "1.0.2" [[Mmap]] uuid = "a63ad114-7e13-5084-954f-fe012c677804" [[MosaicViews]] deps = ["MappedArrays", "OffsetArrays", "PaddedViews", "StackViews"] git-tree-sha1 = "b34e3bc3ca7c94914418637cb10cc4d1d80d877d" uuid = "e94cdb99-869f-56ef-bcf0-1ae2bcbe0389" version = "0.3.3" [[MozillaCACerts_jll]] uuid = "14a3606d-f60d-562e-9121-12d972cd8159" [[MuladdMacro]] git-tree-sha1 = "c6190f9a7fc5d9d5915ab29f2134421b12d24a68" uuid = "46d2c3a1-f734-5fdb-9937-b9b9aeba4221" version = "0.2.2" [[NLSolversBase]] deps = ["DiffResults", "Distributed", "FiniteDiff", "ForwardDiff"] git-tree-sha1 = "50310f934e55e5ca3912fb941dec199b49ca9b68" uuid = "d41bc354-129a-5804-8e4c-c37616107c6c" version = "7.8.2" [[NLsolve]] deps = ["Distances", "LineSearches", "LinearAlgebra", "NLSolversBase", "Printf", "Reexport"] git-tree-sha1 = "019f12e9a1a7880459d0173c182e6a99365d7ac1" uuid = "2774e3e8-f4cf-5e23-947b-6d7e65073b56" version = "4.5.1" [[NaNMath]] git-tree-sha1 = "bfe47e760d60b82b66b61d2d44128b62e3a369fb" uuid = "77ba4419-2d1f-58cd-9bb1-8ffee604a2e3" version = "0.3.5" [[NearestNeighbors]] deps = ["Distances", "StaticArrays"] git-tree-sha1 = "16baacfdc8758bc374882566c9187e785e85c2f0" uuid = "b8a86587-4115-5ab1-83bc-aa920d37bbce" version = "0.4.9" [[NetCDF]] deps = ["DiskArrays", "Formatting", "NetCDF_jll"] git-tree-sha1 = "23b0e32fde256a4e2e497e678abcf956ed26204b" uuid = "30363a11-5582-574a-97bb-aa9a979735b9" version = "0.11.3" [[NetCDF_jll]] deps = ["Artifacts", "HDF5_jll", "JLLWrappers", "LibCURL_jll", "LibSSH2_jll", "Libdl", "MbedTLS_jll", "Pkg", "Zlib_jll", "nghttp2_jll"] git-tree-sha1 = "0cf4d1bf2ef45156aed85c9ac5f8c7e697d9288c" uuid = "7243133f-43d8-5620-bbf4-c2c921802cf3" version = "400.702.400+0" [[Netpbm]] deps = ["FileIO", "ImageCore"] git-tree-sha1 = "18efc06f6ec36a8b801b23f076e3c6ac7c3bf153" uuid = "f09324ee-3d7c-5217-9330-fc30815ba969" version = "1.0.2" [[NetworkOptions]] uuid = "ca575930-c2e3-43a9-ace4-1e988b2c1908" [[NonlinearSolve]] deps = ["ArrayInterface", "FiniteDiff", "ForwardDiff", "IterativeSolvers", "LinearAlgebra", "RecursiveArrayTools", "RecursiveFactorization", "Reexport", "SciMLBase", "Setfield", "StaticArrays", "UnPack"] git-tree-sha1 = "e9ffc92217b8709e0cf7b8808f6223a4a0936c95" uuid = "8913a72c-1f9b-4ce2-8d82-65094dcecaec" version = "0.3.11" [[Observables]] git-tree-sha1 = "fe29afdef3d0c4a8286128d4e45cc50621b1e43d" uuid = "510215fc-4207-5dde-b226-833fc4488ee2" version = "0.4.0" [[OffsetArrays]] deps = ["Adapt"] git-tree-sha1 = "043017e0bdeff61cfbb7afeb558ab29536bbb5ed" uuid = "6fe1bfb0-de20-5000-8ca7-80f57d26f881" version = "1.10.8" [[Ogg_jll]] deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg"] git-tree-sha1 = "7937eda4681660b4d6aeeecc2f7e1c81c8ee4e2f" uuid = "e7412a2a-1a6e-54c0-be00-318e2571c051" version = "1.3.5+0" [[OpenEXR]] deps = ["Colors", "FileIO", "OpenEXR_jll"] git-tree-sha1 = "327f53360fdb54df7ecd01e96ef1983536d1e633" uuid = "52e1d378-f018-4a11-a4be-720524705ac7" version = "0.3.2" [[OpenEXR_jll]] deps = ["Artifacts", "Imath_jll", "JLLWrappers", "Libdl", "Pkg", "Zlib_jll"] git-tree-sha1 = "923319661e9a22712f24596ce81c54fc0366f304" uuid = "18a262bb-aa17-5467-a713-aee519bc75cb" version = "3.1.1+0" [[OpenLibm_jll]] deps = ["Artifacts", "Libdl"] uuid = "05823500-19ac-5b8b-9628-191a04bc5112" [[OpenSSL_jll]] deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg"] git-tree-sha1 = "15003dcb7d8db3c6c857fda14891a539a8f2705a" uuid = "458c3c95-2e84-50aa-8efc-19380b2a3a95" version = "1.1.10+0" [[OpenSpecFun_jll]] deps = ["Artifacts", "CompilerSupportLibraries_jll", "JLLWrappers", "Libdl", "Pkg"] git-tree-sha1 = "13652491f6856acfd2db29360e1bbcd4565d04f1" uuid = "efe28fd5-8261-553b-a9e1-b2916fc3738e" version = "0.5.5+0" [[Opus_jll]] deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg"] git-tree-sha1 = "51a08fb14ec28da2ec7a927c4337e4332c2a4720" uuid = "91d4177d-7536-5919-b921-800302f37372" version = "1.3.2+0" [[OrderedCollections]] git-tree-sha1 = "85f8e6578bf1f9ee0d11e7bb1b1456435479d47c" uuid = "bac558e1-5e72-5ebc-8fee-abe8a469f55d" version = "1.4.1" [[OrdinaryDiffEq]] deps = ["Adapt", "ArrayInterface", "DataStructures", "DiffEqBase", "DocStringExtensions", "ExponentialUtilities", "FastClosures", "FiniteDiff", "ForwardDiff", "LinearAlgebra", "Logging", "LoopVectorization", "MacroTools", "MuladdMacro", "NLsolve", "Polyester", "PreallocationTools", "RecursiveArrayTools", "Reexport", "SparseArrays", "SparseDiffTools", "StaticArrays", "UnPack"] git-tree-sha1 = "6f76c887ddfd3f2a018ef1ee00a17b46bcf4886e" uuid = "1dea7af3-3e70-54e6-95c3-0bf5283fa5ed" version = "5.67.0" [[PCRE_jll]] deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg"] git-tree-sha1 = "b2a7af664e098055a7529ad1a900ded962bca488" uuid = "2f80f16e-611a-54ab-bc61-aa92de5b98fc" version = "8.44.0+0" [[PDMats]] deps = ["LinearAlgebra", "SparseArrays", "SuiteSparse"] git-tree-sha1 = "c8b8775b2f242c80ea85c83714c64ecfa3c53355" uuid = "90014a1f-27ba-587c-ab20-58faa44d9150" version = "0.11.3" [[PNGFiles]] deps = ["Base64", "CEnum", "ImageCore", "IndirectArrays", "OffsetArrays", "libpng_jll"] git-tree-sha1 = "6d105d40e30b635cfed9d52ec29cf456e27d38f8" uuid = "f57f5aa1-a3ce-4bc8-8ab9-96f992907883" version = "0.3.12" [[Packing]] deps = ["GeometryBasics"] git-tree-sha1 = "1155f6f937fa2b94104162f01fa400e192e4272f" uuid = "19eb6ba3-879d-56ad-ad62-d5c202156566" version = "0.4.2" [[PaddedViews]] deps = ["OffsetArrays"] git-tree-sha1 = "646eed6f6a5d8df6708f15ea7e02a7a2c4fe4800" uuid = "5432bcbf-9aad-5242-b902-cca2824c8663" version = "0.5.10" [[Pango_jll]] deps = ["Artifacts", "Cairo_jll", "Fontconfig_jll", "FreeType2_jll", "FriBidi_jll", "Glib_jll", "HarfBuzz_jll", "JLLWrappers", "Libdl", "Pkg"] git-tree-sha1 = "9bc1871464b12ed19297fbc56c4fb4ba84988b0d" uuid = "36c8627f-9965-5494-a995-c6b170f724f3" version = "1.47.0+0" [[Parameters]] deps = ["OrderedCollections", "UnPack"] git-tree-sha1 = "34c0e9ad262e5f7fc75b10a9952ca7692cfc5fbe" uuid = "d96e819e-fc66-5662-9728-84c9c7592b0a" version = "0.12.3" [[Parsers]] deps = ["Dates"] git-tree-sha1 = "ae4bbcadb2906ccc085cf52ac286dc1377dceccc" uuid = "69de0a69-1ddd-5017-9359-2bf0b02dc9f0" version = "2.1.2" [[Pixman_jll]] deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg"] git-tree-sha1 = "b4f5d02549a10e20780a24fce72bea96b6329e29" uuid = "30392449-352a-5448-841d-b1acce4e97dc" version = "0.40.1+0" [[Pkg]] deps = ["Artifacts", "Dates", "Downloads", "LibGit2", "Libdl", "Logging", "Markdown", "Printf", "REPL", "Random", "SHA", "Serialization", "TOML", "Tar", "UUIDs", "p7zip_jll"] uuid = "44cfe95a-1eb2-52ea-b672-e2afdf69b78f" [[PkgVersion]] deps = ["Pkg"] git-tree-sha1 = "a7a7e1a88853564e551e4eba8650f8c38df79b37" uuid = "eebad327-c553-4316-9ea0-9fa01ccd7688" version = "0.1.1" [[PlotUtils]] deps = ["ColorSchemes", "Colors", "Dates", "Printf", "Random", "Reexport", "Statistics"] git-tree-sha1 = "b084324b4af5a438cd63619fd006614b3b20b87b" uuid = "995b91a9-d308-5afd-9ec6-746e21dbc043" version = "1.0.15" [[PlutoUI]] deps = ["AbstractPlutoDingetjes", "Base64", "Dates", "Hyperscript", "HypertextLiteral", "IOCapture", "InteractiveUtils", "JSON", "Logging", "Markdown", "Random", "Reexport", "UUIDs"] git-tree-sha1 = "57312c7ecad39566319ccf5aa717a20788eb8c1f" uuid = "7f904dfe-b85e-4ff6-b463-dae2292396a8" version = "0.7.18" [[Polyester]] deps = ["ArrayInterface", "BitTwiddlingConvenienceFunctions", "CPUSummary", "IfElse", "ManualMemory", "PolyesterWeave", "Requires", "Static", "StrideArraysCore", "ThreadingUtilities"] git-tree-sha1 = "892b8d9dd3c7987a4d0fd320f0a421dd90b5d09d" uuid = "f517fe37-dbe3-4b94-8317-1923a5111588" version = "0.5.4" [[PolyesterWeave]] deps = ["BitTwiddlingConvenienceFunctions", "CPUSummary", "IfElse", "Static", "ThreadingUtilities"] git-tree-sha1 = "a3ff99bf561183ee20386aec98ab8f4a12dc724a" uuid = "1d0040c9-8b98-4ee7-8388-3f51789ca0ad" version = "0.1.2" [[PolygonOps]] git-tree-sha1 = "77b3d3605fc1cd0b42d95eba87dfcd2bf67d5ff6" uuid = "647866c9-e3ac-4575-94e7-e3d426903924" version = "0.1.2" [[PooledArrays]] deps = ["DataAPI", "Future"] git-tree-sha1 = "a193d6ad9c45ada72c14b731a318bedd3c2f00cf" uuid = "2dfb63ee-cc39-5dd5-95bd-886bf059d720" version = "1.3.0" [[PreallocationTools]] deps = ["Adapt", "ArrayInterface", "ForwardDiff", "LabelledArrays"] git-tree-sha1 = "ba819074442cd4c9bda1a3d905ec305f8acb37f2" uuid = "d236fae5-4411-538c-8e31-a6e3d9e00b46" version = "0.2.0" [[Preferences]] deps = ["TOML"] git-tree-sha1 = "00cfd92944ca9c760982747e9a1d0d5d86ab1e5a" uuid = "21216c6a-2e73-6563-6e65-726566657250" version = "1.2.2" [[PrettyTables]] deps = ["Crayons", "Formatting", "Markdown", "Reexport", "Tables"] git-tree-sha1 = "d940010be611ee9d67064fe559edbb305f8cc0eb" uuid = "08abe8d2-0d0c-5749-adfa-8a2ac140af0d" version = "1.2.3" [[Printf]] deps = ["Unicode"] uuid = "de0858da-6303-5e67-8744-51eddeeeb8d7" [[ProgressMeter]] deps = ["Distributed", "Printf"] git-tree-sha1 = "afadeba63d90ff223a6a48d2009434ecee2ec9e8" uuid = "92933f4c-e287-5a05-a399-4b506db050ca" version = "1.7.1" [[QuadGK]] deps = ["DataStructures", "LinearAlgebra"] git-tree-sha1 = "78aadffb3efd2155af139781b8a8df1ef279ea39" uuid = "1fd47b50-473d-5c70-9696-f719f8f3bcdc" version = "2.4.2" [[REPL]] deps = ["InteractiveUtils", "Markdown", "Sockets", "Unicode"] uuid = "3fa0cd96-eef1-5676-8a61-b3b8758bbffb" [[Random]] deps = ["Serialization"] uuid = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c" [[Ratios]] deps = ["Requires"] git-tree-sha1 = "01d341f502250e81f6fec0afe662aa861392a3aa" uuid = "c84ed2f1-dad5-54f0-aa8e-dbefe2724439" version = "0.4.2" [[RecipesBase]] git-tree-sha1 = "44a75aa7a527910ee3d1751d1f0e4148698add9e" uuid = "3cdcf5f2-1ef4-517c-9805-6587b60abb01" version = "1.1.2" [[RecursiveArrayTools]] deps = ["ArrayInterface", "ChainRulesCore", "DocStringExtensions", "FillArrays", "LinearAlgebra", "RecipesBase", "Requires", "StaticArrays", "Statistics", "ZygoteRules"] git-tree-sha1 = "c944fa4adbb47be43376359811c0a14757bdc8a8" uuid = "731186ca-8d62-57ce-b412-fbd966d074cd" version = "2.20.0" [[RecursiveFactorization]] deps = ["LinearAlgebra", "LoopVectorization", "Polyester", "StrideArraysCore", "TriangularSolve"] git-tree-sha1 = "b7edd69c796b30985ea6dfeda8504cdb7cf77e9f" uuid = "f2c3362d-daeb-58d1-803e-2bc74f2840b4" version = "0.2.5" [[Reexport]] git-tree-sha1 = "45e428421666073eab6f2da5c9d310d99bb12f9b" uuid = "189a3867-3050-52da-a836-e630ba90ab69" version = "1.2.2" [[RelocatableFolders]] deps = ["SHA", "Scratch"] git-tree-sha1 = "cdbd3b1338c72ce29d9584fdbe9e9b70eeb5adca" uuid = "05181044-ff0b-4ac5-8273-598c1e38db00" version = "0.1.3" [[Requires]] deps = ["UUIDs"] git-tree-sha1 = "4036a3bd08ac7e968e27c203d45f5fff15020621" uuid = "ae029012-a4dd-5104-9daa-d747884805df" version = "1.1.3" [[Rmath]] deps = ["Random", "Rmath_jll"] git-tree-sha1 = "bf3188feca147ce108c76ad82c2792c57abe7b1f" uuid = "79098fc4-a85e-5d69-aa6a-4863f24498fa" version = "0.7.0" [[Rmath_jll]] deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg"] git-tree-sha1 = "68db32dff12bb6127bac73c209881191bf0efbb7" uuid = "f50d1b31-88e8-58de-be2c-1cc44531875f" version = "0.3.0+0" [[SHA]] uuid = "ea8e919c-243c-51af-8825-aaa63cd721ce" [[SIMD]] git-tree-sha1 = "9ba33637b24341aba594a2783a502760aa0bff04" uuid = "fdea26ae-647d-5447-a871-4b548cad5224" version = "3.3.1" [[SIMDDualNumbers]] deps = ["ForwardDiff", "IfElse", "SLEEFPirates", "VectorizationBase"] git-tree-sha1 = "62c2da6eb66de8bb88081d20528647140d4daa0e" uuid = "3cdde19b-5bb0-4aaf-8931-af3e248e098b" version = "0.1.0" [[SIMDTypes]] git-tree-sha1 = "330289636fb8107c5f32088d2741e9fd7a061a5c" uuid = "94e857df-77ce-4151-89e5-788b33177be4" version = "0.1.0" [[SLEEFPirates]] deps = ["IfElse", "Static", "VectorizationBase"] git-tree-sha1 = "1410aad1c6b35862573c01b96cd1f6dbe3979994" uuid = "476501e8-09a2-5ece-8869-fb82de89a1fa" version = "0.6.28" [[ScanByte]] deps = ["Libdl", "SIMD"] git-tree-sha1 = "9cc2955f2a254b18be655a4ee70bc4031b2b189e" uuid = "7b38b023-a4d7-4c5e-8d43-3f3097f304eb" version = "0.3.0" [[SciMLBase]] deps = ["ArrayInterface", "CommonSolve", "ConstructionBase", "Distributed", "DocStringExtensions", "IteratorInterfaceExtensions", "LinearAlgebra", "Logging", "RecipesBase", "RecursiveArrayTools", "StaticArrays", "Statistics", "Tables", "TreeViews"] git-tree-sha1 = "ad2c7f08e332cc3bb05d33026b71fa0ef66c009a" uuid = "0bca4576-84f4-4d90-8ffe-ffa030f20462" version = "1.19.4" [[Scratch]] deps = ["Dates"] git-tree-sha1 = "0b4b7f1393cff97c33891da2a0bf69c6ed241fda" uuid = "6c6a2e73-6563-6170-7368-637461726353" version = "1.1.0" [[SentinelArrays]] deps = ["Dates", "Random"] git-tree-sha1 = "f45b34656397a1f6e729901dc9ef679610bd12b5" uuid = "91c51154-3ec4-41a3-a24f-3f23e20d615c" version = "1.3.8" [[Serialization]] uuid = "9e88b42a-f829-5b0c-bbe9-9e923198166b" [[Setfield]] deps = ["ConstructionBase", "Future", "MacroTools", "Requires"] git-tree-sha1 = "def0718ddbabeb5476e51e5a43609bee889f285d" uuid = "efcf1570-3423-57d1-acb7-fd33fddbac46" version = "0.8.0" [[SharedArrays]] deps = ["Distributed", "Mmap", "Random", "Serialization"] uuid = "1a1011a3-84de-559e-8e89-a11a2f7dc383" [[Showoff]] deps = ["Dates", "Grisu"] git-tree-sha1 = "91eddf657aca81df9ae6ceb20b959ae5653ad1de" uuid = "992d4aef-0814-514b-bc4d-f2e9a6c4116f" version = "1.0.3" [[SignedDistanceFields]] deps = ["Random", "Statistics", "Test"] git-tree-sha1 = "d263a08ec505853a5ff1c1ebde2070419e3f28e9" uuid = "73760f76-fbc4-59ce-8f25-708e95d2df96" version = "0.4.0" [[SimpleTraits]] deps = ["InteractiveUtils", "MacroTools"] git-tree-sha1 = "5d7e3f4e11935503d3ecaf7186eac40602e7d231" uuid = "699a6c99-e7fa-54fc-8d76-47d257e15c1d" version = "0.9.4" [[Sockets]] uuid = "6462fe0b-24de-5631-8697-dd941f90decc" [[SortingAlgorithms]] deps = ["DataStructures"] git-tree-sha1 = "b3363d7460f7d098ca0912c69b082f75625d7508" uuid = "a2af1166-a08f-5f64-846c-94a0d3cef48c" version = "1.0.1" [[SparseArrays]] deps = ["LinearAlgebra", "Random"] uuid = "2f01184e-e22b-5df5-ae63-d93ebab69eaf" [[SparseDiffTools]] deps = ["Adapt", "ArrayInterface", "Compat", "DataStructures", "FiniteDiff", "ForwardDiff", "LightGraphs", "LinearAlgebra", "Requires", "SparseArrays", "StaticArrays", "VertexSafeGraphs"] git-tree-sha1 = "0b0bd4086536520cfc452ba51b177be8cf634d91" uuid = "47a9eef4-7e08-11e9-0b38-333d64bd3804" version = "1.17.2" [[SpecialFunctions]] deps = ["ChainRulesCore", "IrrationalConstants", "LogExpFunctions", "OpenLibm_jll", "OpenSpecFun_jll"] git-tree-sha1 = "f0bccf98e16759818ffc5d97ac3ebf87eb950150" uuid = "276daf66-3868-5448-9aa4-cd146d93841b" version = "1.8.1" [[StackViews]] deps = ["OffsetArrays"] git-tree-sha1 = "46e589465204cd0c08b4bd97385e4fa79a0c770c" uuid = "cae243ae-269e-4f55-b966-ac2d0dc13c15" version = "0.1.1" [[Static]] deps = ["IfElse"] git-tree-sha1 = "e7bc80dc93f50857a5d1e3c8121495852f407e6a" uuid = "aedffcd0-7271-4cad-89d0-dc628f76c6d3" version = "0.4.0" [[StaticArrays]] deps = ["LinearAlgebra", "Random", "Statistics"] git-tree-sha1 = "3c76dde64d03699e074ac02eb2e8ba8254d428da" uuid = "90137ffa-7385-5640-81b9-e52037218182" version = "1.2.13" [[Statistics]] deps = ["LinearAlgebra", "SparseArrays"] uuid = "10745b16-79ce-11e8-11f9-7d13ad32a3b2" [[StatsAPI]] git-tree-sha1 = "1958272568dc176a1d881acb797beb909c785510" uuid = "82ae8749-77ed-4fe6-ae5f-f523153014b0" version = "1.0.0" [[StatsBase]] deps = ["DataAPI", "DataStructures", "LinearAlgebra", "LogExpFunctions", "Missings", "Printf", "Random", "SortingAlgorithms", "SparseArrays", "Statistics", "StatsAPI"] git-tree-sha1 = "eb35dcc66558b2dda84079b9a1be17557d32091a" uuid = "2913bbd2-ae8a-5f71-8c99-4fb6c76f3a91" version = "0.33.12" [[StatsFuns]] deps = ["ChainRulesCore", "IrrationalConstants", "LogExpFunctions", "Reexport", "Rmath", "SpecialFunctions"] git-tree-sha1 = "95072ef1a22b057b1e80f73c2a89ad238ae4cfff" uuid = "4c63d2b9-4356-54db-8cca-17b64c39e42c" version = "0.9.12" [[StrideArraysCore]] deps = ["ArrayInterface", "CloseOpenIntervals", "IfElse", "LayoutPointers", "ManualMemory", "Requires", "SIMDTypes", "Static", "ThreadingUtilities"] git-tree-sha1 = "f081c3c985849f4263fd0ed13e51feceed4ccc79" uuid = "7792a7ef-975c-4747-a70f-980b88e8d1da" version = "0.2.8" [[StructArrays]] deps = ["Adapt", "DataAPI", "StaticArrays", "Tables"] git-tree-sha1 = "2ce41e0d042c60ecd131e9fb7154a3bfadbf50d3" uuid = "09ab397b-f2b6-538f-b94a-2f83cf4a842a" version = "0.6.3" [[SuiteSparse]] deps = ["Libdl", "LinearAlgebra", "Serialization", "SparseArrays"] uuid = "4607b0f0-06f3-5cda-b6b1-a6196a1729e9" [[TOML]] deps = ["Dates"] uuid = "fa267f1f-6049-4f14-aa54-33bafae1ed76" [[TableTraits]] deps = ["IteratorInterfaceExtensions"] git-tree-sha1 = "c06b2f539df1c6efa794486abfb6ed2022561a39" uuid = "3783bdb8-4a98-5b6b-af9a-565f29a5fe9c" version = "1.0.1" [[Tables]] deps = ["DataAPI", "DataValueInterfaces", "IteratorInterfaceExtensions", "LinearAlgebra", "TableTraits", "Test"] git-tree-sha1 = "fed34d0e71b91734bf0a7e10eb1bb05296ddbcd0" uuid = "bd369af6-aec1-5ad0-b16a-f7cc5008161c" version = "1.6.0" [[Tar]] deps = ["ArgTools", "SHA"] uuid = "a4e569a6-e804-4fa4-b0f3-eef7a1d5b13e" [[TensorCore]] deps = ["LinearAlgebra"] git-tree-sha1 = "1feb45f88d133a655e001435632f019a9a1bcdb6" uuid = "62fd8b95-f654-4bbd-a8a5-9c27f68ccd50" version = "0.1.1" [[Test]] deps = ["InteractiveUtils", "Logging", "Random", "Serialization"] uuid = "8dfed614-e22c-5e08-85e1-65c5234f0b40" [[ThreadingUtilities]] deps = ["ManualMemory"] git-tree-sha1 = "03013c6ae7f1824131b2ae2fc1d49793b51e8394" uuid = "8290d209-cae3-49c0-8002-c8c24d57dab5" version = "0.4.6" [[TiffImages]] deps = ["ColorTypes", "DataStructures", "DocStringExtensions", "FileIO", "FixedPointNumbers", "IndirectArrays", "Inflate", "OffsetArrays", "PkgVersion", "ProgressMeter", "UUIDs"] git-tree-sha1 = "c342ae2abf4902d65a0b0bf59b28506a6e17078a" uuid = "731e570b-9d59-4bfa-96dc-6df516fadf69" version = "0.5.2" [[TranscodingStreams]] deps = ["Random", "Test"] git-tree-sha1 = "216b95ea110b5972db65aa90f88d8d89dcb8851c" uuid = "3bb67fe8-82b1-5028-8e26-92a6c54297fa" version = "0.9.6" [[TreeViews]] deps = ["Test"] git-tree-sha1 = "8d0d7a3fe2f30d6a7f833a5f19f7c7a5b396eae6" uuid = "a2a6695c-b41b-5b7d-aed9-dbfdeacea5d7" version = "0.3.0" [[TriangularSolve]] deps = ["CloseOpenIntervals", "IfElse", "LayoutPointers", "LinearAlgebra", "LoopVectorization", "Polyester", "Static", "VectorizationBase"] git-tree-sha1 = "ec9a310324dd2c546c07f33a599ded9c1d00a420" uuid = "d5829a12-d9aa-46ab-831f-fb7c9ab06edf" version = "0.1.8" [[UUIDs]] deps = ["Random", "SHA"] uuid = "cf7118a7-6976-5b1a-9a39-7adc72f591a4" [[UnPack]] git-tree-sha1 = "387c1f73762231e86e0c9c5443ce3b4a0a9a0c2b" uuid = "3a884ed6-31ef-47d7-9d2a-63182c4928ed" version = "1.0.2" [[Unicode]] uuid = "4ec0a83e-493e-50e2-b9ac-8f72acf5a8f5" [[UnicodeFun]] deps = ["REPL"] git-tree-sha1 = "53915e50200959667e78a92a418594b428dffddf" uuid = "1cfade01-22cf-5700-b092-accc4b62d6e1" version = "0.4.1" [[Unitful]] deps = ["ConstructionBase", "Dates", "LinearAlgebra", "Random"] git-tree-sha1 = "880f77d2cd4c6948e6bd55425b7b52f34dcd7f4b" uuid = "1986cc42-f94f-5a68-af5c-568840ba703d" version = "1.9.1" [[VectorizationBase]] deps = ["ArrayInterface", "CPUSummary", "HostCPUFeatures", "Hwloc", "IfElse", "LayoutPointers", "Libdl", "LinearAlgebra", "SIMDTypes", "Static"] git-tree-sha1 = "5239606cf3552aff43d79ecc75b1af1ce4625109" uuid = "3d5dd08c-fd9d-11e8-17fa-ed2836048c2f" version = "0.21.21" [[VertexSafeGraphs]] deps = ["LightGraphs"] git-tree-sha1 = "b9b450c99a3ca1cc1c6836f560d8d887bcbe356e" uuid = "19fa3120-7c27-5ec5-8db8-b0b0aa330d6f" version = "0.1.2" [[WeakRefStrings]] deps = ["DataAPI", "InlineStrings", "Parsers"] git-tree-sha1 = "c69f9da3ff2f4f02e811c3323c22e5dfcb584cfa" uuid = "ea10d353-3f73-51f8-a26c-33c1cb351aa5" version = "1.4.1" [[WoodburyMatrices]] deps = ["LinearAlgebra", "SparseArrays"] git-tree-sha1 = "de67fa59e33ad156a590055375a30b23c40299d3" uuid = "efce3f68-66dc-5838-9240-27a6d6f5f9b6" version = "0.5.5" [[XML2_jll]] deps = ["Artifacts", "JLLWrappers", "Libdl", "Libiconv_jll", "Pkg", "Zlib_jll"] git-tree-sha1 = "1acf5bdf07aa0907e0a37d3718bb88d4b687b74a" uuid = "02c8fc9c-b97f-50b9-bbe4-9be30ff0a78a" version = "2.9.12+0" [[XSLT_jll]] deps = ["Artifacts", "JLLWrappers", "Libdl", "Libgcrypt_jll", "Libgpg_error_jll", "Libiconv_jll", "Pkg", "XML2_jll", "Zlib_jll"] git-tree-sha1 = "91844873c4085240b95e795f692c4cec4d805f8a" uuid = "aed1982a-8fda-507f-9586-7b0439959a61" version = "1.1.34+0" [[Xorg_libX11_jll]] deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg", "Xorg_libxcb_jll", "Xorg_xtrans_jll"] git-tree-sha1 = "5be649d550f3f4b95308bf0183b82e2582876527" uuid = "4f6342f7-b3d2-589e-9d20-edeb45f2b2bc" version = "1.6.9+4" [[Xorg_libXau_jll]] deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg"] git-tree-sha1 = "4e490d5c960c314f33885790ed410ff3a94ce67e" uuid = "0c0b7dd1-d40b-584c-a123-a41640f87eec" version = "1.0.9+4" [[Xorg_libXdmcp_jll]] deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg"] git-tree-sha1 = "4fe47bd2247248125c428978740e18a681372dd4" uuid = "a3789734-cfe1-5b06-b2d0-1dd0d9d62d05" version = "1.1.3+4" [[Xorg_libXext_jll]] deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg", "Xorg_libX11_jll"] git-tree-sha1 = "b7c0aa8c376b31e4852b360222848637f481f8c3" uuid = "1082639a-0dae-5f34-9b06-72781eeb8cb3" version = "1.3.4+4" [[Xorg_libXrender_jll]] deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg", "Xorg_libX11_jll"] git-tree-sha1 = "19560f30fd49f4d4efbe7002a1037f8c43d43b96" uuid = "ea2f1a96-1ddc-540d-b46f-429655e07cfa" version = "0.9.10+4" [[Xorg_libpthread_stubs_jll]] deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg"] git-tree-sha1 = "6783737e45d3c59a4a4c4091f5f88cdcf0908cbb" uuid = "14d82f49-176c-5ed1-bb49-ad3f5cbd8c74" version = "0.1.0+3" [[Xorg_libxcb_jll]] deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg", "XSLT_jll", "Xorg_libXau_jll", "Xorg_libXdmcp_jll", "Xorg_libpthread_stubs_jll"] git-tree-sha1 = "daf17f441228e7a3833846cd048892861cff16d6" uuid = "c7cfdc94-dc32-55de-ac96-5a1b8d977c5b" version = "1.13.0+3" [[Xorg_xtrans_jll]] deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg"] git-tree-sha1 = "79c31e7844f6ecf779705fbc12146eb190b7d845" uuid = "c5fb5394-a638-5e4d-96e5-b29de1b5cf10" version = "1.4.0+3" [[Zlib_jll]] deps = ["Libdl"] uuid = "83775a58-1f1d-513f-b197-d71354ab007a" [[ZygoteRules]] deps = ["MacroTools"] git-tree-sha1 = "8c1a8e4dfacb1fd631745552c8db35d0deb09ea0" uuid = "700de1a5-db45-46bc-99cf-38207098b444" version = "0.2.2" [[isoband_jll]] deps = ["Libdl", "Pkg"] git-tree-sha1 = "a1ac99674715995a536bbce674b068ec1b7d893d" uuid = "9a68df92-36a6-505f-a73e-abb412b6bfb4" version = "0.2.2+0" [[libass_jll]] deps = ["Artifacts", "Bzip2_jll", "FreeType2_jll", "FriBidi_jll", "HarfBuzz_jll", "JLLWrappers", "Libdl", "Pkg", "Zlib_jll"] git-tree-sha1 = "5982a94fcba20f02f42ace44b9894ee2b140fe47" uuid = "0ac62f75-1d6f-5e53-bd7c-93b484bb37c0" version = "0.15.1+0" [[libfdk_aac_jll]] deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg"] git-tree-sha1 = "daacc84a041563f965be61859a36e17c4e4fcd55" uuid = "f638f0a6-7fb0-5443-88ba-1cc74229b280" version = "2.0.2+0" [[libpng_jll]] deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg", "Zlib_jll"] git-tree-sha1 = "94d180a6d2b5e55e447e2d27a29ed04fe79eb30c" uuid = "b53b4c65-9356-5827-b1ea-8c7a1a84506f" version = "1.6.38+0" [[libvorbis_jll]] deps = ["Artifacts", "JLLWrappers", "Libdl", "Ogg_jll", "Pkg"] git-tree-sha1 = "c45f4e40e7aafe9d086379e5578947ec8b95a8fb" uuid = "f27f6e37-5d2b-51aa-960f-b287f2bc3b7a" version = "1.3.7+0" [[nghttp2_jll]] deps = ["Artifacts", "Libdl"] uuid = "8e850ede-7688-5339-a07c-302acd2aaf8d" [[p7zip_jll]] deps = ["Artifacts", "Libdl"] uuid = "3f19e933-33d8-53b3-aaab-bd5110c3b7a0" [[x264_jll]] deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg"] git-tree-sha1 = "4fea590b89e6ec504593146bf8b988b2c00922b2" uuid = "1270edf5-f2f9-52d2-97e9-ab00b5d0237a" version = "2021.5.5+0" [[x265_jll]] deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg"] git-tree-sha1 = "ee567a171cce03570d77ad3a43e90218e38937a9" uuid = "dfaa095f-4041-5dcd-9319-2fabd8486b76" version = "3.5.0+0" """ # ╔═╡ Cell order: # ╟─5c7e4e72-3f69-11ec-258b-6bcfdc7b1d65 # ╟─0fea38f6-2c9e-43c6-bfc1-267ff220a0cc # ╟─aadd082a-3ed9-41b7-ba5e-7c5f77d59508 # ╟─011c89a7-f3d1-4cea-b71a-3d6f96a1801c # ╠═2200503c-605c-4dfd-878f-ffea2431f7ba # ╟─bde49eaf-3747-4edf-b712-3ee6f08ffe20 # ╠═c60a48e0-6f51-44b0-bd6e-332e04d2d332 # ╟─45762eb1-7404-4524-8d1d-788a70f8f5ef # ╟─b70d76d1-09f3-462a-b550-8fa51cb90c2c # ╟─8cc54cc2-5284-40b1-9a30-0ad6f725053f # ╠═503c8702-df0b-4495-8245-4ba6608431e3 # ╟─32a8b0ee-e61d-495b-ba53-56a6c6126950 # ╟─dd62433c-2274-4c6f-9e27-34bc2c620df1 # ╟─250d011e-57db-4d80-b16e-dbc28fec9fba # ╟─a0bf6d10-5d42-481b-8720-dadd3f727e8b # ╟─2b8ee43d-1225-4475-91c9-161cf612bfb2 # ╟─00000000-0000-0000-0000-000000000001 # ╟─00000000-0000-0000-0000-000000000002
[ 27, 7856, 261, 480, 29, 43, 5139, 544, 12, 3876, 544, 14, 35392, 7279, 489, 28613, 13, 20362, 27, 34345, 29, 1069, 12629, 14, 12093, 873, 14, 39390, 62, 2618, 62, 10599, 341, 13, 20362, 27, 456, 62, 30783, 29, 16, 12, 940, 198, 21017, 317, 32217, 13, 20362, 20922, 44386, 198, 2, 410, 15, 13, 1558, 13, 15, 198, 198, 3500, 2940, 2902, 198, 3500, 21365, 18274, 4487, 198, 198, 2, 2343, 243, 242, 28670, 22880, 94, 657, 5036, 64, 2548, 69, 21, 12, 17, 66, 24, 68, 12, 3559, 66, 21, 12, 65, 16072, 16, 12, 25674, 487, 17572, 64, 15, 535, 198, 27471, 198, 197, 3500, 18629, 7279, 489, 28613, 11, 6060, 35439, 11, 47529, 3163, 20477, 11, 32217, 10080, 198, 197, 11748, 23732, 44, 461, 494, 355, 24798, 494, 198, 197, 1, 28060, 351, 11046, 10392, 1, 198, 437, 198, 198, 2, 2343, 243, 242, 28670, 22880, 94, 642, 66, 22, 68, 19, 68, 4761, 12, 18, 69, 3388, 12, 1157, 721, 12, 25600, 65, 12, 21, 65, 12993, 17896, 22, 65, 16, 67, 2996, 198, 9132, 37811, 2, 17427, 7683, 360, 16198, 27782, 7663, 198, 198, 8890, 5039, 262, 22942, 286, 281, 1981, 966, 11, 717, 287, 257, 7138, 18620, 5202, 357, 64, 13, 74, 13, 64, 13, 4735, 1767, 13179, 737, 3244, 751, 257, 6718, 6783, 3381, 284, 7330, 257, 9158, 4272, 22942, 11, 290, 257, 6937, 11723, 15432, 329, 262, 2368, 15793, 13, 2312, 2829, 5202, 25412, 460, 307, 1807, 286, 355, 7306, 1143, 4981, 304, 13, 70, 13, 9151, 18842, 78, 12, 9888, 1225, 25990, 13, 198, 198, 1890, 3224, 10314, 304, 13, 70, 13, 766, 1058, 198, 58, 16, 16151, 5450, 1378, 16980, 544, 37649, 13, 12567, 13, 952, 14, 35392, 7279, 489, 28613, 13, 20362, 14, 7959, 14, 828, 198, 58, 17, 16151, 5450, 1378, 16980, 544, 37649, 13, 12567, 13, 952, 14, 37031, 3163, 20477, 13, 20362, 14, 7959, 14, 828, 198, 58, 18, 16151, 5450, 1378, 31628, 13, 73, 32176, 324, 22391, 80, 13, 2398, 14, 42861, 14, 34453, 690, 14, 1098, 62, 82, 6442, 13, 6494, 828, 198, 58, 19, 16151, 5450, 1378, 268, 13, 31266, 13, 2398, 14, 15466, 14, 7279, 489, 5592, 41052, 31364, 4008, 198, 198, 21017, 32900, 6096, 25, 220, 198, 198, 12, 787, 262, 27141, 15432, 10070, 351, 640, 357, 71, 600, 25, 340, 5732, 287, 262, 2656, 20922, 8, 220, 198, 12, 1487, 262, 1271, 286, 1661, 262, 18758, 2925, 1088, 262, 8159, 198, 12, 5202, 2214, 10007, 357, 68, 13, 70, 13, 12245, 290, 1051, 286, 262, 6718, 6783, 3381, 8, 198, 37811, 198, 198, 2, 2343, 243, 242, 28670, 22880, 94, 257, 2860, 2919, 17, 64, 12, 18, 276, 24, 12, 3901, 65, 22, 12, 7012, 20, 68, 12, 22, 66, 20, 69, 3324, 67, 3270, 33042, 198, 10962, 5189, 15842, 3419, 198, 198, 2, 2343, 243, 242, 28670, 22880, 94, 5534, 16, 66, 4531, 64, 22, 12, 69, 18, 67, 16, 12, 19, 344, 64, 12, 65, 4869, 64, 12, 18, 67, 21, 69, 4846, 64, 1507, 486, 66, 198, 27471, 198, 8818, 4735, 62, 2618, 62, 10599, 341, 7, 37659, 11, 27305, 8, 198, 220, 220, 220, 7377, 241, 28, 36439, 62, 41007, 291, 62, 27830, 7, 37659, 8, 198, 220, 220, 220, 7377, 241, 796, 11801, 41339, 7, 138, 241, 13, 55, 34, 13, 25928, 26, 18076, 2625, 12853, 4943, 198, 220, 220, 220, 7377, 111, 28, 138, 241, 13, 55, 34, 13, 25928, 26, 198, 220, 220, 220, 220, 198, 220, 220, 220, 1303, 46933, 12, 2618, 13179, 1088, 4318, 4067, 2644, 198, 220, 220, 220, 1312, 28, 5317, 7, 37659, 14, 17, 10, 16, 8, 198, 220, 220, 220, 334, 10779, 7, 138, 241, 13, 56, 38, 7874, 138, 241, 13, 56, 38, 58, 16, 7131, 72, 11, 72, 12962, 198, 220, 220, 220, 410, 16193, 138, 241, 13, 55, 38, 7874, 138, 241, 13, 55, 38, 58, 16, 7131, 72, 11, 72, 12962, 198, 220, 220, 220, 220, 198, 220, 220, 220, 1303, 986, 5556, 257, 6718, 6783, 3381, 284, 1220, 422, 4318, 4067, 198, 220, 220, 220, 288, 10779, 15, 13, 486, 198, 220, 220, 220, 334, 28, 84, 10, 67, 9, 7, 138, 241, 13, 55, 38, 7874, 138, 241, 13, 55, 38, 58, 16, 7131, 72, 11, 72, 12962, 198, 220, 220, 220, 410, 28, 85, 10, 67, 9, 7, 138, 241, 13, 56, 38, 7874, 138, 241, 13, 56, 38, 58, 16, 7131, 72, 11, 72, 12962, 198, 220, 220, 220, 220, 198, 220, 220, 220, 1303, 39232, 5344, 334, 11, 85, 287, 11723, 15793, 198, 220, 220, 220, 334, 84, 28, 37031, 19182, 7, 42063, 11, 42063, 13, 952, 6719, 66, 11, 27305, 8, 198, 220, 220, 220, 685, 12303, 58, 74, 22241, 84, 58, 16, 60, 329, 479, 28, 16, 25, 27305, 60, 198, 220, 220, 220, 410, 85, 28, 37031, 19182, 7, 42063, 11, 42063, 13, 952, 6719, 66, 11, 27305, 8, 198, 220, 220, 220, 685, 25093, 58, 74, 22241, 85, 58, 16, 60, 329, 479, 28, 16, 25, 27305, 60, 198, 220, 220, 220, 220, 198, 220, 220, 220, 1303, 42369, 605, 15432, 7515, 266, 220, 220, 220, 220, 198, 220, 220, 220, 266, 28, 20797, 32590, 15, 13, 486, 11, 37031, 19182, 7, 42063, 11, 42063, 13, 952, 6719, 66, 11, 27305, 10, 16, 4008, 198, 220, 220, 220, 220, 198, 220, 220, 220, 1441, 3551, 7, 12303, 828, 13564, 7, 25093, 828, 13564, 7, 86, 8, 198, 437, 198, 197, 198, 9132, 37811, 2235, 352, 13, 20647, 28373, 198, 198, 21017, 352, 13, 16, 1902, 1638, 276, 27782, 23948, 198, 198, 1174, 39390, 59, 62, 2618, 59, 62, 10599, 341, 7, 37659, 11, 27305, 8, 1174, 198, 198, 7248, 510, 281, 7306, 1143, 5202, 2214, 543, 10874, 286, 220, 198, 58, 4359, 312, 1767, 13179, 16151, 5450, 1378, 268, 13, 31266, 13, 2398, 14, 15466, 14, 49, 328, 312, 62, 2618, 828, 220, 198, 9541, 257, 6718, 6783, 3381, 11, 5556, 257, 27141, 3381, 13, 198, 37811, 198, 437, 198, 198, 2, 2343, 243, 242, 28670, 22880, 94, 362, 2167, 31938, 66, 12, 32417, 66, 12, 19, 7568, 67, 12, 23, 3695, 69, 12, 16658, 64, 1731, 3132, 69, 22, 7012, 198, 27471, 198, 197, 37659, 11, 27305, 28, 1433, 11, 19, 1303, 2164, 1638, 276, 7386, 2546, 357, 17899, 38342, 290, 11723, 8, 198, 197, 84, 11, 85, 11, 86, 28, 39390, 62, 2618, 62, 10599, 341, 7, 37659, 11, 27305, 8, 1303, 301, 363, 10446, 15432, 26515, 198, 197, 47728, 238, 117, 28, 37535, 15878, 82, 7, 84, 11, 84, 11, 85, 11, 85, 11, 15, 9, 86, 11, 16, 9, 86, 17414, 15, 11, 1129, 13, 3865, 9, 17, 9, 14415, 36563, 1303, 37535, 15878, 82, 1366, 4645, 198, 197, 1, 45677, 351, 16215, 262, 5202, 7032, 526, 198, 437, 198, 198, 2, 2343, 243, 242, 28670, 22880, 94, 275, 2934, 2920, 68, 1878, 12, 2718, 2857, 12, 19, 276, 69, 12, 65, 49517, 12, 18, 1453, 21, 69, 2919, 16658, 1238, 198, 9132, 37811, 21017, 352, 13, 17, 20768, 1096, 34884, 198, 198, 4342, 655, 530, 1981, 318, 23224, 379, 685, 37659, 9, 16, 14, 18, 11, 37659, 9, 16, 14, 18, 11, 27305, 9, 16, 14, 18, 60, 287, 262, 1115, 12, 19577, 2272, 286, 262, 5202, 7032, 526, 15931, 198, 198, 2, 2343, 243, 242, 28670, 22880, 94, 269, 1899, 64, 2780, 68, 15, 12, 21, 69, 4349, 12, 2598, 65, 15, 12, 17457, 21, 68, 12, 32148, 68, 3023, 67, 17, 67, 32148, 198, 27471, 198, 197, 7, 87, 11, 88, 11, 89, 35793, 37659, 9, 16, 14, 18, 11, 37659, 9, 16, 14, 18, 11, 27305, 9, 16, 14, 18, 8, 198, 197, 47728, 238, 120, 28, 35392, 82, 7, 47728, 238, 117, 11, 87, 11, 88, 11, 89, 8, 198, 437, 198, 198, 2, 2343, 243, 242, 28670, 22880, 94, 47996, 5237, 1765, 16, 12, 22, 26429, 12, 2231, 1731, 12, 23, 67, 16, 67, 12, 22, 3459, 64, 2154, 69, 23, 69, 20, 891, 198, 9132, 37811, 21017, 352, 13, 18, 317, 1012, 13416, 6803, 198, 198, 464, 2029, 4600, 35392, 82, 63, 23772, 27521, 510, 220, 47728, 238, 117, 11, 262, 4238, 2292, 11, 290, 584, 2622, 6805, 1626, 220, 47728, 238, 120, 13, 12429, 2953, 428, 966, 11, 345, 460, 2035, 4391, 284, 2665, 362, 393, 1100, 832, 262, 1306, 2438, 2685, 1174, 198, 1462, 2193, 517, 546, 703, 262, 3307, 355, 2622, 304, 13, 70, 13, 611, 345, 2227, 284, 625, 485, 4277, 3689, 220, 198, 5562, 547, 6163, 329, 345, 416, 262, 2665, 352, 13, 17, 23772, 13, 198, 37811, 198, 198, 2, 2343, 243, 242, 28670, 22880, 94, 275, 2154, 67, 4304, 67, 16, 12, 2931, 69, 18, 12, 39997, 64, 12, 65, 22730, 12, 23, 13331, 4349, 21101, 3829, 66, 17, 66, 198, 27471, 198, 197, 2, 20768, 2292, 318, 220, 198, 197, 198, 197, 8582, 241, 234, 41888, 87, 11, 88, 11, 89, 60, 220, 198, 197, 198, 197, 2, 290, 262, 1366, 4645, 29565, 6601, 19778, 16151, 4023, 1378, 73, 32176, 14706, 13, 12567, 13, 952, 14, 6601, 35439, 13, 20362, 14, 31284, 14, 4008, 220, 198, 197, 2, 284, 1700, 6608, 1863, 262, 1981, 338, 3108, 16062, 13, 220, 198, 197, 198, 197, 8582, 242, 112, 796, 6060, 19778, 7, 2389, 28, 5317, 58, 4357, 2124, 28, 43879, 2414, 58, 4357, 331, 28, 43879, 2414, 58, 4357, 1976, 28, 43879, 2414, 58, 4357, 256, 28, 43879, 2414, 58, 12962, 628, 197, 2, 632, 318, 262, 1281, 36948, 2163, 338, 5798, 284, 2148, 262, 1700, 13, 632, 318, 4145, 220, 198, 197, 2, 1593, 326, 428, 45193, 357, 63, 7353, 36942, 63, 8, 307, 6414, 351, 262, 1540, 332, 9058, 357, 63, 34453, 63, 8, 220, 198, 197, 2, 290, 262, 2938, 1700, 5794, 357, 63, 8582, 242, 112, 63, 737, 198, 197, 198, 197, 8818, 1281, 36942, 7, 34453, 11, 47728, 238, 117, 3712, 37535, 15878, 82, 26, 312, 28, 45688, 11, 47728, 239, 229, 28, 45688, 8, 198, 197, 220, 220, 220, 47764, 28, 7353, 14681, 62, 5431, 7, 34453, 11, 47728, 238, 117, 11, 312, 28, 312, 11, 47728, 239, 229, 28, 47728, 239, 229, 8, 198, 197, 220, 220, 220, 1303, 2860, 2368, 20435, 198, 197, 220, 220, 220, 1976, 28, 34453, 58, 18, 11, 47715, 198, 197, 220, 220, 220, 47764, 13, 89, 28, 89, 58, 47715, 198, 197, 220, 220, 220, 1441, 47764, 198, 197, 437, 198, 197, 198, 197, 2, 383, 15432, 2163, 4600, 8582, 248, 226, 63, 16507, 691, 319, 5202, 7032, 6492, 422, 198, 197, 2, 4600, 47728, 238, 117, 63, 357, 4758, 318, 5447, 2029, 8, 284, 39555, 378, 15432, 379, 262, 7368, 198, 197, 2, 2272, 12, 2435, 2292, 357, 68, 13, 70, 13, 883, 286, 3925, 737, 220, 198, 197, 198, 197, 8582, 248, 226, 796, 288, 24954, 83, 0, 198, 197, 198, 197, 2, 2735, 326, 790, 1517, 2622, 284, 3283, 503, 262, 29964, 318, 287, 1295, 11, 220, 198, 197, 2, 356, 14441, 510, 262, 1917, 8398, 287, 257, 2878, 357, 63, 35392, 82, 63, 8, 543, 220, 198, 197, 2, 6117, 284, 262, 4238, 6116, 11, 5202, 7032, 11, 3503, 13, 477, 326, 481, 307, 220, 198, 197, 2, 3306, 284, 24061, 20134, 1749, 625, 640, 357, 63, 24861, 104, 0, 7, 47728, 238, 120, 11, 47728, 239, 229, 8, 63, 737, 198, 197, 198, 197, 2, 292, 15140, 355, 257, 34441, 51, 29291, 25, 198, 197, 40, 16193, 9150, 28, 8582, 241, 234, 11, 22105, 28, 8582, 242, 112, 11, 626, 11683, 28, 8582, 248, 226, 11, 198, 197, 7353, 36948, 28, 7353, 36942, 11, 17143, 7307, 28, 47728, 238, 117, 8, 198, 197, 198, 197, 2, 41571, 34884, 422, 34441, 51, 29291, 25, 198, 197, 47728, 238, 121, 28, 35392, 82, 7, 40, 8, 198, 437, 198, 198, 2, 2343, 243, 242, 28670, 22880, 94, 807, 535, 4051, 535, 17, 12, 20, 30336, 12, 1821, 65, 16, 12, 24, 64, 1270, 12, 15, 324, 21, 69, 4761, 1120, 4310, 69, 198, 9132, 37811, 2235, 362, 4759, 752, 652, 3184, 5768, 198, 198, 464, 4600, 24861, 104, 0, 63, 2163, 869, 2174, 5860, 262, 2457, 6116, 1222, 5992, 4600, 47728, 238, 120, 13, 8582, 241, 234, 63, 16062, 13, 632, 635, 4406, 6608, 6515, 1863, 262, 22942, 287, 4600, 47728, 238, 120, 13, 8582, 242, 112, 44646, 220, 198, 26437, 5050, 284, 38350, 262, 1981, 22942, 357, 29487, 393, 3807, 8, 389, 2810, 379, 262, 886, 13, 198, 198, 21017, 362, 13, 16, 3082, 1133, 4759, 752, 652, 198, 37811, 198, 198, 2, 2343, 243, 242, 28670, 22880, 94, 44541, 66, 23, 36680, 12, 7568, 15, 65, 12, 2598, 3865, 12, 23, 22995, 12, 19, 7012, 39885, 5705, 3132, 68, 18, 198, 27471, 198, 197, 47728, 239, 229, 16193, 15, 13, 15, 11, 47728, 238, 120, 13, 47728, 239, 225, 13, 47728, 239, 229, 58, 17, 12962, 198, 197, 24861, 104, 0, 7, 47728, 238, 120, 11, 47728, 239, 229, 8, 198, 437, 198, 198, 2, 2343, 243, 242, 28670, 22880, 94, 3933, 64, 23, 65, 15, 1453, 12, 68, 5333, 67, 12, 33781, 65, 12, 7012, 4310, 12, 3980, 64, 21, 66, 43610, 3388, 1120, 198, 9132, 37811, 21017, 362, 13, 17, 15612, 1096, 4759, 752, 652, 37811, 198, 198, 2, 2343, 243, 242, 28670, 22880, 94, 49427, 21, 1731, 2091, 66, 12, 1828, 4524, 12, 19, 66, 21, 69, 12, 24, 68, 1983, 12, 2682, 15630, 17, 66, 38850, 7568, 16, 198, 27471, 198, 197, 429, 28, 13664, 7, 47728, 238, 120, 13, 8582, 242, 112, 13, 87, 8, 198, 197, 198, 197, 2435, 796, 24798, 494, 13, 19667, 7, 429, 8, 198, 197, 5324, 28, 44, 49375, 13, 31, 26282, 7, 685, 47728, 238, 120, 13, 8582, 242, 112, 13, 87, 58, 16, 25, 3, 2435, 11208, 20797, 7, 26705, 45, 11, 429, 22799, 2435, 15437, 1267, 198, 197, 22556, 28, 44, 49375, 13, 31, 26282, 7, 685, 47728, 238, 120, 13, 8582, 242, 112, 13, 88, 58, 16, 25, 3, 2435, 11208, 20797, 7, 26705, 45, 11, 429, 22799, 2435, 15437, 1267, 198, 197, 3019, 28, 44, 49375, 13, 31, 26282, 7, 685, 47728, 238, 120, 13, 8582, 242, 112, 13, 89, 58, 16, 25, 3, 2435, 11208, 20797, 7, 26705, 45, 11, 429, 22799, 2435, 15437, 1267, 198, 197, 198, 197, 44, 49375, 13, 2617, 62, 43810, 0, 7, 44, 49375, 13, 43810, 62, 2971, 28955, 198, 197, 69, 28, 44, 49375, 13, 11337, 7, 29268, 796, 357, 12865, 11, 10053, 4008, 198, 197, 64, 796, 24798, 494, 13, 31554, 271, 18, 7, 69, 58, 16, 11, 352, 4357, 87, 18242, 2625, 87, 1600, 2645, 9608, 2625, 88, 1600, 89, 18242, 2625, 89, 1600, 198, 197, 197, 7839, 2625, 46933, 1767, 13179, 1220, 46727, 1672, 4943, 197, 197, 198, 197, 44, 49375, 13, 6615, 0, 7, 64, 11, 5324, 11, 22556, 11, 3019, 11, 2815, 413, 5649, 28, 16, 13, 15, 11, 8043, 28, 25, 13424, 8, 198, 197, 44, 49375, 13, 1416, 1436, 0, 7, 64, 17414, 47728, 238, 120, 13, 8582, 242, 112, 13, 87, 58, 16, 60, 38430, 47728, 238, 120, 13, 8582, 242, 112, 13, 88, 58, 16, 60, 38430, 47728, 238, 120, 13, 8582, 242, 112, 13, 89, 58, 16, 60, 4357, 8043, 28, 25, 445, 8, 198, 197, 44, 49375, 13, 1416, 1436, 0, 7, 64, 17414, 47728, 238, 120, 13, 8582, 242, 112, 13, 87, 58, 429, 60, 38430, 47728, 238, 120, 13, 8582, 242, 112, 13, 88, 58, 429, 60, 38430, 47728, 238, 120, 13, 8582, 242, 112, 13, 89, 58, 429, 60, 4357, 8043, 28, 25, 14809, 8, 628, 197, 69, 198, 437, 198, 198, 2, 2343, 243, 242, 28670, 22880, 94, 8646, 67, 28555, 68, 12, 3553, 9945, 12, 19, 67, 1795, 12, 65, 1433, 68, 12, 9945, 66, 2078, 69, 721, 24, 69, 7012, 198, 27471, 198, 197, 2, 489, 83, 28, 1820, 29487, 7, 429, 8, 198, 197, 2, 1416, 1436, 0, 7, 489, 83, 17414, 8582, 241, 234, 58, 16, 60, 38430, 8582, 241, 234, 58, 17, 60, 38430, 8582, 241, 234, 58, 18, 11907, 8, 198, 197, 2, 1416, 1436, 0, 7, 489, 83, 17414, 47728, 238, 120, 13, 8582, 242, 112, 13, 87, 58, 437, 60, 38430, 47728, 238, 120, 13, 8582, 242, 112, 13, 88, 58, 437, 60, 38430, 47728, 238, 120, 13, 8582, 242, 112, 13, 89, 58, 437, 11907, 8, 198, 197, 2, 1416, 1436, 0, 7, 489, 83, 17414, 47728, 238, 120, 13, 8582, 242, 112, 13, 87, 58, 16, 60, 38430, 47728, 238, 120, 13, 8582, 242, 112, 13, 88, 58, 16, 60, 38430, 47728, 238, 120, 13, 8582, 242, 112, 13, 89, 58, 16, 11907, 8, 198, 437, 198, 198, 2, 2343, 243, 242, 28670, 22880, 94, 257, 15, 19881, 21, 67, 940, 12, 20, 67, 3682, 12, 40271, 65, 12, 5774, 1238, 12, 67, 2860, 18, 69, 47760, 68, 23, 65, 198, 9132, 37811, 21017, 362, 13, 18, 23535, 1672, 37811, 198, 198, 2, 2343, 243, 242, 28670, 22880, 94, 362, 65, 23, 1453, 3559, 67, 12, 1065, 1495, 12, 2598, 2425, 12, 6420, 66, 24, 12, 25948, 12993, 43610, 19881, 65, 17, 198, 27471, 198, 197, 361, 3991, 198, 197, 197, 79, 28, 5317, 7, 344, 346, 7, 429, 14, 1120, 4008, 198, 197, 197, 926, 28, 16, 25, 79, 25, 429, 198, 197, 197, 926, 28, 926, 13, 33747, 429, 12, 47033, 7, 926, 4008, 198, 197, 198, 197, 197, 10379, 28, 22179, 6978, 7, 29510, 15908, 3419, 553, 39390, 62, 2618, 62, 10599, 341, 13, 3149, 19, 4943, 198, 197, 197, 44, 49375, 13, 22105, 7, 69, 11, 10379, 11, 256, 83, 26, 5346, 21620, 796, 1160, 8, 466, 256, 198, 197, 197, 197, 2435, 21737, 796, 256, 198, 197, 197, 437, 198, 197, 197, 14565, 26198, 7, 10379, 8, 198, 197, 17772, 198, 197, 197, 37811, 28311, 2438, 287, 428, 2685, 284, 7716, 11034, 37811, 198, 197, 437, 198, 437, 198, 198, 2, 2343, 243, 242, 28670, 22880, 94, 27551, 12, 2388, 12, 2388, 12, 2388, 12, 8269, 18005, 198, 6489, 3843, 46, 62, 31190, 23680, 62, 51, 2662, 43, 62, 37815, 15365, 796, 37227, 198, 58, 10378, 82, 60, 198, 34, 18131, 44, 461, 494, 796, 366, 1485, 69, 18, 69, 40022, 12, 68, 5237, 65, 12, 20, 66, 3682, 12, 4089, 66, 21, 12, 487, 16, 69, 18, 65, 1878, 3459, 69, 15, 1, 198, 6601, 35439, 796, 366, 64, 6052, 66, 21, 69, 405, 12, 68, 3553, 67, 12, 20, 41580, 12, 65, 22, 65, 21, 12, 67, 23, 24943, 69, 18, 68, 3510, 66, 15, 1, 198, 35392, 7279, 489, 28613, 796, 366, 65, 5892, 69, 15, 66, 2624, 12, 20, 65, 22, 68, 12, 1157, 68, 24, 12, 16, 67, 22, 65, 12, 23721, 65, 17, 6814, 23, 65, 15, 68, 21, 1, 198, 37031, 3163, 20477, 796, 366, 21101, 23, 66, 28362, 69, 12, 16, 330, 69, 12, 3270, 64, 18, 12, 24, 67, 17, 65, 12, 21, 68, 2548, 67, 28694, 69, 47521, 1, 198, 3646, 9390, 10080, 796, 366, 22, 69, 24, 3023, 67, 5036, 12, 65, 5332, 68, 12, 19, 487, 21, 12, 65, 38380, 12, 67, 3609, 23539, 1954, 4846, 64, 23, 1, 198, 198, 58, 5589, 265, 60, 198, 34, 18131, 44, 461, 494, 796, 366, 93, 15, 13, 21, 13, 21, 1, 198, 6601, 35439, 796, 366, 93, 16, 13, 17, 13, 17, 1, 198, 35392, 7279, 489, 28613, 796, 366, 93, 15, 13, 18, 13, 18, 1, 198, 37031, 3163, 20477, 796, 366, 93, 15, 13, 17, 13, 2075, 1, 198, 3646, 9390, 10080, 796, 366, 93, 15, 13, 22, 13, 1507, 1, 198, 37811, 198, 198, 2, 2343, 243, 242, 28670, 22880, 94, 27551, 12, 2388, 12, 2388, 12, 2388, 12, 8269, 34215, 198, 6489, 3843, 46, 62, 10725, 5064, 6465, 62, 51, 2662, 43, 62, 37815, 15365, 796, 37227, 198, 2, 770, 2393, 318, 4572, 12, 27568, 532, 12857, 340, 3264, 318, 407, 13030, 198, 198, 30109, 23839, 5777, 33758, 11907, 198, 10378, 82, 796, 14631, 14993, 451, 2348, 29230, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 32642, 1453, 2919, 37601, 1495, 31911, 30763, 1795, 67, 19, 1878, 5705, 65, 9945, 3510, 64, 17, 64, 26429, 67, 15, 1, 198, 12303, 312, 796, 366, 21, 2481, 69, 2920, 3720, 12, 66, 48200, 12, 20, 67, 4051, 12, 23, 3104, 68, 12, 69, 12993, 19, 68, 18, 68, 23, 21652, 66, 1, 198, 9641, 796, 366, 16, 13, 15, 13, 16, 1, 198, 198, 30109, 23839, 3646, 9390, 35, 278, 316, 73, 274, 11907, 198, 10378, 82, 796, 14631, 47, 10025, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 15, 721, 37283, 25096, 68, 2998, 23, 9945, 2919, 18213, 18, 68, 22, 6814, 20, 65, 23, 65, 2078, 5332, 66, 15, 2079, 65, 26007, 1, 198, 12303, 312, 796, 366, 21, 68, 38205, 66, 4761, 12, 2996, 3682, 12, 1238, 3134, 12, 22, 22980, 12, 3682, 22136, 66, 2425, 5333, 1120, 1, 198, 9641, 796, 366, 16, 13, 16, 13, 15, 1, 198, 198, 30109, 23839, 51, 6037, 11907, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 3070, 68, 2713, 1120, 32883, 67, 4521, 1828, 1495, 2481, 67, 24970, 65, 22, 3901, 67, 27790, 7012, 1558, 18213, 15, 65, 20, 1, 198, 12303, 312, 796, 366, 1314, 1238, 344, 1415, 12, 1899, 66, 16, 12, 20, 69, 1795, 12, 11848, 66, 22, 12, 2816, 891, 6659, 65, 3365, 2327, 66, 1, 198, 9641, 796, 366, 15, 13, 18, 13, 19, 1, 198, 198, 30109, 48003, 11907, 198, 10378, 82, 796, 14631, 14993, 451, 2348, 29230, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 23, 2920, 1507, 47838, 67, 1314, 65, 18, 16562, 18654, 1558, 330, 21, 64, 22, 24294, 69, 34427, 2154, 66, 1433, 69, 22, 1, 198, 12303, 312, 796, 366, 3720, 68, 21, 64, 18, 397, 12, 20, 7568, 65, 12, 33580, 67, 12, 45418, 67, 12, 22, 2548, 64, 17, 64, 24, 2548, 64, 15, 68, 1, 198, 9641, 796, 366, 18, 13, 18, 13, 16, 1, 198, 198, 30109, 35320, 602, 11907, 198, 10378, 82, 796, 14631, 5216, 669, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 68, 6659, 66, 29022, 67, 17, 66, 23, 68, 2920, 3270, 1731, 1485, 19881, 65, 15, 11848, 18, 65, 2919, 33698, 3980, 66, 3720, 67, 1, 198, 12303, 312, 796, 366, 1983, 64, 22, 68, 40022, 12, 65, 18, 68, 21, 12, 1157, 68, 24, 12, 17, 65, 10210, 12, 15, 65, 24, 13381, 2624, 68, 23601, 1, 198, 9641, 796, 366, 15, 13, 19, 13, 16, 1, 198, 198, 30109, 28100, 33637, 11907, 198, 12303, 312, 796, 366, 15, 47984, 5705, 66, 20, 12, 67, 14686, 12, 3682, 68, 21, 12, 23, 67, 2078, 12, 891, 1065, 67, 6485, 40401, 69, 1, 198, 198, 30109, 3163, 77, 727, 72, 17410, 11907, 198, 10378, 82, 796, 14631, 14993, 451, 2348, 29230, 1600, 366, 29531, 1600, 366, 45442, 3163, 20477, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 69, 5774, 68, 38605, 69, 5774, 64, 2231, 1350, 344, 24, 66, 24, 276, 5607, 29334, 67, 18, 8635, 4089, 65, 16, 1765, 65, 24, 1, 198, 12303, 312, 796, 366, 721, 32642, 29807, 12, 4790, 1954, 12, 20, 68, 535, 12, 64, 3023, 69, 12, 2857, 1129, 65, 27936, 17464, 67, 1, 198, 9641, 796, 366, 15, 13, 16, 13, 15, 1, 198, 198, 30109, 19182, 39317, 11907, 198, 10378, 82, 796, 14631, 40073, 1600, 366, 1532, 40674, 1600, 366, 14993, 451, 2348, 29230, 1600, 366, 39618, 1600, 366, 50, 29572, 3163, 20477, 1600, 366, 45442, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 68, 20, 1983, 65, 1495, 5705, 1485, 68, 15, 66, 21, 67, 19, 69, 2791, 671, 3553, 2857, 2598, 66, 5824, 276, 891, 6659, 69, 23, 1, 198, 12303, 312, 796, 366, 19, 69, 7012, 22995, 66, 12, 15, 67, 6420, 12, 20, 18213, 15, 12, 24, 65, 18, 68, 12, 21, 39305, 3023, 1453, 3553, 64, 24, 1, 198, 9641, 796, 366, 18, 13, 16, 13, 1821, 1, 198, 198, 30109, 8001, 37199, 11907, 198, 12303, 312, 796, 366, 3980, 69, 1828, 67, 4761, 12, 16344, 21, 67, 12, 4089, 69, 16, 12, 2999, 69, 15, 12, 2919, 1860, 66, 2931, 2998, 66, 2091, 1, 198, 198, 30109, 16541, 6086, 11907, 198, 10378, 82, 796, 14631, 18557, 69, 1600, 366, 33351, 40778, 1600, 366, 8291, 66, 7656, 12124, 82, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 67, 29022, 4304, 69, 24591, 35890, 344, 45455, 68, 32459, 67, 3865, 5333, 67, 3980, 64, 4089, 64, 1270, 67, 22, 5036, 1, 198, 12303, 312, 796, 366, 3134, 66, 2998, 67, 5607, 12, 10210, 21101, 12, 20, 66, 17, 66, 12, 1878, 4790, 12, 64, 22, 69, 24, 66, 2624, 64, 49211, 65, 1, 198, 9641, 796, 366, 15, 13, 23, 13, 17, 1, 198, 198, 30109, 31554, 271, 2348, 7727, 907, 11907, 198, 10378, 82, 796, 14631, 14993, 451, 2348, 29230, 1600, 366, 29531, 1600, 366, 50, 29572, 3163, 20477, 1600, 366, 22911, 10711, 19044, 45977, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 2791, 46761, 66, 23, 67, 2481, 66, 23, 487, 20, 68, 18, 64, 24, 2091, 3720, 22148, 64, 19214, 22, 330, 2623, 4521, 18, 69, 22, 1, 198, 12303, 312, 796, 366, 12952, 4761, 65, 15, 69, 12, 17, 66, 2816, 12, 4051, 2718, 12, 24, 3609, 22, 12, 67, 42117, 65, 22, 64, 29626, 1120, 1, 198, 9641, 796, 366, 16, 13, 15, 13, 16, 1, 198, 198, 30109, 14881, 2414, 11907, 198, 12303, 312, 796, 366, 17, 64, 15, 69, 2598, 68, 18, 12, 21, 66, 5999, 12, 2816, 17457, 12, 5774, 68, 19, 12, 65, 37950, 67, 4089, 17457, 20, 69, 1, 198, 198, 30109, 13128, 5080, 41367, 3103, 574, 1240, 24629, 2733, 11907, 198, 10378, 82, 796, 14631, 45442, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 15630, 1485, 1558, 69, 4869, 2934, 23, 67, 344, 2075, 18213, 3134, 16072, 7568, 22, 68, 535, 66, 15, 67, 3312, 6052, 65, 2425, 65, 1, 198, 12303, 312, 796, 366, 21, 25870, 2670, 6659, 12, 19, 66, 17457, 12, 3682, 16072, 12, 65, 6888, 23, 12, 24136, 1495, 2934, 23, 17896, 19, 65, 1, 198, 9641, 796, 366, 15, 13, 16, 13, 16, 1, 198, 198, 30109, 33, 13344, 17, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 41, 3069, 36918, 11799, 1600, 366, 25835, 25404, 1600, 366, 47, 10025, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 1129, 64, 2327, 24669, 64, 6469, 68, 24940, 487, 4349, 15630, 1558, 64, 18, 64, 2598, 65, 3388, 891, 2327, 21652, 64, 17, 1, 198, 12303, 312, 796, 366, 21, 68, 2682, 65, 26704, 12, 19, 397, 67, 12, 46096, 66, 12, 65, 3459, 69, 12, 38339, 66, 2623, 7568, 64, 22, 64, 15, 1, 198, 9641, 796, 366, 16, 13, 15, 13, 23, 10, 15, 1, 198, 198, 30109, 34, 4834, 388, 11907, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 23349, 64, 24, 7252, 19, 64, 16, 69, 1954, 69, 17457, 2713, 65, 24, 1983, 3388, 69, 1860, 26704, 3270, 33646, 67, 2154, 68, 24, 1, 198, 12303, 312, 796, 366, 13331, 4846, 1157, 2816, 12, 2414, 68, 20, 12, 20, 69, 1485, 12, 65, 3070, 69, 12, 66, 1878, 21, 65, 40022, 18213, 6469, 1, 198, 9641, 796, 366, 15, 13, 19, 13, 16, 1, 198, 198, 30109, 22495, 7575, 11907, 198, 10378, 82, 796, 14631, 35, 689, 1600, 366, 18557, 69, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 65, 6888, 21, 21101, 21, 1453, 22, 3510, 68, 2414, 5332, 6888, 2231, 2327, 69, 21, 535, 1959, 12993, 2327, 3720, 64, 15, 69, 1238, 1, 198, 12303, 312, 796, 366, 21738, 1878, 35402, 12, 44980, 64, 12, 20, 36809, 12, 31027, 64, 12, 33638, 10210, 2414, 68, 3023, 3104, 1, 198, 9641, 796, 366, 15, 13, 16, 13, 16, 1, 198, 198, 30109, 8697, 2937, 388, 6874, 11907, 198, 10378, 82, 796, 14631, 39, 86, 17946, 1600, 366, 1532, 40674, 1600, 366, 45442, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 5774, 65, 15, 66, 24, 66, 21, 1453, 486, 1731, 67, 21, 66, 16, 69, 19, 344, 23, 21101, 44215, 17896, 1878, 24, 69, 3829, 65, 43564, 1, 198, 12303, 312, 796, 366, 17, 64, 15, 69, 19881, 18, 67, 12, 11848, 24, 66, 12, 2780, 69, 18, 12, 65, 15, 64, 24, 12, 23, 1415, 67, 2079, 16344, 22, 397, 24, 1, 198, 9641, 796, 366, 15, 13, 16, 13, 21, 1, 198, 198, 30109, 7902, 53, 11907, 198, 10378, 82, 796, 14631, 43806, 721, 57, 8019, 1600, 366, 35, 689, 1600, 366, 8979, 15235, 82, 14881, 1600, 366, 818, 1370, 13290, 654, 1600, 366, 44, 8899, 1600, 366, 47, 945, 364, 1600, 366, 27201, 276, 3163, 20477, 1600, 366, 31837, 20538, 3163, 20477, 1600, 366, 51, 2977, 1600, 366, 3118, 291, 1098, 1600, 366, 44898, 8134, 13290, 654, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 4524, 20198, 68, 5774, 2425, 3132, 67, 22, 66, 23628, 69, 2154, 65, 2920, 1959, 3865, 15630, 17, 65, 20, 6888, 18, 64, 23, 3559, 1, 198, 12303, 312, 796, 366, 29211, 276, 3104, 69, 12, 15, 65, 330, 12, 20, 6888, 15, 12, 5774, 67, 19, 12, 22, 65, 1433, 66, 1878, 20, 67, 405, 65, 1, 198, 9641, 796, 366, 15, 13, 24, 13, 940, 1, 198, 198, 30109, 34, 18131, 11907, 198, 10378, 82, 796, 14631, 34, 18131, 62, 73, 297, 1600, 366, 5216, 669, 1600, 366, 38, 8019, 62, 73, 297, 1600, 366, 18172, 1600, 366, 25835, 25404, 1600, 366, 47, 14208, 62, 73, 297, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 67, 15, 65, 18, 69, 23, 65, 19, 324, 1433, 21101, 15, 64, 1959, 3459, 66, 3134, 3459, 27720, 64, 20, 68, 21, 64, 1558, 65, 21, 65, 16, 65, 1, 198, 12303, 312, 796, 366, 19707, 69, 18, 44705, 12, 17, 64, 2682, 12, 47785, 66, 12, 65, 15377, 12, 23, 66, 2718, 69, 4089, 3695, 17430, 1, 198, 9641, 796, 366, 16, 13, 15, 13, 20, 1, 198, 198, 30109, 34, 18131, 44, 461, 494, 11907, 198, 10378, 82, 796, 14631, 14881, 2414, 1600, 366, 34, 18131, 1600, 366, 5216, 669, 1600, 366, 5777, 34551, 1600, 366, 8979, 9399, 1600, 366, 11146, 6030, 1600, 366, 10082, 15748, 15522, 873, 1600, 366, 14993, 451, 2348, 29230, 1600, 366, 44, 461, 494, 1600, 366, 37596, 1600, 366, 45442, 3163, 20477, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 47582, 487, 16, 66, 344, 18, 3609, 45418, 1878, 2670, 2780, 66, 10232, 66, 1314, 1453, 65, 4846, 66, 44980, 66, 2091, 1, 198, 12303, 312, 796, 366, 1485, 69, 18, 69, 40022, 12, 68, 5237, 65, 12, 20, 66, 3682, 12, 4089, 66, 21, 12, 487, 16, 69, 18, 65, 1878, 3459, 69, 15, 1, 198, 9641, 796, 366, 15, 13, 21, 13, 21, 1, 198, 198, 30109, 34, 18131, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 33, 13344, 17, 62, 73, 297, 1600, 366, 23252, 11250, 62, 73, 297, 1600, 366, 11146, 6030, 17, 62, 73, 297, 1600, 366, 38, 8019, 62, 73, 297, 1600, 366, 41, 3069, 36918, 11799, 1600, 366, 43, 57, 46, 62, 73, 297, 1600, 366, 25835, 25404, 1600, 366, 47, 844, 805, 62, 73, 297, 1600, 366, 47, 10025, 1600, 366, 55, 2398, 62, 8019, 55, 2302, 62, 73, 297, 1600, 366, 55, 2398, 62, 8019, 55, 13287, 62, 73, 297, 1600, 366, 57, 8019, 62, 73, 297, 1600, 366, 8019, 11134, 62, 73, 297, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 69, 17572, 17, 65, 2816, 67, 23, 23237, 1983, 10210, 27203, 64, 24, 64, 19, 69, 18, 487, 65, 24909, 20963, 1795, 69, 2079, 1, 198, 12303, 312, 796, 366, 23, 2682, 1954, 67, 5332, 12, 65, 15, 1453, 12, 3365, 1507, 12, 12865, 22, 12, 65, 5066, 535, 1350, 65, 46660, 64, 1, 198, 9641, 796, 366, 16, 13, 1433, 13, 16, 10, 15, 1, 198, 198, 30109, 21979, 7680, 82, 11907, 198, 10378, 82, 796, 14631, 29531, 1600, 366, 14402, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 1954, 67, 16, 69, 16, 68, 940, 67, 19, 68, 1731, 2718, 3901, 1065, 69, 12993, 7410, 330, 4089, 16, 67, 1415, 64, 4051, 65, 1731, 1, 198, 12303, 312, 796, 366, 6659, 64, 20, 69, 19, 18213, 12, 64, 24, 3510, 12, 44966, 64, 12, 7252, 22, 68, 12, 17, 64, 22, 69, 5066, 64, 1983, 67, 3132, 1, 198, 9641, 796, 366, 16, 13, 15, 13, 15, 1, 198, 198, 30109, 35491, 37766, 14055, 11907, 198, 10378, 82, 796, 14631, 40073, 1600, 366, 14993, 451, 2348, 29230, 1600, 366, 50, 29572, 3163, 20477, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 69, 44230, 68, 22, 68, 22, 66, 17464, 69, 23, 66, 24, 2075, 1120, 67, 5333, 65, 24, 32883, 65, 24, 330, 17, 1453, 31980, 1860, 1, 198, 12303, 312, 796, 366, 67, 15277, 67, 17, 68, 21, 12, 65, 1731, 66, 12, 1157, 68, 24, 12, 64, 17, 64, 18, 12, 17, 64, 17, 3609, 17, 9945, 66, 344, 19, 1, 198, 9641, 796, 366, 16, 13, 1157, 13, 16, 1, 198, 198, 30109, 29238, 5189, 23907, 2977, 11907, 198, 10378, 82, 796, 14631, 14993, 451, 2348, 29230, 1600, 366, 14402, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 24, 64, 16, 67, 46438, 2670, 4304, 2154, 2920, 1828, 25272, 2327, 65, 2327, 64, 18, 67, 48341, 65, 48000, 1270, 67, 5237, 1, 198, 12303, 312, 796, 366, 24, 68, 39647, 69, 23, 64, 12, 24, 64, 5607, 12, 3682, 67, 20, 12, 64, 24, 69, 16, 12, 344, 21, 65, 16072, 1314, 68, 17, 66, 15, 1, 198, 9641, 796, 366, 15, 13, 16, 13, 16, 1, 198, 198, 30109, 26125, 11505, 9492, 12786, 11907, 198, 10378, 82, 796, 14631, 19182, 39317, 1600, 366, 45442, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 22, 65, 23, 69, 2931, 67, 3365, 27696, 17896, 23, 7252, 1485, 67, 6420, 64, 5332, 2598, 65, 2718, 66, 23, 64, 16, 17896, 15630, 3312, 1, 198, 12303, 312, 796, 366, 21855, 21, 64, 1314, 65, 17, 12, 36809, 66, 12, 1821, 7568, 12, 44675, 16, 12, 2919, 64, 15, 2920, 3134, 12993, 64, 24, 1, 198, 9641, 796, 366, 15, 13, 16, 13, 19, 1, 198, 198, 30109, 43806, 721, 57, 8019, 11907, 198, 10378, 82, 796, 14631, 8291, 66, 7656, 12124, 82, 1600, 366, 57, 8019, 62, 73, 297, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 9395, 3865, 23734, 19, 67, 30484, 28485, 24, 64, 18, 69, 4089, 4089, 16, 67, 2079, 65, 2091, 68, 18, 9945, 22, 65, 21, 6814, 1, 198, 12303, 312, 796, 366, 24, 2598, 65, 16, 67, 2791, 12, 41172, 66, 12, 20, 1878, 67, 12, 6420, 69, 16, 12, 24, 2934, 1238, 69, 44994, 24943, 1, 198, 9641, 796, 366, 15, 13, 22, 13, 15, 1, 198, 198, 30109, 10258, 44029, 263, 11907, 198, 10378, 82, 796, 14631, 5216, 669, 1600, 366, 40386, 1600, 366, 14402, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 5333, 66, 20, 31380, 69, 2091, 67, 6420, 68, 39254, 68, 16, 67, 15, 66, 18, 1765, 4051, 38431, 2327, 1731, 1495, 6469, 66, 19, 1, 198, 12303, 312, 796, 366, 64, 17, 66, 330, 17885, 12, 65, 5892, 69, 12, 20, 25540, 12, 3459, 2481, 12, 1495, 18082, 1238, 45791, 66, 23, 1, 198, 9641, 796, 366, 15, 13, 19, 13, 15, 1, 198, 198, 30109, 10258, 27054, 6880, 11907, 198, 10378, 82, 796, 14631, 10258, 31431, 1600, 366, 5216, 669, 1600, 366, 13715, 12727, 49601, 1600, 366, 29531, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 64, 23, 4349, 69, 721, 3980, 21101, 4790, 12993, 7568, 19, 32128, 1959, 2079, 721, 4761, 14822, 20, 65, 23, 3104, 6469, 64, 1, 198, 12303, 312, 796, 366, 2327, 67, 21, 64, 40022, 12, 64, 32118, 12, 49934, 68, 12, 64, 21, 18213, 12, 16, 67, 5237, 65, 16315, 69, 17, 69, 19, 1, 198, 9641, 796, 366, 18, 13, 1314, 13, 15, 1, 198, 198, 30109, 10258, 31431, 11907, 198, 10378, 82, 796, 14631, 13715, 12727, 49601, 1600, 366, 29531, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 40839, 5036, 1731, 67, 5999, 68, 19, 64, 20, 19881, 20, 16072, 28256, 486, 64, 33638, 344, 15, 67, 16, 7252, 2327, 43239, 1, 198, 12303, 312, 796, 366, 18, 6814, 21601, 69, 22, 12, 3270, 5705, 12, 20, 64, 1899, 12, 65, 23, 64, 21, 12, 66, 11848, 2791, 66, 15, 65, 20370, 69, 1, 198, 9641, 796, 366, 15, 13, 1157, 13, 15, 1, 198, 198, 30109, 10258, 38469, 14106, 11907, 198, 10378, 82, 796, 14631, 10258, 31431, 1600, 366, 13715, 12727, 49601, 1600, 366, 14993, 451, 2348, 29230, 1600, 366, 13409, 24629, 2733, 1600, 366, 48346, 1600, 366, 51, 22854, 14055, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 2231, 891, 65, 32148, 7568, 17, 68, 4521, 69, 17, 21101, 17, 68, 2079, 1828, 2670, 65, 21, 25674, 67, 5607, 66, 24, 68, 15, 65, 21, 1, 198, 12303, 312, 796, 366, 66, 2623, 1157, 67, 1415, 12, 4531, 1954, 12, 20, 47159, 12, 24, 68, 21, 64, 12, 405, 3510, 67, 44218, 67, 18, 64, 19, 1, 198, 9641, 796, 366, 15, 13, 24, 13, 22, 1, 198, 198, 30109, 5216, 669, 11907, 198, 10378, 82, 796, 14631, 10258, 31431, 1600, 366, 13715, 12727, 49601, 1600, 366, 3041, 39344, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 38547, 65, 15, 276, 22, 65, 23, 65, 23, 2548, 7252, 21, 6888, 15, 64, 5774, 64, 324, 69, 16, 11848, 24, 1765, 16243, 344, 1821, 1, 198, 12303, 312, 796, 366, 20, 3609, 3270, 2931, 20, 12, 24, 64, 24, 65, 12, 3270, 5036, 12, 64, 24669, 12, 21, 69, 24, 1485, 66, 20356, 48630, 1, 198, 9641, 796, 366, 15, 13, 1065, 13, 23, 1, 198, 198, 30109, 17227, 50, 6442, 11907, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 3104, 64, 2998, 3559, 69, 38907, 27371, 4763, 23, 15630, 35549, 64, 20, 66, 17457, 20, 64, 17, 891, 21, 276, 21, 67, 16, 69, 1, 198, 12303, 312, 796, 366, 27203, 1821, 69, 940, 12, 65, 17, 69, 22, 12, 1157, 68, 24, 12, 2327, 67, 23, 12, 67, 48638, 68, 19, 1765, 15, 487, 17, 1, 198, 9641, 796, 366, 15, 13, 17, 13, 15, 1, 198, 198, 30109, 17227, 7004, 42712, 507, 11907, 198, 10378, 82, 796, 14631, 14155, 305, 33637, 1600, 366, 14402, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 22, 65, 23, 64, 6052, 67, 7012, 23, 1878, 22, 68, 18, 65, 3682, 69, 721, 397, 69, 27720, 2075, 486, 2713, 330, 34770, 69, 22, 1, 198, 12303, 312, 796, 366, 11848, 69, 22, 67, 37466, 12, 64, 37804, 12, 20, 276, 22, 12, 64, 4309, 66, 12, 6659, 68, 1270, 3865, 37967, 1120, 1, 198, 9641, 796, 366, 15, 13, 18, 13, 15, 1, 198, 198, 30109, 40073, 11907, 198, 10378, 82, 796, 14631, 14881, 2414, 1600, 366, 35, 689, 1600, 366, 13856, 320, 863, 25876, 1600, 366, 20344, 6169, 1600, 366, 9492, 5275, 18274, 4487, 1600, 366, 25835, 38, 270, 17, 1600, 366, 25835, 25404, 1600, 366, 14993, 451, 2348, 29230, 1600, 366, 9704, 2902, 1600, 366, 44, 8899, 1600, 366, 47, 10025, 1600, 366, 18557, 69, 1600, 366, 2200, 6489, 1600, 366, 29531, 1600, 366, 37596, 1600, 366, 32634, 1634, 1600, 366, 2484, 1144, 3163, 20477, 1600, 366, 50, 11603, 1600, 366, 50, 29572, 3163, 20477, 1600, 366, 48346, 1600, 366, 14402, 1600, 366, 52, 27586, 82, 1600, 366, 3118, 291, 1098, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 67, 344, 18, 68, 18, 5036, 64, 21, 28362, 3388, 68, 7252, 15, 65, 47582, 65, 17, 68, 23, 32118, 68, 24, 487, 2598, 1954, 1485, 1, 198, 12303, 312, 796, 366, 2682, 6814, 17, 21652, 12, 65, 1959, 65, 12, 20, 66, 1485, 12, 65, 15, 66, 22, 12, 330, 69, 1558, 1495, 1485, 67, 1238, 1, 198, 9641, 796, 366, 18, 13, 1821, 13, 15, 1, 198, 198, 30109, 7293, 5329, 15514, 43, 11127, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 25835, 25404, 8973, 198, 12303, 312, 796, 366, 68, 2791, 68, 405, 3695, 12, 22, 25150, 12, 4051, 1120, 12, 5892, 69, 22, 12, 1314, 69, 17457, 24, 3553, 69, 17, 3609, 1, 198, 198, 30109, 36687, 14881, 11907, 198, 10378, 82, 796, 14631, 14993, 451, 2348, 29230, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 69, 4524, 68, 24, 67, 20, 30460, 65, 4521, 1238, 65, 19, 344, 68, 2327, 67, 19, 66, 20, 64, 47448, 1860, 19, 17896, 20, 2857, 69, 19, 1, 198, 12303, 312, 796, 366, 23451, 65, 2713, 3365, 12, 1983, 3459, 12, 2920, 67, 18, 12, 11231, 15, 12, 4524, 64, 1558, 276, 19, 68, 22, 66, 24, 1, 198, 9641, 796, 366, 16, 13, 18, 13, 15, 1, 198, 198, 30109, 4264, 454, 11907, 198, 10378, 82, 796, 14631, 45442, 3163, 20477, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 24, 69, 33618, 2231, 67, 24, 2682, 17896, 39101, 276, 324, 33459, 2598, 18213, 1795, 9945, 67, 16, 69, 15, 68, 1350, 64, 22, 1, 198, 12303, 312, 796, 366, 67, 2548, 66, 11785, 64, 12, 3134, 4869, 12, 4310, 66, 21, 12, 65, 2079, 68, 12, 2425, 67, 17279, 65, 21, 68, 2079, 16, 1, 198, 9641, 796, 366, 15, 13, 20, 13, 22, 1, 198, 198, 30109, 34, 2433, 684, 11907, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 18, 69, 49517, 1558, 65, 49561, 67, 22, 7252, 1453, 15, 65, 3388, 397, 2857, 67, 24, 65, 3324, 1731, 6888, 23, 28485, 15, 67, 1, 198, 12303, 312, 796, 366, 64, 23, 535, 20, 65, 15, 68, 12, 15, 487, 64, 12, 20, 324, 19, 12, 23, 66, 1415, 12, 24, 1954, 67, 18, 1453, 1558, 2327, 69, 1, 198, 9641, 796, 366, 19, 13, 15, 13, 19, 1, 198, 198, 30109, 20418, 565, 291, 3163, 20477, 11907, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 19, 397, 18, 21101, 23, 46572, 558, 6888, 32417, 64, 20, 3559, 64, 1129, 64, 330, 1878, 2931, 66, 3134, 6659, 1860, 18, 1, 198, 12303, 312, 796, 366, 1899, 19214, 2598, 69, 12, 65, 18, 891, 12, 19, 66, 1828, 12, 5999, 2079, 12, 18, 721, 3829, 64, 15, 66, 24, 65, 2425, 1, 198, 9641, 796, 366, 15, 13, 20, 13, 15, 1, 198, 198, 30109, 35, 1961, 1045, 3163, 20477, 11907, 198, 10378, 82, 796, 14631, 19182, 39317, 1600, 366, 23579, 10100, 11627, 5736, 1600, 366, 14993, 451, 2348, 29230, 1600, 366, 6690, 30753, 19182, 33637, 1600, 366, 50, 979, 5805, 14881, 1600, 366, 45442, 3163, 20477, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 36244, 4521, 68, 21, 1129, 2623, 69, 11848, 535, 65, 3901, 67, 34583, 324, 19, 28460, 66, 24, 69, 22, 2860, 69, 22, 3609, 1, 198, 12303, 312, 796, 366, 41874, 31128, 1878, 12, 47512, 67, 12, 20, 69, 23, 67, 12, 5607, 3459, 12, 21033, 19881, 1433, 2713, 67, 19, 66, 1, 198, 9641, 796, 366, 15, 13, 17, 13, 15, 1, 198, 198, 30109, 6601, 17614, 11907, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 535, 2154, 65, 1558, 23195, 43193, 1765, 2857, 15630, 24, 68, 20, 69, 23, 1433, 2327, 4089, 16, 69, 1485, 344, 64, 20, 66, 23, 1, 198, 12303, 312, 796, 366, 24, 64, 4846, 17, 69, 24, 66, 12, 21, 7568, 15, 12, 1157, 68, 24, 12, 15, 68, 20, 67, 12, 66, 49489, 65, 23, 65, 20, 1453, 23, 64, 1, 198, 9641, 796, 366, 16, 13, 24, 13, 15, 1, 198, 198, 30109, 6601, 35439, 11907, 198, 10378, 82, 796, 14631, 40073, 1600, 366, 6601, 17614, 1600, 366, 29783, 1600, 366, 818, 13658, 5497, 1063, 1600, 366, 37787, 39317, 11627, 5736, 1600, 366, 14993, 451, 2348, 29230, 1600, 366, 9704, 2902, 1600, 366, 17140, 654, 1600, 366, 27201, 276, 3163, 20477, 1600, 366, 35700, 51, 2977, 1600, 366, 18557, 69, 1600, 366, 2200, 6489, 1600, 366, 3041, 39344, 1600, 366, 50, 24707, 2348, 7727, 907, 1600, 366, 48346, 1600, 366, 10962, 15721, 896, 1600, 366, 51, 2977, 1600, 366, 3118, 291, 1098, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 67, 41172, 69, 40090, 2231, 65, 5066, 16072, 4521, 6888, 64, 2919, 11848, 24, 64, 24, 2327, 3064, 23, 1350, 24, 65, 29143, 1, 198, 12303, 312, 796, 366, 64, 6052, 66, 21, 69, 405, 12, 68, 3553, 67, 12, 20, 41580, 12, 65, 22, 65, 21, 12, 67, 23, 24943, 69, 18, 68, 3510, 66, 15, 1, 198, 9641, 796, 366, 16, 13, 17, 13, 17, 1, 198, 198, 30109, 6601, 44909, 942, 11907, 198, 10378, 82, 796, 14631, 40073, 1600, 366, 9492, 5275, 18274, 4487, 1600, 366, 35422, 1068, 5216, 26448, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 22, 67, 24, 67, 33400, 69, 3023, 22291, 69, 22, 891, 9945, 65, 21, 31952, 67, 45326, 27260, 68, 26912, 14822, 2999, 1, 198, 12303, 312, 796, 366, 39570, 276, 65, 18, 65, 12, 2079, 535, 12, 20, 68, 2425, 12, 23, 67, 17, 67, 12, 23, 1959, 21101, 15, 64, 24, 66, 5036, 23, 1, 198, 9641, 796, 366, 15, 13, 1507, 13, 940, 1, 198, 198, 30109, 6601, 11395, 9492, 32186, 11907, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 65, 16072, 1157, 5774, 65, 3720, 2078, 4846, 2718, 13331, 15, 891, 21, 67, 2598, 2623, 1765, 67, 5036, 3388, 2713, 66, 17457, 21, 1, 198, 12303, 312, 796, 366, 68, 17, 67, 17279, 64, 15, 12, 24, 67, 2078, 12, 4051, 1350, 12, 1795, 69, 15, 12, 15801, 65, 1350, 1238, 64, 44578, 1, 198, 9641, 796, 366, 16, 13, 15, 13, 15, 1, 198, 198, 30109, 35, 689, 11907, 198, 10378, 82, 796, 14631, 18557, 69, 8973, 198, 12303, 312, 796, 366, 671, 17, 6888, 2154, 12, 2548, 6420, 12, 3270, 2231, 12, 4089, 21855, 12, 17896, 15, 42691, 2624, 68, 3312, 64, 1, 198, 198, 30109, 13856, 320, 863, 25876, 11907, 198, 10378, 82, 796, 14631, 44, 8899, 8973, 198, 12303, 312, 796, 366, 23, 11848, 1415, 1821, 69, 12, 2857, 2327, 12, 41734, 65, 12, 64, 19, 397, 12, 29416, 65, 4089, 7568, 19, 67, 397, 1, 198, 198, 30109, 28813, 36, 80, 14881, 11907, 198, 10378, 82, 796, 14631, 19182, 39317, 1600, 366, 35491, 37766, 14055, 1600, 366, 35, 1961, 1045, 3163, 20477, 1600, 366, 6601, 44909, 942, 1600, 366, 20344, 2455, 507, 1600, 366, 23579, 10100, 11627, 5736, 1600, 366, 22968, 30507, 2701, 1600, 366, 39746, 28813, 1600, 366, 22203, 36918, 11799, 1600, 366, 29993, 876, 36949, 690, 1600, 366, 17822, 11978, 3163, 20477, 1600, 366, 14993, 451, 2348, 29230, 1600, 366, 11187, 2667, 1600, 366, 44, 377, 2860, 14155, 305, 1600, 366, 15419, 29127, 50, 6442, 1600, 366, 48944, 1600, 366, 6719, 439, 5040, 33637, 1600, 366, 18557, 69, 1600, 366, 6690, 30753, 19182, 33637, 1600, 366, 6690, 30753, 41384, 1634, 1600, 366, 3041, 39344, 1600, 366, 39618, 1600, 366, 50, 979, 5805, 14881, 1600, 366, 7248, 3245, 1600, 366, 50, 29572, 3163, 20477, 1600, 366, 45442, 3163, 20477, 1600, 366, 48346, 1600, 366, 5606, 578, 50, 29572, 1600, 366, 57, 35641, 1258, 37766, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 20, 66, 18, 67, 42802, 1860, 16072, 17, 6814, 5333, 344, 20, 535, 16, 69, 20, 344, 26073, 487, 24, 3324, 4531, 66, 3553, 66, 1, 198, 12303, 312, 796, 366, 17, 65, 20, 69, 48602, 67, 12, 67, 34427, 12, 20, 65, 3324, 12, 44821, 69, 12, 4761, 67, 2425, 66, 2425, 46900, 68, 1, 198, 9641, 796, 366, 21, 13, 4304, 13, 15, 1, 198, 198, 30109, 28813, 25468, 11907, 198, 10378, 82, 796, 14631, 45442, 3163, 20477, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 66, 1507, 68, 4089, 66, 7012, 28011, 66, 21, 66, 1495, 67, 16, 66, 18, 65, 47202, 68, 19, 65, 2091, 1795, 6888, 50148, 28256, 1, 198, 12303, 312, 796, 366, 24136, 7012, 4310, 65, 12, 66, 21, 67, 23, 12, 20, 39449, 12, 65, 15, 2414, 12, 16, 64, 24, 67, 3559, 330, 1821, 66, 20, 1, 198, 9641, 796, 366, 16, 13, 15, 13, 18, 1, 198, 198, 30109, 28813, 37766, 11907, 198, 10378, 82, 796, 14631, 11187, 16870, 24629, 2733, 1600, 366, 26705, 32755, 776, 1600, 366, 29531, 1600, 366, 13409, 24629, 2733, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 18, 27800, 67, 330, 69, 3134, 66, 2623, 4309, 67, 18, 19082, 2931, 69, 19, 66, 1065, 66, 23451, 3609, 19, 9945, 65, 4531, 64, 1, 198, 12303, 312, 796, 366, 65, 40427, 66, 3695, 69, 12, 23, 7568, 18, 12, 4309, 66, 21, 12, 40248, 64, 12, 23, 68, 2931, 22, 31911, 65, 1415, 65, 1, 198, 9641, 796, 366, 16, 13, 19, 13, 15, 1, 198, 198, 30109, 40961, 3163, 20477, 11907, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 21, 64, 1120, 67, 33942, 1495, 64, 1433, 2414, 66, 2079, 64, 23, 68, 23, 1129, 68, 2713, 3104, 66, 2425, 68, 18, 330, 15, 66, 22, 1, 198, 12303, 312, 796, 366, 18, 66, 2327, 2857, 344, 12, 23, 67, 2079, 12, 19, 69, 20, 68, 12, 64, 22985, 12, 5333, 1765, 940, 65, 405, 3609, 18, 1, 198, 9641, 796, 366, 15, 13, 17, 13, 1065, 1, 198, 198, 30109, 20344, 1817, 11907, 198, 10378, 82, 796, 14631, 14993, 451, 2348, 29230, 1600, 366, 48346, 1600, 366, 29668, 17614, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 23, 2718, 66, 5999, 68, 41948, 2231, 6469, 68, 2998, 39380, 11848, 65, 7012, 22, 29626, 2414, 487, 22, 66, 2075, 65, 24, 67, 1, 198, 12303, 312, 796, 366, 65, 19, 69, 2682, 68, 6469, 12, 68, 3695, 67, 12, 4051, 64, 20, 12, 38956, 64, 12, 69, 4089, 68, 4531, 67, 21, 68, 23, 69, 22, 1, 198, 9641, 796, 366, 15, 13, 940, 13, 21, 1, 198, 198, 30109, 20344, 6169, 11907, 198, 10378, 82, 796, 14631, 29531, 1600, 366, 32634, 1634, 1600, 366, 50, 11603, 8973, 198, 12303, 312, 796, 366, 23, 7012, 4531, 68, 1238, 12, 26279, 66, 12, 20, 65, 21, 69, 12, 24, 27277, 12, 24, 2857, 22544, 1238, 1453, 16, 65, 1, 198, 198, 30109, 20344, 2455, 507, 11907, 198, 10378, 82, 796, 14631, 35491, 37766, 14055, 1600, 366, 33762, 3163, 20477, 1600, 366, 14993, 451, 2348, 29230, 1600, 366, 5760, 44, 1381, 1600, 366, 18557, 69, 1600, 366, 4507, 324, 38, 42, 1600, 366, 29531, 1600, 366, 50, 29572, 3163, 20477, 1600, 366, 13409, 24629, 2733, 1600, 366, 48346, 1600, 366, 29668, 14881, 1600, 366, 29668, 37, 13271, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 4761, 17896, 6814, 24, 68, 1129, 69, 3459, 67, 2931, 19881, 2481, 65, 20, 69, 31027, 22, 64, 15, 11848, 31794, 65, 344, 17, 7252, 1, 198, 12303, 312, 796, 366, 3132, 66, 1731, 68, 940, 12, 64, 27057, 12, 20, 37804, 12, 65, 23, 1765, 12, 3720, 3388, 330, 67, 15, 36243, 69, 1, 198, 9641, 796, 366, 15, 13, 1495, 13, 1731, 1, 198, 198, 30109, 23579, 10100, 11627, 5736, 11907, 198, 10378, 82, 796, 14631, 25835, 38, 270, 17, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 65, 22186, 2682, 67, 1507, 3865, 67, 2154, 2078, 4531, 65, 28896, 66, 36243, 64, 21, 68, 1507, 486, 2998, 5607, 69, 15, 65, 1, 198, 12303, 312, 796, 366, 487, 3077, 21526, 12, 19, 891, 22, 12, 20, 3682, 67, 12, 11848, 65, 22, 12, 66, 2931, 67, 18, 64, 3720, 16072, 3609, 1, 198, 9641, 796, 366, 15, 13, 23, 13, 21, 1, 198, 198, 30109, 10002, 82, 11907, 198, 10378, 82, 796, 14631, 28100, 33637, 1600, 366, 25835, 34, 21886, 1600, 366, 26245, 29046, 8973, 198, 12303, 312, 796, 366, 69, 3559, 64, 28872, 69, 12, 66, 1238, 64, 12, 19, 324, 19, 12, 23, 4309, 66, 12, 69, 21, 65, 1065, 2857, 4521, 16, 66, 21, 1, 198, 198, 30109, 8419, 26254, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 41, 3069, 36918, 11799, 1600, 366, 25835, 25404, 1600, 366, 47, 10025, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 18, 69, 18, 64, 1495, 486, 13331, 22, 24940, 68, 24, 65, 35549, 68, 15, 69, 22, 64, 39118, 66, 37680, 68, 23, 1828, 11848, 21, 67, 1, 198, 12303, 312, 796, 366, 20, 3609, 44103, 9945, 12, 11848, 67, 16, 12, 20, 68, 5066, 12, 65, 3553, 67, 12, 67, 1731, 64, 5333, 7568, 405, 69, 20, 1, 198, 9641, 796, 366, 17, 13, 17, 13, 18, 10, 15, 1, 198, 198, 30109, 30639, 2419, 271, 3673, 341, 11907, 198, 10378, 82, 796, 14631, 19182, 39317, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 24, 64, 324, 23, 1065, 21855, 22, 66, 19, 66, 15, 2548, 6814, 22, 66, 397, 20, 64, 3312, 24, 69, 35126, 68, 21, 68, 18, 3609, 39101, 1, 198, 12303, 312, 796, 366, 6814, 20, 66, 1959, 67, 15, 12, 13331, 22, 67, 12, 44169, 68, 12, 3459, 1765, 12, 18213, 1959, 65, 15, 64, 23, 1129, 2920, 1, 198, 9641, 796, 366, 16, 13, 16, 13, 16, 1, 198, 198, 30109, 3109, 8071, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 41, 3069, 36918, 11799, 1600, 366, 25835, 25404, 1600, 366, 47, 10025, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 65, 18, 65, 16344, 2999, 68, 4089, 8432, 13331, 20, 12993, 44230, 36879, 43134, 66, 2816, 4089, 66, 14877, 10210, 17, 69, 1, 198, 12303, 312, 796, 366, 17, 68, 21, 22186, 1314, 12, 5999, 65, 20, 12, 49542, 65, 12, 11848, 1899, 12, 2075, 66, 2999, 64, 2327, 64, 1264, 1, 198, 9641, 796, 366, 17, 13, 17, 13, 940, 10, 15, 1, 198, 198, 30109, 16870, 35470, 18274, 2410, 11907, 198, 10378, 82, 796, 14631, 19182, 39317, 1600, 366, 14993, 451, 2348, 29230, 1600, 366, 18557, 69, 1600, 366, 39618, 1600, 366, 50, 29572, 3163, 20477, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 21101, 2670, 43665, 66, 17, 64, 16, 69, 5999, 65, 1350, 15, 69, 6814, 26007, 66, 4349, 66, 22148, 64, 1959, 1899, 3682, 324, 1, 198, 12303, 312, 796, 366, 67, 19, 67, 29326, 67, 18, 12, 2718, 4304, 12, 20, 69, 22, 68, 12, 1878, 891, 12, 64, 940, 66, 1821, 28567, 66, 1507, 1, 198, 9641, 796, 366, 16, 13, 940, 13, 16, 1, 198, 198, 30109, 5777, 7378, 7156, 11907, 198, 10378, 82, 796, 14631, 5777, 7378, 7156, 62, 73, 297, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 65, 3553, 68, 18, 330, 1350, 1828, 69, 23, 34137, 65, 19, 65, 20, 487, 2791, 64, 4524, 39647, 1558, 5036, 16, 64, 24, 535, 23, 1, 198, 12303, 312, 796, 366, 66, 23, 4761, 1270, 67, 15, 12, 64, 24403, 12, 1157, 68, 24, 12, 16, 65, 3559, 12, 67, 22, 68, 1350, 19, 68, 2425, 2154, 64, 1, 198, 9641, 796, 366, 15, 13, 19, 13, 16, 1, 198, 198, 30109, 5777, 7378, 7156, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 33, 13344, 17, 62, 73, 297, 1600, 366, 11146, 6030, 17, 62, 73, 297, 1600, 366, 30214, 33, 19830, 62, 73, 297, 1600, 366, 41, 3069, 36918, 11799, 1600, 366, 43, 10067, 62, 73, 297, 1600, 366, 25835, 25404, 1600, 366, 46, 1130, 62, 73, 297, 1600, 366, 11505, 31127, 62, 73, 297, 1600, 366, 18257, 385, 62, 73, 297, 1600, 366, 47, 10025, 1600, 366, 57, 8019, 62, 73, 297, 1600, 366, 8019, 562, 62, 73, 297, 1600, 366, 8019, 16344, 74, 62, 64, 330, 62, 73, 297, 1600, 366, 8019, 20867, 41907, 62, 73, 297, 1600, 366, 87, 18897, 62, 73, 297, 1600, 366, 87, 22980, 62, 73, 297, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 67, 23, 64, 38907, 46589, 68, 1270, 3324, 330, 34808, 65, 1120, 66, 2999, 1558, 7568, 67, 3134, 69, 2481, 67, 16, 68, 20, 69, 1, 198, 12303, 312, 796, 366, 65, 1828, 64, 21, 69, 6469, 12, 17, 69, 2996, 12, 1120, 3510, 12, 64, 20, 65, 17, 12, 35273, 397, 3559, 21855, 19, 68, 20, 1, 198, 9641, 796, 366, 19, 13, 19, 13, 15, 10, 15, 1, 198, 198, 30109, 5777, 34551, 11907, 198, 10378, 82, 796, 14631, 23839, 5777, 33758, 1600, 366, 5777, 34551, 62, 73, 297, 1600, 366, 14993, 451, 2348, 29230, 1600, 366, 33907, 43, 62, 73, 297, 1600, 366, 36698, 4972, 1600, 366, 3041, 39344, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 38380, 21101, 27326, 13331, 1828, 66, 19, 1765, 330, 16344, 16, 69, 15498, 20, 69, 2934, 1415, 276, 65, 1795, 67, 4846, 66, 1, 198, 12303, 312, 796, 366, 22, 64, 16, 535, 21, 6888, 12, 4309, 891, 12, 3270, 69, 20, 12, 5999, 10210, 12, 18, 64, 2154, 2816, 66, 2931, 33660, 1, 198, 9641, 796, 366, 16, 13, 19, 13, 20, 1, 198, 198, 30109, 5777, 34551, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 41, 3069, 36918, 11799, 1600, 366, 25835, 25404, 1600, 366, 47, 10025, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 66, 1899, 2091, 535, 2548, 5892, 67, 15, 891, 20, 11848, 24, 10210, 1959, 65, 22, 69, 17, 69, 15, 31697, 18213, 20, 22883, 18213, 1, 198, 12303, 312, 796, 366, 69, 38905, 1415, 2623, 12, 15, 67, 22, 64, 12, 20, 69, 1485, 12, 65, 24, 2934, 12, 69, 44698, 2919, 16344, 27192, 64, 1, 198, 9641, 796, 366, 18, 13, 18, 13, 940, 10, 15, 1, 198, 198, 30109, 22968, 30507, 2701, 11907, 198, 10378, 82, 796, 14631, 14993, 451, 2348, 29230, 1600, 366, 34220, 7834, 1600, 366, 45442, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 68, 2624, 64, 6659, 66, 31654, 397, 24409, 66, 41561, 6888, 32196, 69, 3132, 276, 23, 65, 15, 67, 6485, 66, 34159, 1, 198, 12303, 312, 796, 366, 2154, 2682, 397, 5333, 12, 3510, 67, 19, 12, 19, 276, 22, 12, 24, 67, 15, 69, 12, 3510, 64, 891, 24, 1558, 3365, 4089, 1, 198, 9641, 796, 366, 15, 13, 16, 13, 1157, 1, 198, 198, 30109, 22968, 2601, 16091, 11907, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 558, 1350, 25707, 67, 4310, 1453, 16, 65, 3510, 30986, 69, 4531, 940, 66, 22370, 65, 25191, 68, 43571, 891, 1, 198, 12303, 312, 796, 366, 24, 7252, 16, 65, 23, 1954, 12, 2920, 68, 19, 12, 20, 6888, 20, 12, 23, 65, 15, 69, 12, 2670, 4869, 721, 23, 65, 397, 21, 64, 1, 198, 9641, 796, 366, 15, 13, 18, 13, 17, 1, 198, 198, 30109, 8979, 9399, 11907, 198, 10378, 82, 796, 14631, 47, 10025, 1600, 366, 39618, 1600, 366, 52, 27586, 82, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 17, 9945, 34287, 65, 3134, 12762, 3132, 721, 65, 20370, 68, 3609, 4304, 9945, 16344, 16, 66, 21599, 6888, 1485, 11848, 1, 198, 12303, 312, 796, 366, 3553, 4531, 68, 17, 68, 24, 12, 67, 22, 21855, 12, 20, 15630, 22, 12, 1795, 3104, 12, 17, 66, 21, 69, 3609, 24, 65, 3865, 2920, 1, 198, 9641, 796, 366, 16, 13, 1157, 13, 17, 1, 198, 198, 30109, 8979, 15235, 82, 14881, 11907, 198, 10378, 82, 796, 14631, 35, 689, 1600, 366, 44, 8899, 1600, 366, 18557, 69, 1600, 366, 14402, 1600, 366, 52, 27586, 82, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 4051, 1821, 66, 16, 67, 2075, 7252, 1959, 6888, 24, 18213, 23, 2780, 2816, 5892, 1433, 68, 20, 1453, 20, 69, 1433, 64, 4521, 1983, 1, 198, 12303, 312, 796, 366, 22148, 21, 1828, 2078, 12, 17, 68, 3901, 12, 20, 4299, 12, 65, 24, 64, 19, 12, 4531, 64, 8635, 41734, 2154, 69, 1, 198, 9641, 796, 366, 15, 13, 24, 13, 1415, 1, 198, 198, 30109, 33762, 3163, 20477, 11907, 198, 10378, 82, 796, 14631, 14993, 451, 2348, 29230, 1600, 366, 29531, 1600, 366, 50, 29572, 3163, 20477, 1600, 366, 48346, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 31360, 21, 69, 2079, 2327, 65, 22, 535, 66, 3829, 2414, 66, 21, 68, 891, 15, 65, 487, 15, 324, 41813, 7568, 49995, 64, 18, 1, 198, 12303, 312, 796, 366, 16, 64, 26561, 69, 1899, 12, 3388, 6888, 12, 20, 21734, 12, 15630, 2934, 12, 65, 5333, 68, 28857, 65, 44966, 65, 1, 198, 9641, 796, 366, 15, 13, 1065, 13, 22, 1, 198, 198, 30109, 37, 9504, 28813, 11907, 198, 10378, 82, 796, 14631, 19182, 39317, 1600, 366, 14993, 451, 2348, 29230, 1600, 366, 39618, 1600, 366, 50, 29572, 3163, 20477, 1600, 366, 45442, 3163, 20477, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 23, 65, 18, 66, 2931, 65, 3980, 330, 1878, 18, 66, 15, 68, 48630, 66, 27310, 2548, 65, 5332, 66, 4521, 1120, 1453, 24, 67, 6888, 1, 198, 12303, 312, 796, 366, 21, 64, 4521, 17896, 1731, 12, 21, 28978, 12, 42875, 66, 12, 65, 24, 3070, 12, 3865, 21273, 5036, 17, 17457, 3901, 1, 198, 9641, 796, 366, 17, 13, 23, 13, 16, 1, 198, 198, 30109, 13715, 12727, 49601, 11907, 198, 10378, 82, 796, 14631, 48346, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 27326, 65, 16344, 344, 4134, 5705, 66, 20, 66, 7568, 1433, 64, 324, 66, 30610, 7252, 20, 1860, 16072, 20, 34741, 535, 1, 198, 12303, 312, 796, 366, 4310, 66, 2780, 66, 1558, 12, 19, 64, 22, 67, 12, 20, 6888, 17, 12, 3829, 66, 20, 12, 3720, 65, 3695, 4846, 1453, 64, 6052, 1, 198, 9641, 796, 366, 15, 13, 23, 13, 19, 1, 198, 198, 30109, 23252, 11250, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 33, 13344, 17, 62, 73, 297, 1600, 366, 3109, 8071, 62, 73, 297, 1600, 366, 11146, 6030, 17, 62, 73, 297, 1600, 366, 41, 3069, 36918, 11799, 1600, 366, 25835, 25404, 1600, 366, 25835, 12303, 312, 62, 73, 297, 1600, 366, 47, 10025, 1600, 366, 57, 8019, 62, 73, 297, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 2481, 891, 67, 1129, 15801, 64, 37864, 1238, 64, 1507, 4521, 1314, 6814, 21, 67, 18, 67, 3312, 10210, 22, 69, 21, 1453, 3070, 1, 198, 12303, 312, 796, 366, 64, 18, 69, 24, 2078, 3609, 12, 22, 65, 1821, 12, 1120, 2414, 12, 40022, 65, 12, 3104, 1878, 2670, 2857, 67, 2682, 65, 1, 198, 9641, 796, 366, 17, 13, 1485, 13, 6052, 10, 15, 1, 198, 198, 30109, 26227, 889, 11907, 198, 10378, 82, 796, 14631, 18557, 69, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 23, 29626, 67, 39132, 3559, 23815, 69, 1860, 18, 1765, 38431, 67, 4521, 66, 24, 2075, 21101, 32568, 3609, 4761, 64, 23, 1, 198, 12303, 312, 796, 366, 3270, 2078, 3324, 4761, 12, 15, 64, 1238, 12, 20, 64, 2670, 12, 65, 6659, 65, 12, 1485, 2791, 38905, 1765, 19, 66, 15, 1, 198, 9641, 796, 366, 15, 13, 19, 13, 17, 1, 198, 198, 30109, 39746, 28813, 11907, 198, 10378, 82, 796, 14631, 17227, 7004, 42712, 507, 1600, 366, 28813, 25468, 1600, 366, 28813, 37766, 1600, 366, 14993, 451, 2348, 29230, 1600, 366, 26705, 32755, 776, 1600, 366, 36698, 4972, 1600, 366, 18557, 69, 1600, 366, 29531, 1600, 366, 13409, 24629, 2733, 1600, 366, 45442, 3163, 20477, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 891, 18, 69, 721, 2996, 69, 24, 9945, 2075, 13331, 17, 12993, 23, 69, 19, 16945, 66, 40035, 66, 20, 65, 22, 344, 5066, 66, 16, 67, 1, 198, 12303, 312, 796, 366, 69, 21, 30803, 69, 1157, 12, 3324, 2091, 12, 3365, 1959, 12, 4846, 1731, 12, 1495, 5066, 7252, 2154, 4761, 940, 1, 198, 9641, 796, 366, 15, 13, 940, 13, 1828, 1, 198, 198, 30109, 11146, 6030, 11907, 198, 10378, 82, 796, 14631, 34, 4834, 388, 1600, 366, 11146, 6030, 17, 62, 73, 297, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 66, 397, 67, 3324, 397, 21, 64, 21, 16344, 487, 2920, 65, 16344, 1731, 1878, 17, 68, 1350, 4304, 68, 21, 68, 29159, 64, 17, 65, 19, 1, 198, 12303, 312, 796, 366, 65, 2548, 1350, 33289, 12, 6469, 65, 15, 12, 1120, 19881, 12, 397, 3324, 12, 22, 65, 3553, 68, 28977, 9945, 3559, 1, 198, 9641, 796, 366, 19, 13, 15, 13, 15, 1, 198, 198, 30109, 11146, 6030, 17, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 33, 13344, 17, 62, 73, 297, 1600, 366, 41, 3069, 36918, 11799, 1600, 366, 25835, 25404, 1600, 366, 47, 10025, 1600, 366, 57, 8019, 62, 73, 297, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 5774, 1765, 50055, 4051, 67, 23, 721, 16, 64, 4846, 67, 19, 64, 4304, 2623, 17457, 3553, 64, 22, 30995, 1860, 68, 18, 891, 24, 1, 198, 12303, 312, 796, 366, 67, 22, 68, 49351, 69, 15, 12, 64, 21, 3132, 12, 3270, 3459, 12, 19881, 2682, 12, 5036, 26780, 5892, 65, 12993, 67, 22, 1, 198, 9641, 796, 366, 17, 13, 940, 13, 19, 10, 15, 1, 198, 198, 30109, 11146, 6030, 4826, 301, 7861, 11907, 198, 10378, 82, 796, 14631, 10258, 38469, 14106, 1600, 366, 5216, 669, 1600, 366, 11146, 6030, 1600, 366, 10082, 15748, 15522, 873, 1600, 366, 45442, 3163, 20477, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 1129, 67, 15, 69, 16, 68, 24409, 66, 1485, 11848, 16344, 2425, 25600, 68, 2816, 66, 4309, 7252, 16, 67, 23, 4304, 15363, 69, 20, 1, 198, 12303, 312, 796, 366, 45791, 64, 22, 34251, 12, 21101, 2623, 12, 41647, 65, 12, 64, 1129, 67, 12, 50055, 11848, 4524, 67, 2996, 66, 24, 1, 198, 9641, 796, 366, 15, 13, 24, 13, 17, 1, 198, 198, 30109, 30214, 33, 19830, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 41, 3069, 36918, 11799, 1600, 366, 25835, 25404, 1600, 366, 47, 10025, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 7252, 18, 27301, 66, 17, 7012, 23, 32869, 68, 1954, 66, 21, 66, 23, 7012, 23, 64, 19, 69, 22, 3388, 67, 20, 67, 22, 68, 19, 69, 6420, 1, 198, 12303, 312, 796, 366, 2816, 6052, 2078, 1765, 12, 6659, 69, 24, 12, 38605, 67, 12, 6052, 1795, 12, 2934, 49803, 64, 3459, 66, 5999, 66, 1, 198, 9641, 796, 366, 16, 13, 15, 13, 940, 10, 15, 1, 198, 198, 30109, 22203, 36918, 11799, 11907, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 1731, 1314, 4309, 15630, 17572, 24, 69, 15, 13331, 15, 3104, 65, 2414, 1314, 65, 1129, 3682, 535, 15, 7252, 34251, 65, 535, 1, 198, 12303, 312, 796, 366, 3312, 24, 65, 22, 65, 1065, 12, 15, 2934, 17, 12, 2816, 66, 21, 12, 24, 64, 397, 12, 1959, 69, 18, 67, 15, 64, 3104, 64, 17, 68, 1, 198, 9641, 796, 366, 16, 13, 16, 13, 17, 1, 198, 198, 30109, 29783, 11907, 198, 10378, 82, 796, 14631, 29531, 8973, 198, 12303, 312, 796, 366, 24, 13331, 23, 38073, 65, 12, 20370, 65, 12, 20, 35667, 12, 24, 68, 23, 67, 12, 19, 67, 15, 37466, 68, 23, 3695, 1238, 1, 198, 198, 30109, 10082, 15748, 15522, 873, 11907, 198, 10378, 82, 796, 14631, 8419, 26254, 62, 73, 297, 1600, 366, 29993, 33637, 1600, 366, 14993, 451, 2348, 29230, 1600, 366, 45442, 3163, 20477, 1600, 366, 44909, 3163, 20477, 1600, 366, 51, 2977, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 3365, 15630, 7568, 20, 1765, 66, 43526, 65, 2919, 20, 68, 3365, 67, 3865, 66, 1485, 5774, 11645, 2078, 1860, 22, 36625, 66, 1, 198, 12303, 312, 796, 366, 20, 66, 1065, 4309, 64, 17, 12, 20, 69, 2091, 12, 3980, 19881, 12, 4521, 66, 24, 12, 3270, 68, 22, 32148, 65, 3559, 2075, 1, 198, 9641, 796, 366, 15, 13, 19, 13, 16, 1, 198, 198, 30109, 3855, 5239, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 7293, 5329, 15514, 43, 11127, 62, 73, 297, 1600, 366, 41, 3069, 36918, 11799, 1600, 366, 25835, 25404, 1600, 366, 25835, 4749, 85, 62, 73, 297, 1600, 366, 47, 10025, 1600, 366, 55, 5805, 17, 62, 73, 297, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 24, 65, 48891, 4089, 15498, 22, 19881, 2998, 19, 67, 1415, 2934, 4531, 69, 24, 67, 2718, 6888, 1731, 64, 16, 64, 15, 65, 45438, 1, 198, 12303, 312, 796, 366, 3695, 65, 2816, 35378, 12, 3609, 891, 12, 3365, 67, 19, 12, 4521, 16, 66, 12, 3324, 64, 2001, 2682, 4089, 65, 16, 1, 198, 9641, 796, 366, 15, 13, 2481, 13, 15, 10, 15, 1, 198, 198, 30109, 38, 8019, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 3855, 5239, 62, 73, 297, 1600, 366, 41, 3069, 36918, 11799, 1600, 366, 25835, 25404, 1600, 366, 25835, 487, 72, 62, 73, 297, 1600, 366, 25835, 4749, 85, 62, 73, 297, 1600, 366, 25835, 14948, 62, 73, 297, 1600, 366, 5662, 2200, 62, 73, 297, 1600, 366, 47, 10025, 1600, 366, 57, 8019, 62, 73, 297, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 22, 19881, 3134, 68, 24, 64, 2780, 1558, 1065, 65, 18, 67, 1350, 24, 21101, 18, 67, 330, 23, 4309, 17896, 19, 65, 1157, 5237, 68, 2999, 1, 198, 12303, 312, 796, 366, 3324, 3510, 65, 1860, 68, 12, 25764, 67, 12, 3270, 17896, 12, 24, 3609, 23, 12, 3459, 68, 344, 24, 4790, 22042, 67, 1, 198, 9641, 796, 366, 17, 13, 3104, 13, 18, 10, 15, 1, 198, 198, 30109, 18172, 11907, 198, 10378, 82, 796, 14631, 5216, 669, 1600, 366, 14993, 451, 2348, 29230, 1600, 366, 26705, 32755, 776, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 16, 66, 20, 64, 23, 3559, 19104, 1954, 1350, 64, 4304, 13331, 18781, 67, 2920, 68, 6052, 7252, 19, 34626, 66, 4790, 16072, 17, 1, 198, 12303, 312, 796, 366, 64, 17, 17457, 1270, 1765, 12, 68, 28676, 12, 4051, 3132, 12, 64, 24, 1129, 12, 1507, 5066, 68, 397, 48645, 2414, 1, 198, 9641, 796, 366, 16, 13, 16, 13, 16, 1, 198, 198, 30109, 37065, 578, 17, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 41, 3069, 36918, 11799, 1600, 366, 25835, 25404, 1600, 366, 47, 10025, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 33535, 19881, 1821, 17896, 397, 940, 4790, 22260, 3023, 7252, 15, 7568, 19, 21855, 2931, 17, 69, 37128, 68, 21844, 16, 1, 198, 12303, 312, 796, 366, 18, 65, 24294, 67, 5332, 12, 1731, 3070, 12, 20, 66, 2481, 12, 24, 66, 2481, 12, 16, 68, 16, 69, 15, 535, 1495, 37856, 1, 198, 9641, 796, 366, 16, 13, 18, 13, 1415, 10, 15, 1, 198, 198, 30109, 41339, 32517, 14881, 11907, 198, 10378, 82, 796, 14631, 10082, 15748, 15522, 873, 1600, 366, 9492, 5275, 18274, 4487, 1600, 366, 23850, 1600, 366, 31310, 712, 2977, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 68, 17, 69, 33206, 66, 5774, 67, 2931, 67, 20, 23451, 11848, 1899, 3388, 67, 397, 23, 344, 68, 15, 1878, 22, 66, 3324, 65, 9945, 1, 198, 12303, 312, 796, 366, 2670, 2816, 64, 36244, 12, 9945, 1485, 12, 35218, 66, 12, 24, 23195, 12, 16, 67, 1795, 276, 4089, 68, 20, 68, 24, 1, 198, 9641, 796, 366, 15, 13, 21, 13, 16, 1, 198, 198, 30109, 38, 2442, 84, 11907, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 4310, 11848, 44675, 67, 1157, 4349, 68, 3553, 68, 1731, 5705, 66, 18, 67, 16, 65, 4310, 68, 1129, 40427, 65, 46660, 21855, 17, 1, 198, 12303, 312, 796, 366, 3682, 68, 17, 6814, 15, 68, 12, 23, 25870, 12, 19, 68, 4869, 12, 15630, 1731, 12, 3270, 29022, 324, 6888, 15, 5036, 1, 198, 9641, 796, 366, 16, 13, 15, 13, 17, 1, 198, 198, 30109, 39, 8068, 20, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 41, 3069, 36918, 11799, 1600, 366, 25835, 34, 21886, 62, 73, 297, 1600, 366, 25835, 25404, 1600, 366, 11505, 31127, 62, 73, 297, 1600, 366, 47, 10025, 1600, 366, 57, 8019, 62, 73, 297, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 16344, 5999, 13331, 15, 65, 2934, 3682, 68, 486, 3865, 1983, 3553, 69, 486, 19442, 1860, 38956, 66, 3312, 66, 19, 67, 7012, 1, 198, 12303, 312, 796, 366, 15, 24409, 69, 16, 69, 22, 12, 11785, 68, 12, 20, 67, 4310, 12, 24, 44980, 12, 1314, 64, 44675, 1350, 23, 67, 3270, 1, 198, 9641, 796, 366, 16, 13, 1065, 13, 15, 10, 16, 1, 198, 198, 30109, 13587, 69, 48230, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 34, 18131, 62, 73, 297, 1600, 366, 23252, 11250, 62, 73, 297, 1600, 366, 11146, 6030, 17, 62, 73, 297, 1600, 366, 38, 8019, 62, 73, 297, 1600, 366, 37065, 578, 17, 62, 73, 297, 1600, 366, 41, 3069, 36918, 11799, 1600, 366, 25835, 25404, 1600, 366, 25835, 487, 72, 62, 73, 297, 1600, 366, 47, 10025, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 23, 64, 48372, 19082, 23, 330, 2931, 22, 67, 20, 1350, 15, 2920, 2481, 67, 35124, 69, 4524, 1157, 1314, 66, 16, 65, 17, 324, 1, 198, 12303, 312, 796, 366, 17, 68, 4304, 69, 21, 66, 17, 12, 64, 37452, 12, 4309, 67, 19, 12, 3865, 66, 16, 12, 1238, 324, 5036, 19, 2934, 20, 2791, 1, 198, 9641, 796, 366, 17, 13, 23, 13, 16, 10, 15, 1, 198, 198, 30109, 17932, 36037, 23595, 11907, 198, 10378, 82, 796, 14631, 13128, 5080, 41367, 3103, 574, 1240, 24629, 2733, 1600, 366, 1532, 40674, 1600, 366, 25835, 25404, 1600, 366, 45442, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 23, 69, 15, 17896, 7410, 3459, 4089, 16, 397, 2816, 36680, 65, 3023, 65, 7012, 23734, 5607, 64, 2598, 64, 16, 64, 18, 64, 24, 1, 198, 12303, 312, 796, 366, 18, 68, 20, 65, 21, 69, 11848, 12, 2931, 4304, 12, 19, 67, 17, 66, 12, 24, 20964, 12, 67, 3720, 2934, 5999, 69, 17, 21855, 15, 1, 198, 9641, 796, 366, 15, 13, 16, 13, 20, 1, 198, 198, 30109, 39, 86, 17946, 11907, 198, 10378, 82, 796, 14631, 39, 86, 17946, 62, 73, 297, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 5892, 67, 2079, 1415, 1899, 2791, 66, 20, 66, 3104, 3459, 67, 20, 64, 18, 39305, 23, 4869, 68, 21, 64, 22291, 30460, 65, 6420, 1, 198, 12303, 312, 796, 366, 15, 68, 2598, 69, 20, 68, 19, 12, 17457, 2791, 12, 4309, 64, 15, 12, 23, 43240, 12, 21139, 64, 44361, 3829, 64, 16, 67, 1, 198, 9641, 796, 366, 17, 13, 15, 13, 15, 1, 198, 198, 30109, 39, 86, 17946, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 41, 3069, 36918, 11799, 1600, 366, 25835, 25404, 1600, 366, 47, 10025, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 2091, 3865, 67, 19, 67, 19, 64, 1765, 18, 66, 24, 67, 3132, 69, 3270, 1959, 67, 34159, 1899, 67, 23, 7012, 1453, 68, 3459, 64, 1878, 1, 198, 12303, 312, 796, 366, 68, 2091, 64, 3695, 67, 15, 12, 69, 32759, 12, 20, 487, 66, 12, 65, 6200, 12, 4761, 11231, 24, 65, 20, 3559, 66, 23, 1, 198, 9641, 796, 366, 17, 13, 20, 13, 15, 10, 15, 1, 198, 198, 30109, 49926, 364, 6519, 11907, 198, 10378, 82, 796, 14631, 14402, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 23, 67, 41647, 67, 20, 65, 23, 1065, 1821, 16072, 23, 68, 37397, 1954, 4521, 1270, 2075, 2425, 65, 7568, 32883, 2718, 65, 24, 1, 198, 12303, 312, 796, 366, 2857, 67, 17, 276, 17, 65, 12, 2623, 2934, 12, 1120, 12993, 12, 19881, 5774, 12, 2920, 66, 17, 12993, 19, 65, 23, 65, 6420, 1, 198, 9641, 796, 366, 15, 13, 15, 13, 19, 1, 198, 198, 30109, 38197, 5239, 43, 270, 1691, 11907, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 17, 65, 2998, 23, 65, 20, 64, 47007, 66, 21, 66, 15, 34107, 66, 39761, 940, 67, 5892, 1453, 23, 66, 21, 69, 27790, 67, 23721, 1, 198, 12303, 312, 796, 366, 330, 16315, 17, 64, 23, 12, 69, 19, 65, 18, 12, 19, 65, 5036, 12, 7012, 1828, 12, 1878, 20, 65, 5892, 10210, 18, 397, 17, 1, 198, 9641, 796, 366, 15, 13, 24, 13, 18, 1, 198, 198, 30109, 40, 4503, 2373, 495, 11907, 198, 10378, 82, 796, 14631, 11187, 2667, 1600, 366, 29531, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 69, 22, 1350, 44468, 3270, 397, 3312, 1860, 66, 4089, 2414, 2078, 67, 18, 64, 24, 67, 535, 3865, 69, 21, 13331, 21, 34801, 64, 1, 198, 12303, 312, 796, 366, 65, 20, 69, 6659, 68, 3270, 12, 35916, 17, 12, 19, 67, 2624, 12, 65, 16, 69, 15, 12, 66, 2998, 16, 65, 46821, 19881, 4531, 1, 198, 9641, 796, 366, 15, 13, 17, 13, 17, 1, 198, 198, 30109, 1532, 40674, 11907, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 11275, 1860, 405, 487, 891, 3023, 36879, 535, 11848, 18, 68, 8628, 48882, 64, 34483, 1899, 68, 23, 69, 324, 16, 1, 198, 12303, 312, 796, 366, 47007, 69, 23451, 66, 12, 66, 1350, 19, 12, 19, 891, 16, 12, 7012, 18, 65, 12, 17, 69, 12993, 3365, 67, 21, 67, 25399, 1, 198, 9641, 796, 366, 15, 13, 16, 13, 16, 1, 198, 198, 30109, 5159, 14055, 11907, 198, 10378, 82, 796, 14631, 23839, 5777, 33758, 1600, 366, 10258, 38469, 14106, 1600, 366, 5216, 669, 1600, 366, 13715, 12727, 49601, 1600, 366, 18172, 1600, 366, 44, 6320, 3163, 20477, 1600, 366, 44, 8546, 291, 7680, 82, 1600, 366, 34519, 3163, 20477, 1600, 366, 47, 29373, 7680, 82, 1600, 366, 3041, 39344, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 24, 64, 20, 66, 5237, 69, 25667, 68, 20, 65, 7012, 2327, 37381, 64, 22567, 3459, 16072, 22, 10210, 21, 2934, 22, 1453, 65, 20, 64, 1, 198, 12303, 312, 796, 366, 64, 2931, 16072, 6659, 67, 12, 7252, 2425, 12, 20, 5036, 24, 12, 4521, 1270, 12, 2857, 2598, 66, 2623, 22980, 2682, 1, 198, 9641, 796, 366, 15, 13, 24, 13, 18, 1, 198, 198, 30109, 5159, 9399, 11907, 198, 10378, 82, 796, 14631, 8979, 9399, 1600, 366, 7934, 79, 20475, 1600, 366, 11505, 6369, 49, 1600, 366, 47, 10503, 25876, 1600, 366, 51, 733, 29398, 1600, 366, 52, 27586, 82, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 64, 1959, 4349, 66, 24, 27412, 30505, 1415, 3134, 22980, 68, 15, 68, 2624, 65, 20, 40393, 1415, 69, 37381, 2624, 1350, 1, 198, 12303, 312, 796, 366, 6469, 68, 19, 67, 22, 2682, 12, 18458, 66, 12, 2780, 11848, 12, 23, 1433, 65, 12, 2231, 66, 18182, 66, 21, 7568, 1129, 1, 198, 9641, 796, 366, 15, 13, 20, 13, 24, 1, 198, 198, 30109, 3546, 776, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 41, 3069, 36918, 11799, 1600, 366, 25835, 25404, 1600, 366, 47, 10025, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 5774, 69, 22, 39380, 68, 3070, 64, 33300, 66, 487, 64, 17, 68, 2713, 19881, 1129, 66, 22572, 68, 1433, 5774, 2624, 67, 18, 68, 1, 198, 12303, 312, 796, 366, 44928, 64, 21, 69, 3134, 12, 15, 64, 5824, 12, 20, 69, 4531, 12, 65, 21734, 12, 67, 2327, 67, 24, 10531, 10210, 16, 1, 198, 9641, 796, 366, 18, 13, 16, 13, 17, 10, 15, 1, 198, 198, 30109, 5497, 1060, 3163, 20477, 11907, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 30206, 68, 31916, 68, 16, 66, 50150, 4521, 2231, 21101, 23, 65, 43690, 69, 23, 69, 7012, 40401, 64, 4349, 65, 28676, 69, 1, 198, 12303, 312, 796, 366, 24, 65, 1485, 16344, 2078, 12, 64, 20943, 12, 20, 69, 3070, 12, 330, 487, 12, 64, 16, 11848, 66, 487, 47325, 3270, 1, 198, 9641, 796, 366, 16, 13, 15, 13, 15, 1, 198, 198, 30109, 35392, 7279, 489, 28613, 11907, 198, 10378, 82, 796, 14631, 22495, 7575, 1600, 366, 7902, 53, 1600, 366, 20418, 565, 291, 3163, 20477, 1600, 366, 6601, 35439, 1600, 366, 35, 689, 1600, 366, 37031, 3163, 20477, 1600, 366, 7934, 34, 8068, 1600, 366, 35422, 3219, 28813, 36, 80, 1600, 366, 47, 10025, 1600, 366, 29531, 1600, 366, 3118, 11869, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 18, 68, 1350, 2998, 1954, 67, 3134, 69, 17, 66, 17, 64, 1899, 5332, 3682, 67, 21, 9945, 39111, 66, 9031, 2598, 2075, 67, 16, 64, 1, 198, 12303, 312, 796, 366, 65, 5892, 69, 15, 66, 2624, 12, 20, 65, 22, 68, 12, 1157, 68, 24, 12, 16, 67, 22, 65, 12, 23721, 65, 17, 6814, 23, 65, 15, 68, 21, 1, 198, 9641, 796, 366, 15, 13, 18, 13, 18, 1, 198, 198, 30109, 818, 2704, 378, 11907, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 69, 20, 16072, 2998, 67, 19, 68, 35402, 65, 5705, 69, 4761, 67, 4051, 2308, 535, 16, 66, 1485, 67, 5892, 21855, 2919, 4869, 66, 1, 198, 12303, 312, 796, 366, 67, 1495, 7568, 15, 66, 24, 12, 68, 17, 1350, 12, 20, 1860, 22, 12, 6469, 66, 23, 12, 18, 324, 15, 65, 18, 68, 34155, 65, 24, 1, 198, 9641, 796, 366, 15, 13, 16, 13, 17, 1, 198, 198, 30109, 818, 1370, 13290, 654, 11907, 198, 10378, 82, 796, 14631, 47, 945, 364, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 1129, 21101, 2920, 33300, 69, 23, 66, 3901, 2934, 22, 5036, 64, 2624, 67, 49352, 67, 2718, 2934, 24, 1558, 65, 48096, 6814, 1, 198, 12303, 312, 796, 366, 23, 3682, 1860, 6469, 65, 12, 16, 68, 5332, 12, 3559, 17896, 12, 19881, 1959, 12, 20, 67, 15, 1453, 24, 67, 487, 66, 2780, 1, 198, 9641, 796, 366, 16, 13, 15, 13, 16, 1, 198, 198, 30109, 24123, 11505, 7378, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 41, 3069, 36918, 11799, 1600, 366, 25835, 25404, 1600, 366, 47, 10025, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 67, 24, 3720, 68, 4051, 65, 4869, 6814, 6469, 69, 18, 64, 2996, 65, 26704, 4310, 6814, 19, 16072, 18, 67, 1507, 66, 12865, 19, 66, 1, 198, 12303, 312, 796, 366, 16, 67, 20, 535, 22, 65, 23, 12, 2920, 2931, 12, 47785, 68, 12, 64, 15, 69, 23, 12, 67, 15, 69, 20, 324, 5607, 1065, 67, 15, 1, 198, 9641, 796, 366, 7908, 13, 15, 13, 18, 10, 17, 1, 198, 198, 30109, 9492, 5275, 18274, 4487, 11907, 198, 10378, 82, 796, 14631, 9704, 2902, 8973, 198, 12303, 312, 796, 366, 65, 3324, 68, 15, 64, 19, 66, 12, 67, 33551, 12, 3553, 64, 15, 12, 3829, 68, 23, 12, 23, 9945, 1495, 64, 1983, 64, 16102, 1, 198, 198, 30109, 9492, 16104, 602, 11907, 198, 10378, 82, 796, 14631, 31554, 271, 2348, 7727, 907, 1600, 366, 35491, 37766, 14055, 1600, 366, 14993, 451, 2348, 29230, 1600, 366, 34519, 3163, 20477, 1600, 366, 29531, 1600, 366, 29665, 4267, 1600, 366, 39618, 1600, 366, 2484, 1144, 3163, 20477, 1600, 366, 50, 29572, 3163, 20477, 1600, 366, 45442, 3163, 20477, 1600, 366, 22911, 10711, 19044, 45977, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 5333, 7252, 22544, 24038, 18213, 17, 344, 19881, 2857, 66, 23, 67, 40873, 6814, 23, 17896, 24, 15630, 19, 68, 15, 66, 25836, 1, 198, 12303, 312, 796, 366, 64, 4089, 67, 24, 64, 23, 65, 12, 64, 17, 397, 12, 3270, 68, 21, 12, 4531, 1860, 12, 2414, 64, 16, 66, 1507, 69, 6888, 3270, 1, 198, 9641, 796, 366, 15, 13, 1485, 13, 19, 1, 198, 198, 30109, 9492, 2100, 50, 1039, 11907, 198, 10378, 82, 796, 14631, 35, 689, 1600, 366, 30639, 2419, 271, 3673, 341, 1600, 366, 48346, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 18, 535, 27412, 1878, 18, 69, 11442, 64, 32059, 330, 3695, 2996, 8054, 2231, 67, 771, 7568, 66, 1433, 38569, 1, 198, 12303, 312, 796, 366, 23, 24991, 25674, 66, 12, 30336, 69, 12, 20, 69, 1983, 12, 24, 21315, 12, 68, 15, 68, 32576, 1959, 64, 49649, 1, 198, 9641, 796, 366, 15, 13, 20, 13, 18, 1, 198, 198, 30109, 818, 4399, 24629, 2733, 11907, 198, 10378, 82, 796, 14631, 14402, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 64, 22, 24970, 66, 15, 330, 67, 23, 68, 5237, 69, 16, 330, 2425, 324, 1731, 67, 20, 9945, 3559, 69, 20, 69, 1129, 69, 18, 66, 2996, 1, 198, 12303, 312, 796, 366, 2327, 5774, 68, 19782, 12, 18, 69, 4531, 12, 3682, 67, 15, 12, 3829, 1453, 12, 1415, 31552, 721, 1983, 14686, 1, 198, 9641, 796, 366, 15, 13, 16, 13, 17, 1, 198, 198, 30109, 818, 13658, 5497, 1063, 11907, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 20963, 20, 69, 16, 891, 20, 19881, 2996, 7568, 3980, 65, 1860, 17, 68, 1821, 2598, 2425, 3829, 65, 29807, 64, 20, 38339, 69, 1, 198, 12303, 312, 796, 366, 3901, 397, 1314, 5705, 12, 16, 67, 2548, 12, 20, 11848, 69, 12, 24, 15801, 12, 69, 1157, 66, 21, 66, 3365, 65, 2780, 69, 1, 198, 9641, 796, 366, 16, 13, 16, 13, 15, 1, 198, 198, 30109, 23820, 20310, 34184, 1187, 11907, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 22, 16344, 2598, 16344, 19, 487, 3559, 16072, 28688, 1314, 69, 23, 68, 22, 2414, 66, 15, 69, 33394, 65, 5999, 66, 2920, 24309, 1, 198, 12303, 312, 796, 366, 5892, 67, 31495, 10210, 12, 3388, 405, 12, 1821, 65, 22, 12, 24, 2919, 17, 12, 66, 21, 1350, 2920, 69, 33535, 65, 21, 1, 198, 9641, 796, 366, 15, 13, 16, 13, 16, 1, 198, 198, 30109, 40, 568, 3903, 11907, 198, 10378, 82, 796, 14631, 271, 672, 392, 62, 73, 297, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 69, 24, 65, 21, 67, 5607, 2327, 2816, 2079, 2998, 19, 17896, 23, 45758, 23362, 1120, 4763, 64, 21, 69, 2079, 3510, 19708, 1, 198, 12303, 312, 796, 366, 69, 1433, 5237, 67, 24, 69, 12, 1795, 3559, 12, 3559, 2934, 12, 64, 3388, 64, 12, 2713, 891, 66, 16, 535, 21, 487, 19, 1, 198, 9641, 796, 366, 15, 13, 16, 13, 16, 1, 198, 198, 30109, 29993, 33637, 11907, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 2713, 11442, 64, 17, 397, 16, 16072, 20, 69, 6052, 2075, 1828, 16658, 64, 17, 64, 11245, 26115, 69, 2857, 6469, 66, 1507, 1, 198, 12303, 312, 796, 366, 66, 23, 68, 16, 6814, 2919, 12, 22, 1828, 66, 12, 1120, 1821, 12, 24, 276, 24, 12, 22, 9945, 15, 17896, 48000, 3132, 68, 1, 198, 9641, 796, 366, 16, 13, 18, 13, 15, 1, 198, 198, 30109, 29993, 876, 36949, 690, 11907, 198, 10378, 82, 796, 14631, 14993, 451, 2348, 29230, 1600, 366, 18557, 69, 1600, 366, 29531, 1600, 366, 6690, 18636, 14881, 1600, 366, 50, 29572, 3163, 20477, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 1157, 38205, 2624, 69, 32114, 69, 3720, 11785, 69, 22995, 16616, 65, 34483, 64, 15, 68, 18, 67, 1065, 1415, 3553, 66, 1, 198, 12303, 312, 796, 366, 3682, 16344, 15, 9945, 66, 12, 64, 4089, 16, 12, 4310, 2154, 12, 1795, 69, 17, 12, 64, 1878, 1120, 17885, 23, 21395, 1, 198, 9641, 796, 366, 15, 13, 24, 13, 17, 1, 198, 198, 30109, 37787, 39317, 11627, 5736, 11907, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 64, 18, 69, 1731, 40179, 66, 2481, 69, 20, 65, 1350, 24, 67, 17, 64, 45722, 69, 3865, 67, 10210, 3365, 31496, 21855, 2078, 3980, 1, 198, 12303, 312, 796, 366, 23, 2078, 33438, 940, 12, 2857, 3720, 12, 20, 28645, 12, 23, 4309, 68, 12, 3070, 68, 43690, 12993, 36453, 67, 1, 198, 9641, 796, 366, 16, 13, 15, 13, 15, 1, 198, 198, 30109, 41, 3069, 36918, 11799, 11907, 198, 10378, 82, 796, 14631, 36698, 4972, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 41290, 64, 19104, 1878, 23, 65, 3104, 1495, 2327, 1558, 65, 1795, 17457, 18, 65, 16344, 1558, 1765, 19, 68, 5705, 7568, 21, 68, 1, 198, 12303, 312, 796, 366, 46589, 65, 18, 65, 10210, 12, 18, 66, 5332, 12, 19, 65, 16, 69, 12, 65, 15711, 12, 69, 1485, 344, 15, 1765, 2624, 940, 1, 198, 9641, 796, 366, 16, 13, 18, 13, 15, 1, 198, 198, 30109, 40386, 11907, 198, 10378, 82, 796, 14631, 35, 689, 1600, 366, 44, 8899, 1600, 366, 47, 945, 364, 1600, 366, 3118, 291, 1098, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 36928, 2791, 1795, 65, 25061, 4763, 17, 64, 43637, 69, 24038, 330, 22, 65, 2920, 4310, 68, 1270, 28933, 64, 2718, 1, 198, 12303, 312, 796, 366, 43950, 66, 3312, 64, 15, 12, 2934, 21, 64, 12, 4051, 397, 12, 64, 23726, 12, 66, 23, 65, 16, 12993, 3720, 66, 2934, 21, 1, 198, 9641, 796, 366, 15, 13, 2481, 13, 17, 1, 198, 198, 30109, 42, 7948, 35, 6377, 11907, 198, 10378, 82, 796, 14631, 20344, 2455, 507, 1600, 366, 23579, 10100, 11627, 5736, 1600, 366, 5777, 34551, 1600, 366, 9492, 16104, 602, 1600, 366, 29668, 14881, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 48952, 68, 23, 17896, 2931, 324, 1507, 21734, 1507, 4846, 940, 330, 1878, 65, 5607, 405, 2624, 66, 47785, 24038, 1, 198, 12303, 312, 796, 366, 20, 397, 2919, 3388, 65, 12, 6659, 7252, 12, 40486, 67, 12, 11848, 1954, 12, 66, 19881, 4051, 1954, 65, 1350, 24, 65, 1, 198, 9641, 796, 366, 15, 13, 21, 13, 18, 1, 198, 198, 30109, 43, 10067, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 41, 3069, 36918, 11799, 1600, 366, 25835, 25404, 1600, 366, 47, 10025, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 69, 5237, 1120, 65, 1433, 3459, 16, 324, 69, 15, 32642, 33781, 2920, 69, 7012, 2780, 65, 1157, 5333, 330, 67, 330, 23, 66, 1, 198, 12303, 312, 796, 366, 66, 16, 66, 20, 1765, 67, 15, 12, 3134, 4761, 12, 4349, 1270, 12, 64, 47582, 12, 67, 20, 16072, 3609, 19, 64, 40401, 67, 1, 198, 9641, 796, 366, 18, 13, 3064, 13, 16, 10, 15, 1, 198, 198, 30109, 43, 57, 46, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 41, 3069, 36918, 11799, 1600, 366, 25835, 25404, 1600, 366, 47, 10025, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 68, 20, 65, 44675, 65, 12993, 42250, 66, 20, 68, 21719, 3553, 2718, 67, 17, 344, 25870, 276, 3720, 16, 65, 4531, 1350, 21, 1, 198, 12303, 312, 796, 366, 1860, 19, 65, 4089, 18, 64, 12, 69, 15, 68, 20, 12, 20, 69, 23, 67, 12, 64, 16, 65, 22, 12, 18741, 67, 19, 64, 20, 21855, 16, 330, 1, 198, 9641, 796, 366, 17, 13, 940, 13, 16, 10, 15, 1, 198, 198, 30109, 14772, 49568, 13290, 654, 11907, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 69, 1954, 2816, 48528, 67, 3134, 3695, 64, 23188, 671, 1314, 49234, 65, 22, 330, 2857, 64, 19, 487, 5607, 38565, 1, 198, 12303, 312, 796, 366, 65, 24, 2414, 13331, 24, 69, 12, 15, 31911, 12, 20, 65, 3553, 12, 64, 20, 66, 17, 12, 67, 18, 18213, 2996, 69, 1821, 1821, 69, 1, 198, 9641, 796, 366, 16, 13, 18, 13, 15, 1, 198, 198, 30109, 17822, 11978, 3163, 20477, 11907, 198, 10378, 82, 796, 14631, 19182, 39317, 1600, 366, 14993, 451, 2348, 29230, 1600, 366, 14155, 305, 33637, 1600, 366, 45442, 3163, 20477, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 23, 69, 20, 16344, 15, 3104, 7568, 1453, 24, 2075, 2816, 65, 3720, 68, 2919, 3270, 721, 324, 23, 65, 40256, 67, 5036, 23, 65, 16, 1, 198, 12303, 312, 796, 366, 17, 1453, 2670, 2931, 23, 12, 66, 34770, 12, 41292, 64, 12, 65, 5332, 69, 12, 64, 20, 36445, 1314, 1795, 7410, 1, 198, 9641, 796, 366, 16, 13, 21, 13, 20, 1, 198, 198, 30109, 32517, 18833, 20193, 11907, 198, 10378, 82, 796, 14631, 19182, 39317, 1600, 366, 14993, 451, 2348, 29230, 1600, 366, 5124, 723, 30871, 1600, 366, 48913, 24544, 9497, 1600, 366, 45442, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 5999, 65, 20, 2414, 2920, 66, 2670, 31575, 64, 2857, 69, 18, 16072, 9945, 18, 15630, 46519, 17457, 21, 67, 2791, 68, 16, 67, 5607, 1, 198, 12303, 312, 796, 366, 940, 69, 1129, 487, 18, 12, 43240, 69, 12, 26598, 67, 12, 24, 3720, 65, 12, 2816, 33032, 69, 23, 16072, 48000, 1, 198, 9641, 796, 366, 15, 13, 16, 13, 19, 1, 198, 198, 30109, 43, 12582, 8001, 37199, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 47, 10025, 8973, 198, 12303, 312, 796, 366, 19, 1878, 4051, 5036, 16, 12, 31047, 15, 12, 3559, 64, 23, 12, 5332, 64, 22, 12, 41019, 67, 6420, 65, 37688, 68, 18, 1, 198, 198, 30109, 25835, 34, 21886, 11907, 198, 10378, 82, 796, 14631, 25835, 34, 21886, 62, 73, 297, 1600, 366, 44, 8590, 5049, 34, 2246, 861, 82, 62, 73, 297, 8973, 198, 12303, 312, 796, 366, 65, 20233, 2624, 66, 17, 12, 64, 18, 68, 22, 12, 1120, 66, 23, 12, 1795, 10210, 12, 17, 67, 2623, 9945, 21101, 16344, 2481, 1, 198, 198, 30109, 25835, 34, 21886, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 25835, 5432, 39, 17, 62, 73, 297, 1600, 366, 25835, 25404, 1600, 366, 44, 3077, 51, 6561, 62, 73, 297, 1600, 366, 57, 8019, 62, 73, 297, 1600, 366, 77, 456, 29281, 17, 62, 73, 297, 8973, 198, 12303, 312, 796, 366, 2934, 330, 24, 65, 2857, 12, 23, 15630, 22, 12, 3270, 3312, 12, 64, 15, 5036, 12, 2327, 330, 3980, 17896, 5705, 66, 15, 1, 198, 198, 30109, 25835, 38, 270, 17, 11907, 198, 10378, 82, 796, 14631, 14881, 2414, 1600, 366, 26245, 29046, 1600, 366, 18557, 69, 1600, 366, 37596, 8973, 198, 12303, 312, 796, 366, 4304, 69, 23, 4051, 1120, 12, 20, 24909, 12, 20, 65, 20, 64, 12, 23, 68, 7252, 12, 49721, 324, 40350, 65, 42117, 1, 198, 198, 30109, 25835, 5432, 39, 17, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 25835, 25404, 1600, 366, 44, 3077, 51, 6561, 62, 73, 297, 8973, 198, 12303, 312, 796, 366, 27728, 1433, 65, 20, 64, 12, 65, 24, 397, 12, 49489, 69, 12, 24, 2091, 66, 12, 276, 324, 1507, 4521, 7568, 64, 23, 1, 198, 198, 30109, 25835, 25404, 11907, 198, 12303, 312, 796, 366, 23, 69, 28771, 6814, 18, 12, 2327, 3553, 12, 3980, 2425, 12, 65, 20, 487, 12, 21855, 23, 2624, 66, 5607, 21101, 9945, 1, 198, 198, 30109, 25835, 487, 72, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 41, 3069, 36918, 11799, 1600, 366, 25835, 25404, 1600, 366, 47, 10025, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 4304, 16, 64, 26007, 3609, 535, 67, 21, 7252, 5892, 721, 2327, 1314, 68, 40173, 66, 2075, 19881, 33438, 2425, 65, 18, 65, 1, 198, 12303, 312, 796, 366, 68, 24, 69, 25096, 66, 21, 12, 5892, 67, 17, 12, 20, 65, 2996, 12, 23, 64, 2791, 12, 39071, 2481, 17896, 16, 65, 31503, 1, 198, 9641, 796, 366, 18, 13, 17, 13, 17, 10, 15, 1, 198, 198, 30109, 25835, 70, 29609, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 41, 3069, 36918, 11799, 1600, 366, 25835, 25404, 1600, 366, 25835, 70, 6024, 62, 18224, 62, 73, 297, 1600, 366, 47, 10025, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 27720, 1485, 66, 6469, 64, 3270, 66, 1065, 3023, 2327, 66, 15, 3134, 66, 17, 65, 34583, 16072, 5333, 12993, 20, 23055, 3609, 1, 198, 12303, 312, 796, 366, 67, 3559, 405, 330, 18, 12, 68, 1828, 66, 12, 3553, 3559, 12, 24, 17827, 12, 66, 27696, 68, 2670, 9945, 16, 68, 19, 1, 198, 9641, 796, 366, 16, 13, 23, 13, 22, 10, 15, 1, 198, 198, 30109, 25835, 70, 6024, 62, 18224, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 41, 3069, 36918, 11799, 1600, 366, 25835, 25404, 1600, 366, 47, 10025, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 66, 2091, 2718, 1433, 68, 3510, 2623, 3104, 3553, 44550, 68, 27367, 344, 21, 64, 3388, 1453, 2931, 2231, 64, 21, 9945, 24, 1, 198, 12303, 312, 796, 366, 22, 2860, 20, 7012, 18, 12, 17, 69, 3459, 12, 48057, 68, 12, 24, 10210, 20, 12, 69, 5999, 65, 23, 64, 2816, 69, 22, 65, 23, 1, 198, 9641, 796, 366, 16, 13, 3682, 13, 15, 10, 15, 1, 198, 198, 30109, 25835, 4749, 85, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 41, 3069, 36918, 11799, 1600, 366, 25835, 25404, 1600, 366, 47, 10025, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 3682, 65, 48200, 2231, 67, 2154, 64, 21, 1129, 69, 3312, 18, 64, 22, 6814, 2931, 18, 67, 33438, 721, 23, 68, 1314, 68, 39761, 1, 198, 12303, 312, 796, 366, 5824, 344, 19, 69, 4051, 12, 24, 64, 21, 66, 12, 3553, 2780, 12, 24, 66, 16, 66, 12, 69, 24, 66, 22, 25667, 64, 2231, 3132, 1, 198, 9641, 796, 366, 16, 13, 1433, 13, 16, 10, 16, 1, 198, 198, 30109, 25835, 14948, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 41, 3069, 36918, 11799, 1600, 366, 25835, 25404, 1600, 366, 47, 10025, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 24, 66, 22515, 1270, 19881, 15, 14822, 67, 3510, 68, 1314, 68, 15, 16344, 12993, 17, 65, 4521, 2623, 68, 3695, 66, 11848, 67, 4790, 1, 198, 12303, 312, 796, 366, 19, 65, 17, 69, 3132, 64, 18, 12, 24, 68, 535, 12, 40486, 66, 12, 65, 34229, 12, 65, 2718, 1270, 17896, 65, 4790, 68, 24, 1, 198, 9641, 796, 366, 17, 13, 2327, 13, 15, 10, 15, 1, 198, 198, 30109, 25835, 12303, 312, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 41, 3069, 36918, 11799, 1600, 366, 25835, 25404, 1600, 366, 47, 10025, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 22, 69, 18, 891, 721, 41322, 2091, 43950, 9945, 23, 4309, 69, 23, 65, 18, 15630, 18, 66, 16, 67, 17, 65, 15, 64, 15, 397, 15, 2791, 1, 198, 12303, 312, 796, 366, 2548, 64, 27712, 65, 18, 12, 2934, 4089, 12, 20, 67, 17, 65, 12, 64, 20, 67, 18, 12, 1415, 10210, 5892, 1314, 68, 9879, 1, 198, 9641, 796, 366, 17, 13, 2623, 13, 15, 10, 15, 1, 198, 198, 30109, 15047, 37065, 82, 11907, 198, 10378, 82, 796, 14631, 3163, 77, 727, 72, 17410, 1600, 366, 6601, 44909, 942, 1600, 366, 20344, 6169, 1600, 366, 818, 2704, 378, 1600, 366, 14993, 451, 2348, 29230, 1600, 366, 29531, 1600, 366, 2484, 1144, 3163, 20477, 1600, 366, 26437, 15721, 896, 1600, 366, 50, 29572, 3163, 20477, 1600, 366, 48346, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 3559, 1731, 2078, 7568, 20, 69, 15277, 4846, 1821, 1821, 276, 31916, 1507, 1860, 3980, 486, 21142, 16102, 65, 21, 1, 198, 12303, 312, 796, 366, 2931, 18, 16072, 1731, 64, 12, 3609, 3553, 12, 20, 67, 940, 12, 2079, 4309, 12, 31697, 67, 37309, 1954, 69, 19, 67, 1, 198, 9641, 796, 366, 16, 13, 18, 13, 20, 1, 198, 198, 30109, 13949, 50, 451, 2052, 11907, 198, 10378, 82, 796, 14631, 14993, 451, 2348, 29230, 1600, 366, 45, 6561, 349, 690, 14881, 1600, 366, 26705, 32755, 776, 1600, 366, 48944, 1600, 366, 18557, 69, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 69, 1983, 19924, 68, 43697, 68, 24, 3270, 65, 2623, 3134, 67, 23, 66, 6052, 68, 3609, 44675, 4790, 1828, 1120, 2624, 1860, 1, 198, 12303, 312, 796, 366, 67, 18, 67, 1795, 37864, 12, 68, 24, 67, 19, 12, 20, 69, 2718, 12, 4089, 3695, 12, 17, 397, 15, 69, 535, 2414, 13381, 1, 198, 9641, 796, 366, 22, 13, 16, 13, 16, 1, 198, 198, 30109, 14993, 451, 2348, 29230, 11907, 198, 10378, 82, 796, 14631, 25835, 25404, 8973, 198, 12303, 312, 796, 366, 2718, 68, 17, 68, 3510, 67, 12, 69, 4531, 67, 12, 20, 2670, 67, 12, 65, 19, 1453, 12, 23, 2548, 69, 535, 535, 24, 66, 23, 68, 1, 198, 198, 30109, 11187, 16870, 24629, 2733, 11907, 198, 10378, 82, 796, 14631, 35491, 37766, 14055, 1600, 366, 29238, 5189, 23907, 2977, 1600, 366, 23579, 10100, 11627, 5736, 1600, 366, 818, 4399, 24629, 2733, 1600, 366, 23820, 20310, 34184, 1187, 1600, 366, 14993, 451, 2348, 29230, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 1350, 24, 68, 891, 24, 69, 24, 67, 3695, 344, 21101, 21, 69, 29119, 69, 18, 66, 940, 6814, 24309, 64, 21, 66, 20, 397, 23, 1983, 1, 198, 12303, 312, 796, 366, 17, 397, 18, 64, 18, 330, 12, 1878, 3901, 12, 20, 65, 1120, 12, 7252, 3070, 12, 3324, 3720, 22544, 3609, 34427, 1, 198, 9641, 796, 366, 15, 13, 18, 13, 20, 1, 198, 198, 30109, 11187, 2667, 11907, 198, 12303, 312, 796, 366, 3980, 1860, 65, 27037, 12, 23, 3553, 65, 12, 4051, 68, 16, 12, 65, 5999, 67, 12, 9945, 19, 67, 3365, 9945, 2816, 3104, 1, 198, 198, 30109, 39516, 38469, 1634, 11907, 198, 10378, 82, 796, 14631, 19182, 39317, 1600, 366, 8697, 2937, 388, 6874, 1600, 366, 26125, 11505, 9492, 12786, 1600, 366, 23579, 10100, 11627, 5736, 1600, 366, 17932, 36037, 23595, 1600, 366, 1532, 40674, 1600, 366, 32517, 18833, 20193, 1600, 366, 14993, 451, 2348, 29230, 1600, 366, 34519, 3163, 20477, 1600, 366, 34220, 7834, 1135, 1015, 1600, 366, 39618, 1600, 366, 48913, 16458, 723, 49601, 1600, 366, 50, 2538, 36, 5837, 343, 689, 1600, 366, 45442, 1600, 366, 16818, 278, 18274, 2410, 1600, 366, 3118, 11869, 1600, 366, 38469, 1634, 14881, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 6888, 7252, 17, 67, 2327, 1507, 5036, 5066, 10163, 25870, 1129, 66, 1860, 32642, 64, 19, 25600, 68, 4309, 68, 344, 15, 1, 198, 12303, 312, 796, 366, 17457, 66, 330, 3609, 23, 12, 1433, 1828, 12, 1157, 68, 24, 12, 17, 64, 20, 66, 12, 4310, 2075, 44750, 23721, 3829, 1, 198, 9641, 796, 366, 15, 13, 1065, 13, 3865, 1, 198, 198, 30109, 33907, 43, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 24123, 11505, 7378, 62, 73, 297, 1600, 366, 41, 3069, 36918, 11799, 1600, 366, 43, 12582, 8001, 37199, 1600, 366, 25835, 25404, 1600, 366, 47, 10025, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 20, 30505, 64, 891, 2931, 65, 1821, 68, 1120, 1238, 68, 1314, 1238, 69, 43697, 13331, 25838, 1120, 1821, 67, 19, 276, 15, 1, 198, 12303, 312, 796, 366, 23, 3980, 69, 43977, 66, 12, 67, 4521, 68, 12, 20, 67, 2931, 12, 65, 31418, 12, 3609, 397, 4304, 17896, 23, 7012, 22, 1, 198, 9641, 796, 366, 1238, 2481, 13, 16, 13, 16, 10, 17, 1, 198, 198, 30109, 14155, 305, 33637, 11907, 198, 10378, 82, 796, 14631, 9704, 2902, 1600, 366, 29531, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 18, 67, 18, 68, 24, 2999, 65, 3132, 22337, 64, 1983, 23601, 67, 15, 19881, 405, 67, 21, 330, 2231, 27033, 1899, 2481, 12993, 1, 198, 12303, 312, 796, 366, 1129, 1415, 1860, 17, 69, 12, 6659, 66, 21, 12, 20, 69, 10210, 12, 5774, 1129, 12, 21, 67, 20, 66, 4846, 940, 487, 2931, 1, 198, 9641, 796, 366, 15, 13, 20, 13, 24, 1, 198, 198, 30109, 44, 461, 494, 11907, 198, 10378, 82, 796, 14631, 35320, 602, 1600, 366, 14881, 2414, 1600, 366, 10258, 44029, 263, 1600, 366, 10258, 27054, 6880, 1600, 366, 10258, 31431, 1600, 366, 5216, 669, 1600, 366, 4264, 454, 1600, 366, 20344, 2455, 507, 1600, 366, 23579, 10100, 11627, 5736, 1600, 366, 5777, 7378, 7156, 1600, 366, 8979, 9399, 1600, 366, 13715, 12727, 49601, 1600, 366, 26227, 889, 1600, 366, 11146, 6030, 1600, 366, 11146, 6030, 4826, 301, 7861, 1600, 366, 10082, 15748, 15522, 873, 1600, 366, 41339, 32517, 14881, 1600, 366, 5159, 9399, 1600, 366, 9492, 2100, 50, 1039, 1600, 366, 40, 568, 3903, 1600, 366, 42, 7948, 35, 6377, 1600, 366, 14772, 49568, 13290, 654, 1600, 366, 14993, 451, 2348, 29230, 1600, 366, 44, 461, 494, 14055, 1600, 366, 9704, 2902, 1600, 366, 23850, 1600, 366, 37372, 49568, 13798, 1600, 366, 31310, 712, 2977, 1600, 366, 47, 5430, 1600, 366, 43328, 18274, 4487, 1600, 366, 34220, 14520, 41472, 1600, 366, 18557, 69, 1600, 366, 29531, 1600, 366, 6892, 420, 21156, 37, 727, 364, 1600, 366, 32634, 1634, 1600, 366, 15307, 2364, 1600, 366, 50, 3916, 45767, 15878, 82, 1600, 366, 50, 29572, 3163, 20477, 1600, 366, 45442, 3163, 20477, 1600, 366, 48346, 1600, 366, 29668, 14881, 1600, 366, 29668, 37, 13271, 1600, 366, 44909, 3163, 20477, 1600, 366, 3118, 291, 1098, 24629, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 3980, 65, 15, 65, 29331, 2075, 4304, 66, 28324, 31794, 17896, 23, 1765, 1314, 12993, 397, 10232, 66, 2713, 64, 8628, 1, 198, 12303, 312, 796, 366, 1453, 3695, 69, 22, 66, 21, 12, 1157, 21855, 12, 4310, 69, 17, 12, 44183, 64, 12, 66, 5036, 19, 64, 17, 65, 20, 64, 3553, 64, 1, 198, 9641, 796, 366, 15, 13, 1314, 13, 18, 1, 198, 198, 30109, 44, 461, 494, 14055, 11907, 198, 10378, 82, 796, 14631, 31310, 712, 2977, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 22, 65, 535, 5999, 1954, 21855, 22318, 1954, 64, 21, 64, 4349, 671, 1828, 2682, 1453, 68, 1983, 64, 1157, 16562, 66, 23, 1, 198, 12303, 312, 796, 366, 1238, 69, 1238, 64, 1495, 12, 19, 69, 15, 68, 12, 19, 69, 7568, 12, 65, 20, 67, 16, 12, 3553, 1270, 2718, 1983, 39506, 65, 1, 198, 9641, 796, 366, 15, 13, 16, 13, 18, 1, 198, 198, 30109, 5124, 723, 30871, 11907, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 24, 21101, 22745, 65, 1507, 18294, 65, 17, 19104, 9945, 25191, 324, 13331, 24, 1954, 65, 2231, 49051, 5036, 2919, 68, 1, 198, 12303, 312, 796, 366, 67, 11623, 68, 19, 67, 18, 12, 1828, 2718, 12, 2857, 1129, 12, 65, 1129, 66, 12, 13331, 42759, 65, 23, 64, 19, 28933, 1, 198, 9641, 796, 366, 15, 13, 16, 13, 21, 1, 198, 198, 30109, 44, 6320, 3163, 20477, 11907, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 68, 23, 65, 30743, 891, 3312, 721, 4761, 68, 23, 66, 39101, 38380, 5036, 2999, 22521, 2816, 1983, 1453, 20, 23726, 1, 198, 12303, 312, 796, 366, 9945, 65, 3270, 2078, 67, 12, 68, 397, 16, 12, 20, 69, 3829, 12, 5332, 66, 17, 12, 65, 24, 65, 15, 276, 65, 22, 66, 12865, 1, 198, 9641, 796, 366, 15, 13, 19, 13, 16, 1, 198, 198, 30109, 9704, 2902, 11907, 198, 10378, 82, 796, 14631, 14881, 2414, 8973, 198, 12303, 312, 796, 366, 67, 21, 69, 19, 32128, 68, 12, 64, 891, 20, 12, 31654, 64, 12, 4846, 66, 16, 12, 24, 66, 44698, 34626, 31980, 64, 1, 198, 198, 30109, 23850, 11907, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 20, 12993, 39088, 67, 5607, 66, 1878, 4521, 67, 1959, 1270, 4869, 1120, 16072, 7012, 49641, 64, 2414, 68, 7252, 24, 66, 1350, 1, 198, 12303, 312, 796, 366, 22, 1765, 19, 69, 2860, 12, 37750, 66, 12, 20, 69, 3682, 12, 23, 64, 3388, 12, 65, 13331, 15, 65, 23, 4761, 19881, 19881, 1, 198, 9641, 796, 366, 16, 13, 16, 13, 15, 1, 198, 198, 30109, 37372, 49568, 13798, 11907, 198, 10378, 82, 796, 14631, 23839, 51, 6037, 1600, 366, 16541, 6086, 1600, 366, 6601, 44909, 942, 1600, 366, 11146, 6030, 4826, 301, 7861, 1600, 366, 10082, 15748, 15522, 873, 1600, 366, 14772, 49568, 13290, 654, 1600, 366, 2200, 6489, 1600, 366, 6892, 420, 21156, 37, 727, 364, 1600, 366, 14402, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 2154, 68, 4790, 1270, 2718, 11848, 69, 2999, 67, 49541, 68, 3695, 69, 3865, 27192, 64, 16, 13331, 2919, 10210, 66, 21, 32148, 1, 198, 12303, 312, 796, 366, 15, 64, 19, 69, 23, 40523, 12, 67, 1495, 66, 12, 19, 22521, 12, 64, 5892, 65, 12, 22, 23726, 7568, 66, 16, 7252, 4310, 1, 198, 9641, 796, 366, 15, 13, 17, 13, 16, 1, 198, 198, 30109, 44, 3077, 51, 6561, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 25835, 25404, 8973, 198, 12303, 312, 796, 366, 66, 23, 487, 67, 24, 66, 18, 12, 26073, 67, 12, 3365, 3901, 12, 65, 3695, 68, 12, 2919, 1558, 67, 22, 18781, 13331, 16, 1, 198, 198, 30109, 37031, 3163, 20477, 11907, 198, 10378, 82, 796, 14631, 21979, 7680, 82, 1600, 366, 35, 689, 1600, 366, 43, 12582, 8001, 37199, 1600, 366, 8199, 12423, 46445, 32289, 1600, 366, 47, 10025, 1600, 366, 18557, 69, 1600, 366, 50, 29572, 3163, 20477, 1600, 366, 48346, 1600, 366, 26453, 913, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 48200, 66, 16, 68, 16, 1453, 18, 65, 3388, 5066, 1120, 1983, 64, 4304, 69, 21315, 68, 17, 68, 29143, 3901, 10210, 1157, 5237, 1, 198, 12303, 312, 796, 366, 21101, 23, 66, 28362, 69, 12, 16, 330, 69, 12, 3270, 64, 18, 12, 24, 67, 17, 65, 12, 21, 68, 2548, 67, 28694, 69, 47521, 1, 198, 9641, 796, 366, 15, 13, 17, 13, 2075, 1, 198, 198, 30109, 17140, 654, 11907, 198, 10378, 82, 796, 14631, 6601, 17614, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 19881, 21536, 344, 3829, 65, 21, 66, 24, 2308, 2624, 67, 1495, 9945, 66, 3609, 16, 1765, 66, 47372, 7568, 2075, 5774, 69, 1, 198, 12303, 312, 796, 366, 68, 16, 67, 1959, 67, 22, 64, 12, 11848, 17896, 12, 20, 12993, 17, 12, 24, 330, 15, 12, 69, 1065, 2934, 17, 66, 2091, 68, 2078, 1, 198, 9641, 796, 366, 16, 13, 15, 13, 17, 1, 198, 198, 30109, 44, 8899, 11907, 198, 12303, 312, 796, 366, 64, 5066, 324, 16562, 12, 22, 68, 1485, 12, 1120, 5705, 12, 48372, 69, 12, 5036, 30206, 66, 40179, 36088, 1, 198, 198, 30109, 44, 8546, 291, 7680, 82, 11907, 198, 10378, 82, 796, 14631, 44, 6320, 3163, 20477, 1600, 366, 34519, 3163, 20477, 1600, 366, 47, 29373, 7680, 82, 1600, 366, 25896, 7680, 82, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 65, 2682, 68, 18, 15630, 18, 6888, 22, 66, 48581, 18444, 25096, 2718, 21101, 940, 535, 19, 67, 16, 67, 1795, 67, 42802, 67, 1, 198, 12303, 312, 796, 366, 68, 5824, 66, 9945, 2079, 12, 23, 3388, 69, 12, 3980, 891, 12, 65, 12993, 15, 12, 16, 3609, 17, 15630, 1350, 15, 29769, 1, 198, 9641, 796, 366, 15, 13, 18, 13, 18, 1, 198, 198, 30109, 44, 8590, 5049, 34, 2246, 861, 82, 62, 73, 297, 11907, 198, 12303, 312, 796, 366, 1415, 64, 15277, 21, 67, 12, 69, 1899, 67, 12, 43918, 68, 12, 24, 19244, 12, 1065, 67, 24, 4761, 10210, 23, 19707, 1, 198, 198, 30109, 44, 377, 2860, 14155, 305, 11907, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 66, 21, 19782, 69, 24, 64, 22, 16072, 20, 67, 24, 67, 3270, 1314, 397, 1959, 69, 26427, 2598, 2481, 65, 1065, 67, 1731, 64, 3104, 1, 198, 12303, 312, 796, 366, 3510, 67, 17, 66, 18, 64, 16, 12, 69, 22, 2682, 12, 20, 69, 9945, 12, 2079, 2718, 12, 65, 24, 65, 24, 64, 1765, 64, 19, 26115, 1, 198, 9641, 796, 366, 15, 13, 17, 13, 17, 1, 198, 198, 30109, 45, 6561, 349, 690, 14881, 11907, 198, 10378, 82, 796, 14631, 28813, 25468, 1600, 366, 20344, 6169, 1600, 366, 37, 9504, 28813, 1600, 366, 39746, 28813, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 1120, 26717, 69, 24, 2682, 68, 2816, 68, 20, 6888, 2670, 1065, 21855, 24, 3901, 12501, 19104, 65, 2920, 6888, 24, 65, 3104, 1, 198, 12303, 312, 796, 366, 67, 3901, 15630, 32182, 12, 18741, 64, 12, 20, 36088, 12, 23, 68, 19, 66, 12, 66, 32128, 1433, 15982, 66, 21, 66, 1, 198, 9641, 796, 366, 22, 13, 23, 13, 17, 1, 198, 198, 30109, 32572, 82, 6442, 11907, 198, 10378, 82, 796, 14631, 20344, 1817, 1600, 366, 13949, 50, 451, 2052, 1600, 366, 14993, 451, 2348, 29230, 1600, 366, 45, 6561, 349, 690, 14881, 1600, 366, 18557, 69, 1600, 366, 3041, 39344, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 30484, 69, 1065, 68, 24, 64, 16, 64, 3695, 1795, 33459, 67, 486, 4790, 66, 24294, 68, 21, 64, 2079, 24760, 67, 22, 330, 16, 1, 198, 12303, 312, 796, 366, 1983, 4524, 68, 18, 68, 23, 12, 69, 19, 12993, 12, 20, 68, 1954, 12, 24, 2857, 65, 12, 21, 67, 22, 68, 17544, 4790, 65, 3980, 1, 198, 9641, 796, 366, 19, 13, 20, 13, 16, 1, 198, 198, 30109, 26705, 32755, 776, 11907, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 65, 5036, 2857, 68, 40761, 67, 1899, 65, 6469, 65, 2791, 65, 5333, 67, 17, 67, 2598, 12762, 65, 5237, 68, 18, 64, 30803, 21855, 1, 198, 12303, 312, 796, 366, 3324, 7012, 2598, 1129, 12, 17, 67, 16, 69, 12, 3365, 10210, 12, 24, 11848, 16, 12, 23, 5853, 31916, 64, 17, 68, 18, 1, 198, 9641, 796, 366, 15, 13, 18, 13, 20, 1, 198, 198, 30109, 8199, 12423, 46445, 32289, 11907, 198, 10378, 82, 796, 14631, 20344, 1817, 1600, 366, 45442, 3163, 20477, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 1433, 7012, 330, 16344, 66, 31360, 23, 15630, 2718, 33646, 1495, 2791, 66, 24, 23451, 68, 41172, 68, 5332, 66, 17, 69, 15, 1, 198, 12303, 312, 796, 366, 65, 23, 64, 23, 2996, 5774, 12, 19, 15363, 12, 20, 397, 16, 12, 5999, 15630, 12, 7252, 37128, 67, 2718, 11848, 344, 1, 198, 9641, 796, 366, 15, 13, 19, 13, 24, 1, 198, 198, 30109, 7934, 34, 8068, 11907, 198, 10378, 82, 796, 14631, 40961, 3163, 20477, 1600, 366, 26227, 889, 1600, 366, 7934, 34, 8068, 62, 73, 297, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 1954, 65, 15, 68, 2624, 69, 2934, 11645, 64, 19, 68, 17, 68, 38073, 68, 30924, 397, 12993, 50148, 276, 2075, 18638, 65, 1, 198, 12303, 312, 796, 366, 1270, 35447, 64, 1157, 12, 2816, 6469, 12, 46900, 64, 12, 5607, 11848, 12, 7252, 24, 64, 24, 44673, 2327, 65, 24, 1, 198, 9641, 796, 366, 15, 13, 1157, 13, 18, 1, 198, 198, 30109, 7934, 34, 8068, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 39, 8068, 20, 62, 73, 297, 1600, 366, 41, 3069, 36918, 11799, 1600, 366, 25835, 34, 21886, 62, 73, 297, 1600, 366, 25835, 5432, 39, 17, 62, 73, 297, 1600, 366, 25835, 25404, 1600, 366, 44, 3077, 51, 6561, 62, 73, 297, 1600, 366, 47, 10025, 1600, 366, 57, 8019, 62, 73, 297, 1600, 366, 77, 456, 29281, 17, 62, 73, 297, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 15, 12993, 19, 67, 16, 19881, 17, 891, 2231, 21599, 8432, 5332, 66, 24, 330, 20, 69, 23, 66, 22, 68, 40035, 67, 24, 25270, 66, 1, 198, 12303, 312, 796, 366, 22, 26660, 16945, 69, 12, 3559, 67, 23, 12, 3980, 1238, 12, 11848, 69, 19, 12, 66, 17, 66, 5892, 1507, 2999, 12993, 18, 1, 198, 9641, 796, 366, 7029, 13, 36680, 13, 7029, 10, 15, 1, 198, 198, 30109, 7934, 79, 20475, 11907, 198, 10378, 82, 796, 14631, 8979, 9399, 1600, 366, 5159, 14055, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 1507, 891, 66, 3312, 69, 21, 721, 2623, 64, 23, 65, 41531, 65, 1954, 69, 2998, 21, 68, 18, 66, 21, 330, 22, 66, 18, 19881, 21395, 1, 198, 12303, 312, 796, 366, 69, 2931, 33916, 1453, 12, 18, 67, 22, 66, 12, 4309, 1558, 12, 6052, 1270, 12, 16072, 21495, 1314, 7012, 38819, 1, 198, 9641, 796, 366, 16, 13, 15, 13, 17, 1, 198, 198, 30109, 26245, 29046, 11907, 198, 12303, 312, 796, 366, 6888, 36189, 45418, 12, 66, 17, 68, 18, 12, 3559, 64, 24, 12, 558, 19, 12, 16, 68, 24, 3459, 65, 17, 66, 1129, 2919, 1, 198, 198, 30109, 15419, 29127, 50, 6442, 11907, 198, 10378, 82, 796, 14631, 19182, 39317, 1600, 366, 37, 9504, 28813, 1600, 366, 39746, 28813, 1600, 366, 29993, 876, 36949, 690, 1600, 366, 14993, 451, 2348, 29230, 1600, 366, 6690, 30753, 19182, 33637, 1600, 366, 6690, 30753, 41384, 1634, 1600, 366, 3041, 39344, 1600, 366, 50, 979, 5805, 14881, 1600, 366, 7248, 3245, 1600, 366, 45442, 3163, 20477, 1600, 366, 3118, 11869, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 68, 24, 487, 66, 24, 1828, 1558, 65, 23, 31495, 68, 15, 12993, 22, 65, 23, 28362, 69, 21, 22047, 64, 19, 64, 2931, 2623, 66, 3865, 1, 198, 12303, 312, 796, 366, 4531, 1485, 64, 4761, 66, 12, 16, 69, 24, 65, 12, 19, 344, 17, 12, 23, 67, 6469, 12, 17544, 5824, 67, 344, 6888, 721, 1, 198, 9641, 796, 366, 15, 13, 18, 13, 1157, 1, 198, 198, 30109, 31310, 712, 2977, 11907, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 5036, 1959, 1878, 4299, 18, 67, 15, 66, 19, 64, 23, 27033, 12762, 67, 19, 68, 2231, 535, 35638, 2481, 65, 16, 68, 3559, 67, 1, 198, 12303, 312, 796, 366, 20, 15377, 1314, 16072, 12, 19, 22745, 12, 20, 1860, 68, 12, 65, 24909, 12, 48634, 16072, 2598, 3459, 1453, 17, 1, 198, 9641, 796, 366, 15, 13, 19, 13, 15, 1, 198, 198, 30109, 34519, 3163, 20477, 11907, 198, 10378, 82, 796, 14631, 48003, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 3023, 18938, 22, 68, 15, 65, 2934, 487, 5333, 12993, 11848, 22, 1878, 1765, 40486, 397, 25710, 2623, 11848, 65, 20, 276, 1, 198, 12303, 312, 796, 366, 21, 5036, 16, 19881, 65, 15, 12, 2934, 1238, 12, 27641, 12, 23, 6888, 22, 12, 1795, 69, 3553, 67, 2075, 69, 3459, 16, 1, 198, 9641, 796, 366, 16, 13, 940, 13, 23, 1, 198, 198, 30109, 46, 1130, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 41, 3069, 36918, 11799, 1600, 366, 25835, 25404, 1600, 366, 47, 10025, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 3720, 2718, 18082, 38472, 1433, 1899, 65, 19, 67, 21, 64, 1453, 68, 535, 17, 69, 22, 68, 16, 66, 6659, 66, 23, 1453, 19, 68, 17, 69, 1, 198, 12303, 312, 796, 366, 68, 4524, 1065, 64, 17, 64, 12, 16, 64, 21, 68, 12, 4051, 66, 15, 12, 1350, 405, 12, 36042, 68, 1495, 4869, 66, 2713, 16, 1, 198, 9641, 796, 366, 16, 13, 18, 13, 20, 10, 15, 1, 198, 198, 30109, 11505, 6369, 49, 11907, 198, 10378, 82, 796, 14631, 5216, 669, 1600, 366, 8979, 9399, 1600, 366, 11505, 6369, 49, 62, 73, 297, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 34159, 69, 44994, 1899, 69, 9945, 4051, 7568, 22, 21142, 486, 68, 4846, 891, 22337, 2327, 2623, 67, 16, 68, 21, 2091, 1, 198, 12303, 312, 796, 366, 4309, 68, 16, 67, 30695, 12, 69, 29159, 12, 19, 64, 1157, 12, 64, 19, 1350, 12, 22, 21261, 1731, 34801, 330, 22, 1, 198, 9641, 796, 366, 15, 13, 18, 13, 17, 1, 198, 198, 30109, 11505, 6369, 49, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 3546, 776, 62, 73, 297, 1600, 366, 41, 3069, 36918, 11799, 1600, 366, 25835, 25404, 1600, 366, 47, 10025, 1600, 366, 57, 8019, 62, 73, 297, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 24, 25429, 44227, 16, 68, 24, 64, 24403, 1065, 69, 1731, 45734, 344, 6659, 66, 4051, 16072, 15, 32459, 69, 21288, 1, 198, 12303, 312, 796, 366, 1507, 64, 29119, 11848, 12, 7252, 1558, 12, 4051, 3134, 12, 64, 50055, 12, 64, 1453, 47785, 15630, 2425, 21101, 1, 198, 9641, 796, 366, 18, 13, 16, 13, 16, 10, 15, 1, 198, 198, 30109, 11505, 25835, 76, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 25835, 25404, 8973, 198, 12303, 312, 796, 366, 2713, 23, 1954, 4059, 12, 1129, 330, 12, 20, 65, 23, 65, 12, 4846, 2078, 12, 26492, 64, 3023, 15630, 4349, 1065, 1, 198, 198, 30109, 11505, 31127, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 41, 3069, 36918, 11799, 1600, 366, 25835, 25404, 1600, 366, 47, 10025, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 1314, 11245, 17896, 65, 22, 67, 23, 9945, 18, 66, 21, 66, 23, 3553, 69, 6814, 1415, 4531, 16, 64, 20, 2670, 64, 23, 69, 1983, 2713, 64, 1, 198, 12303, 312, 796, 366, 29334, 66, 18, 66, 3865, 12, 17, 68, 5705, 12, 1120, 7252, 12, 23, 891, 66, 12, 1129, 23734, 65, 17, 64, 18, 64, 3865, 1, 198, 9641, 796, 366, 16, 13, 16, 13, 940, 10, 15, 1, 198, 198, 30109, 11505, 22882, 24629, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 7293, 5329, 15514, 43, 11127, 62, 73, 297, 1600, 366, 41, 3069, 36918, 11799, 1600, 366, 25835, 25404, 1600, 366, 47, 10025, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 1485, 2996, 1731, 6420, 69, 3104, 3980, 330, 16344, 17, 9945, 1959, 15277, 68, 16, 11848, 10210, 2231, 2996, 67, 3023, 69, 16, 1, 198, 12303, 312, 796, 366, 22521, 2078, 16344, 20, 12, 23, 30057, 12, 48096, 65, 12, 64, 24, 68, 16, 12, 65, 1959, 1433, 16072, 2718, 2548, 68, 1, 198, 9641, 796, 366, 15, 13, 20, 13, 20, 10, 15, 1, 198, 198, 30109, 18257, 385, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 41, 3069, 36918, 11799, 1600, 366, 25835, 25404, 1600, 366, 47, 10025, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 4349, 64, 2919, 21855, 1415, 721, 2078, 6814, 17, 721, 22, 64, 24, 1983, 66, 19, 31496, 68, 19, 32148, 66, 17, 64, 2857, 1238, 1, 198, 12303, 312, 796, 366, 6420, 67, 19, 22413, 67, 12, 2425, 2623, 12, 3270, 1129, 12, 65, 24, 2481, 12, 7410, 22709, 69, 2718, 36720, 1, 198, 9641, 796, 366, 16, 13, 18, 13, 17, 10, 15, 1, 198, 198, 30109, 35422, 1068, 5216, 26448, 11907, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 5332, 69, 23, 68, 2996, 3695, 19881, 16, 69, 24, 1453, 15, 67, 1157, 68, 22, 11848, 16, 65, 18781, 2414, 2327, 31714, 67, 2857, 66, 1, 198, 12303, 312, 796, 366, 65, 330, 40486, 68, 16, 12, 20, 68, 4761, 12, 20, 1765, 66, 12, 23, 39071, 12, 11231, 23, 64, 42947, 69, 2816, 67, 1, 198, 9641, 796, 366, 16, 13, 19, 13, 16, 1, 198, 198, 30109, 35422, 3219, 28813, 36, 80, 11907, 198, 10378, 82, 796, 14631, 48003, 1600, 366, 19182, 39317, 1600, 366, 6601, 44909, 942, 1600, 366, 28813, 36, 80, 14881, 1600, 366, 23579, 10100, 11627, 5736, 1600, 366, 16870, 35470, 18274, 2410, 1600, 366, 22968, 2601, 16091, 1600, 366, 37, 9504, 28813, 1600, 366, 39746, 28813, 1600, 366, 14993, 451, 2348, 29230, 1600, 366, 11187, 2667, 1600, 366, 39516, 38469, 1634, 1600, 366, 14155, 305, 33637, 1600, 366, 44, 377, 2860, 14155, 305, 1600, 366, 32572, 82, 6442, 1600, 366, 34220, 7834, 1600, 366, 6719, 439, 5040, 33637, 1600, 366, 6690, 30753, 19182, 33637, 1600, 366, 3041, 39344, 1600, 366, 50, 29572, 3163, 20477, 1600, 366, 50, 29572, 28813, 33637, 1600, 366, 45442, 3163, 20477, 1600, 366, 3118, 11869, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 21, 69, 4304, 66, 46660, 1860, 16344, 18, 69, 17, 64, 29159, 891, 16, 1453, 405, 64, 1558, 65, 3510, 65, 12993, 2780, 4521, 68, 1, 198, 12303, 312, 796, 366, 16, 2934, 64, 22, 1878, 18, 12, 18, 68, 2154, 12, 4051, 68, 21, 12, 3865, 66, 18, 12, 15, 19881, 20, 30290, 13331, 20, 276, 1, 198, 9641, 796, 366, 20, 13, 3134, 13, 15, 1, 198, 198, 30109, 5662, 2200, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 41, 3069, 36918, 11799, 1600, 366, 25835, 25404, 1600, 366, 47, 10025, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 65, 17, 64, 22, 1878, 21, 2414, 68, 2931, 1795, 2816, 64, 2425, 1959, 324, 16, 64, 12865, 9395, 4846, 17, 65, 6888, 33646, 1, 198, 12303, 312, 796, 366, 17, 69, 1795, 69, 1433, 68, 12, 21, 1157, 64, 12, 4051, 397, 12, 15630, 5333, 12, 7252, 5892, 2934, 20, 65, 4089, 16072, 1, 198, 9641, 796, 366, 23, 13, 2598, 13, 15, 10, 15, 1, 198, 198, 30109, 5760, 44, 1381, 11907, 198, 10378, 82, 796, 14631, 14993, 451, 2348, 29230, 1600, 366, 50, 29572, 3163, 20477, 1600, 366, 5606, 578, 50, 29572, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 66, 23, 65, 5774, 2425, 65, 17, 69, 27877, 66, 1795, 18213, 5332, 66, 23, 2718, 1415, 66, 2414, 721, 13331, 18, 66, 44994, 2816, 1, 198, 12303, 312, 796, 366, 12865, 1415, 64, 16, 69, 12, 1983, 7012, 12, 44617, 66, 12, 397, 1238, 12, 3365, 69, 7252, 2598, 67, 6420, 1120, 1, 198, 9641, 796, 366, 15, 13, 1157, 13, 18, 1, 198, 198, 30109, 47, 10503, 25876, 11907, 198, 10378, 82, 796, 14631, 14881, 2414, 1600, 366, 34, 4834, 388, 1600, 366, 5159, 14055, 1600, 366, 5497, 1060, 3163, 20477, 1600, 366, 34519, 3163, 20477, 1600, 366, 8019, 11134, 62, 73, 297, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 21, 67, 13348, 67, 1821, 68, 1270, 65, 48250, 12993, 276, 24, 67, 4309, 721, 1959, 12993, 29228, 68, 1983, 67, 2548, 69, 23, 1, 198, 12303, 312, 796, 366, 69, 3553, 69, 20, 7252, 16, 12, 64, 18, 344, 12, 19, 15630, 23, 12, 23, 397, 24, 12, 4846, 69, 2079, 1959, 2998, 49287, 1, 198, 9641, 796, 366, 15, 13, 18, 13, 1065, 1, 198, 198, 30109, 47, 5430, 11907, 198, 10378, 82, 796, 14631, 10082, 15748, 15522, 873, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 1157, 2816, 69, 21, 69, 24, 2718, 13331, 17, 65, 5824, 13464, 25061, 69, 486, 13331, 7029, 68, 17477, 68, 19, 29807, 69, 1, 198, 12303, 312, 796, 366, 1129, 1765, 21, 7012, 18, 12, 23, 3720, 67, 12, 3980, 324, 12, 324, 5237, 12, 67, 20, 66, 19004, 1314, 2996, 2791, 1, 198, 9641, 796, 366, 15, 13, 19, 13, 17, 1, 198, 198, 30109, 47, 29373, 7680, 82, 11907, 198, 10378, 82, 796, 14631, 34519, 3163, 20477, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 27720, 2308, 21, 69, 21, 64, 20, 67, 23, 7568, 21, 32583, 69, 1314, 18213, 22, 68, 2999, 64, 22, 64, 17, 66, 19, 5036, 2780, 405, 1, 198, 12303, 312, 796, 366, 4051, 2624, 15630, 19881, 12, 24, 64, 324, 12, 20, 27877, 12, 65, 24, 2999, 12, 13227, 2078, 1731, 66, 42240, 18, 1, 198, 9641, 796, 366, 15, 13, 20, 13, 940, 1, 198, 198, 30109, 47, 14208, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 34, 18131, 62, 73, 297, 1600, 366, 23252, 11250, 62, 73, 297, 1600, 366, 11146, 6030, 17, 62, 73, 297, 1600, 366, 30214, 33, 19830, 62, 73, 297, 1600, 366, 38, 8019, 62, 73, 297, 1600, 366, 13587, 69, 48230, 62, 73, 297, 1600, 366, 41, 3069, 36918, 11799, 1600, 366, 25835, 25404, 1600, 366, 47, 10025, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 24, 15630, 23451, 1415, 2414, 65, 1065, 276, 1129, 26561, 69, 15630, 3980, 66, 19, 21855, 19, 7012, 23, 2920, 3459, 65, 15, 67, 1, 198, 12303, 312, 796, 366, 2623, 66, 4521, 1983, 69, 12, 2079, 2996, 12, 20, 39449, 12, 64, 33438, 12, 66, 21, 65, 17279, 69, 22, 1731, 69, 18, 1, 198, 9641, 796, 366, 16, 13, 2857, 13, 15, 10, 15, 1, 198, 198, 30109, 48944, 11907, 198, 10378, 82, 796, 14631, 35422, 1068, 5216, 26448, 1600, 366, 3118, 11869, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 2682, 66, 15, 68, 24, 324, 29119, 68, 20, 69, 22, 16072, 2425, 65, 940, 64, 2079, 4309, 6888, 22, 46589, 12993, 66, 20, 69, 1350, 1, 198, 12303, 312, 796, 366, 67, 4846, 68, 23, 1129, 68, 12, 16072, 2791, 12, 20, 39380, 12, 5607, 2078, 12, 5705, 66, 24, 66, 2425, 5892, 65, 15, 64, 1, 198, 9641, 796, 366, 15, 13, 1065, 13, 18, 1, 198, 198, 30109, 47, 945, 364, 11907, 198, 10378, 82, 796, 14631, 35, 689, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 3609, 19, 11848, 66, 324, 65, 1959, 3312, 535, 66, 2919, 20, 12993, 4309, 330, 27033, 17896, 1485, 3324, 67, 344, 535, 66, 1, 198, 12303, 312, 796, 366, 3388, 2934, 15, 64, 3388, 12, 16, 1860, 67, 12, 20, 29326, 12, 24, 30743, 12, 17, 19881, 15, 65, 2999, 17896, 24, 69, 15, 1, 198, 9641, 796, 366, 17, 13, 16, 13, 17, 1, 198, 198, 30109, 47, 844, 805, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 41, 3069, 36918, 11799, 1600, 366, 25835, 25404, 1600, 366, 47, 10025, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 65, 19, 69, 20, 67, 36629, 2920, 64, 940, 68, 22745, 1795, 64, 1731, 69, 344, 4761, 1350, 64, 4846, 65, 5066, 1959, 68, 1959, 1, 198, 12303, 312, 796, 366, 1270, 2670, 1731, 2920, 12, 33394, 64, 12, 20, 31115, 12, 23, 3901, 67, 12, 65, 16, 330, 344, 19, 68, 5607, 17896, 1, 198, 9641, 796, 366, 15, 13, 1821, 13, 16, 10, 15, 1, 198, 198, 30109, 47, 10025, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 35, 689, 1600, 366, 10002, 82, 1600, 366, 25835, 38, 270, 17, 1600, 366, 25835, 25404, 1600, 366, 11187, 2667, 1600, 366, 9704, 2902, 1600, 366, 18557, 69, 1600, 366, 2200, 6489, 1600, 366, 29531, 1600, 366, 37596, 1600, 366, 32634, 1634, 1600, 366, 51, 2662, 43, 1600, 366, 47079, 1600, 366, 52, 27586, 82, 1600, 366, 79, 22, 13344, 62, 73, 297, 8973, 198, 12303, 312, 796, 366, 2598, 66, 5036, 3865, 64, 12, 16, 1765, 17, 12, 4309, 18213, 12, 65, 43864, 12, 68, 17, 1878, 7568, 3388, 65, 3695, 69, 1, 198, 198, 30109, 47, 10025, 14815, 11907, 198, 10378, 82, 796, 14631, 47, 10025, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 64, 22, 64, 22, 68, 16, 64, 3459, 5332, 2327, 2414, 68, 43697, 68, 19, 1765, 64, 4521, 1120, 69, 23, 66, 2548, 7568, 3720, 65, 2718, 1, 198, 12303, 312, 796, 366, 1453, 14774, 34159, 12, 66, 48096, 12, 3559, 1433, 12, 24, 18213, 15, 12, 24, 13331, 486, 535, 67, 30610, 23, 1, 198, 9641, 796, 366, 15, 13, 16, 13, 16, 1, 198, 198, 30109, 43328, 18274, 4487, 11907, 198, 10378, 82, 796, 14631, 10258, 27054, 6880, 1600, 366, 5216, 669, 1600, 366, 35, 689, 1600, 366, 18557, 69, 1600, 366, 29531, 1600, 366, 3041, 39344, 1600, 366, 48346, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 65, 2919, 3559, 1731, 65, 19, 1878, 20, 64, 43704, 10210, 21, 2623, 1129, 16344, 405, 2791, 1415, 65, 18, 65, 1238, 65, 5774, 65, 1, 198, 12303, 312, 796, 366, 33438, 65, 6420, 64, 24, 12, 67, 21495, 12, 20, 1878, 67, 12, 24, 721, 21, 12, 22, 3510, 68, 2481, 9945, 66, 48768, 1, 198, 9641, 796, 366, 16, 13, 15, 13, 1314, 1, 198, 198, 30109, 3646, 9390, 10080, 11907, 198, 10378, 82, 796, 14631, 23839, 3646, 9390, 35, 278, 316, 73, 274, 1600, 366, 14881, 2414, 1600, 366, 35, 689, 1600, 366, 49926, 364, 6519, 1600, 366, 38197, 5239, 43, 270, 1691, 1600, 366, 40, 4503, 2373, 495, 1600, 366, 9492, 5275, 18274, 4487, 1600, 366, 40386, 1600, 366, 11187, 2667, 1600, 366, 9704, 2902, 1600, 366, 29531, 1600, 366, 3041, 39344, 1600, 366, 52, 27586, 82, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 3553, 27970, 66, 22, 721, 324, 31010, 2791, 35175, 535, 69, 20, 7252, 22, 1558, 64, 22745, 3459, 1765, 23, 66, 16, 69, 1, 198, 12303, 312, 796, 366, 22, 69, 24, 3023, 67, 5036, 12, 65, 5332, 68, 12, 19, 487, 21, 12, 65, 38380, 12, 67, 3609, 23539, 1954, 4846, 64, 23, 1, 198, 9641, 796, 366, 15, 13, 22, 13, 1507, 1, 198, 198, 30109, 34220, 7834, 11907, 198, 10378, 82, 796, 14631, 19182, 39317, 1600, 366, 13128, 5080, 41367, 3103, 574, 1240, 24629, 2733, 1600, 366, 8697, 2937, 388, 6874, 1600, 366, 1532, 40674, 1600, 366, 5124, 723, 30871, 1600, 366, 34220, 7834, 1135, 1015, 1600, 366, 39618, 1600, 366, 45442, 1600, 366, 1273, 13154, 3163, 20477, 14055, 1600, 366, 16818, 278, 18274, 2410, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 4531, 17, 65, 23, 67, 24, 1860, 18, 66, 3720, 5774, 64, 19, 67, 15, 16344, 19504, 69, 15, 64, 46636, 1860, 3829, 65, 20, 67, 2931, 67, 1, 198, 12303, 312, 796, 366, 69, 48170, 5036, 2718, 12, 67, 1350, 18, 12, 19, 65, 5824, 12, 5999, 1558, 12, 1129, 1954, 64, 41647, 1314, 3459, 1, 198, 9641, 796, 366, 15, 13, 20, 13, 19, 1, 198, 198, 30109, 34220, 7834, 1135, 1015, 11907, 198, 10378, 82, 796, 14631, 13128, 5080, 41367, 3103, 574, 1240, 24629, 2733, 1600, 366, 8697, 2937, 388, 6874, 1600, 366, 1532, 40674, 1600, 366, 45442, 1600, 366, 16818, 278, 18274, 2410, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 64, 18, 487, 2079, 19881, 3980, 1157, 5999, 1453, 1238, 21734, 64, 721, 4089, 397, 23, 69, 19, 64, 1065, 17896, 22, 1731, 64, 1, 198, 12303, 312, 796, 366, 16, 67, 405, 1821, 66, 24, 12, 23, 65, 4089, 12, 19, 1453, 22, 12, 23, 30460, 12, 18, 69, 48170, 4531, 6888, 15, 324, 1, 198, 9641, 796, 366, 15, 13, 16, 13, 17, 1, 198, 198, 30109, 34220, 14520, 41472, 11907, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 3324, 65, 18, 67, 15277, 20, 16072, 16, 10210, 15, 65, 3682, 67, 3865, 1765, 64, 5774, 7568, 10210, 17, 19881, 3134, 67, 20, 487, 21, 1, 198, 12303, 312, 796, 366, 2414, 3695, 2791, 66, 24, 12, 68, 18, 330, 12, 2231, 2425, 12, 5824, 68, 22, 12, 68, 18, 67, 42780, 3829, 2670, 1731, 1, 198, 9641, 796, 366, 15, 13, 16, 13, 17, 1, 198, 198, 30109, 27201, 276, 3163, 20477, 11907, 198, 10378, 82, 796, 14631, 6601, 17614, 1600, 366, 29783, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 64, 24943, 67, 21, 324, 24, 66, 2231, 4763, 4761, 66, 1415, 65, 22, 3132, 64, 36042, 3077, 67, 18, 66, 17, 69, 405, 12993, 1, 198, 12303, 312, 796, 366, 17, 7568, 65, 5066, 1453, 12, 535, 2670, 12, 20, 1860, 20, 12, 3865, 17457, 12, 44980, 19881, 46712, 67, 23906, 1, 198, 9641, 796, 366, 16, 13, 18, 13, 15, 1, 198, 198, 30109, 6719, 439, 5040, 33637, 11907, 198, 10378, 82, 796, 14631, 48003, 1600, 366, 19182, 39317, 1600, 366, 39746, 28813, 1600, 366, 17822, 11978, 3163, 20477, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 7012, 23, 1129, 2998, 2598, 3682, 10210, 19, 66, 24, 43444, 16, 64, 18, 67, 44928, 721, 22515, 69, 23, 330, 65, 2718, 69, 17, 1, 198, 12303, 312, 796, 366, 67, 24940, 69, 3609, 20, 12, 2598, 1157, 12, 49561, 66, 12, 23, 68, 3132, 12, 64, 21, 68, 18, 67, 24, 68, 405, 65, 3510, 1, 198, 9641, 796, 366, 15, 13, 17, 13, 15, 1, 198, 198, 30109, 36698, 4972, 11907, 198, 10378, 82, 796, 14631, 51, 2662, 43, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 405, 12993, 67, 24, 1959, 2598, 6888, 24, 66, 40761, 4089, 1983, 2857, 68, 24, 64, 16, 67, 15, 67, 20, 67, 4521, 397, 16, 68, 20, 64, 1, 198, 12303, 312, 796, 366, 21777, 1433, 66, 21, 64, 12, 17, 68, 4790, 12, 2996, 5066, 12, 21, 68, 2996, 12, 22, 22980, 2791, 2996, 4761, 1120, 1, 198, 9641, 796, 366, 16, 13, 17, 13, 17, 1, 198, 198, 30109, 35700, 51, 2977, 11907, 198, 10378, 82, 796, 14631, 34, 2433, 684, 1600, 366, 26227, 889, 1600, 366, 9704, 2902, 1600, 366, 3041, 39344, 1600, 366, 51, 2977, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 67, 5824, 37187, 1350, 21, 1157, 1453, 24, 67, 43798, 2414, 5036, 38605, 276, 11848, 22515, 69, 23, 535, 15, 1765, 1, 198, 12303, 312, 796, 366, 2919, 11231, 23, 67, 17, 12, 15, 67, 15, 66, 12, 3553, 2920, 12, 324, 13331, 12, 23, 64, 17, 330, 15187, 1878, 15, 67, 1, 198, 9641, 796, 366, 16, 13, 17, 13, 18, 1, 198, 198, 30109, 18557, 69, 11907, 198, 10378, 82, 796, 14631, 3118, 291, 1098, 8973, 198, 12303, 312, 796, 366, 2934, 2919, 3365, 6814, 12, 21, 22572, 12, 20, 68, 3134, 12, 5774, 2598, 12, 4349, 6048, 1453, 1765, 23, 67, 22, 1, 198, 198, 30109, 32577, 44, 2357, 11907, 198, 10378, 82, 796, 14631, 20344, 6169, 1600, 366, 18557, 69, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 1878, 671, 7012, 5066, 67, 3829, 487, 22047, 64, 21, 64, 2780, 67, 2167, 5824, 2682, 68, 344, 68, 17, 721, 24, 68, 23, 1, 198, 12303, 312, 796, 366, 24, 1959, 2091, 69, 19, 66, 12, 68, 27800, 12, 20, 64, 2713, 12, 64, 28771, 12, 19, 65, 35638, 9945, 28669, 6888, 1, 198, 9641, 796, 366, 16, 13, 22, 13, 16, 1, 198, 198, 30109, 4507, 324, 38, 42, 11907, 198, 10378, 82, 796, 14631, 6601, 44909, 942, 1600, 366, 14993, 451, 2348, 29230, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 3695, 64, 324, 487, 65, 18, 891, 67, 17, 18742, 1878, 20219, 49703, 65, 23, 64, 23, 7568, 16, 891, 26050, 18213, 2670, 1, 198, 12303, 312, 796, 366, 16, 16344, 2857, 65, 1120, 12, 37804, 67, 12, 20, 66, 2154, 12, 24, 38205, 12, 69, 22, 1129, 69, 23, 69, 18, 65, 10210, 66, 1, 198, 9641, 796, 366, 17, 13, 19, 13, 17, 1, 198, 198, 30109, 2200, 6489, 11907, 198, 10378, 82, 796, 14631, 9492, 5275, 18274, 4487, 1600, 366, 9704, 2902, 1600, 366, 50, 11603, 1600, 366, 3118, 291, 1098, 8973, 198, 12303, 312, 796, 366, 18, 13331, 15, 10210, 4846, 12, 68, 891, 16, 12, 20, 42548, 12, 23, 64, 5333, 12, 65, 18, 65, 31360, 23, 11848, 487, 65, 1, 198, 198, 30109, 29531, 11907, 198, 10378, 82, 796, 14631, 32634, 1634, 8973, 198, 12303, 312, 796, 366, 24, 64, 18, 69, 23, 30336, 12, 64, 17, 66, 24, 12, 20, 69, 2999, 12, 24, 64, 1157, 12, 23, 33459, 1795, 64, 16, 16344, 20, 66, 1, 198, 198, 30109, 29665, 4267, 11907, 198, 10378, 82, 796, 14631, 39618, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 486, 67, 33660, 69, 1120, 1828, 1120, 68, 6659, 69, 21, 69, 721, 15, 8635, 39380, 7252, 4521, 1485, 5892, 64, 18, 7252, 1, 198, 12303, 312, 796, 366, 66, 5705, 276, 17, 69, 16, 12, 47984, 20, 12, 4051, 69, 15, 12, 7252, 23, 68, 12, 9945, 22521, 1983, 25707, 2670, 1, 198, 9641, 796, 366, 15, 13, 19, 13, 17, 1, 198, 198, 30109, 6690, 18636, 14881, 11907, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 2598, 64, 2425, 7252, 22, 64, 20, 26050, 940, 1453, 18, 67, 1558, 4349, 67, 16, 69, 15, 68, 19, 18294, 39357, 2860, 24, 68, 1, 198, 12303, 312, 796, 366, 18, 10210, 12993, 20, 69, 17, 12, 16, 891, 19, 12, 48170, 66, 12, 24, 28256, 12, 2996, 5774, 65, 1899, 6485, 486, 1, 198, 9641, 796, 366, 16, 13, 16, 13, 17, 1, 198, 198, 30109, 6690, 30753, 19182, 33637, 11907, 198, 10378, 82, 796, 14631, 19182, 39317, 1600, 366, 35491, 37766, 14055, 1600, 366, 23579, 10100, 11627, 5736, 1600, 366, 33762, 3163, 20477, 1600, 366, 14993, 451, 2348, 29230, 1600, 366, 6690, 18636, 14881, 1600, 366, 39618, 1600, 366, 45442, 3163, 20477, 1600, 366, 48346, 1600, 366, 57, 35641, 1258, 37766, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 66, 24, 2598, 13331, 19, 324, 11848, 2857, 1350, 42117, 4304, 2327, 4089, 1157, 66, 15, 64, 1415, 39251, 17457, 66, 23, 64, 23, 1, 198, 12303, 312, 796, 366, 4790, 1157, 4521, 6888, 12, 23, 67, 5237, 12, 3553, 344, 12, 65, 39226, 12, 69, 17457, 24, 2791, 67, 2998, 19, 10210, 1, 198, 9641, 796, 366, 17, 13, 1238, 13, 15, 1, 198, 198, 30109, 6690, 30753, 41384, 1634, 11907, 198, 10378, 82, 796, 14631, 14993, 451, 2348, 29230, 1600, 366, 39516, 38469, 1634, 1600, 366, 34220, 7834, 1600, 366, 1273, 13154, 3163, 20477, 14055, 1600, 366, 14824, 21413, 50, 6442, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 65, 22, 6048, 3388, 66, 41060, 65, 1270, 42250, 18213, 21, 7568, 18082, 25764, 19, 66, 9945, 22, 12993, 3324, 68, 24, 69, 1, 198, 12303, 312, 796, 366, 69, 17, 66, 2091, 5237, 67, 12, 6814, 1765, 12, 3365, 67, 16, 12, 43564, 68, 12, 17, 15630, 4524, 69, 2078, 1821, 65, 19, 1, 198, 9641, 796, 366, 15, 13, 17, 13, 20, 1, 198, 198, 30109, 3041, 39344, 11907, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 2231, 68, 40173, 3682, 23055, 1899, 4790, 68, 397, 21, 69, 17, 6814, 20, 66, 24, 67, 26717, 67, 2079, 11848, 1065, 69, 24, 65, 1, 198, 12303, 312, 796, 366, 23362, 64, 2548, 3134, 12, 1270, 1120, 12, 4309, 6814, 12, 64, 23, 2623, 12, 68, 30005, 7012, 3829, 397, 3388, 1, 198, 9641, 796, 366, 16, 13, 17, 13, 17, 1, 198, 198, 30109, 6892, 420, 21156, 37, 727, 364, 11907, 198, 10378, 82, 796, 14631, 37596, 1600, 366, 3351, 36722, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 66, 9945, 67, 18, 65, 1485, 2548, 66, 4761, 344, 1959, 67, 24, 46352, 16344, 1350, 24, 68, 24, 65, 2154, 1453, 65, 20, 324, 6888, 1, 198, 12303, 312, 796, 366, 2713, 1507, 940, 2598, 12, 487, 15, 65, 12, 19, 330, 20, 12, 23, 27367, 12, 41292, 66, 16, 68, 2548, 9945, 405, 1, 198, 9641, 796, 366, 15, 13, 16, 13, 18, 1, 198, 198, 30109, 39618, 11907, 198, 10378, 82, 796, 14631, 52, 27586, 82, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 1821, 2623, 64, 18, 17457, 2919, 330, 22, 68, 38956, 68, 1983, 66, 22416, 67, 2231, 69, 20, 20972, 8628, 22136, 2481, 1, 198, 12303, 312, 796, 366, 3609, 48891, 30206, 12, 64, 19, 1860, 12, 20, 13464, 12, 24, 6814, 64, 12, 67, 48882, 3459, 22148, 20, 7568, 1, 198, 9641, 796, 366, 16, 13, 16, 13, 18, 1, 198, 198, 30109, 49, 11018, 11907, 198, 10378, 82, 796, 14631, 29531, 1600, 366, 49, 11018, 62, 73, 297, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 19881, 18, 20356, 69, 31047, 20198, 344, 15711, 66, 4304, 324, 6469, 66, 1983, 5892, 66, 3553, 11231, 22, 65, 16, 69, 1, 198, 12303, 312, 796, 366, 3720, 2931, 23, 16072, 19, 12, 64, 5332, 68, 12, 20, 67, 3388, 12, 7252, 21, 64, 12, 2780, 5066, 69, 1731, 36260, 13331, 1, 198, 9641, 796, 366, 15, 13, 22, 13, 15, 1, 198, 198, 30109, 49, 11018, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 41, 3069, 36918, 11799, 1600, 366, 25835, 25404, 1600, 366, 47, 10025, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 3104, 9945, 2624, 67, 487, 1065, 11848, 21, 16799, 65, 330, 4790, 66, 22567, 3459, 16315, 16, 19881, 15, 891, 11848, 22, 1, 198, 12303, 312, 796, 366, 69, 1120, 67, 16, 65, 3132, 12, 3459, 68, 23, 12, 3365, 2934, 12, 1350, 17, 66, 12, 16, 535, 43489, 36042, 2425, 69, 1, 198, 9641, 796, 366, 15, 13, 18, 13, 15, 10, 15, 1, 198, 198, 30109, 37596, 11907, 198, 12303, 312, 796, 366, 18213, 23, 68, 24, 1129, 66, 12, 26660, 66, 12, 4349, 1878, 12, 3459, 1495, 12, 46071, 5066, 10210, 22, 2481, 344, 1, 198, 198, 30109, 48913, 35, 11907, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 24, 7012, 29211, 2718, 65, 1731, 33660, 15498, 46438, 64, 1983, 5999, 64, 1120, 1983, 1899, 7252, 15, 65, 487, 3023, 1, 198, 12303, 312, 796, 366, 69, 2934, 64, 2075, 3609, 12, 33981, 67, 12, 20, 34825, 12, 64, 23, 4869, 12, 19, 65, 49934, 66, 324, 4309, 1731, 1, 198, 9641, 796, 366, 18, 13, 18, 13, 16, 1, 198, 198, 30109, 48913, 16458, 723, 49601, 11907, 198, 10378, 82, 796, 14631, 39746, 28813, 1600, 366, 1532, 40674, 1600, 366, 50, 2538, 36, 5837, 343, 689, 1600, 366, 38469, 1634, 14881, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 5237, 66, 17, 6814, 21, 1765, 2791, 2934, 23, 11848, 41655, 6659, 67, 21261, 2078, 33981, 15187, 67, 19, 6814, 64, 15, 68, 1, 198, 12303, 312, 796, 366, 18, 66, 1860, 68, 1129, 65, 12, 20, 11848, 15, 12, 19, 64, 1878, 12, 4531, 3132, 12, 1878, 18, 68, 23045, 68, 2931, 23, 65, 1, 198, 9641, 796, 366, 15, 13, 16, 13, 15, 1, 198, 198, 30109, 48913, 24544, 9497, 11907, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 26073, 2078, 4846, 2623, 21855, 23, 15982, 66, 20, 69, 19504, 3459, 67, 1983, 3901, 68, 24, 16344, 22, 64, 3312, 16, 64, 20, 66, 1, 198, 12303, 312, 796, 366, 5824, 68, 23, 3553, 7568, 12, 3324, 344, 12, 19, 24309, 12, 4531, 68, 20, 12, 22, 3459, 65, 2091, 22413, 1350, 19, 1, 198, 9641, 796, 366, 15, 13, 16, 13, 15, 1, 198, 198, 30109, 50, 2538, 36, 5837, 343, 689, 11907, 198, 10378, 82, 796, 14631, 1532, 40674, 1600, 366, 45442, 1600, 366, 38469, 1634, 14881, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 1415, 940, 64, 324, 16, 66, 21, 65, 2327, 4521, 1495, 4790, 66, 486, 65, 4846, 10210, 16, 69, 21, 67, 1350, 33372, 2079, 5824, 1, 198, 12303, 312, 796, 366, 2857, 2996, 486, 68, 23, 12, 2931, 64, 17, 12, 20, 68, 344, 12, 3459, 3388, 12, 21855, 6469, 2934, 4531, 64, 16, 13331, 1, 198, 9641, 796, 366, 15, 13, 21, 13, 2078, 1, 198, 198, 30109, 33351, 40778, 11907, 198, 10378, 82, 796, 14631, 25835, 25404, 1600, 366, 48913, 35, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 24, 535, 1959, 2816, 69, 17, 64, 24970, 65, 1507, 1350, 35916, 64, 19, 1453, 2154, 15630, 1821, 3132, 65, 17, 65, 23362, 68, 1, 198, 12303, 312, 796, 366, 22, 65, 2548, 65, 45310, 12, 64, 19, 67, 22, 12, 19, 66, 20, 68, 12, 23, 67, 3559, 12, 18, 69, 1270, 5607, 69, 21288, 1765, 1, 198, 9641, 796, 366, 15, 13, 18, 13, 15, 1, 198, 198, 30109, 50, 979, 5805, 14881, 11907, 198, 10378, 82, 796, 14631, 19182, 39317, 1600, 366, 17227, 50, 6442, 1600, 366, 36687, 14881, 1600, 366, 20344, 6169, 1600, 366, 23579, 10100, 11627, 5736, 1600, 366, 37787, 39317, 11627, 5736, 1600, 366, 14993, 451, 2348, 29230, 1600, 366, 11187, 2667, 1600, 366, 6690, 18636, 14881, 1600, 366, 6690, 30753, 19182, 33637, 1600, 366, 45442, 3163, 20477, 1600, 366, 48346, 1600, 366, 51, 2977, 1600, 366, 27660, 7680, 82, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 324, 17, 66, 22, 69, 2919, 68, 32148, 535, 18, 11848, 2713, 67, 26073, 2075, 65, 4869, 13331, 15, 891, 2791, 66, 28694, 64, 1, 198, 12303, 312, 796, 366, 15, 65, 6888, 2231, 4304, 12, 5705, 69, 19, 12, 19, 67, 3829, 12, 23, 16658, 12, 487, 64, 39101, 69, 1238, 39997, 1, 198, 9641, 796, 366, 16, 13, 1129, 13, 19, 1, 198, 198, 30109, 3351, 36722, 11907, 198, 10378, 82, 796, 14631, 35, 689, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 15, 65, 19, 65, 22, 69, 1485, 6052, 66, 487, 5607, 66, 2091, 4531, 16, 6814, 17, 64, 15, 19881, 3388, 66, 21, 276, 28872, 69, 6814, 1, 198, 12303, 312, 796, 366, 21, 66, 21, 64, 17, 68, 4790, 12, 2996, 5066, 12, 21, 17279, 12, 22, 27412, 12, 21, 2718, 3510, 1558, 2075, 33319, 1, 198, 9641, 796, 366, 16, 13, 16, 13, 15, 1, 198, 198, 30109, 31837, 20538, 3163, 20477, 11907, 198, 10378, 82, 796, 14631, 35, 689, 1600, 366, 29531, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 69, 2231, 65, 2682, 37466, 33372, 64, 16, 69, 21, 68, 22, 22579, 486, 17896, 24, 891, 3134, 4846, 940, 17457, 1065, 65, 20, 1, 198, 12303, 312, 796, 366, 6420, 66, 41647, 4051, 12, 18, 721, 19, 12, 3901, 64, 18, 12, 64, 1731, 69, 12, 18, 69, 1954, 68, 1238, 67, 47007, 66, 1, 198, 9641, 796, 366, 16, 13, 18, 13, 23, 1, 198, 198, 30109, 32634, 1634, 11907, 198, 12303, 312, 796, 366, 24, 68, 3459, 65, 3682, 64, 12, 69, 23, 1959, 12, 20, 65, 15, 66, 12, 65, 1350, 24, 12, 24, 68, 24, 1954, 22337, 23055, 65, 1, 198, 198, 30109, 7248, 3245, 11907, 198, 10378, 82, 796, 14631, 36687, 14881, 1600, 366, 29783, 1600, 366, 14155, 305, 33637, 1600, 366, 39618, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 4299, 2998, 1507, 1860, 65, 397, 1765, 20, 35435, 68, 4349, 68, 20, 64, 3559, 31751, 20963, 39121, 69, 26279, 67, 1, 198, 12303, 312, 796, 366, 891, 12993, 1314, 2154, 12, 2682, 1954, 12, 3553, 67, 16, 12, 330, 65, 22, 12, 16344, 2091, 69, 1860, 65, 330, 3510, 1, 198, 9641, 796, 366, 15, 13, 23, 13, 15, 1, 198, 198, 30109, 2484, 1144, 3163, 20477, 11907, 198, 10378, 82, 796, 14631, 20344, 6169, 1600, 366, 44, 8899, 1600, 366, 29531, 1600, 366, 32634, 1634, 8973, 198, 12303, 312, 796, 366, 16, 64, 8784, 16, 64, 18, 12, 5705, 2934, 12, 38605, 68, 12, 23, 68, 4531, 12, 64, 1157, 64, 17, 69, 22, 17896, 34741, 1, 198, 198, 30109, 15307, 2364, 11907, 198, 10378, 82, 796, 14631, 35, 689, 1600, 366, 38, 2442, 84, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 6420, 6048, 69, 37680, 22260, 6659, 7568, 24, 3609, 21, 344, 65, 1238, 65, 24, 3270, 3609, 20, 46435, 324, 16, 2934, 1, 198, 12303, 312, 796, 366, 41561, 67, 19, 64, 891, 12, 2919, 1415, 12, 47396, 65, 12, 15630, 19, 67, 12, 69, 17, 68, 24, 64, 21, 66, 19, 18298, 69, 1, 198, 9641, 796, 366, 16, 13, 15, 13, 18, 1, 198, 198, 30109, 50, 3916, 45767, 15878, 82, 11907, 198, 10378, 82, 796, 14631, 29531, 1600, 366, 48346, 1600, 366, 14402, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 67, 29558, 64, 2919, 721, 1120, 3365, 4310, 64, 20, 487, 16, 66, 16, 1765, 2934, 1238, 32869, 1129, 68, 18, 69, 2078, 68, 24, 1, 198, 12303, 312, 796, 366, 22, 2718, 1899, 69, 4304, 12, 69, 15630, 19, 12, 3270, 344, 12, 23, 69, 1495, 12, 32583, 68, 3865, 67, 17, 7568, 4846, 1, 198, 9641, 796, 366, 15, 13, 19, 13, 15, 1, 198, 198, 30109, 26437, 15721, 896, 11907, 198, 10378, 82, 796, 14631, 9492, 5275, 18274, 4487, 1600, 366, 14155, 305, 33637, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 20, 67, 22, 68, 18, 69, 19, 68, 16315, 2327, 31938, 67, 18, 721, 1878, 22, 25096, 68, 330, 1821, 31418, 68, 22, 67, 25667, 1, 198, 12303, 312, 796, 366, 47325, 64, 21, 66, 2079, 12, 68, 22, 13331, 12, 4051, 16072, 12, 23, 67, 4304, 12, 2857, 67, 28676, 68, 1314, 66, 16, 67, 1, 198, 9641, 796, 366, 15, 13, 24, 13, 19, 1, 198, 198, 30109, 50, 11603, 11907, 198, 12303, 312, 796, 366, 2414, 5237, 5036, 15, 65, 12, 1731, 2934, 12, 3980, 3132, 12, 23, 40035, 12, 1860, 24, 3901, 69, 3829, 2934, 535, 1, 198, 198, 30109, 50, 24707, 2348, 7727, 907, 11907, 198, 10378, 82, 796, 14631, 6601, 44909, 942, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 65, 2091, 5066, 67, 4524, 1899, 69, 22, 67, 2931, 23, 6888, 2931, 1065, 66, 3388, 65, 2919, 17, 69, 2425, 26704, 67, 15426, 23, 1, 198, 12303, 312, 796, 366, 64, 17, 1878, 1157, 2791, 12, 64, 2919, 69, 12, 20, 69, 2414, 12, 23, 3510, 66, 12, 5824, 64, 15, 67, 18, 344, 69, 2780, 66, 1, 198, 9641, 796, 366, 16, 13, 15, 13, 16, 1, 198, 198, 30109, 50, 29572, 3163, 20477, 11907, 198, 10378, 82, 796, 14631, 14993, 451, 2348, 29230, 1600, 366, 29531, 8973, 198, 12303, 312, 796, 366, 17, 69, 486, 22883, 68, 12, 68, 1828, 65, 12, 20, 7568, 20, 12, 3609, 5066, 12, 67, 6052, 1765, 397, 3388, 68, 1878, 1, 198, 198, 30109, 50, 29572, 28813, 33637, 11907, 198, 10378, 82, 796, 14631, 48003, 1600, 366, 19182, 39317, 1600, 366, 40073, 1600, 366, 6601, 44909, 942, 1600, 366, 37, 9504, 28813, 1600, 366, 39746, 28813, 1600, 366, 15047, 37065, 82, 1600, 366, 14993, 451, 2348, 29230, 1600, 366, 39618, 1600, 366, 50, 29572, 3163, 20477, 1600, 366, 45442, 3163, 20477, 1600, 366, 13414, 16886, 31511, 37065, 82, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 15, 65, 15, 17457, 26200, 2996, 24760, 1238, 12993, 66, 37730, 7012, 4349, 65, 22413, 1350, 23, 12993, 21, 2682, 67, 6420, 1, 198, 12303, 312, 796, 366, 2857, 64, 24, 68, 891, 19, 12, 22, 68, 2919, 12, 1157, 68, 24, 12, 15, 65, 2548, 12, 20370, 67, 2414, 17457, 23734, 19, 1, 198, 9641, 796, 366, 16, 13, 1558, 13, 17, 1, 198, 198, 30109, 13409, 24629, 2733, 11907, 198, 10378, 82, 796, 14631, 35491, 37766, 14055, 1600, 366, 23820, 20310, 34184, 1187, 1600, 366, 11187, 16870, 24629, 2733, 1600, 366, 11505, 25835, 76, 62, 73, 297, 1600, 366, 11505, 22882, 24629, 62, 73, 297, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 69, 15, 65, 535, 69, 4089, 68, 1433, 2425, 4089, 1507, 487, 66, 20, 67, 5607, 330, 18, 1765, 69, 5774, 1765, 3865, 486, 1120, 1, 198, 12303, 312, 796, 366, 27988, 67, 1878, 2791, 12, 2548, 3104, 12, 20, 31115, 12, 24, 7252, 19, 12, 10210, 20964, 67, 24, 2548, 3901, 65, 1, 198, 9641, 796, 366, 16, 13, 23, 13, 16, 1, 198, 198, 30109, 25896, 7680, 82, 11907, 198, 10378, 82, 796, 14631, 34519, 3163, 20477, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 3510, 68, 3365, 5824, 2996, 18638, 10210, 15, 66, 2919, 65, 19, 17457, 5607, 27203, 68, 19, 13331, 3720, 64, 15, 66, 41820, 66, 1, 198, 12303, 312, 796, 366, 66, 3609, 26660, 3609, 12, 26276, 68, 12, 19, 69, 2816, 12, 65, 24, 2791, 12, 330, 17, 67, 15, 17896, 1485, 66, 1314, 1, 198, 9641, 796, 366, 15, 13, 16, 13, 16, 1, 198, 198, 30109, 45442, 11907, 198, 10378, 82, 796, 14631, 1532, 40674, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 68, 22, 15630, 1795, 17896, 6052, 69, 33042, 3553, 64, 20, 67, 16, 68, 18, 66, 23, 1065, 19442, 3365, 4309, 69, 30120, 68, 21, 64, 1, 198, 12303, 312, 796, 366, 8432, 487, 10210, 15, 12, 22, 28977, 12, 19, 66, 324, 12, 4531, 67, 15, 12, 17896, 48200, 69, 4304, 66, 21, 67, 18, 1, 198, 9641, 796, 366, 15, 13, 19, 13, 15, 1, 198, 198, 30109, 45442, 3163, 20477, 11907, 198, 10378, 82, 796, 14631, 14993, 451, 2348, 29230, 1600, 366, 29531, 1600, 366, 48346, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 18, 66, 4304, 1860, 68, 2414, 67, 48597, 2079, 68, 2998, 19, 330, 2999, 1765, 17, 68, 23, 7012, 23, 24970, 67, 40173, 6814, 1, 198, 12303, 312, 796, 366, 46815, 2718, 487, 64, 12, 22, 27203, 12, 3980, 1821, 12, 6659, 65, 24, 12, 68, 31211, 2718, 28727, 24294, 1, 198, 9641, 796, 366, 16, 13, 17, 13, 1485, 1, 198, 198, 30109, 48346, 11907, 198, 10378, 82, 796, 14631, 14993, 451, 2348, 29230, 1600, 366, 50, 29572, 3163, 20477, 8973, 198, 12303, 312, 796, 366, 15982, 2231, 65, 1433, 12, 3720, 344, 12, 1157, 68, 23, 12, 1157, 69, 24, 12, 22, 67, 1485, 324, 2624, 64, 18, 65, 17, 1, 198, 198, 30109, 29668, 17614, 11907, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 1129, 3365, 1983, 1495, 3104, 17896, 24096, 64, 16, 67, 3459, 16, 330, 65, 44673, 1350, 65, 44675, 66, 3695, 2816, 940, 1, 198, 12303, 312, 796, 366, 6469, 3609, 5774, 2920, 12, 3324, 276, 12, 19, 5036, 21, 12, 3609, 20, 69, 12, 69, 49803, 1314, 18938, 19, 65, 15, 1, 198, 9641, 796, 366, 16, 13, 15, 13, 15, 1, 198, 198, 30109, 29668, 14881, 11907, 198, 10378, 82, 796, 14631, 6601, 17614, 1600, 366, 6601, 44909, 942, 1600, 366, 14993, 451, 2348, 29230, 1600, 366, 11187, 16870, 24629, 2733, 1600, 366, 17140, 654, 1600, 366, 18557, 69, 1600, 366, 29531, 1600, 366, 50, 24707, 2348, 7727, 907, 1600, 366, 50, 29572, 3163, 20477, 1600, 366, 48346, 1600, 366, 29668, 17614, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 1765, 2327, 67, 535, 2791, 40486, 65, 17, 1860, 64, 40675, 3720, 65, 24, 64, 16, 1350, 1558, 41948, 67, 19504, 6420, 64, 1, 198, 12303, 312, 796, 366, 1959, 1485, 11848, 67, 17, 12, 3609, 23, 64, 12, 20, 69, 4869, 12, 23, 66, 2079, 12, 19, 21855, 21, 66, 4304, 69, 18, 64, 6420, 1, 198, 9641, 796, 366, 15, 13, 2091, 13, 1065, 1, 198, 198, 30109, 29668, 37, 13271, 11907, 198, 10378, 82, 796, 14631, 35491, 37766, 14055, 1600, 366, 23820, 20310, 34184, 1187, 1600, 366, 11187, 16870, 24629, 2733, 1600, 366, 3041, 39344, 1600, 366, 49, 11018, 1600, 366, 13409, 24629, 2733, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 31027, 4761, 891, 16, 64, 1828, 65, 43526, 65, 16, 68, 1795, 69, 4790, 66, 17, 64, 4531, 324, 23721, 3609, 19, 66, 20972, 1, 198, 12303, 312, 796, 366, 19, 66, 5066, 67, 17, 65, 24, 12, 19, 32066, 12, 4051, 9945, 12, 23, 13227, 12, 1558, 65, 2414, 66, 2670, 68, 3682, 66, 1, 198, 9641, 796, 366, 15, 13, 24, 13, 1065, 1, 198, 198, 30109, 1273, 13154, 3163, 20477, 14055, 11907, 198, 10378, 82, 796, 14631, 19182, 39317, 1600, 366, 26125, 11505, 9492, 12786, 1600, 366, 1532, 40674, 1600, 366, 32517, 18833, 20193, 1600, 366, 5124, 723, 30871, 1600, 366, 39618, 1600, 366, 48913, 24544, 9497, 1600, 366, 45442, 1600, 366, 16818, 278, 18274, 2410, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 69, 2919, 16, 66, 18, 66, 4089, 3365, 2920, 69, 19, 29558, 16344, 15, 276, 1485, 68, 4349, 5036, 2707, 19, 535, 66, 3720, 1, 198, 12303, 312, 796, 366, 3324, 5892, 64, 22, 891, 12, 42716, 66, 12, 2857, 2857, 12, 64, 2154, 69, 12, 40022, 65, 3459, 68, 23, 67, 16, 6814, 1, 198, 9641, 796, 366, 15, 13, 17, 13, 23, 1, 198, 198, 30109, 44909, 3163, 20477, 11907, 198, 10378, 82, 796, 14631, 48003, 1600, 366, 6601, 17614, 1600, 366, 45442, 3163, 20477, 1600, 366, 51, 2977, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 17, 344, 3901, 68, 15, 67, 3023, 17, 66, 1899, 21142, 22042, 68, 24, 21855, 22, 21526, 64, 18, 19881, 324, 19881, 1120, 67, 18, 1, 198, 12303, 312, 796, 366, 2931, 397, 33372, 65, 12, 69, 17, 65, 21, 12, 49561, 69, 12, 65, 5824, 64, 12, 17, 69, 5999, 12993, 19, 64, 23, 3682, 64, 1, 198, 9641, 796, 366, 15, 13, 21, 13, 18, 1, 198, 198, 30109, 5606, 578, 50, 29572, 11907, 198, 10378, 82, 796, 14631, 25835, 25404, 1600, 366, 14993, 451, 2348, 29230, 1600, 366, 32634, 1634, 1600, 366, 50, 29572, 3163, 20477, 8973, 198, 12303, 312, 796, 366, 19, 31980, 65, 15, 69, 15, 12, 3312, 69, 18, 12, 20, 66, 6814, 12, 65, 21, 65, 16, 12, 64, 21, 25272, 64, 1558, 1959, 68, 24, 1, 198, 198, 30109, 51, 2662, 43, 11907, 198, 10378, 82, 796, 14631, 35, 689, 8973, 198, 12303, 312, 796, 366, 13331, 25674, 69, 16, 69, 12, 1899, 2920, 12, 19, 69, 1415, 12, 7252, 4051, 12, 2091, 65, 1878, 3609, 16, 276, 4304, 1, 198, 198, 30109, 10962, 15721, 896, 11907, 198, 10378, 82, 796, 14631, 37787, 39317, 11627, 5736, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 66, 3312, 65, 17, 69, 20, 2670, 7568, 16, 66, 21, 891, 64, 3720, 2598, 4521, 397, 21855, 21, 276, 1238, 18182, 5333, 64, 2670, 1, 198, 12303, 312, 796, 366, 2718, 5999, 65, 9945, 23, 12, 19, 64, 4089, 12, 20, 65, 21, 65, 12, 1878, 24, 64, 12, 47372, 69, 1959, 64, 20, 5036, 24, 66, 1, 198, 9641, 796, 366, 16, 13, 15, 13, 16, 1, 198, 198, 30109, 51, 2977, 11907, 198, 10378, 82, 796, 14631, 6601, 17614, 1600, 366, 6601, 11395, 9492, 32186, 1600, 366, 37787, 39317, 11627, 5736, 1600, 366, 14993, 451, 2348, 29230, 1600, 366, 10962, 15721, 896, 1600, 366, 14402, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 19082, 2682, 67, 15, 68, 4869, 65, 24, 1558, 2682, 19881, 15, 64, 22, 68, 940, 1765, 16, 11848, 2713, 27137, 1860, 65, 10210, 15, 1, 198, 12303, 312, 796, 366, 17457, 30803, 1878, 21, 12, 64, 721, 16, 12, 20, 324, 15, 12, 65, 1433, 64, 12, 69, 22, 535, 4059, 23, 25948, 66, 1, 198, 9641, 796, 366, 16, 13, 21, 13, 15, 1, 198, 198, 30109, 47079, 11907, 198, 10378, 82, 796, 14631, 28100, 33637, 1600, 366, 37596, 8973, 198, 12303, 312, 796, 366, 64, 19, 68, 20, 3388, 64, 21, 12, 68, 36088, 12, 19, 13331, 19, 12, 65, 15, 69, 18, 12, 68, 891, 22, 64, 16, 67, 20, 65, 1485, 68, 1, 198, 198, 30109, 51, 22854, 14055, 11907, 198, 10378, 82, 796, 14631, 14993, 451, 2348, 29230, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 16, 69, 1765, 2231, 69, 3459, 67, 16945, 64, 35916, 68, 405, 1415, 32066, 2624, 69, 30484, 64, 24, 64, 16, 15630, 9945, 21, 1, 198, 12303, 312, 796, 366, 5237, 16344, 23, 65, 3865, 12, 69, 39111, 12, 19, 11848, 67, 12, 64, 23, 64, 20, 12, 24, 66, 1983, 69, 3104, 535, 67, 1120, 1, 198, 9641, 796, 366, 15, 13, 16, 13, 16, 1, 198, 198, 30109, 14402, 11907, 198, 10378, 82, 796, 14631, 9492, 5275, 18274, 4487, 1600, 366, 11187, 2667, 1600, 366, 29531, 1600, 366, 32634, 1634, 8973, 198, 12303, 312, 796, 366, 23, 7568, 276, 46841, 12, 68, 1828, 66, 12, 20, 68, 2919, 12, 5332, 68, 16, 12, 2996, 66, 20, 24409, 69, 15, 65, 1821, 1, 198, 198, 30109, 16818, 278, 18274, 2410, 11907, 198, 10378, 82, 796, 14631, 5124, 723, 30871, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 3070, 30273, 66, 21, 3609, 22, 69, 1507, 1731, 22042, 65, 17, 3609, 17, 16072, 16, 67, 2920, 44750, 65, 4349, 68, 23, 34626, 1, 198, 12303, 312, 796, 366, 23, 24369, 67, 22567, 12, 66, 3609, 18, 12, 2920, 66, 15, 12, 7410, 17, 12, 66, 23, 66, 1731, 67, 3553, 67, 397, 20, 1, 198, 9641, 796, 366, 15, 13, 19, 13, 21, 1, 198, 198, 30109, 51, 733, 29398, 11907, 198, 10378, 82, 796, 14631, 10258, 31431, 1600, 366, 6601, 44909, 942, 1600, 366, 23579, 10100, 11627, 5736, 1600, 366, 8979, 9399, 1600, 366, 13715, 12727, 49601, 1600, 366, 5497, 1060, 3163, 20477, 1600, 366, 818, 2704, 378, 1600, 366, 34519, 3163, 20477, 1600, 366, 47, 10025, 14815, 1600, 366, 32577, 44, 2357, 1600, 366, 52, 27586, 82, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 66, 31575, 3609, 17, 397, 69, 2920, 2999, 67, 2996, 64, 15, 65, 15, 19881, 3270, 65, 2078, 35638, 64, 21, 68, 1558, 2998, 23, 64, 1, 198, 12303, 312, 796, 366, 22, 3132, 68, 39254, 65, 12, 24, 67, 3270, 12, 19, 65, 13331, 12, 4846, 17896, 12, 21, 7568, 47493, 69, 324, 69, 3388, 1, 198, 9641, 796, 366, 15, 13, 20, 13, 17, 1, 198, 198, 30109, 8291, 66, 7656, 12124, 82, 11907, 198, 10378, 82, 796, 14631, 29531, 1600, 366, 14402, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 20666, 65, 3865, 18213, 11442, 65, 3270, 4761, 9945, 2996, 7252, 3829, 69, 3459, 67, 23, 67, 4531, 17896, 65, 3459, 4349, 66, 1, 198, 12303, 312, 796, 366, 18, 11848, 3134, 5036, 23, 12, 6469, 65, 16, 12, 1120, 2078, 12, 23, 68, 2075, 12, 5892, 64, 21, 66, 4051, 26561, 13331, 1, 198, 9641, 796, 366, 15, 13, 24, 13, 21, 1, 198, 198, 30109, 27660, 7680, 82, 11907, 198, 10378, 82, 796, 14631, 14402, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 23, 67, 15, 67, 22, 64, 18, 5036, 17, 69, 1270, 67, 21, 64, 22, 69, 48634, 64, 20, 69, 1129, 69, 22, 66, 22, 64, 20, 65, 34107, 68, 3609, 21, 1, 198, 12303, 312, 796, 366, 64, 17, 64, 2791, 3865, 66, 12, 65, 3901, 65, 12, 20, 65, 22, 67, 12, 8432, 24, 12, 9945, 69, 2934, 44977, 20, 67, 22, 1, 198, 9641, 796, 366, 15, 13, 18, 13, 15, 1, 198, 198, 30109, 14824, 21413, 50, 6442, 11907, 198, 10378, 82, 796, 14631, 26125, 11505, 9492, 12786, 1600, 366, 1532, 40674, 1600, 366, 32517, 18833, 20193, 1600, 366, 14993, 451, 2348, 29230, 1600, 366, 39516, 38469, 1634, 1600, 366, 34220, 7834, 1600, 366, 45442, 1600, 366, 38469, 1634, 14881, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 721, 24, 64, 18, 15197, 1731, 1860, 17, 66, 49489, 66, 2998, 69, 2091, 64, 43452, 9395, 24, 66, 16, 67, 405, 64, 27211, 1, 198, 12303, 312, 796, 366, 67, 3365, 1959, 64, 1065, 12, 67, 24, 7252, 12, 3510, 397, 12, 23, 3132, 69, 12, 21855, 22, 66, 24, 397, 3312, 276, 69, 1, 198, 9641, 796, 366, 15, 13, 16, 13, 23, 1, 198, 198, 30109, 52, 27586, 82, 11907, 198, 10378, 82, 796, 14631, 29531, 1600, 366, 37596, 8973, 198, 12303, 312, 796, 366, 12993, 22, 16817, 64, 22, 12, 3388, 4304, 12, 20, 65, 16, 64, 12, 24, 64, 2670, 12, 22, 324, 66, 4761, 69, 48952, 64, 19, 1, 198, 198, 30109, 3118, 11869, 11907, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 32220, 66, 16, 69, 22, 32128, 1828, 3132, 68, 4521, 68, 15, 66, 24, 66, 20, 34938, 344, 18, 65, 19, 64, 15, 64, 24, 64, 15, 66, 17, 65, 1, 198, 12303, 312, 796, 366, 18, 64, 40353, 276, 21, 12, 3132, 891, 12, 2857, 67, 22, 12, 24, 67, 17, 64, 12, 5066, 24294, 66, 2920, 2078, 276, 1, 198, 9641, 796, 366, 16, 13, 15, 13, 17, 1, 198, 198, 30109, 3118, 291, 1098, 11907, 198, 12303, 312, 796, 366, 19, 721, 15, 64, 5999, 68, 12, 43134, 68, 12, 1120, 68, 17, 12, 65, 24, 330, 12, 23, 69, 4761, 330, 69, 20, 64, 23, 69, 20, 1, 198, 198, 30109, 3118, 291, 1098, 24629, 11907, 198, 10378, 82, 796, 14631, 2200, 6489, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 20, 2670, 1314, 68, 1120, 10531, 3270, 28933, 68, 3695, 64, 5892, 64, 39667, 46438, 65, 40173, 67, 487, 1860, 69, 1, 198, 12303, 312, 796, 366, 16, 12993, 671, 486, 12, 1828, 12993, 12, 3553, 405, 12, 65, 2931, 17, 12, 330, 535, 19, 65, 5237, 67, 21, 68, 16, 1, 198, 9641, 796, 366, 15, 13, 19, 13, 16, 1, 198, 198, 30109, 26453, 913, 11907, 198, 10378, 82, 796, 14631, 36687, 14881, 1600, 366, 35, 689, 1600, 366, 14993, 451, 2348, 29230, 1600, 366, 29531, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 41655, 69, 3324, 67, 17, 10210, 19, 66, 3388, 2780, 68, 21, 17457, 2816, 32114, 65, 22, 65, 4309, 69, 2682, 67, 10210, 22, 69, 19, 65, 1, 198, 12303, 312, 796, 366, 28054, 535, 3682, 12, 69, 5824, 69, 12, 20, 64, 3104, 12, 1878, 20, 66, 12, 20, 34427, 1821, 7012, 36809, 67, 1, 198, 9641, 796, 366, 16, 13, 24, 13, 16, 1, 198, 198, 30109, 38469, 1634, 14881, 11907, 198, 10378, 82, 796, 14631, 19182, 39317, 1600, 366, 8697, 2937, 388, 6874, 1600, 366, 17932, 36037, 23595, 1600, 366, 39, 86, 17946, 1600, 366, 1532, 40674, 1600, 366, 32517, 18833, 20193, 1600, 366, 25835, 25404, 1600, 366, 14993, 451, 2348, 29230, 1600, 366, 48913, 24544, 9497, 1600, 366, 45442, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 20, 23516, 33206, 12993, 2327, 4309, 2001, 3559, 67, 3720, 68, 535, 2425, 65, 16, 1878, 16, 344, 3510, 1495, 14454, 1, 198, 12303, 312, 796, 366, 18, 67, 20, 1860, 2919, 66, 12, 16344, 24, 67, 12, 1157, 68, 23, 12, 1558, 13331, 12, 276, 2078, 15277, 2780, 66, 17, 69, 1, 198, 9641, 796, 366, 15, 13, 2481, 13, 2481, 1, 198, 198, 30109, 13414, 16886, 31511, 37065, 82, 11907, 198, 10378, 82, 796, 14631, 15047, 37065, 82, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 65, 24, 65, 17885, 66, 2079, 64, 18, 6888, 16, 535, 16, 66, 3104, 2623, 69, 34135, 67, 23, 67, 46660, 15630, 1350, 32066, 68, 1, 198, 12303, 312, 796, 366, 1129, 13331, 18, 10232, 12, 22, 66, 1983, 12, 20, 721, 20, 12, 23, 9945, 23, 12, 65, 15, 65, 15, 7252, 26073, 67, 21, 69, 1, 198, 9641, 796, 366, 15, 13, 16, 13, 17, 1, 198, 198, 30109, 44898, 8134, 13290, 654, 11907, 198, 10378, 82, 796, 14631, 6601, 17614, 1600, 366, 818, 1370, 13290, 654, 1600, 366, 47, 945, 364, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 66, 3388, 69, 24, 6814, 18, 487, 17, 69, 19, 69, 2999, 68, 23, 1157, 66, 2091, 1954, 66, 1828, 68, 20, 7568, 21101, 46352, 12993, 64, 1, 198, 12303, 312, 796, 366, 18213, 940, 67, 33319, 12, 18, 69, 4790, 12, 4349, 69, 23, 12, 64, 2075, 66, 12, 2091, 66, 16, 21101, 35273, 7252, 20, 1, 198, 9641, 796, 366, 16, 13, 19, 13, 16, 1, 198, 198, 30109, 22911, 10711, 19044, 45977, 11907, 198, 10378, 82, 796, 14631, 14993, 451, 2348, 29230, 1600, 366, 50, 29572, 3163, 20477, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 2934, 3134, 13331, 3270, 68, 2091, 324, 21599, 64, 3270, 405, 2816, 22318, 64, 1270, 65, 1954, 66, 1821, 22579, 67, 18, 1, 198, 12303, 312, 796, 366, 891, 344, 18, 69, 3104, 12, 2791, 17896, 12, 3365, 2548, 12, 24, 16102, 12, 1983, 64, 21, 67, 21, 69, 20, 69, 24, 65, 21, 1, 198, 9641, 796, 366, 15, 13, 20, 13, 20, 1, 198, 198, 30109, 55, 5805, 17, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 41, 3069, 36918, 11799, 1600, 366, 25835, 25404, 1600, 366, 25835, 4749, 85, 62, 73, 297, 1600, 366, 47, 10025, 1600, 366, 57, 8019, 62, 73, 297, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 16, 330, 69, 20, 65, 7568, 2998, 7252, 2931, 2998, 68, 15, 64, 2718, 67, 2718, 1507, 11848, 3459, 67, 19, 65, 39925, 65, 4524, 64, 1, 198, 12303, 312, 796, 366, 2999, 66, 23, 16072, 24, 66, 12, 65, 5607, 69, 12, 1120, 65, 24, 12, 65, 1350, 19, 12, 24, 1350, 1270, 487, 15, 64, 3695, 64, 1, 198, 9641, 796, 366, 17, 13, 24, 13, 1065, 10, 15, 1, 198, 198, 30109, 55, 8634, 51, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 41, 3069, 36918, 11799, 1600, 366, 25835, 25404, 1600, 366, 25835, 70, 29609, 62, 73, 297, 1600, 366, 25835, 70, 6024, 62, 18224, 62, 73, 297, 1600, 366, 25835, 4749, 85, 62, 73, 297, 1600, 366, 47, 10025, 1600, 366, 55, 5805, 17, 62, 73, 297, 1600, 366, 57, 8019, 62, 73, 297, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 24, 1507, 31115, 4790, 66, 1821, 5332, 16102, 65, 3865, 68, 41544, 69, 46589, 66, 19, 344, 66, 19, 67, 28256, 69, 23, 64, 1, 198, 12303, 312, 796, 366, 8432, 30763, 64, 12, 23, 69, 6814, 12, 35378, 69, 12, 24, 29796, 12, 22, 65, 3023, 28771, 3270, 64, 5333, 1, 198, 9641, 796, 366, 16, 13, 16, 13, 2682, 10, 15, 1, 198, 198, 30109, 55, 2398, 62, 8019, 55, 1157, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 41, 3069, 36918, 11799, 1600, 366, 25835, 25404, 1600, 366, 47, 10025, 1600, 366, 55, 2398, 62, 8019, 87, 21101, 62, 73, 297, 1600, 366, 55, 2398, 62, 742, 26084, 62, 73, 297, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 20, 1350, 33300, 67, 22730, 69, 18, 69, 19, 65, 3865, 21495, 19881, 486, 5999, 65, 6469, 68, 25600, 27800, 2996, 1983, 1, 198, 12303, 312, 796, 366, 19, 69, 21, 31575, 69, 22, 12, 65, 18, 67, 17, 12, 44169, 68, 12, 24, 67, 1238, 12, 276, 1765, 2231, 69, 17, 65, 17, 15630, 1, 198, 9641, 796, 366, 16, 13, 21, 13, 24, 10, 19, 1, 198, 198, 30109, 55, 2398, 62, 8019, 55, 559, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 41, 3069, 36918, 11799, 1600, 366, 25835, 25404, 1600, 366, 47, 10025, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 19, 68, 31503, 67, 20, 66, 39277, 66, 33638, 69, 2091, 3459, 3553, 3829, 276, 33289, 487, 18, 64, 5824, 344, 3134, 68, 1, 198, 12303, 312, 796, 366, 15, 66, 15, 65, 22, 1860, 16, 12, 67, 1821, 65, 12, 46352, 66, 12, 64, 10163, 12, 64, 35218, 1821, 69, 5774, 68, 721, 1, 198, 9641, 796, 366, 16, 13, 15, 13, 24, 10, 19, 1, 198, 198, 30109, 55, 2398, 62, 8019, 55, 36020, 13155, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 41, 3069, 36918, 11799, 1600, 366, 25835, 25404, 1600, 366, 47, 10025, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 19, 5036, 2857, 17457, 17, 23753, 23045, 11623, 66, 19, 27693, 41019, 1821, 68, 1507, 64, 3104, 1485, 4761, 1860, 19, 1, 198, 12303, 312, 796, 366, 64, 2718, 4531, 22, 2682, 12, 66, 5036, 16, 12, 20, 65, 3312, 12, 65, 17, 67, 15, 12, 16, 1860, 15, 67, 24, 67, 5237, 67, 2713, 1, 198, 9641, 796, 366, 16, 13, 16, 13, 18, 10, 19, 1, 198, 198, 30109, 55, 2398, 62, 8019, 55, 2302, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 41, 3069, 36918, 11799, 1600, 366, 25835, 25404, 1600, 366, 47, 10025, 1600, 366, 55, 2398, 62, 8019, 55, 1157, 62, 73, 297, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 65, 22, 66, 15, 7252, 23, 66, 32128, 65, 3132, 68, 2780, 4309, 65, 15277, 1828, 2078, 34251, 2718, 69, 40271, 69, 23, 66, 18, 1, 198, 12303, 312, 796, 366, 15711, 2075, 2670, 64, 12, 15, 67, 3609, 12, 20, 69, 2682, 12, 24, 65, 3312, 12, 47760, 6659, 1453, 65, 23, 21101, 18, 1, 198, 9641, 796, 366, 16, 13, 18, 13, 19, 10, 19, 1, 198, 198, 30109, 55, 2398, 62, 8019, 55, 13287, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 41, 3069, 36918, 11799, 1600, 366, 25835, 25404, 1600, 366, 47, 10025, 1600, 366, 55, 2398, 62, 8019, 55, 1157, 62, 73, 297, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 22186, 1899, 69, 1270, 16344, 2920, 69, 19, 67, 19, 891, 1350, 9879, 17, 64, 940, 2718, 69, 23, 66, 3559, 67, 3559, 65, 4846, 1, 198, 12303, 312, 796, 366, 18213, 17, 69, 16, 64, 4846, 12, 16, 1860, 66, 12, 35005, 67, 12, 65, 3510, 69, 12, 11785, 35916, 68, 2998, 12993, 64, 1, 198, 9641, 796, 366, 15, 13, 24, 13, 940, 10, 19, 1, 198, 198, 30109, 55, 2398, 62, 8019, 79, 16663, 62, 301, 23161, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 41, 3069, 36918, 11799, 1600, 366, 25835, 25404, 1600, 366, 47, 10025, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 30924, 2718, 2718, 68, 2231, 67, 18, 66, 3270, 64, 19, 64, 19, 66, 1821, 6420, 69, 20, 69, 3459, 10210, 12993, 2931, 2919, 66, 11848, 1, 198, 12303, 312, 796, 366, 1415, 67, 6469, 69, 2920, 12, 24096, 66, 12, 20, 276, 16, 12, 11848, 2920, 12, 324, 18, 69, 20, 66, 17457, 23, 66, 4524, 1, 198, 9641, 796, 366, 15, 13, 16, 13, 15, 10, 18, 1, 198, 198, 30109, 55, 2398, 62, 8019, 87, 21101, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 41, 3069, 36918, 11799, 1600, 366, 25835, 25404, 1600, 366, 47, 10025, 1600, 366, 55, 8634, 51, 62, 73, 297, 1600, 366, 55, 2398, 62, 8019, 55, 559, 62, 73, 297, 1600, 366, 55, 2398, 62, 8019, 55, 36020, 13155, 62, 73, 297, 1600, 366, 55, 2398, 62, 8019, 79, 16663, 62, 301, 23161, 62, 73, 297, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 67, 1878, 1558, 69, 2598, 1065, 2078, 68, 22, 64, 2548, 28460, 3510, 10210, 47202, 4531, 2078, 5333, 66, 487, 1433, 67, 21, 1, 198, 12303, 312, 796, 366, 66, 22, 12993, 17896, 5824, 12, 17896, 2624, 12, 2816, 2934, 12, 330, 4846, 12, 20, 64, 16, 65, 23, 67, 24, 3324, 66, 20, 65, 1, 198, 9641, 796, 366, 16, 13, 1485, 13, 15, 10, 18, 1, 198, 198, 30109, 55, 2398, 62, 742, 26084, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 41, 3069, 36918, 11799, 1600, 366, 25835, 25404, 1600, 366, 47, 10025, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 3720, 66, 3132, 68, 3695, 2598, 69, 21, 721, 69, 40393, 34801, 69, 15630, 1065, 20964, 1765, 19782, 65, 22, 67, 23, 2231, 1, 198, 12303, 312, 796, 366, 66, 20, 21855, 20, 34626, 12, 64, 21, 2548, 12, 20, 68, 19, 67, 12, 4846, 68, 20, 12, 65, 1959, 2934, 16, 65, 20, 12993, 940, 1, 198, 9641, 796, 366, 16, 13, 19, 13, 15, 10, 18, 1, 198, 198, 30109, 57, 8019, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 25835, 25404, 8973, 198, 12303, 312, 796, 366, 23, 2718, 2425, 64, 3365, 12, 16, 69, 16, 67, 12, 48645, 69, 12, 65, 24991, 12, 67, 50055, 4051, 397, 25816, 64, 1, 198, 198, 30109, 57, 35641, 1258, 37766, 11907, 198, 10378, 82, 796, 14631, 14155, 305, 33637, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 23, 66, 16, 64, 23, 68, 19, 7568, 330, 65, 16, 16344, 5066, 1558, 2231, 40427, 66, 23, 9945, 2327, 67, 15, 11275, 2931, 18213, 15, 1, 198, 12303, 312, 796, 366, 9879, 2934, 16, 64, 20, 12, 9945, 2231, 12, 3510, 15630, 12, 2079, 12993, 12, 2548, 1238, 2154, 4089, 65, 30272, 1, 198, 9641, 796, 366, 15, 13, 17, 13, 17, 1, 198, 198, 30109, 271, 672, 392, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 25835, 25404, 1600, 366, 47, 10025, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 64, 16, 330, 2079, 3134, 2857, 1314, 33438, 64, 44468, 11848, 344, 45385, 65, 15, 3104, 721, 16, 65, 22, 67, 49682, 67, 1, 198, 12303, 312, 796, 366, 24, 64, 3104, 7568, 5892, 12, 2623, 64, 21, 12, 31654, 69, 12, 64, 4790, 68, 12, 6485, 39226, 65, 21, 19881, 65, 19, 1, 198, 9641, 796, 366, 15, 13, 17, 13, 17, 10, 15, 1, 198, 198, 30109, 8019, 562, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 33, 13344, 17, 62, 73, 297, 1600, 366, 11146, 6030, 17, 62, 73, 297, 1600, 366, 30214, 33, 19830, 62, 73, 297, 1600, 366, 13587, 69, 48230, 62, 73, 297, 1600, 366, 41, 3069, 36918, 11799, 1600, 366, 25835, 25404, 1600, 366, 47, 10025, 1600, 366, 57, 8019, 62, 73, 297, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 3270, 6469, 64, 5824, 16072, 7012, 1238, 69, 2999, 69, 3682, 558, 2598, 65, 4089, 5824, 1453, 17, 65, 15187, 5036, 2857, 1, 198, 12303, 312, 796, 366, 15, 330, 5237, 69, 2425, 12, 16, 67, 21, 69, 12, 20, 68, 4310, 12, 17457, 22, 66, 12, 6052, 65, 34137, 11848, 2718, 66, 15, 1, 198, 9641, 796, 366, 15, 13, 1314, 13, 16, 10, 15, 1, 198, 198, 30109, 8019, 16344, 74, 62, 64, 330, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 41, 3069, 36918, 11799, 1600, 366, 25835, 25404, 1600, 366, 47, 10025, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 6814, 4134, 5705, 64, 3023, 1314, 5066, 69, 24, 2996, 1350, 47448, 3270, 64, 2623, 68, 1558, 66, 19, 68, 19, 69, 10210, 2816, 1, 198, 12303, 312, 796, 366, 69, 21, 2548, 69, 15, 64, 21, 12, 22, 21855, 15, 12, 20, 34938, 12, 3459, 7012, 12, 16, 535, 4524, 23539, 65, 21033, 1, 198, 9641, 796, 366, 17, 13, 15, 13, 17, 10, 15, 1, 198, 198, 30109, 8019, 11134, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 41, 3069, 36918, 11799, 1600, 366, 25835, 25404, 1600, 366, 47, 10025, 1600, 366, 57, 8019, 62, 73, 297, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 5824, 67, 15259, 64, 21, 67, 17, 65, 20, 68, 2816, 68, 34825, 68, 17, 67, 1983, 64, 1959, 276, 3023, 5036, 3720, 1765, 1270, 66, 1, 198, 12303, 312, 796, 366, 65, 4310, 65, 19, 66, 2996, 12, 24, 32066, 12, 3365, 1983, 12, 65, 16, 18213, 12, 23, 66, 22, 64, 16, 64, 5705, 35638, 69, 1, 198, 9641, 796, 366, 16, 13, 21, 13, 2548, 10, 15, 1, 198, 198, 30109, 8019, 20867, 41907, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 41, 3069, 36918, 11799, 1600, 366, 25835, 25404, 1600, 366, 46, 1130, 62, 73, 297, 1600, 366, 47, 10025, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 66, 2231, 69, 19, 68, 1821, 68, 22, 64, 8635, 24, 67, 2919, 21, 29088, 68, 2816, 40401, 2857, 721, 23, 65, 3865, 64, 23, 21855, 1, 198, 12303, 312, 796, 366, 69, 1983, 69, 21, 68, 2718, 12, 20, 67, 17, 65, 12, 4349, 7252, 12, 39277, 69, 12, 65, 27800, 69, 17, 15630, 18, 65, 22, 64, 1, 198, 9641, 796, 366, 16, 13, 18, 13, 22, 10, 15, 1, 198, 198, 30109, 77, 456, 29281, 17, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 25835, 25404, 8973, 198, 12303, 312, 796, 366, 23, 68, 25764, 18654, 12, 30610, 23, 12, 20, 29626, 12, 64, 2998, 66, 12, 22709, 330, 67, 17, 64, 1878, 23, 67, 1, 198, 198, 30109, 79, 22, 13344, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 25835, 25404, 8973, 198, 12303, 312, 796, 366, 18, 69, 1129, 68, 24, 2091, 12, 2091, 67, 23, 12, 4310, 65, 18, 12, 7252, 397, 12, 17457, 4349, 940, 66, 18, 65, 22, 64, 15, 1, 198, 198, 30109, 87, 18897, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 41, 3069, 36918, 11799, 1600, 366, 25835, 25404, 1600, 366, 47, 10025, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 19, 5036, 64, 36993, 65, 4531, 68, 21, 721, 1120, 2231, 6052, 20964, 19881, 23, 65, 24, 3459, 65, 17, 66, 28694, 1828, 65, 17, 1, 198, 12303, 312, 796, 366, 1065, 2154, 276, 69, 20, 12, 69, 17, 69, 24, 12, 4309, 67, 17, 12, 5607, 68, 24, 12, 397, 405, 65, 20, 67, 15, 24693, 64, 1, 198, 9641, 796, 366, 1238, 2481, 13, 20, 13, 20, 10, 15, 1, 198, 198, 30109, 87, 22980, 62, 73, 297, 11907, 198, 10378, 82, 796, 14631, 8001, 37199, 1600, 366, 41, 3069, 36918, 11799, 1600, 366, 25835, 25404, 1600, 366, 47, 10025, 8973, 198, 18300, 12, 21048, 12, 26270, 16, 796, 366, 1453, 20, 3134, 64, 27192, 66, 344, 44215, 2154, 67, 3324, 324, 18, 64, 3559, 68, 24, 2999, 1507, 68, 29769, 2718, 64, 24, 1, 198, 12303, 312, 796, 366, 7568, 7252, 2931, 20, 69, 12, 1821, 3901, 12, 20, 67, 10210, 12, 6052, 1129, 12, 17, 36434, 67, 23, 34251, 65, 4304, 1, 198, 9641, 796, 366, 18, 13, 20, 13, 15, 10, 15, 1, 198, 37811, 198, 198, 2, 2343, 243, 242, 28670, 22880, 94, 12440, 1502, 25, 198, 2, 2343, 243, 253, 7280, 20, 66, 22, 68, 19, 68, 4761, 12, 18, 69, 3388, 12, 1157, 721, 12, 25600, 65, 12, 21, 65, 12993, 17896, 22, 65, 16, 67, 2996, 198, 2, 2343, 243, 253, 7280, 15, 5036, 64, 2548, 69, 21, 12, 17, 66, 24, 68, 12, 3559, 66, 21, 12, 65, 16072, 16, 12, 25674, 487, 17572, 64, 15, 535, 198, 2, 2343, 243, 253, 7280, 64, 2860, 2919, 17, 64, 12, 18, 276, 24, 12, 3901, 65, 22, 12, 7012, 20, 68, 12, 22, 66, 20, 69, 3324, 67, 3270, 33042, 198, 2, 2343, 243, 253, 7280, 28555, 66, 4531, 64, 22, 12, 69, 18, 67, 16, 12, 19, 344, 64, 12, 65, 4869, 64, 12, 18, 67, 21, 69, 4846, 64, 1507, 486, 66, 198, 2, 2343, 243, 254, 28670, 34294, 31938, 66, 12, 32417, 66, 12, 19, 7568, 67, 12, 23, 3695, 69, 12, 16658, 64, 1731, 3132, 69, 22, 7012, 198, 2, 2343, 243, 253, 7280, 65, 2934, 2920, 68, 1878, 12, 2718, 2857, 12, 19, 276, 69, 12, 65, 49517, 12, 18, 1453, 21, 69, 2919, 16658, 1238, 198, 2, 2343, 243, 254, 28670, 66, 1899, 64, 2780, 68, 15, 12, 21, 69, 4349, 12, 2598, 65, 15, 12, 17457, 21, 68, 12, 32148, 68, 3023, 67, 17, 67, 32148, 198, 2, 2343, 243, 253, 7280, 2231, 48194, 1765, 16, 12, 22, 26429, 12, 2231, 1731, 12, 23, 67, 16, 67, 12, 22, 3459, 64, 2154, 69, 23, 69, 20, 891, 198, 2, 2343, 243, 253, 7280, 65, 2154, 67, 4304, 67, 16, 12, 2931, 69, 18, 12, 39997, 64, 12, 65, 22730, 12, 23, 13331, 4349, 21101, 3829, 66, 17, 66, 198, 2, 2343, 243, 253, 7280, 23, 535, 4051, 535, 17, 12, 20, 30336, 12, 1821, 65, 16, 12, 24, 64, 1270, 12, 15, 324, 21, 69, 4761, 1120, 4310, 69, 198, 2, 2343, 243, 254, 28670, 31938, 66, 23, 36680, 12, 7568, 15, 65, 12, 2598, 3865, 12, 23, 22995, 12, 19, 7012, 39885, 5705, 3132, 68, 18, 198, 2, 2343, 243, 253, 7280, 2624, 64, 23, 65, 15, 1453, 12, 68, 5333, 67, 12, 33781, 65, 12, 7012, 4310, 12, 3980, 64, 21, 66, 43610, 3388, 1120, 198, 2, 2343, 243, 253, 7280, 1860, 21, 1731, 2091, 66, 12, 1828, 4524, 12, 19, 66, 21, 69, 12, 24, 68, 1983, 12, 2682, 15630, 17, 66, 38850, 7568, 16, 198, 2, 2343, 243, 253, 7280, 9031, 67, 28555, 68, 12, 3553, 9945, 12, 19, 67, 1795, 12, 65, 1433, 68, 12, 9945, 66, 2078, 69, 721, 24, 69, 7012, 198, 2, 2343, 243, 253, 7280, 64, 15, 19881, 21, 67, 940, 12, 20, 67, 3682, 12, 40271, 65, 12, 5774, 1238, 12, 67, 2860, 18, 69, 47760, 68, 23, 65, 198, 2, 2343, 243, 253, 7280, 17, 65, 23, 1453, 3559, 67, 12, 1065, 1495, 12, 2598, 2425, 12, 6420, 66, 24, 12, 25948, 12993, 43610, 19881, 65, 17, 198, 2, 2343, 243, 253, 7280, 8269, 12, 2388, 12, 2388, 12, 2388, 12, 8269, 18005, 198, 2, 2343, 243, 253, 7280, 8269, 12, 2388, 12, 2388, 12, 2388, 12, 8269, 34215, 198 ]
1.927845
31,668
using Documenter, SlimPlotting makedocs(sitename="Slim Plotting toolbox", doctest=false, clean=true, authors="<NAME>", pages = Any[ "Home" => "index.md", "About" => "README.md", "API reference" => "API.md", ]) deploydocs(repo="github.com/slimgroup/SlimPlotting.jl")
[ 3500, 16854, 263, 11, 34199, 43328, 889, 198, 198, 76, 4335, 420, 82, 7, 48937, 12453, 2625, 50, 2475, 28114, 889, 2891, 3524, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 10412, 395, 28, 9562, 11, 3424, 28, 7942, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 7035, 2625, 27, 20608, 29, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 5468, 796, 4377, 58, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 16060, 1, 5218, 366, 9630, 13, 9132, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 8585, 1, 5218, 366, 15675, 11682, 13, 9132, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 17614, 4941, 1, 5218, 366, 17614, 13, 9132, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 33761, 198, 198, 2934, 1420, 31628, 7, 260, 7501, 2625, 12567, 13, 785, 14, 82, 2475, 8094, 14, 50, 2475, 43328, 889, 13, 20362, 4943 ]
1.988372
172
using NCDatasets using Distributed using SharedArrays using Formatting s_map_file = "b.e11.B1850C5CN.f09_g16.005.pop.h.SST.100001-109912.nc" d_map_file = "domain.ocn.gx3v7.120323.nc" wgt_file = "wgt_gx1v6_to_gx3v7.nc" const NNN = 9 missing_value = 1e20 Dataset(s_map_file, "r") do ds global s_mask, s_Nx, s_Ny, s_N, s_lat, s_lon s_mask = reshape(ds["REGION_MASK"][:], :) s_Nx = ds.dim["nlon"] s_Ny = ds.dim["nlat"] s_N = s_Nx * s_Ny s_lon = reshape(ds["TLONG"][:] .|> deg2rad, :) s_lat = reshape(ds["TLAT"][:] .|> deg2rad, :) end Dataset(d_map_file, "r") do ds global d_mask, d_Nx, d_Ny, d_N, d_lat, d_lon d_mask = reshape(ds["mask"][:], :) d_Nx = ds.dim["ni"] d_Ny = ds.dim["nj"] d_N = d_Nx * d_Ny d_lon = reshape(ds["xc"][:] .|> deg2rad, :) d_lat = reshape(ds["yc"][:] .|> deg2rad, :) end #trans = spzeros(Float64, d_N, s_N) trans = SharedArray{Float64}(NNN, d_N) # s_coord and d_coord are the coordinates of grid points # in 3-dimensional cartesian coordinate s_coord = zeros(Float64, s_N, 3) d_coord = zeros(Float64, d_N, 3) s_coord[:, 1] .= cos.(s_lat) .* cos.(s_lon) s_coord[:, 2] .= cos.(s_lat) .* sin.(s_lon) s_coord[:, 3] .= sin.(s_lat) d_coord[:, 1] .= cos.(d_lat) .* cos.(d_lon) d_coord[:, 2] .= cos.(d_lat) .* sin.(d_lon) d_coord[:, 3] .= sin.(d_lat) s_NaN_idx = (s_mask .== 0) println("Start making transform matrix... ") #idx_arr = zeros(Integer, s_N) #dist2 = zeros(Float64, s_N) @time @sync @distributed for i = 1:d_N # For every point find its nearest-neighbors print("\r", i, "/", d_N) if d_mask[i] == 0 trans[:, i] .= missing_value continue end dist2 = ( (s_coord[:, 1] .- d_coord[i, 1]).^2 + (s_coord[:, 2] .- d_coord[i, 2]).^2 + (s_coord[:, 3] .- d_coord[i, 3]).^2 ) # Decided not to apply this condition because in # extreme cases there might be a small area of water # that is surrounded by lands. dist2[s_NaN_idx] .= NaN idx_arr = 1:s_N |> collect sort!(idx_arr; by=(k)->dist2[k]) trans[:, i] = idx_arr[1:NNN] end println("done.") s_lat = reshape(s_lat, s_Nx, :) s_lon = reshape(s_lon, s_Nx, :) d_lat = reshape(d_lat, d_Nx, :) d_lon = reshape(d_lon, d_Nx, :) Dataset(wgt_file, "c") do ds defDim(ds, "s_Nx", s_Nx) defDim(ds, "s_Ny", s_Ny) defDim(ds, "s_N", s_N) defDim(ds, "d_Nx", d_Nx) defDim(ds, "d_Ny", d_Ny) defDim(ds, "d_N", d_N) defDim(ds, "NNN", NNN) for (varname, vardata, dims) in ( ("NN_idx", trans, ("NNN", "d_N")), ("s_lat", s_lat, ("s_Nx", "s_Ny")), ("s_lon", s_lon, ("s_Nx", "s_Ny")), ("d_lat", d_lat, ("d_Nx", "d_Ny")), ("d_lon", d_lon, ("d_Nx", "d_Ny")), ) print(format("Output data: {} ...", varname)) v = defVar(ds, varname, Float64, dims) v.attrib["_FillValue"] = missing_value v[:] = vardata println("done.") end end
[ 3500, 399, 8610, 265, 292, 1039, 198, 3500, 4307, 6169, 198, 3500, 39403, 3163, 20477, 198, 3500, 18980, 889, 198, 198, 82, 62, 8899, 62, 7753, 796, 366, 65, 13, 68, 1157, 13, 33, 1507, 1120, 34, 20, 44175, 13, 69, 2931, 62, 70, 1433, 13, 22544, 13, 12924, 13, 71, 13, 50, 2257, 13, 49388, 16, 12, 940, 2079, 1065, 13, 10782, 1, 198, 67, 62, 8899, 62, 7753, 796, 366, 27830, 13, 420, 77, 13, 70, 87, 18, 85, 22, 13, 1065, 3070, 1954, 13, 10782, 1, 198, 198, 86, 13655, 62, 7753, 796, 366, 86, 13655, 62, 70, 87, 16, 85, 21, 62, 1462, 62, 70, 87, 18, 85, 22, 13, 10782, 1, 198, 198, 9979, 399, 6144, 796, 860, 198, 45688, 62, 8367, 796, 352, 68, 1238, 198, 198, 27354, 292, 316, 7, 82, 62, 8899, 62, 7753, 11, 366, 81, 4943, 466, 288, 82, 198, 220, 220, 220, 220, 220, 220, 220, 3298, 264, 62, 27932, 11, 264, 62, 45, 87, 11, 264, 62, 45, 88, 11, 264, 62, 45, 11, 264, 62, 15460, 11, 264, 62, 14995, 628, 220, 220, 220, 220, 220, 220, 220, 264, 62, 27932, 796, 27179, 1758, 7, 9310, 14692, 31553, 2849, 62, 31180, 42, 1, 7131, 25, 4357, 14373, 198, 220, 220, 220, 220, 220, 220, 220, 264, 62, 45, 87, 796, 288, 82, 13, 27740, 14692, 77, 14995, 8973, 198, 220, 220, 220, 220, 220, 220, 220, 264, 62, 45, 88, 796, 288, 82, 13, 27740, 14692, 77, 15460, 8973, 198, 220, 220, 220, 220, 220, 220, 220, 264, 62, 45, 220, 796, 264, 62, 45, 87, 1635, 264, 62, 45, 88, 198, 220, 220, 220, 220, 220, 220, 220, 264, 62, 14995, 796, 27179, 1758, 7, 9310, 14692, 14990, 18494, 1, 7131, 47715, 764, 91, 29, 3396, 17, 6335, 11, 14373, 198, 220, 220, 220, 220, 220, 220, 220, 264, 62, 15460, 796, 27179, 1758, 7, 9310, 14692, 14990, 1404, 1, 7131, 47715, 764, 91, 29, 3396, 17, 6335, 11, 14373, 198, 437, 198, 198, 27354, 292, 316, 7, 67, 62, 8899, 62, 7753, 11, 366, 81, 4943, 466, 288, 82, 198, 220, 220, 220, 220, 220, 220, 220, 3298, 288, 62, 27932, 11, 288, 62, 45, 87, 11, 288, 62, 45, 88, 11, 288, 62, 45, 11, 288, 62, 15460, 11, 288, 62, 14995, 628, 220, 220, 220, 220, 220, 220, 220, 288, 62, 27932, 796, 27179, 1758, 7, 9310, 14692, 27932, 1, 7131, 25, 4357, 14373, 198, 220, 220, 220, 220, 220, 220, 220, 288, 62, 45, 87, 796, 288, 82, 13, 27740, 14692, 8461, 8973, 198, 220, 220, 220, 220, 220, 220, 220, 288, 62, 45, 88, 796, 288, 82, 13, 27740, 14692, 77, 73, 8973, 198, 220, 220, 220, 220, 220, 220, 220, 288, 62, 45, 796, 288, 62, 45, 87, 1635, 288, 62, 45, 88, 198, 220, 220, 220, 220, 220, 220, 220, 288, 62, 14995, 796, 27179, 1758, 7, 9310, 14692, 25306, 1, 7131, 47715, 764, 91, 29, 3396, 17, 6335, 11, 14373, 198, 220, 220, 220, 220, 220, 220, 220, 288, 62, 15460, 796, 27179, 1758, 7, 9310, 14692, 88, 66, 1, 7131, 47715, 764, 91, 29, 3396, 17, 6335, 11, 14373, 198, 437, 628, 198, 2, 7645, 796, 599, 9107, 418, 7, 43879, 2414, 11, 288, 62, 45, 11, 264, 62, 45, 8, 198, 7645, 796, 39403, 19182, 90, 43879, 2414, 92, 7, 6144, 45, 11, 288, 62, 45, 8, 198, 198, 2, 264, 62, 37652, 290, 288, 62, 37652, 389, 262, 22715, 286, 10706, 2173, 198, 2, 287, 513, 12, 19577, 6383, 35610, 20435, 198, 198, 82, 62, 37652, 796, 1976, 27498, 7, 43879, 2414, 11, 264, 62, 45, 11, 513, 8, 198, 67, 62, 37652, 796, 1976, 27498, 7, 43879, 2414, 11, 288, 62, 45, 11, 513, 8, 198, 198, 82, 62, 37652, 58, 45299, 352, 60, 764, 28, 8615, 12195, 82, 62, 15460, 8, 764, 9, 8615, 12195, 82, 62, 14995, 8, 198, 82, 62, 37652, 58, 45299, 362, 60, 764, 28, 8615, 12195, 82, 62, 15460, 8, 764, 9, 7813, 12195, 82, 62, 14995, 8, 198, 82, 62, 37652, 58, 45299, 513, 60, 764, 28, 7813, 12195, 82, 62, 15460, 8, 198, 198, 67, 62, 37652, 58, 45299, 352, 60, 764, 28, 8615, 12195, 67, 62, 15460, 8, 764, 9, 8615, 12195, 67, 62, 14995, 8, 198, 67, 62, 37652, 58, 45299, 362, 60, 764, 28, 8615, 12195, 67, 62, 15460, 8, 764, 9, 7813, 12195, 67, 62, 14995, 8, 198, 67, 62, 37652, 58, 45299, 513, 60, 764, 28, 7813, 12195, 67, 62, 15460, 8, 198, 198, 82, 62, 26705, 45, 62, 312, 87, 796, 357, 82, 62, 27932, 764, 855, 657, 8, 198, 198, 35235, 7203, 10434, 1642, 6121, 17593, 986, 366, 8, 198, 2, 312, 87, 62, 3258, 796, 1976, 27498, 7, 46541, 11, 264, 62, 45, 8, 198, 2, 17080, 17, 220, 220, 796, 1976, 27498, 7, 43879, 2414, 11, 264, 62, 45, 8, 198, 198, 31, 2435, 2488, 27261, 2488, 17080, 6169, 329, 1312, 796, 352, 25, 67, 62, 45, 628, 220, 220, 220, 1303, 1114, 790, 966, 1064, 663, 16936, 12, 710, 394, 32289, 628, 220, 220, 220, 3601, 7203, 59, 81, 1600, 1312, 11, 12813, 1600, 288, 62, 45, 8, 628, 220, 220, 220, 611, 288, 62, 27932, 58, 72, 60, 6624, 657, 198, 220, 220, 220, 220, 220, 220, 220, 1007, 58, 45299, 1312, 60, 764, 28, 4814, 62, 8367, 198, 220, 220, 220, 220, 220, 220, 220, 2555, 198, 220, 220, 220, 886, 628, 198, 220, 220, 220, 1233, 17, 796, 357, 220, 357, 82, 62, 37652, 58, 45299, 352, 60, 764, 12, 288, 62, 37652, 58, 72, 11, 352, 35944, 61, 17, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1343, 357, 82, 62, 37652, 58, 45299, 362, 60, 764, 12, 288, 62, 37652, 58, 72, 11, 362, 35944, 61, 17, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1343, 357, 82, 62, 37652, 58, 45299, 513, 60, 764, 12, 288, 62, 37652, 58, 72, 11, 513, 35944, 61, 17, 1267, 628, 198, 220, 220, 220, 1303, 4280, 1384, 407, 284, 4174, 428, 4006, 780, 287, 220, 198, 220, 220, 220, 1303, 3257, 2663, 612, 1244, 307, 257, 1402, 1989, 286, 1660, 198, 220, 220, 220, 1303, 326, 318, 11191, 416, 8604, 13, 628, 220, 220, 220, 1233, 17, 58, 82, 62, 26705, 45, 62, 312, 87, 60, 764, 28, 11013, 45, 198, 220, 198, 220, 220, 220, 4686, 87, 62, 3258, 796, 352, 25, 82, 62, 45, 930, 29, 2824, 198, 220, 220, 220, 3297, 0, 7, 312, 87, 62, 3258, 26, 416, 16193, 74, 8, 3784, 17080, 17, 58, 74, 12962, 198, 220, 220, 220, 1007, 58, 45299, 1312, 60, 796, 4686, 87, 62, 3258, 58, 16, 25, 6144, 45, 60, 198, 198, 437, 198, 35235, 7203, 28060, 19570, 628, 198, 82, 62, 15460, 796, 27179, 1758, 7, 82, 62, 15460, 11, 264, 62, 45, 87, 11, 14373, 198, 82, 62, 14995, 796, 27179, 1758, 7, 82, 62, 14995, 11, 264, 62, 45, 87, 11, 14373, 198, 67, 62, 15460, 796, 27179, 1758, 7, 67, 62, 15460, 11, 288, 62, 45, 87, 11, 14373, 198, 67, 62, 14995, 796, 27179, 1758, 7, 67, 62, 14995, 11, 288, 62, 45, 87, 11, 14373, 198, 198, 27354, 292, 316, 7, 86, 13655, 62, 7753, 11, 366, 66, 4943, 466, 288, 82, 628, 220, 220, 220, 825, 29271, 7, 9310, 11, 366, 82, 62, 45, 87, 1600, 264, 62, 45, 87, 8, 198, 220, 220, 220, 825, 29271, 7, 9310, 11, 366, 82, 62, 45, 88, 1600, 264, 62, 45, 88, 8, 198, 220, 220, 220, 825, 29271, 7, 9310, 11, 366, 82, 62, 45, 1600, 220, 264, 62, 45, 8, 628, 220, 220, 220, 825, 29271, 7, 9310, 11, 366, 67, 62, 45, 87, 1600, 288, 62, 45, 87, 8, 198, 220, 220, 220, 825, 29271, 7, 9310, 11, 366, 67, 62, 45, 88, 1600, 288, 62, 45, 88, 8, 198, 220, 220, 220, 825, 29271, 7, 9310, 11, 366, 67, 62, 45, 1600, 220, 288, 62, 45, 8, 198, 220, 220, 220, 220, 198, 220, 220, 220, 825, 29271, 7, 9310, 11, 366, 6144, 45, 1600, 399, 6144, 8, 628, 198, 220, 220, 220, 329, 357, 85, 1501, 480, 11, 410, 446, 1045, 11, 5391, 82, 8, 287, 357, 198, 220, 220, 220, 220, 220, 220, 220, 5855, 6144, 62, 312, 87, 1600, 1007, 11, 5855, 6144, 45, 1600, 366, 67, 62, 45, 4943, 828, 198, 220, 220, 220, 220, 220, 220, 220, 5855, 82, 62, 15460, 1600, 264, 62, 15460, 11, 5855, 82, 62, 45, 87, 1600, 366, 82, 62, 45, 88, 4943, 828, 198, 220, 220, 220, 220, 220, 220, 220, 5855, 82, 62, 14995, 1600, 264, 62, 14995, 11, 5855, 82, 62, 45, 87, 1600, 366, 82, 62, 45, 88, 4943, 828, 198, 220, 220, 220, 220, 220, 220, 220, 5855, 67, 62, 15460, 1600, 288, 62, 15460, 11, 5855, 67, 62, 45, 87, 1600, 366, 67, 62, 45, 88, 4943, 828, 198, 220, 220, 220, 220, 220, 220, 220, 5855, 67, 62, 14995, 1600, 288, 62, 14995, 11, 5855, 67, 62, 45, 87, 1600, 366, 67, 62, 45, 88, 4943, 828, 198, 220, 220, 220, 1267, 628, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 18982, 7203, 26410, 1366, 25, 23884, 35713, 11, 1401, 3672, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 410, 796, 825, 19852, 7, 9310, 11, 1401, 3672, 11, 48436, 2414, 11, 5391, 82, 8, 198, 220, 220, 220, 220, 220, 220, 220, 410, 13, 1078, 822, 14692, 62, 33762, 11395, 8973, 796, 4814, 62, 8367, 198, 220, 220, 220, 220, 220, 220, 220, 410, 58, 47715, 796, 410, 446, 1045, 198, 220, 220, 220, 220, 220, 220, 220, 44872, 7203, 28060, 19570, 198, 220, 220, 220, 886, 198, 220, 220, 220, 220, 198, 437, 628, 628 ]
1.837266
1,653
<reponame>rmsrosa/adventofcode2020 list_test_str = split( "forward 5 down 5 forward 8 up 3 down 8 forward 2", '\n' ) list_str = readlines("day2_input.txt") # Part 1 function part1(list) depth = 0 pos = 0 for cmd in list m, k = split(cmd) k = parse(Int, k) pos += m == "forward" ? k : 0 depth += m == "up" ? -k : m == "down" ? k : 0 end return pos * depth end @info "Part 1" @info "test:" @show part1(list_test_str) == 150 @info "challenge:" @show part1(list_str) == 1714680 # Part 2 function part2(list) depth = 0 pos = 0 aim = 0 for cmd in list m, k = split(cmd) k = parse(Int, k) pos += m == "forward" ? k : 0 depth += m == "forward" ? aim * k : 0 aim += m == "up" ? -k : m == "down" ? k : 0 end return pos * depth end @info "Part 2" @info "test:" @show part2(list_test_str) == 900 @info "challenge:" @show part2(list_str) == 1963088820 # Alternative # Part 1 forward(k) = [0, k] # depth and pos up(k) = [-k, 0] down(k) = [k, 0] function part1_alt(list) commands = [split(cmd) |> u -> (Symbol(first(u)), parse(Int, last(u))) for cmd in list] return prod(mapreduce(u -> eval(first(u))(last(u)), +, commands)) end @info "Part 1 alt" @info "test:" @show part1_alt(list_test_str) == 150 @info "challenge:" @show part1_alt(list_str) == 1714680 # Part 2 function forward!(u, k) u[1] += u[3] * k u[2] += k end function up!(u, k) u[3] -= k end function down!(u, k) u[3] += k end function part2_alt2(list) u = [0, 0, 0] for l in list cmd = l[1] k = parse(Int, l[end]) if cmd == 'f' forward!(u, k) elseif cmd == 'u' up!(u, k) else down!(u, k) end end return u[1] * u[2] end @info "Part 2 alt" @info "test:" @show part2_alt2(list_test_str) == 900 @info "challenge:" @show part2_alt2(list_str) == 1963088820 nothing
[ 27, 7856, 261, 480, 29, 81, 907, 4951, 64, 14, 324, 1151, 1659, 8189, 42334, 198, 198, 4868, 62, 9288, 62, 2536, 796, 6626, 7, 198, 1, 11813, 642, 198, 2902, 642, 198, 11813, 807, 198, 929, 513, 198, 2902, 807, 198, 11813, 362, 1600, 198, 6, 59, 77, 6, 198, 8, 198, 198, 4868, 62, 2536, 796, 1100, 6615, 7203, 820, 17, 62, 15414, 13, 14116, 4943, 198, 198, 2, 2142, 352, 198, 198, 8818, 636, 16, 7, 4868, 8, 198, 220, 220, 220, 6795, 796, 657, 198, 220, 220, 220, 1426, 796, 657, 198, 220, 220, 220, 329, 23991, 287, 1351, 198, 220, 220, 220, 220, 220, 220, 220, 285, 11, 479, 796, 6626, 7, 28758, 8, 198, 220, 220, 220, 220, 220, 220, 220, 479, 796, 21136, 7, 5317, 11, 479, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1426, 15853, 285, 6624, 366, 11813, 1, 5633, 479, 1058, 657, 198, 220, 220, 220, 220, 220, 220, 220, 6795, 15853, 285, 6624, 366, 929, 1, 5633, 532, 74, 1058, 285, 6624, 366, 2902, 1, 5633, 479, 1058, 657, 198, 220, 220, 220, 886, 198, 220, 220, 220, 1441, 1426, 1635, 6795, 198, 437, 198, 198, 31, 10951, 366, 7841, 352, 1, 198, 31, 10951, 366, 9288, 11097, 198, 31, 12860, 636, 16, 7, 4868, 62, 9288, 62, 2536, 8, 6624, 6640, 198, 31, 10951, 366, 36747, 3540, 11097, 220, 198, 31, 12860, 636, 16, 7, 4868, 62, 2536, 8, 6624, 1596, 20964, 1795, 198, 198, 2, 2142, 362, 198, 198, 8818, 636, 17, 7, 4868, 8, 198, 220, 220, 220, 6795, 796, 657, 198, 220, 220, 220, 1426, 796, 657, 198, 220, 220, 220, 4031, 796, 657, 198, 220, 220, 220, 329, 23991, 287, 1351, 198, 220, 220, 220, 220, 220, 220, 220, 285, 11, 479, 796, 6626, 7, 28758, 8, 198, 220, 220, 220, 220, 220, 220, 220, 479, 796, 21136, 7, 5317, 11, 479, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1426, 15853, 285, 6624, 366, 11813, 1, 5633, 479, 1058, 657, 198, 220, 220, 220, 220, 220, 220, 220, 6795, 15853, 285, 6624, 366, 11813, 1, 5633, 4031, 1635, 479, 1058, 657, 198, 220, 220, 220, 220, 220, 220, 220, 4031, 15853, 285, 6624, 366, 929, 1, 5633, 532, 74, 1058, 285, 6624, 366, 2902, 1, 5633, 479, 1058, 657, 198, 220, 220, 220, 886, 198, 220, 220, 220, 1441, 1426, 1635, 6795, 198, 437, 198, 198, 31, 10951, 366, 7841, 362, 1, 198, 31, 10951, 366, 9288, 11097, 198, 31, 12860, 636, 17, 7, 4868, 62, 9288, 62, 2536, 8, 6624, 15897, 198, 31, 10951, 366, 36747, 3540, 11097, 198, 31, 12860, 636, 17, 7, 4868, 62, 2536, 8, 6624, 28817, 1270, 28011, 1238, 198, 198, 2, 27182, 198, 198, 2, 2142, 352, 198, 198, 11813, 7, 74, 8, 796, 685, 15, 11, 479, 60, 1303, 6795, 290, 1426, 198, 929, 7, 74, 8, 796, 25915, 74, 11, 657, 60, 198, 2902, 7, 74, 8, 796, 685, 74, 11, 657, 60, 198, 198, 8818, 636, 16, 62, 2501, 7, 4868, 8, 198, 220, 220, 220, 9729, 796, 685, 35312, 7, 28758, 8, 930, 29, 334, 4613, 357, 13940, 23650, 7, 11085, 7, 84, 36911, 21136, 7, 5317, 11, 938, 7, 84, 22305, 329, 23991, 287, 1351, 60, 198, 220, 220, 220, 1441, 40426, 7, 8899, 445, 7234, 7, 84, 4613, 5418, 7, 11085, 7, 84, 4008, 7, 12957, 7, 84, 36911, 1343, 11, 9729, 4008, 198, 437, 198, 198, 31, 10951, 366, 7841, 352, 5988, 1, 198, 31, 10951, 366, 9288, 11097, 198, 31, 12860, 636, 16, 62, 2501, 7, 4868, 62, 9288, 62, 2536, 8, 6624, 6640, 198, 31, 10951, 366, 36747, 3540, 11097, 220, 198, 31, 12860, 636, 16, 62, 2501, 7, 4868, 62, 2536, 8, 6624, 1596, 20964, 1795, 198, 198, 2, 2142, 362, 198, 198, 8818, 2651, 0, 7, 84, 11, 479, 8, 198, 220, 220, 220, 334, 58, 16, 60, 15853, 334, 58, 18, 60, 1635, 479, 198, 220, 220, 220, 334, 58, 17, 60, 15853, 479, 198, 437, 198, 8818, 510, 0, 7, 84, 11, 479, 8, 198, 220, 220, 220, 334, 58, 18, 60, 48185, 479, 198, 437, 198, 8818, 866, 0, 7, 84, 11, 479, 8, 198, 220, 220, 220, 334, 58, 18, 60, 15853, 479, 198, 437, 198, 198, 8818, 636, 17, 62, 2501, 17, 7, 4868, 8, 198, 220, 220, 220, 334, 796, 685, 15, 11, 657, 11, 657, 60, 198, 220, 220, 220, 329, 300, 287, 1351, 198, 220, 220, 220, 220, 220, 220, 220, 23991, 796, 300, 58, 16, 60, 198, 220, 220, 220, 220, 220, 220, 220, 479, 796, 21136, 7, 5317, 11, 300, 58, 437, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 611, 23991, 6624, 705, 69, 6, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2651, 0, 7, 84, 11, 479, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 361, 23991, 6624, 705, 84, 6, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 510, 0, 7, 84, 11, 479, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 866, 0, 7, 84, 11, 479, 8, 198, 220, 220, 220, 220, 220, 220, 220, 886, 198, 220, 220, 220, 886, 198, 220, 220, 220, 1441, 334, 58, 16, 60, 1635, 334, 58, 17, 60, 198, 437, 198, 198, 31, 10951, 366, 7841, 362, 5988, 1, 198, 31, 10951, 366, 9288, 11097, 198, 31, 12860, 636, 17, 62, 2501, 17, 7, 4868, 62, 9288, 62, 2536, 8, 6624, 15897, 198, 31, 10951, 366, 36747, 3540, 11097, 220, 198, 31, 12860, 636, 17, 62, 2501, 17, 7, 4868, 62, 2536, 8, 6624, 28817, 1270, 28011, 1238, 198, 198, 22366, 628 ]
2.03516
967
<gh_stars>10-100 # Fire a state transition function fire(fsm::StateMachine, name::AbstractString, args...) # Reserved event names: is, can, finished # is: check whether the current state is the same as the requested state # returns true if they are the same, false otherwise if name == "is" event = args[1] fsm.current == event # can: ensure a specified event can be triggered from the current state # returns true if it can be triggered, false otherwise elseif name == "can" event = args[1] haskey(fsm.map[event], fsm.current) # finished: check if the terminal state has been reached # returns true if current = terminal state, false otherwise elseif name == "finished" fsm.current == fsm.terminal # User-defined events and callbacks elseif haskey(fsm.actions, name) fsm.actions[name]() # Throw an error if there weren't any matching names else error(name * " not found") end end
[ 27, 456, 62, 30783, 29, 940, 12, 3064, 198, 2, 3764, 257, 1181, 6801, 198, 8818, 2046, 7, 69, 5796, 3712, 9012, 37573, 11, 1438, 3712, 23839, 10100, 11, 26498, 23029, 628, 220, 220, 220, 1303, 33876, 1785, 3891, 25, 318, 11, 460, 11, 5201, 198, 220, 220, 220, 1303, 318, 25, 2198, 1771, 262, 1459, 1181, 318, 262, 976, 355, 262, 9167, 1181, 198, 220, 220, 220, 1303, 220, 220, 220, 220, 5860, 2081, 611, 484, 389, 262, 976, 11, 3991, 4306, 198, 220, 220, 220, 611, 1438, 6624, 366, 271, 1, 198, 220, 220, 220, 220, 220, 220, 220, 1785, 796, 26498, 58, 16, 60, 198, 220, 220, 220, 220, 220, 220, 220, 277, 5796, 13, 14421, 6624, 1785, 628, 220, 220, 220, 1303, 460, 25, 4155, 257, 7368, 1785, 460, 307, 13973, 422, 262, 1459, 1181, 198, 220, 220, 220, 1303, 220, 220, 220, 220, 220, 5860, 2081, 611, 340, 460, 307, 13973, 11, 3991, 4306, 198, 220, 220, 220, 2073, 361, 1438, 6624, 366, 5171, 1, 198, 220, 220, 220, 220, 220, 220, 220, 1785, 796, 26498, 58, 16, 60, 198, 220, 220, 220, 220, 220, 220, 220, 468, 2539, 7, 69, 5796, 13, 8899, 58, 15596, 4357, 277, 5796, 13, 14421, 8, 628, 220, 220, 220, 1303, 5201, 25, 2198, 611, 262, 12094, 1181, 468, 587, 4251, 198, 220, 220, 220, 1303, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5860, 2081, 611, 1459, 796, 12094, 1181, 11, 3991, 4306, 198, 220, 220, 220, 2073, 361, 1438, 6624, 366, 43952, 1, 198, 220, 220, 220, 220, 220, 220, 220, 277, 5796, 13, 14421, 6624, 277, 5796, 13, 23705, 282, 628, 220, 220, 220, 1303, 11787, 12, 23211, 2995, 290, 869, 10146, 198, 220, 220, 220, 2073, 361, 468, 2539, 7, 69, 5796, 13, 4658, 11, 1438, 8, 198, 220, 220, 220, 220, 220, 220, 220, 277, 5796, 13, 4658, 58, 3672, 60, 3419, 628, 220, 220, 220, 1303, 22481, 281, 4049, 611, 612, 6304, 470, 597, 12336, 3891, 198, 220, 220, 220, 2073, 198, 220, 220, 220, 220, 220, 220, 220, 4049, 7, 3672, 1635, 366, 407, 1043, 4943, 198, 220, 220, 220, 886, 198, 437, 198 ]
2.804945
364
{"score_count": 61424, "timestamp": 1559907801.0, "score": 7.18} {"score_count": 60347, "timestamp": 1555037518.0, "score": 7.18} {"score_count": 60223, "timestamp": 1554525964.0, "score": 7.18} {"score_count": 59915, "timestamp": 1553371541.0, "score": 7.18} {"score_count": 52738, "timestamp": 1522355960.0, "score": 7.19} {"score_count": 40130, "timestamp": 1479059508.0, "score": 7.2} {"score_count": 35132, "timestamp": 1462008127.0, "score": 7.2} {"score_count": 34038, "timestamp": 1458639683.0, "score": 7.2} {"score_count": 33753, "timestamp": 1457620427.0, "score": 7.19} {"score_count": 31812, "timestamp": 1451131179.0, "score": 7.19} {"score_count": 30775, "timestamp": 1446838366.0, "score": 7.19} {"score_count": 29474, "timestamp": 1441522584.0, "score": 7.19} {"score_count": 31857, "timestamp": 1451261832.0, "score": 7.19} {"score_count": 29719, "timestamp": 1442641164.0, "score": 7.19}
[ 4895, 26675, 62, 9127, 1298, 718, 1415, 1731, 11, 366, 16514, 27823, 1298, 20708, 2079, 2998, 41531, 13, 15, 11, 366, 26675, 1298, 767, 13, 1507, 92, 198, 4895, 26675, 62, 9127, 1298, 3126, 30995, 11, 366, 16514, 27823, 1298, 20708, 1120, 22318, 1507, 13, 15, 11, 366, 26675, 1298, 767, 13, 1507, 92, 198, 4895, 26675, 62, 9127, 1298, 3126, 22047, 11, 366, 16514, 27823, 1298, 20708, 2231, 25191, 2414, 13, 15, 11, 366, 26675, 1298, 767, 13, 1507, 92, 198, 4895, 26675, 62, 9127, 1298, 642, 2079, 1314, 11, 366, 16514, 27823, 1298, 20708, 31496, 1314, 3901, 13, 15, 11, 366, 26675, 1298, 767, 13, 1507, 92, 198, 4895, 26675, 62, 9127, 1298, 642, 1983, 2548, 11, 366, 16514, 27823, 1298, 1315, 1828, 2327, 3270, 1899, 13, 15, 11, 366, 26675, 1298, 767, 13, 1129, 92, 198, 4895, 26675, 62, 9127, 1298, 22219, 1270, 11, 366, 16514, 27823, 1298, 1478, 3720, 2713, 31027, 23, 13, 15, 11, 366, 26675, 1298, 767, 13, 17, 92, 198, 4895, 26675, 62, 9127, 1298, 3439, 19924, 11, 366, 16514, 27823, 1298, 22986, 11528, 16799, 13, 15, 11, 366, 26675, 1298, 767, 13, 17, 92, 198, 4895, 26675, 62, 9127, 1298, 28560, 2548, 11, 366, 16514, 27823, 1298, 1478, 29796, 2670, 47521, 13, 15, 11, 366, 26675, 1298, 767, 13, 17, 92, 198, 4895, 26675, 62, 9127, 1298, 4747, 44550, 11, 366, 16514, 27823, 1298, 1478, 37452, 18638, 1983, 13, 15, 11, 366, 26675, 1298, 767, 13, 1129, 92, 198, 4895, 26675, 62, 9127, 1298, 39320, 1065, 11, 366, 16514, 27823, 1298, 20299, 16616, 1157, 3720, 13, 15, 11, 366, 26675, 1298, 767, 13, 1129, 92, 198, 4895, 26675, 62, 9127, 1298, 1542, 34483, 11, 366, 16514, 27823, 1298, 20224, 3104, 2548, 32459, 13, 15, 11, 366, 26675, 1298, 767, 13, 1129, 92, 198, 4895, 26675, 62, 9127, 1298, 2808, 38652, 11, 366, 16514, 27823, 1298, 20224, 17827, 1495, 5705, 13, 15, 11, 366, 26675, 1298, 767, 13, 1129, 92, 198, 4895, 26675, 62, 9127, 1298, 39320, 3553, 11, 366, 16514, 27823, 1298, 20299, 19420, 1507, 2624, 13, 15, 11, 366, 26675, 1298, 767, 13, 1129, 92, 198, 4895, 26675, 62, 9127, 1298, 41103, 1129, 11, 366, 16514, 27823, 1298, 20224, 18897, 1157, 2414, 13, 15, 11, 366, 26675, 1298, 767, 13, 1129, 92, 198 ]
2.374346
382
# Julia wrapper for header: /usr/include/scip/pub_history.h # Automatically generated using Clang.jl wrap_c function SCIPhistoryGetVSIDS(history, dir) ccall((:SCIPhistoryGetVSIDS, libscip), Cdouble, (Ptr{SCIP_HISTORY}, SCIP_BRANCHDIR), history, dir) end function SCIPhistoryGetCutoffSum(history, dir) ccall((:SCIPhistoryGetCutoffSum, libscip), Cdouble, (Ptr{SCIP_HISTORY}, SCIP_BRANCHDIR), history, dir) end function SCIPvaluehistoryGetNValues(valuehistory) ccall((:SCIPvaluehistoryGetNValues, libscip), Cint, (Ptr{SCIP_VALUEHISTORY},), valuehistory) end function SCIPvaluehistoryGetHistories(valuehistory) ccall((:SCIPvaluehistoryGetHistories, libscip), Ptr{Ptr{SCIP_HISTORY}}, (Ptr{SCIP_VALUEHISTORY},), valuehistory) end function SCIPvaluehistoryGetValues(valuehistory) ccall((:SCIPvaluehistoryGetValues, libscip), Ptr{Cdouble}, (Ptr{SCIP_VALUEHISTORY},), valuehistory) end
[ 2, 22300, 29908, 329, 13639, 25, 1220, 14629, 14, 17256, 14, 1416, 541, 14, 12984, 62, 23569, 13, 71, 198, 2, 17406, 4142, 7560, 1262, 1012, 648, 13, 20362, 14441, 62, 66, 628, 198, 8818, 6374, 40, 2725, 396, 652, 3855, 20304, 14255, 7, 23569, 11, 26672, 8, 198, 220, 220, 220, 269, 13345, 19510, 25, 6173, 40, 2725, 396, 652, 3855, 20304, 14255, 11, 9195, 1416, 541, 828, 327, 23352, 11, 357, 46745, 90, 6173, 4061, 62, 39, 42480, 5512, 6374, 4061, 62, 11473, 1565, 3398, 34720, 828, 2106, 11, 26672, 8, 198, 437, 198, 198, 8818, 6374, 40, 2725, 396, 652, 3855, 26254, 2364, 13065, 7, 23569, 11, 26672, 8, 198, 220, 220, 220, 269, 13345, 19510, 25, 6173, 40, 2725, 396, 652, 3855, 26254, 2364, 13065, 11, 9195, 1416, 541, 828, 327, 23352, 11, 357, 46745, 90, 6173, 4061, 62, 39, 42480, 5512, 6374, 4061, 62, 11473, 1565, 3398, 34720, 828, 2106, 11, 26672, 8, 198, 437, 198, 198, 8818, 6374, 4061, 8367, 23569, 3855, 45, 40161, 7, 8367, 23569, 8, 198, 220, 220, 220, 269, 13345, 19510, 25, 6173, 4061, 8367, 23569, 3855, 45, 40161, 11, 9195, 1416, 541, 828, 327, 600, 11, 357, 46745, 90, 6173, 4061, 62, 39488, 39, 42480, 5512, 828, 1988, 23569, 8, 198, 437, 198, 198, 8818, 6374, 4061, 8367, 23569, 3855, 13749, 1749, 7, 8367, 23569, 8, 198, 220, 220, 220, 269, 13345, 19510, 25, 6173, 4061, 8367, 23569, 3855, 13749, 1749, 11, 9195, 1416, 541, 828, 350, 2213, 90, 46745, 90, 6173, 4061, 62, 39, 42480, 92, 5512, 357, 46745, 90, 6173, 4061, 62, 39488, 39, 42480, 5512, 828, 1988, 23569, 8, 198, 437, 198, 198, 8818, 6374, 4061, 8367, 23569, 3855, 40161, 7, 8367, 23569, 8, 198, 220, 220, 220, 269, 13345, 19510, 25, 6173, 4061, 8367, 23569, 3855, 40161, 11, 9195, 1416, 541, 828, 350, 2213, 90, 34, 23352, 5512, 357, 46745, 90, 6173, 4061, 62, 39488, 39, 42480, 5512, 828, 1988, 23569, 8, 198, 437, 198 ]
2.736364
330
@testset "rng.jl" begin @testset "sample distribution" begin rng = AdvancedPS.TracedRNG() vns = rand(rng, Distributions.Normal()) AdvancedPS.save_state!(rng) rand(rng, Distributions.Normal()) AdvancedPS.load_state!(rng) new_vns = rand(rng, Distributions.Normal()) @test new_vns ≈ vns end @testset "split" begin rng = AdvancedPS.TracedRNG() key = rng.rng.key new_key, = AdvancedPS.split(key, 1) @test key ≠ new_key Random.seed!(rng, new_key) @test rng.rng.key === new_key end end
[ 31, 9288, 2617, 366, 81, 782, 13, 20362, 1, 2221, 198, 220, 220, 220, 2488, 9288, 2617, 366, 39873, 6082, 1, 2221, 198, 220, 220, 220, 220, 220, 220, 220, 374, 782, 796, 13435, 3705, 13, 2898, 2286, 49, 10503, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 410, 5907, 796, 43720, 7, 81, 782, 11, 46567, 507, 13, 26447, 28955, 198, 220, 220, 220, 220, 220, 220, 220, 13435, 3705, 13, 21928, 62, 5219, 0, 7, 81, 782, 8, 628, 220, 220, 220, 220, 220, 220, 220, 43720, 7, 81, 782, 11, 46567, 507, 13, 26447, 28955, 628, 220, 220, 220, 220, 220, 220, 220, 13435, 3705, 13, 2220, 62, 5219, 0, 7, 81, 782, 8, 198, 220, 220, 220, 220, 220, 220, 220, 649, 62, 85, 5907, 796, 43720, 7, 81, 782, 11, 46567, 507, 13, 26447, 28955, 198, 220, 220, 220, 220, 220, 220, 220, 2488, 9288, 649, 62, 85, 5907, 15139, 230, 410, 5907, 198, 220, 220, 220, 886, 628, 220, 220, 220, 2488, 9288, 2617, 366, 35312, 1, 2221, 198, 220, 220, 220, 220, 220, 220, 220, 374, 782, 796, 13435, 3705, 13, 2898, 2286, 49, 10503, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 1994, 796, 374, 782, 13, 81, 782, 13, 2539, 198, 220, 220, 220, 220, 220, 220, 220, 649, 62, 2539, 11, 796, 13435, 3705, 13, 35312, 7, 2539, 11, 352, 8, 628, 220, 220, 220, 220, 220, 220, 220, 2488, 9288, 1994, 15139, 254, 649, 62, 2539, 628, 220, 220, 220, 220, 220, 220, 220, 14534, 13, 28826, 0, 7, 81, 782, 11, 649, 62, 2539, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2488, 9288, 374, 782, 13, 81, 782, 13, 2539, 24844, 649, 62, 2539, 198, 220, 220, 220, 886, 198, 437, 198 ]
2.026846
298
# complex dense, projected w/ transient # Compare to figures in S&P, chap. 22. # ∃ small discrepancies for large ϵ, # but we are consistent w/ EigTool. using Pseudospectra, Test @testset "Projection/Transients" begin # for a sensible projection, must provide axes opts = Dict{Symbol,Any}(:ax => [-1,0.3,-1.2,0.2],:npts=>100,:proj_lev=>1.5) A = Pseudospectra.orrsommerfeld(200,10000,1.02) ps_data = new_matrix(A,opts) driver!(ps_data,opts,gs) @test iscomputed(ps_data) mtxexpsplot(gs,ps_data,1.0,100,lbmethod=:old) # additional plots to compare w/ book Fig. 22.6: # modeplot(ps_data,gs,0,0.0-0.2im) # modeplot(ps_data,gs,1,-0.1-0.8im) end
[ 2, 3716, 15715, 11, 13301, 266, 14, 32361, 198, 2, 27814, 284, 5538, 287, 311, 5, 47, 11, 28022, 13, 2534, 13, 198, 2, 18872, 225, 1402, 42420, 329, 1588, 18074, 113, 11, 198, 2, 475, 356, 389, 6414, 266, 14, 412, 328, 25391, 13, 198, 3500, 49693, 42418, 806, 430, 11, 6208, 198, 198, 31, 9288, 2617, 366, 16775, 295, 14, 8291, 2334, 1, 2221, 198, 220, 220, 220, 1303, 329, 257, 20586, 20128, 11, 1276, 2148, 34197, 198, 220, 220, 220, 2172, 82, 796, 360, 713, 90, 13940, 23650, 11, 7149, 92, 7, 25, 897, 5218, 25915, 16, 11, 15, 13, 18, 12095, 16, 13, 17, 11, 15, 13, 17, 4357, 25, 77, 457, 82, 14804, 3064, 11, 25, 1676, 73, 62, 2768, 14804, 16, 13, 20, 8, 198, 220, 220, 220, 317, 796, 49693, 42418, 806, 430, 13, 273, 3808, 296, 647, 16265, 7, 2167, 11, 49388, 11, 16, 13, 2999, 8, 628, 220, 220, 220, 26692, 62, 7890, 796, 649, 62, 6759, 8609, 7, 32, 11, 404, 912, 8, 198, 220, 220, 220, 4639, 0, 7, 862, 62, 7890, 11, 404, 912, 11, 14542, 8, 198, 220, 220, 220, 2488, 9288, 318, 785, 17128, 7, 862, 62, 7890, 8, 628, 220, 220, 220, 285, 17602, 1069, 862, 29487, 7, 14542, 11, 862, 62, 7890, 11, 16, 13, 15, 11, 3064, 11, 23160, 24396, 28, 25, 727, 8, 628, 220, 220, 220, 1303, 3224, 21528, 284, 8996, 266, 14, 1492, 12138, 13, 2534, 13, 21, 25, 628, 220, 220, 220, 1303, 4235, 29487, 7, 862, 62, 7890, 11, 14542, 11, 15, 11, 15, 13, 15, 12, 15, 13, 17, 320, 8, 198, 220, 220, 220, 1303, 4235, 29487, 7, 862, 62, 7890, 11, 14542, 11, 16, 12095, 15, 13, 16, 12, 15, 13, 23, 320, 8, 198, 437, 198 ]
2.261589
302
function iscyclic(a::Vector) for i=1:length(a)-1 if a == circshift(a, i) return true end end # else return false end export iscyclic function isunique(a)::Bool return length(a) == length(unique(a)) end export isunique function mapArray(arr::AbstractArray, low, high) """ map array values to region [0,1] where: * arr<=low -> 0 * arr>=high -> 1 * arr∈[low,high] -> values are linearily mapped from within [low,high] to [0,1] * quick test: * mapArray(rand(3,3,3),0.25,0.75) """ _arr, _low, _high = promote(arr, low, high) _arr = clamp.(_arr, _low, _high) return (_arr-_low)/(_high-_low) end export mapArray
[ 8818, 318, 15539, 291, 7, 64, 3712, 38469, 8, 198, 220, 220, 220, 329, 1312, 28, 16, 25, 13664, 7, 64, 13219, 16, 198, 220, 220, 220, 220, 220, 611, 257, 6624, 2498, 30846, 7, 64, 11, 1312, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 2081, 198, 220, 220, 220, 220, 220, 886, 198, 220, 220, 220, 886, 198, 220, 220, 220, 1303, 2073, 198, 220, 220, 220, 1441, 3991, 198, 437, 198, 39344, 318, 15539, 291, 628, 198, 8818, 318, 34642, 7, 64, 2599, 25, 33, 970, 198, 220, 220, 220, 1441, 4129, 7, 64, 8, 6624, 4129, 7, 34642, 7, 64, 4008, 198, 437, 198, 39344, 318, 34642, 198, 198, 8818, 3975, 19182, 7, 3258, 3712, 23839, 19182, 11, 1877, 11, 1029, 8, 198, 37811, 198, 220, 3975, 7177, 3815, 284, 3814, 685, 15, 11, 16, 60, 810, 25, 198, 220, 1635, 5240, 27, 28, 9319, 4613, 657, 198, 220, 1635, 5240, 29, 28, 8929, 4613, 352, 198, 220, 1635, 5240, 24861, 230, 58, 9319, 11, 8929, 60, 4613, 3815, 389, 14174, 813, 27661, 422, 1626, 685, 9319, 11, 8929, 60, 284, 685, 15, 11, 16, 60, 628, 220, 1635, 2068, 1332, 25, 198, 220, 1635, 220, 220, 3975, 19182, 7, 25192, 7, 18, 11, 18, 11, 18, 828, 15, 13, 1495, 11, 15, 13, 2425, 8, 198, 37811, 198, 220, 4808, 3258, 11, 4808, 9319, 11, 4808, 8929, 796, 7719, 7, 3258, 11, 1877, 11, 1029, 8, 198, 220, 4808, 3258, 796, 29405, 12195, 62, 3258, 11, 4808, 9319, 11, 4808, 8929, 8, 198, 220, 1441, 44104, 3258, 12, 62, 9319, 20679, 28264, 8929, 12, 62, 9319, 8, 198, 437, 198, 39344, 3975, 19182, 198 ]
2.380783
281
<reponame>matrixfunctions/GraphMatFunData using LinearAlgebra struct ValueOne; end ValueOne() # Compute X <- a X + b I. function matfun_axpby!(X,a,b,Y::UniformScaling) m,n=size(X) if ~(a isa ValueOne) rmul!(X,a) end @inbounds for i=1:n X[i,i]+=(b isa ValueOne) ? 1 : b end end @inline function exp_ps_m9(A) T=promote_type(eltype(A),Float64) A_copy=similar(A,T); A_copy .= A; return exp_ps_m9!(A_copy) end @inline function exp_ps_m9!(A) T=promote_type(eltype(A),Float64) # Make it work for many 'bigger' types (matrices and scalars) # max_memslots=8 n=size(A,1) # The first slots are precomputed nodes [:A] memslots2 = similar(A,T) memslots3 = similar(A,T) memslots4 = similar(A,T) memslots5 = similar(A,T) memslots6 = similar(A,T) memslots7 = similar(A,T) memslots8 = similar(A,T) # Assign precomputed nodes memslots memslots1=A # overwrite A # Uniform scaling is exploited. # No matrix I explicitly allocated. value_one=ValueOne() # Computation order: A2 A3 A4 A5 A6 P4 C3 P3 C2 P2 C1 P1 C0 P0 # Computing A2 with operation: mult mul!(memslots2,memslots1,memslots1) # Computing A3 with operation: mult mul!(memslots3,memslots1,memslots2) # Computing A4 with operation: mult mul!(memslots4,memslots1,memslots3) # Computing A5 with operation: mult mul!(memslots5,memslots1,memslots4) # Computing A6 with operation: mult mul!(memslots6,memslots1,memslots5) # Computing P4 = x*I+x*A+x*A2+x*A3+x*A4+x*A5+x*A6 coeff1=1.6117375710961184e-24 coeff2=6.446950284384474e-26 coeff3=2.4795962632247976e-27 coeff4=9.183689863795546e-29 coeff5=3.279889237069838e-30 coeff6=1.1309962886447716e-31 coeff7=3.7699876288159054e-33 memslots7 .= coeff2.*memslots1 .+ coeff3.*memslots2 .+ coeff4.*memslots3 .+ coeff5.*memslots4 .+ coeff6.*memslots5 .+ coeff7.*memslots6 mul!(memslots7,true,I*coeff1,true,true) # Computing C3 with operation: mult mul!(memslots8,memslots7,memslots6) # Deallocating P4 in slot 7 # Computing P3 = x*I+x*A+x*A2+x*A3+x*A4+x*A5+x*C3 coeff1=1.5619206968586225e-16 coeff2=8.22063524662433e-18 coeff3=4.110317623312165e-19 coeff4=1.9572941063391263e-20 coeff5=8.896791392450574e-22 coeff6=3.868170170630684e-23 coeff7=1.0 # Smart lincomb recycle C3 memslots8 .= coeff2.*memslots1 .+ coeff3.*memslots2 .+ coeff4.*memslots3 .+ coeff5.*memslots4 .+ coeff6.*memslots5 .+ coeff7.*memslots8 mul!(memslots8,true,I*coeff1,true,true) # Computing C2 with operation: mult mul!(memslots7,memslots8,memslots6) # Deallocating P3 in slot 8 # Computing P2 = x*I+x*A+x*A2+x*A3+x*A4+x*A5+x*C2 coeff1=2.08767569878681e-9 coeff2=1.6059043836821613e-10 coeff3=1.1470745597729725e-11 coeff4=7.647163731819816e-13 coeff5=4.779477332387385e-14 coeff6=2.8114572543455206e-15 coeff7=1.0 # Smart lincomb recycle C2 memslots7 .= coeff2.*memslots1 .+ coeff3.*memslots2 .+ coeff4.*memslots3 .+ coeff5.*memslots4 .+ coeff6.*memslots5 .+ coeff7.*memslots7 mul!(memslots7,true,I*coeff1,true,true) # Computing C1 with operation: mult mul!(memslots8,memslots7,memslots6) # Deallocating P2 in slot 7 # Computing P1 = x*I+x*A+x*A2+x*A3+x*A4+x*A5+x*C1 coeff1=0.001388888888888889 coeff2=0.0001984126984126984 coeff3=2.48015873015873e-5 coeff4=2.7557319223985893e-6 coeff5=2.755731922398589e-7 coeff6=2.505210838544172e-8 coeff7=1.0 # Smart lincomb recycle C1 memslots8 .= coeff2.*memslots1 .+ coeff3.*memslots2 .+ coeff4.*memslots3 .+ coeff5.*memslots4 .+ coeff6.*memslots5 .+ coeff7.*memslots8 mul!(memslots8,true,I*coeff1,true,true) # Computing C0 with operation: mult mul!(memslots7,memslots8,memslots6) # Deallocating P1 in slot 8 # Deallocating A6 in slot 6 # Computing P0 = x*I+x*A+x*A2+x*A3+x*A4+x*A5+x*C0 coeff1=1.0 coeff2=1.0 coeff3=0.5 coeff4=0.16666666666666666 coeff5=0.041666666666666664 coeff6=0.008333333333333333 coeff7=1.0 # Smart lincomb recycle A memslots1 .= coeff2.*memslots1 .+ coeff3.*memslots2 .+ coeff4.*memslots3 .+ coeff5.*memslots4 .+ coeff6.*memslots5 .+ coeff7.*memslots7 mul!(memslots1,true,I*coeff1,true,true) # Deallocating A2 in slot 2 # Deallocating A3 in slot 3 # Deallocating A4 in slot 4 # Deallocating A5 in slot 5 # Deallocating C0 in slot 7 return memslots1 # Returning P0 end
[ 27, 7856, 261, 480, 29, 6759, 8609, 12543, 2733, 14, 37065, 19044, 24629, 6601, 198, 3500, 44800, 2348, 29230, 198, 198, 7249, 11052, 3198, 26, 886, 198, 11395, 3198, 3419, 198, 198, 2, 3082, 1133, 1395, 24293, 257, 1395, 1343, 275, 314, 13, 198, 8818, 2603, 12543, 62, 897, 79, 1525, 0, 7, 55, 11, 64, 11, 65, 11, 56, 3712, 3118, 6933, 3351, 4272, 8, 198, 220, 220, 220, 285, 11, 77, 28, 7857, 7, 55, 8, 198, 220, 220, 220, 611, 5299, 7, 64, 318, 64, 11052, 3198, 8, 198, 220, 220, 220, 220, 220, 220, 220, 42721, 377, 0, 7, 55, 11, 64, 8, 198, 220, 220, 220, 886, 198, 220, 220, 220, 2488, 259, 65, 3733, 329, 1312, 28, 16, 25, 77, 198, 220, 220, 220, 220, 220, 220, 220, 1395, 58, 72, 11, 72, 48688, 16193, 65, 318, 64, 11052, 3198, 8, 5633, 352, 1058, 275, 198, 220, 220, 220, 886, 198, 437, 198, 198, 31, 45145, 2163, 1033, 62, 862, 62, 76, 24, 7, 32, 8, 198, 220, 220, 220, 309, 28, 16963, 1258, 62, 4906, 7, 417, 4906, 7, 32, 828, 43879, 2414, 8, 198, 220, 220, 220, 317, 62, 30073, 28, 38610, 7, 32, 11, 51, 1776, 317, 62, 30073, 764, 28, 317, 26, 198, 220, 220, 220, 1441, 1033, 62, 862, 62, 76, 24, 0, 7, 32, 62, 30073, 8, 198, 437, 198, 198, 31, 45145, 2163, 1033, 62, 862, 62, 76, 24, 0, 7, 32, 8, 198, 220, 220, 220, 309, 28, 16963, 1258, 62, 4906, 7, 417, 4906, 7, 32, 828, 43879, 2414, 8, 1303, 6889, 340, 670, 329, 867, 705, 14261, 1362, 6, 3858, 357, 6759, 45977, 290, 16578, 945, 8, 198, 220, 220, 220, 1303, 3509, 62, 76, 5232, 75, 1747, 28, 23, 198, 220, 220, 220, 299, 28, 7857, 7, 32, 11, 16, 8, 198, 220, 220, 220, 1303, 383, 717, 17314, 389, 662, 785, 17128, 13760, 685, 25, 32, 60, 198, 220, 220, 220, 1066, 6649, 1747, 17, 796, 2092, 7, 32, 11, 51, 8, 198, 220, 220, 220, 1066, 6649, 1747, 18, 796, 2092, 7, 32, 11, 51, 8, 198, 220, 220, 220, 1066, 6649, 1747, 19, 796, 2092, 7, 32, 11, 51, 8, 198, 220, 220, 220, 1066, 6649, 1747, 20, 796, 2092, 7, 32, 11, 51, 8, 198, 220, 220, 220, 1066, 6649, 1747, 21, 796, 2092, 7, 32, 11, 51, 8, 198, 220, 220, 220, 1066, 6649, 1747, 22, 796, 2092, 7, 32, 11, 51, 8, 198, 220, 220, 220, 1066, 6649, 1747, 23, 796, 2092, 7, 32, 11, 51, 8, 198, 220, 220, 220, 1303, 2195, 570, 662, 785, 17128, 13760, 1066, 6649, 1747, 220, 198, 220, 220, 220, 1066, 6649, 1747, 16, 28, 32, 1303, 49312, 317, 198, 220, 220, 220, 1303, 35712, 20796, 318, 21514, 13, 198, 220, 220, 220, 1303, 1400, 17593, 314, 11777, 19171, 13, 198, 220, 220, 220, 1988, 62, 505, 28, 11395, 3198, 3419, 198, 220, 220, 220, 1303, 22476, 341, 1502, 25, 317, 17, 317, 18, 317, 19, 317, 20, 317, 21, 350, 19, 327, 18, 350, 18, 327, 17, 350, 17, 327, 16, 350, 16, 327, 15, 350, 15, 198, 220, 220, 220, 1303, 38589, 317, 17, 351, 4905, 25, 1963, 198, 220, 220, 220, 35971, 0, 7, 76, 5232, 75, 1747, 17, 11, 76, 5232, 75, 1747, 16, 11, 76, 5232, 75, 1747, 16, 8, 198, 220, 220, 220, 1303, 38589, 317, 18, 351, 4905, 25, 1963, 198, 220, 220, 220, 35971, 0, 7, 76, 5232, 75, 1747, 18, 11, 76, 5232, 75, 1747, 16, 11, 76, 5232, 75, 1747, 17, 8, 198, 220, 220, 220, 1303, 38589, 317, 19, 351, 4905, 25, 1963, 198, 220, 220, 220, 35971, 0, 7, 76, 5232, 75, 1747, 19, 11, 76, 5232, 75, 1747, 16, 11, 76, 5232, 75, 1747, 18, 8, 198, 220, 220, 220, 1303, 38589, 317, 20, 351, 4905, 25, 1963, 198, 220, 220, 220, 35971, 0, 7, 76, 5232, 75, 1747, 20, 11, 76, 5232, 75, 1747, 16, 11, 76, 5232, 75, 1747, 19, 8, 198, 220, 220, 220, 1303, 38589, 317, 21, 351, 4905, 25, 1963, 198, 220, 220, 220, 35971, 0, 7, 76, 5232, 75, 1747, 21, 11, 76, 5232, 75, 1747, 16, 11, 76, 5232, 75, 1747, 20, 8, 198, 220, 220, 220, 1303, 38589, 350, 19, 796, 2124, 9, 40, 10, 87, 9, 32, 10, 87, 9, 32, 17, 10, 87, 9, 32, 18, 10, 87, 9, 32, 19, 10, 87, 9, 32, 20, 10, 87, 9, 32, 21, 198, 220, 220, 220, 763, 14822, 16, 28, 16, 13, 21, 1157, 4790, 39251, 940, 4846, 1157, 5705, 68, 12, 1731, 198, 220, 220, 220, 763, 14822, 17, 28, 21, 13, 2598, 3388, 1120, 30336, 2548, 2598, 4524, 68, 12, 2075, 198, 220, 220, 220, 763, 14822, 18, 28, 17, 13, 31714, 3270, 45191, 2624, 1731, 3720, 4304, 68, 12, 1983, 198, 220, 220, 220, 763, 14822, 19, 28, 24, 13, 1507, 27412, 49087, 29088, 2816, 3510, 68, 12, 1959, 198, 220, 220, 220, 763, 14822, 20, 28, 18, 13, 26050, 39121, 1954, 2154, 39357, 2548, 68, 12, 1270, 198, 220, 220, 220, 763, 14822, 21, 28, 16, 13, 12952, 38565, 25270, 2414, 32883, 1433, 68, 12, 3132, 198, 220, 220, 220, 763, 14822, 22, 28, 18, 13, 4304, 34808, 4304, 25270, 19707, 2713, 19, 68, 12, 2091, 198, 220, 220, 220, 1066, 6649, 1747, 22, 764, 28, 763, 14822, 17, 15885, 76, 5232, 75, 1747, 16, 764, 10, 763, 14822, 18, 15885, 76, 5232, 75, 1747, 17, 764, 10, 763, 14822, 19, 15885, 76, 5232, 75, 1747, 18, 764, 10, 763, 14822, 20, 15885, 76, 5232, 75, 1747, 19, 764, 10, 763, 14822, 21, 15885, 76, 5232, 75, 1747, 20, 764, 10, 763, 14822, 22, 15885, 76, 5232, 75, 1747, 21, 198, 220, 220, 220, 35971, 0, 7, 76, 5232, 75, 1747, 22, 11, 7942, 11, 40, 9, 1073, 14822, 16, 11, 7942, 11, 7942, 8, 198, 220, 220, 220, 1303, 38589, 327, 18, 351, 4905, 25, 1963, 198, 220, 220, 220, 35971, 0, 7, 76, 5232, 75, 1747, 23, 11, 76, 5232, 75, 1747, 22, 11, 76, 5232, 75, 1747, 21, 8, 198, 220, 220, 220, 1303, 1024, 439, 27123, 350, 19, 287, 10852, 767, 198, 220, 220, 220, 1303, 38589, 350, 18, 796, 2124, 9, 40, 10, 87, 9, 32, 10, 87, 9, 32, 17, 10, 87, 9, 32, 18, 10, 87, 9, 32, 19, 10, 87, 9, 32, 20, 10, 87, 9, 34, 18, 198, 220, 220, 220, 763, 14822, 16, 28, 16, 13, 3980, 40454, 3388, 3104, 3365, 5237, 1495, 68, 12, 1433, 198, 220, 220, 220, 763, 14822, 17, 28, 23, 13, 17572, 48250, 1731, 2791, 1731, 2091, 68, 12, 1507, 198, 220, 220, 220, 763, 14822, 18, 28, 19, 13, 11442, 18, 24096, 25429, 1065, 20986, 68, 12, 1129, 198, 220, 220, 220, 763, 14822, 19, 28, 16, 13, 24, 3553, 27696, 15801, 29626, 1065, 5066, 68, 12, 1238, 198, 220, 220, 220, 763, 14822, 20, 28, 23, 13, 4531, 37601, 20219, 1731, 1120, 46900, 68, 12, 1828, 198, 220, 220, 220, 763, 14822, 21, 28, 18, 13, 23, 3104, 1558, 486, 2154, 30005, 41580, 68, 12, 1954, 198, 220, 220, 220, 763, 14822, 22, 28, 16, 13, 15, 198, 220, 220, 220, 1303, 10880, 9493, 24011, 48914, 327, 18, 198, 220, 220, 220, 1066, 6649, 1747, 23, 764, 28, 763, 14822, 17, 15885, 76, 5232, 75, 1747, 16, 764, 10, 763, 14822, 18, 15885, 76, 5232, 75, 1747, 17, 764, 10, 763, 14822, 19, 15885, 76, 5232, 75, 1747, 18, 764, 10, 763, 14822, 20, 15885, 76, 5232, 75, 1747, 19, 764, 10, 763, 14822, 21, 15885, 76, 5232, 75, 1747, 20, 764, 10, 763, 14822, 22, 15885, 76, 5232, 75, 1747, 23, 198, 220, 220, 220, 35971, 0, 7, 76, 5232, 75, 1747, 23, 11, 7942, 11, 40, 9, 1073, 14822, 16, 11, 7942, 11, 7942, 8, 198, 220, 220, 220, 1303, 38589, 327, 17, 351, 4905, 25, 1963, 198, 220, 220, 220, 35971, 0, 7, 76, 5232, 75, 1747, 22, 11, 76, 5232, 75, 1747, 23, 11, 76, 5232, 75, 1747, 21, 8, 198, 220, 220, 220, 1303, 1024, 439, 27123, 350, 18, 287, 10852, 807, 198, 220, 220, 220, 1303, 38589, 350, 17, 796, 2124, 9, 40, 10, 87, 9, 32, 10, 87, 9, 32, 17, 10, 87, 9, 32, 18, 10, 87, 9, 32, 19, 10, 87, 9, 32, 20, 10, 87, 9, 34, 17, 198, 220, 220, 220, 763, 14822, 16, 28, 17, 13, 2919, 4304, 2425, 39357, 3695, 48564, 68, 12, 24, 198, 220, 220, 220, 763, 14822, 17, 28, 16, 13, 1899, 3270, 3023, 2548, 2623, 6469, 1433, 1485, 68, 12, 940, 198, 220, 220, 220, 763, 14822, 18, 28, 16, 13, 1415, 24038, 2231, 3270, 3324, 26561, 1495, 68, 12, 1157, 198, 220, 220, 220, 763, 14822, 19, 28, 22, 13, 33981, 1433, 34770, 1507, 22337, 1433, 68, 12, 1485, 198, 220, 220, 220, 763, 14822, 20, 28, 19, 13, 40393, 32883, 2091, 1954, 5774, 27203, 68, 12, 1415, 198, 220, 220, 220, 763, 14822, 21, 28, 17, 13, 23, 1157, 33032, 1495, 3559, 30505, 22136, 68, 12, 1314, 198, 220, 220, 220, 763, 14822, 22, 28, 16, 13, 15, 198, 220, 220, 220, 1303, 10880, 9493, 24011, 48914, 327, 17, 198, 220, 220, 220, 1066, 6649, 1747, 22, 764, 28, 763, 14822, 17, 15885, 76, 5232, 75, 1747, 16, 764, 10, 763, 14822, 18, 15885, 76, 5232, 75, 1747, 17, 764, 10, 763, 14822, 19, 15885, 76, 5232, 75, 1747, 18, 764, 10, 763, 14822, 20, 15885, 76, 5232, 75, 1747, 19, 764, 10, 763, 14822, 21, 15885, 76, 5232, 75, 1747, 20, 764, 10, 763, 14822, 22, 15885, 76, 5232, 75, 1747, 22, 198, 220, 220, 220, 35971, 0, 7, 76, 5232, 75, 1747, 22, 11, 7942, 11, 40, 9, 1073, 14822, 16, 11, 7942, 11, 7942, 8, 198, 220, 220, 220, 1303, 38589, 327, 16, 351, 4905, 25, 1963, 198, 220, 220, 220, 35971, 0, 7, 76, 5232, 75, 1747, 23, 11, 76, 5232, 75, 1747, 22, 11, 76, 5232, 75, 1747, 21, 8, 198, 220, 220, 220, 1303, 1024, 439, 27123, 350, 17, 287, 10852, 767, 198, 220, 220, 220, 1303, 38589, 350, 16, 796, 2124, 9, 40, 10, 87, 9, 32, 10, 87, 9, 32, 17, 10, 87, 9, 32, 18, 10, 87, 9, 32, 19, 10, 87, 9, 32, 20, 10, 87, 9, 34, 16, 198, 220, 220, 220, 763, 14822, 16, 28, 15, 13, 405, 1485, 3459, 3459, 3459, 3459, 3459, 3459, 4531, 198, 220, 220, 220, 763, 14822, 17, 28, 15, 13, 18005, 4089, 39226, 3388, 5705, 1065, 3388, 5705, 198, 220, 220, 220, 763, 14822, 18, 28, 17, 13, 2780, 486, 3365, 4790, 486, 3365, 4790, 68, 12, 20, 198, 220, 220, 220, 763, 14822, 19, 28, 17, 13, 2425, 3553, 35175, 1828, 31952, 3365, 6052, 68, 12, 21, 198, 220, 220, 220, 763, 14822, 20, 28, 17, 13, 2425, 3553, 35175, 1828, 31952, 44169, 68, 12, 22, 198, 220, 220, 220, 763, 14822, 21, 28, 17, 13, 1120, 4309, 15711, 27203, 2598, 23628, 68, 12, 23, 198, 220, 220, 220, 763, 14822, 22, 28, 16, 13, 15, 198, 220, 220, 220, 1303, 10880, 9493, 24011, 48914, 327, 16, 198, 220, 220, 220, 1066, 6649, 1747, 23, 764, 28, 763, 14822, 17, 15885, 76, 5232, 75, 1747, 16, 764, 10, 763, 14822, 18, 15885, 76, 5232, 75, 1747, 17, 764, 10, 763, 14822, 19, 15885, 76, 5232, 75, 1747, 18, 764, 10, 763, 14822, 20, 15885, 76, 5232, 75, 1747, 19, 764, 10, 763, 14822, 21, 15885, 76, 5232, 75, 1747, 20, 764, 10, 763, 14822, 22, 15885, 76, 5232, 75, 1747, 23, 198, 220, 220, 220, 35971, 0, 7, 76, 5232, 75, 1747, 23, 11, 7942, 11, 40, 9, 1073, 14822, 16, 11, 7942, 11, 7942, 8, 198, 220, 220, 220, 1303, 38589, 327, 15, 351, 4905, 25, 1963, 198, 220, 220, 220, 35971, 0, 7, 76, 5232, 75, 1747, 22, 11, 76, 5232, 75, 1747, 23, 11, 76, 5232, 75, 1747, 21, 8, 198, 220, 220, 220, 1303, 1024, 439, 27123, 350, 16, 287, 10852, 807, 198, 220, 220, 220, 1303, 1024, 439, 27123, 317, 21, 287, 10852, 718, 198, 220, 220, 220, 1303, 38589, 350, 15, 796, 2124, 9, 40, 10, 87, 9, 32, 10, 87, 9, 32, 17, 10, 87, 9, 32, 18, 10, 87, 9, 32, 19, 10, 87, 9, 32, 20, 10, 87, 9, 34, 15, 198, 220, 220, 220, 763, 14822, 16, 28, 16, 13, 15, 198, 220, 220, 220, 763, 14822, 17, 28, 16, 13, 15, 198, 220, 220, 220, 763, 14822, 18, 28, 15, 13, 20, 198, 220, 220, 220, 763, 14822, 19, 28, 15, 13, 1433, 41977, 19060, 27310, 198, 220, 220, 220, 763, 14822, 20, 28, 15, 13, 3023, 1433, 41977, 19060, 2414, 198, 220, 220, 220, 763, 14822, 21, 28, 15, 13, 25257, 24840, 24840, 24840, 20370, 198, 220, 220, 220, 763, 14822, 22, 28, 16, 13, 15, 198, 220, 220, 220, 1303, 10880, 9493, 24011, 48914, 317, 198, 220, 220, 220, 1066, 6649, 1747, 16, 764, 28, 763, 14822, 17, 15885, 76, 5232, 75, 1747, 16, 764, 10, 763, 14822, 18, 15885, 76, 5232, 75, 1747, 17, 764, 10, 763, 14822, 19, 15885, 76, 5232, 75, 1747, 18, 764, 10, 763, 14822, 20, 15885, 76, 5232, 75, 1747, 19, 764, 10, 763, 14822, 21, 15885, 76, 5232, 75, 1747, 20, 764, 10, 763, 14822, 22, 15885, 76, 5232, 75, 1747, 22, 198, 220, 220, 220, 35971, 0, 7, 76, 5232, 75, 1747, 16, 11, 7942, 11, 40, 9, 1073, 14822, 16, 11, 7942, 11, 7942, 8, 198, 220, 220, 220, 1303, 1024, 439, 27123, 317, 17, 287, 10852, 362, 198, 220, 220, 220, 1303, 1024, 439, 27123, 317, 18, 287, 10852, 513, 198, 220, 220, 220, 1303, 1024, 439, 27123, 317, 19, 287, 10852, 604, 198, 220, 220, 220, 1303, 1024, 439, 27123, 317, 20, 287, 10852, 642, 198, 220, 220, 220, 1303, 1024, 439, 27123, 327, 15, 287, 10852, 767, 198, 220, 220, 220, 1441, 1066, 6649, 1747, 16, 1303, 42882, 350, 15, 198, 437, 628 ]
1.923664
2,358
<filename>__site/__generated/A-composing-models/tutorial-raw.jl using MLJ using PrettyPrinting KNNRegressor = @load KNNRegressor X = (age = [23, 45, 34, 25, 67], gender = categorical(['m', 'm', 'f', 'm', 'f'])) height = [178, 194, 165, 173, 168]; scitype(X.age) pipe = Pipeline( coercer = X -> coerce(X, :age=>Continuous), one_hot_encoder = OneHotEncoder(), transformed_target_model = TransformedTargetModel( model = KNNRegressor(K=3); target=UnivariateStandardizer() ) ) pipe.transformed_target_model.model.K = 2 pipe.one_hot_encoder.drop_last = true; evaluate( pipe, X, height, resampling=Holdout(), measure=rms ) |> pprint # This file was generated using Literate.jl, https://github.com/fredrikekre/Literate.jl
[ 27, 34345, 29, 834, 15654, 14, 834, 27568, 14, 32, 12, 785, 32927, 12, 27530, 14, 83, 44917, 12, 1831, 13, 20362, 198, 3500, 10373, 41, 198, 3500, 20090, 18557, 278, 198, 198, 42, 6144, 8081, 44292, 796, 2488, 2220, 509, 6144, 8081, 44292, 198, 198, 55, 796, 357, 496, 220, 220, 220, 796, 685, 1954, 11, 4153, 11, 4974, 11, 1679, 11, 8275, 4357, 198, 220, 220, 220, 220, 5279, 796, 4253, 12409, 7, 17816, 76, 3256, 705, 76, 3256, 705, 69, 3256, 705, 76, 3256, 705, 69, 20520, 4008, 198, 198, 17015, 796, 685, 23188, 11, 30483, 11, 21409, 11, 28174, 11, 23378, 11208, 198, 198, 1416, 414, 431, 7, 55, 13, 496, 8, 198, 198, 34360, 796, 37709, 7, 198, 220, 220, 220, 31255, 2189, 796, 1395, 4613, 31255, 344, 7, 55, 11, 1058, 496, 14804, 17875, 5623, 828, 198, 220, 220, 220, 530, 62, 8940, 62, 12685, 12342, 796, 1881, 21352, 27195, 12342, 22784, 198, 220, 220, 220, 14434, 62, 16793, 62, 19849, 796, 3602, 12214, 21745, 17633, 7, 198, 220, 220, 220, 220, 220, 220, 220, 2746, 796, 509, 6144, 8081, 44292, 7, 42, 28, 18, 1776, 198, 220, 220, 220, 220, 220, 220, 220, 2496, 28, 3118, 42524, 23615, 7509, 3419, 198, 220, 220, 220, 1267, 198, 8, 198, 198, 34360, 13, 7645, 12214, 62, 16793, 62, 19849, 13, 19849, 13, 42, 796, 362, 198, 34360, 13, 505, 62, 8940, 62, 12685, 12342, 13, 14781, 62, 12957, 796, 2081, 26, 198, 198, 49786, 7, 198, 220, 220, 220, 12656, 11, 198, 220, 220, 220, 1395, 11, 198, 220, 220, 220, 6001, 11, 198, 220, 220, 220, 581, 321, 11347, 28, 26807, 448, 22784, 198, 220, 220, 220, 3953, 28, 81, 907, 198, 8, 930, 29, 279, 4798, 198, 198, 2, 770, 2393, 373, 7560, 1262, 17667, 378, 13, 20362, 11, 3740, 1378, 12567, 13, 785, 14, 39193, 8760, 74, 260, 14, 43460, 378, 13, 20362, 628 ]
2.431677
322
function horner(coeff, x0) degree = length(coeff) - 1 y = coeff[1] z = 0 for j ∈ 2:(degree + 1) println(coeff[j]) z = y + x0 * z y = x0 * y + coeff[j] end return (y, z) end println(horner([5, 2, 1], 5)[1])
[ 8818, 3076, 1008, 7, 1073, 14822, 11, 2124, 15, 8, 198, 197, 16863, 796, 4129, 7, 1073, 14822, 8, 532, 352, 198, 197, 88, 796, 763, 14822, 58, 16, 60, 198, 197, 89, 796, 657, 198, 197, 1640, 474, 18872, 230, 362, 37498, 16863, 1343, 352, 8, 198, 197, 197, 35235, 7, 1073, 14822, 58, 73, 12962, 198, 197, 197, 89, 796, 331, 1343, 2124, 15, 1635, 1976, 198, 197, 197, 88, 796, 2124, 15, 1635, 331, 1343, 763, 14822, 58, 73, 60, 198, 197, 437, 198, 197, 7783, 357, 88, 11, 1976, 8, 198, 437, 198, 198, 35235, 7, 17899, 1008, 26933, 20, 11, 362, 11, 352, 4357, 642, 38381, 16, 12962, 198 ]
1.921053
114
<gh_stars>1-10 using GapFindFill, Test # using JuMP, Gurobi, CPLEX, GLPK println("Starting tests....................") @time begin include("testGapFind.jl") end @time begin include("testGapFill.jl") end
[ 27, 456, 62, 30783, 29, 16, 12, 940, 198, 3500, 33899, 16742, 33762, 11, 6208, 198, 2, 1262, 12585, 7378, 11, 402, 1434, 8482, 11, 327, 16437, 55, 11, 10188, 40492, 198, 198, 35235, 7203, 22851, 5254, 4181, 1106, 4943, 198, 31, 2435, 2221, 2291, 7203, 9288, 38, 499, 16742, 13, 20362, 4943, 886, 198, 31, 2435, 2221, 2291, 7203, 9288, 38, 499, 33762, 13, 20362, 4943, 886, 198 ]
2.956522
69
using Rankings, Test @testset "Литвак (1982), p.78" begin @test ⦸(ranking"a₂,a₄,a₁,a₃", ranking"a₁,a₃∼a₄,a₂", ranking"a₂∼a₃,a₄,a₁", ranking"a₃,a₂,a₁∼a₄") == [ 0 2 0 1; -2 0 1 -2; 0 -1 0 -1; -1 2 1 0 ] end @testset "<NAME> (2008), p.154" begin @test ranking"O₂,O₃,O₄,O₁,O₅" ⦸ ranking"(O₂,O₃),O₄,(O₁,O₅)" ⦸ ranking"O₂,(O₁,O₃,O₄),O₅" ⦸ ranking"O₂,(O₁,O₃,O₄,O₅)" == [ 0 4 2 2 -2; -4 0 -3 -4 -4; -2 3 0 -2 -3; -2 4 2 0 -3; 2 4 3 3 0 ] end @testset "Bredereck (2009), p.21" begin @test ranking"a≻b≻c≻d" ⦸ ranking"a≻b≻d≻c" ⦸ ranking"a≻c≻b≻d" ⦸ ranking"b≻a≻c≻d" ⦸ ranking"b≻a≻d≻c" == [ 0 -1 -5 -5; 1 0 -3 -5; 5 3 0 -1; 5 5 1 0 ] end @testset "Muravyov, Tarakanov (2011)" begin @test ranking"A K D N J H E∼L P I B∼O F R M T Q S G C" ⦸ ranking"T I C A Q F H N M G B O D R P L E K J S" ⦸ ranking"R N T P∼I C G∼D K O H J Q S∼M B E A F L" ⦸ ranking"H B M A Q N D O T L I G R S E∼C J F K P" == [ 0 0 0 -2 -2 -4 -2 0 0 -2 -2 -4 0 -2 -2 -2 -2 -2 -2 0; 0 0 0 0 -2 -2 0 4 2 0 0 -2 0 2 -1 0 0 -2 -2 0; 0 0 0 0 -1 -2 0 0 4 -2 -2 0 0 2 0 0 0 2 0 4; 2 0 0 0 -4 -2 -1 0 0 -4 -2 -4 0 2 -2 -2 0 -2 -4 0; 2 2 1 4 0 -2 2 4 2 0 0 1 2 4 2 0 2 2 0 2; 4 2 2 2 2 0 0 2 4 2 0 0 0 2 2 0 2 0 0 2; 2 0 0 1 -2 0 0 2 4 -2 -2 0 2 4 0 0 2 0 -2 4; 0 -4 0 0 -4 -2 -2 0 0 -2 0 -4 -4 0 -2 -2 -2 -2 -4 0; 0 -2 -4 0 -2 -4 -4 0 0 -2 -2 0 -2 2 -2 -1 -2 -2 -4 2; 2 0 2 4 0 -2 2 2 2 0 2 0 0 4 2 0 0 2 -2 2; 2 0 2 2 0 0 2 0 2 -2 0 0 0 2 0 0 0 2 -2 2; 4 2 0 4 -1 0 0 4 0 0 0 0 2 4 2 0 2 0 -2 2; 0 0 0 0 -2 0 -2 4 2 0 0 -2 0 2 0 0 0 0 -3 0; 2 -2 -2 -2 -4 -2 -4 0 -2 -4 -2 -4 -2 0 -4 -4 0 -2 -4 -2; 2 1 0 2 -2 -2 0 2 2 -2 0 -2 0 4 0 0 0 -2 -4 0; 2 0 0 2 0 0 0 2 1 0 0 0 0 4 0 0 0 2 -2 2; 2 0 0 0 -2 -2 -2 2 2 0 0 -2 0 0 0 0 0 0 -4 2; 2 2 -2 2 -2 0 0 2 2 -2 -2 0 0 2 2 -2 0 0 -4 0; 2 2 0 4 0 0 2 4 4 2 2 2 3 4 4 2 4 4 0 4; 0 0 -4 0 -2 -2 -4 0 -2 -2 -2 -2 0 2 0 -2 -2 0 -4 0 ] @test ranking"AIFDHCBEJG" ⦸ ranking"BHDAFCIEGJ" ⦸ ranking"DIEBCJAHGF" ⦸ ranking"CJHADIFGBE" ⦸ ranking"ICAJHDGBFE" == [ 0 -1 1 -1 -3 -5 -5 -1 -1 -1; 1 0 1 3 -3 -1 -1 1 3 -1; -1 -1 0 1 -3 -1 -5 -1 1 -5; 1 -3 -1 0 -5 -3 -5 1 -1 -1; 3 3 3 5 0 3 -1 3 5 -1; 5 1 1 3 -3 0 -1 3 3 1; 5 1 5 5 1 1 0 5 5 3; 1 -1 1 -1 -3 -3 -5 0 1 1; 1 -3 -1 1 -5 -3 -5 -1 0 -3; 1 1 5 1 1 -1 -3 -1 3 0 ] @test ranking"J∼K A∼B∼C∼D∼E∼F∼G∼H∼I∼L∼M" ⦸ ranking"J A∼B∼C∼D∼E∼F∼G∼H∼I∼K∼L∼M" ⦸ ranking"J∼K A∼B∼C∼D∼E∼F∼G∼H∼I∼L∼M" ⦸ ranking"I∼J∼K A∼B∼C∼D∼E∼F∼G∼H∼L∼M" ⦸ ranking"H∼I∼J∼K L∼A∼B∼C∼D∼E∼F∼G∼M" ⦸ ranking"H∼I∼J A∼B∼C∼D∼E∼F∼G∼K∼L∼M" ⦸ ranking"K∼L A∼B∼C∼D∼E∼F∼G∼H∼I∼J∼M" ⦸ ranking"I∼J∼K A∼B∼C∼D∼E∼F∼G∼H∼L∼M" ⦸ ranking"B∼C A∼D∼E∼F∼G∼H∼I∼J∼K∼L∼M" ⦸ ranking"H∼I A∼B∼C∼D∼E∼F∼G∼J∼K∼L∼M" == [ 0 1 1 0 0 0 0 3 5 7 6 1 0; -1 0 0 -1 -1 -1 -1 2 4 6 5 0 -1; -1 0 0 -1 -1 -1 -1 2 4 6 5 0 -1; 0 1 1 0 0 0 0 3 5 7 6 1 0; 0 1 1 0 0 0 0 3 5 7 6 1 0; 0 1 1 0 0 0 0 3 5 7 6 1 0; 0 1 1 0 0 0 0 3 5 7 6 1 0; -3 -2 -2 -3 -3 -3 -3 0 2 4 3 -2 -3; -5 -4 -4 -5 -5 -5 -5 -2 0 2 1 -4 -5; -7 -6 -6 -7 -7 -7 -7 -4 -2 0 -1 -6 -7; -6 -5 -5 -6 -6 -6 -6 -3 -1 1 0 -5 -6; -1 0 0 -1 -1 -1 -1 2 4 6 5 0 -1; 0 1 1 0 0 0 0 3 5 7 6 1 0 ] end @testset "<NAME> (2014), p.6427" begin @test ranking"1423" ⦸ ranking"1432" ⦸ ranking"2314" ⦸ ranking"4231" ⦸ ranking"3241" == [ 0 1 1 -1; -1 0 -1 1; -1 1 0 1; 1 -1 -1 0 ] @test ranking"54132" ⦸ ranking"15423" ⦸ ranking"43512" ⦸ ranking"13452" ⦸ ranking"42531" ⦸ ranking"12534" ⦸ ranking"24351" == [ 0 -3 -1 1 1; 3 0 -1 3 1; 1 1 0 3 1; -1 -3 -3 0 -1; -1 -1 -1 1 0 ] @test ranking"123" ⦸ ranking"123" ⦸ ranking"321" ⦸ ranking"213" == [ 0 0 -2; 0 0 -2; 2 2 0 ] end @testset "<NAME> (2014), p.55" begin @test ranking"a₃,a₅,a₂,a₄,a₁" ⦸ ranking"a₃,a₅,a₄,a₂,a₁" ⦸ ranking"a₃,a₅,a₂∼a₄,a₁" == [ 0 3 3 3 3; -3 0 3 0 3; -3 -3 0 -3 -3; -3 0 3 0 3; -3 -3 3 -3 0 ] end @testset "<NAME> (2018), p.55" begin @test ranking"c≻e≻d≻b≻a" ⦸ ranking"c≻e≻d≻b≻a" ⦸ ranking"c≻e≻b≻d≻a" ⦸ ranking"c≻e≻d≻b≻a" ⦸ ranking"e≻c≻d≻a≻b" ⦸ ranking"e≻d≻c≻a≻b" ⦸ ranking"e≻c≻d≻a≻b" ⦸ ranking"b≻e≻d≻c≻a" ⦸ ranking"d≻b≻e≻c≻a" == [ 0 3 9 9 9; -3 0 5 5 5; -9 -5 0 -3 1; -9 -5 3 0 7; -9 -5 -1 -7 0 ] end @testset "Muravyov, Baranov, Emelyanova (2019)" begin @test ranking"A∼C,B" ⦸ ranking"C,A∼B" ⦸ ranking"B∼C,A" == [ 0 0 2; 0 0 2; -2 -2 0 ] @test ranking"A B F D (C E)" ⦸ ranking"D E A B C F" ⦸ ranking"B (E A)(C D) F" ⦸ ranking"(F C) D B (A E)" ⦸ ranking"C D (B F) E A" == [ 0 1 -1 1 1 -1; -1 0 -1 1 -3 -2; 1 1 0 0 0 -2; -1 -1 0 0 -3 -1; -1 3 0 3 0 1; 1 2 2 1 -1 0 ] end
[ 171, 119, 123, 3500, 40284, 11, 6208, 201, 198, 201, 198, 201, 198, 31, 9288, 2617, 366, 140, 249, 18849, 20375, 38857, 16142, 31583, 357, 30763, 828, 279, 13, 3695, 1, 2221, 201, 198, 31, 9288, 220, 2343, 99, 116, 7, 28405, 1, 64, 158, 224, 224, 11, 64, 158, 224, 226, 11, 64, 158, 224, 223, 11, 64, 158, 224, 225, 1600, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 12759, 1, 64, 158, 224, 223, 11, 64, 158, 224, 225, 24861, 120, 64, 158, 224, 226, 11, 64, 158, 224, 224, 1600, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 12759, 1, 64, 158, 224, 224, 24861, 120, 64, 158, 224, 225, 11, 64, 158, 224, 226, 11, 64, 158, 224, 223, 1600, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 12759, 1, 64, 158, 224, 225, 11, 64, 158, 224, 224, 11, 64, 158, 224, 223, 24861, 120, 64, 158, 224, 226, 4943, 6624, 201, 198, 58, 201, 198, 220, 657, 220, 220, 362, 220, 657, 220, 220, 352, 26, 201, 198, 532, 17, 220, 220, 657, 220, 352, 220, 532, 17, 26, 201, 198, 220, 657, 220, 532, 16, 220, 657, 220, 532, 16, 26, 201, 198, 532, 16, 220, 220, 362, 220, 352, 220, 220, 657, 201, 198, 60, 201, 198, 437, 201, 198, 201, 198, 31, 9288, 2617, 33490, 20608, 29, 357, 11528, 828, 279, 13, 21526, 1, 2221, 201, 198, 31, 9288, 220, 12759, 1, 46, 158, 224, 224, 11, 46, 158, 224, 225, 11, 46, 158, 224, 226, 11, 46, 158, 224, 223, 11, 46, 158, 224, 227, 1, 2343, 99, 116, 201, 201, 198, 220, 220, 220, 220, 220, 220, 12759, 18109, 46, 158, 224, 224, 11, 46, 158, 224, 225, 828, 46, 158, 224, 226, 11, 7, 46, 158, 224, 223, 11, 46, 158, 224, 227, 16725, 2343, 99, 116, 201, 201, 198, 220, 220, 220, 220, 220, 220, 12759, 1, 46, 158, 224, 224, 11, 7, 46, 158, 224, 223, 11, 46, 158, 224, 225, 11, 46, 158, 224, 226, 828, 46, 158, 224, 227, 1, 2343, 99, 116, 201, 201, 198, 220, 220, 220, 220, 220, 220, 12759, 1, 46, 158, 224, 224, 11, 7, 46, 158, 224, 223, 11, 46, 158, 224, 225, 11, 46, 158, 224, 226, 11, 46, 158, 224, 227, 16725, 6624, 201, 201, 198, 58, 201, 201, 198, 220, 657, 220, 604, 220, 220, 362, 220, 220, 362, 220, 532, 17, 26, 201, 201, 198, 532, 19, 220, 657, 220, 532, 18, 220, 532, 19, 220, 532, 19, 26, 201, 201, 198, 532, 17, 220, 513, 220, 220, 657, 220, 532, 17, 220, 532, 18, 26, 201, 201, 198, 532, 17, 220, 604, 220, 220, 362, 220, 220, 657, 220, 532, 18, 26, 201, 201, 198, 220, 362, 220, 604, 220, 220, 513, 220, 220, 513, 220, 220, 657, 201, 201, 198, 60, 201, 198, 437, 201, 198, 201, 198, 31, 9288, 2617, 366, 33, 445, 567, 694, 357, 10531, 828, 279, 13, 2481, 1, 2221, 201, 198, 31, 9288, 220, 12759, 1, 64, 35705, 119, 65, 35705, 119, 66, 35705, 119, 67, 1, 2343, 99, 116, 201, 201, 198, 220, 220, 220, 220, 220, 220, 12759, 1, 64, 35705, 119, 65, 35705, 119, 67, 35705, 119, 66, 1, 2343, 99, 116, 201, 201, 198, 220, 220, 220, 220, 220, 220, 12759, 1, 64, 35705, 119, 66, 35705, 119, 65, 35705, 119, 67, 1, 2343, 99, 116, 201, 201, 198, 220, 220, 220, 220, 220, 220, 12759, 1, 65, 35705, 119, 64, 35705, 119, 66, 35705, 119, 67, 1, 2343, 99, 116, 201, 201, 198, 220, 220, 220, 220, 220, 220, 12759, 1, 65, 35705, 119, 64, 35705, 119, 67, 35705, 119, 66, 1, 6624, 201, 201, 198, 58, 201, 201, 198, 657, 220, 532, 16, 220, 532, 20, 220, 532, 20, 26, 201, 201, 198, 352, 220, 220, 657, 220, 532, 18, 220, 532, 20, 26, 201, 201, 198, 642, 220, 220, 513, 220, 220, 657, 220, 532, 16, 26, 201, 201, 198, 642, 220, 220, 642, 220, 220, 352, 220, 220, 657, 201, 201, 198, 60, 201, 198, 437, 201, 198, 201, 198, 31, 9288, 2617, 366, 23830, 2830, 709, 11, 14110, 461, 272, 709, 357, 9804, 16725, 2221, 201, 198, 31, 9288, 220, 12759, 1, 32, 509, 360, 399, 449, 367, 412, 24861, 120, 43, 350, 314, 347, 24861, 120, 46, 376, 371, 337, 309, 1195, 311, 402, 327, 1, 2343, 99, 116, 201, 201, 198, 220, 220, 220, 220, 220, 220, 12759, 1, 51, 314, 327, 317, 1195, 376, 367, 399, 337, 402, 347, 440, 360, 371, 350, 406, 412, 509, 449, 311, 1, 2343, 99, 116, 201, 201, 198, 220, 220, 220, 220, 220, 220, 12759, 1, 49, 399, 309, 350, 24861, 120, 40, 327, 402, 24861, 120, 35, 509, 440, 367, 449, 1195, 311, 24861, 120, 44, 347, 412, 317, 376, 406, 1, 2343, 99, 116, 201, 201, 198, 220, 220, 220, 220, 220, 220, 12759, 1, 39, 347, 337, 317, 1195, 399, 360, 440, 309, 406, 314, 402, 371, 311, 412, 24861, 120, 34, 449, 376, 509, 350, 1, 6624, 201, 201, 198, 58, 201, 201, 198, 657, 220, 220, 657, 220, 220, 657, 220, 532, 17, 220, 532, 17, 220, 532, 19, 220, 532, 17, 220, 657, 220, 220, 657, 220, 532, 17, 220, 532, 17, 220, 532, 19, 220, 220, 657, 220, 532, 17, 220, 532, 17, 220, 532, 17, 220, 532, 17, 220, 532, 17, 220, 532, 17, 220, 220, 657, 26, 201, 201, 198, 657, 220, 220, 657, 220, 220, 657, 220, 220, 657, 220, 532, 17, 220, 532, 17, 220, 220, 657, 220, 604, 220, 220, 362, 220, 220, 657, 220, 220, 657, 220, 532, 17, 220, 220, 657, 220, 220, 362, 220, 532, 16, 220, 220, 657, 220, 220, 657, 220, 532, 17, 220, 532, 17, 220, 220, 657, 26, 201, 201, 198, 657, 220, 220, 657, 220, 220, 657, 220, 220, 657, 220, 532, 16, 220, 532, 17, 220, 220, 657, 220, 657, 220, 220, 604, 220, 532, 17, 220, 532, 17, 220, 220, 657, 220, 220, 657, 220, 220, 362, 220, 220, 657, 220, 220, 657, 220, 220, 657, 220, 220, 362, 220, 220, 657, 220, 220, 604, 26, 201, 201, 198, 362, 220, 220, 657, 220, 220, 657, 220, 220, 657, 220, 532, 19, 220, 532, 17, 220, 532, 16, 220, 657, 220, 220, 657, 220, 532, 19, 220, 532, 17, 220, 532, 19, 220, 220, 657, 220, 220, 362, 220, 532, 17, 220, 532, 17, 220, 220, 657, 220, 532, 17, 220, 532, 19, 220, 220, 657, 26, 201, 201, 198, 362, 220, 220, 362, 220, 220, 352, 220, 220, 604, 220, 220, 657, 220, 532, 17, 220, 220, 362, 220, 604, 220, 220, 362, 220, 220, 657, 220, 220, 657, 220, 220, 352, 220, 220, 362, 220, 220, 604, 220, 220, 362, 220, 220, 657, 220, 220, 362, 220, 220, 362, 220, 220, 657, 220, 220, 362, 26, 201, 201, 198, 604, 220, 220, 362, 220, 220, 362, 220, 220, 362, 220, 220, 362, 220, 220, 657, 220, 220, 657, 220, 362, 220, 220, 604, 220, 220, 362, 220, 220, 657, 220, 220, 657, 220, 220, 657, 220, 220, 362, 220, 220, 362, 220, 220, 657, 220, 220, 362, 220, 220, 657, 220, 220, 657, 220, 220, 362, 26, 201, 201, 198, 362, 220, 220, 657, 220, 220, 657, 220, 220, 352, 220, 532, 17, 220, 220, 657, 220, 220, 657, 220, 362, 220, 220, 604, 220, 532, 17, 220, 532, 17, 220, 220, 657, 220, 220, 362, 220, 220, 604, 220, 220, 657, 220, 220, 657, 220, 220, 362, 220, 220, 657, 220, 532, 17, 220, 220, 604, 26, 201, 201, 198, 657, 220, 532, 19, 220, 220, 657, 220, 220, 657, 220, 532, 19, 220, 532, 17, 220, 532, 17, 220, 657, 220, 220, 657, 220, 532, 17, 220, 220, 657, 220, 532, 19, 220, 532, 19, 220, 220, 657, 220, 532, 17, 220, 532, 17, 220, 532, 17, 220, 532, 17, 220, 532, 19, 220, 220, 657, 26, 201, 201, 198, 657, 220, 532, 17, 220, 532, 19, 220, 220, 657, 220, 532, 17, 220, 532, 19, 220, 532, 19, 220, 657, 220, 220, 657, 220, 532, 17, 220, 532, 17, 220, 220, 657, 220, 532, 17, 220, 220, 362, 220, 532, 17, 220, 532, 16, 220, 532, 17, 220, 532, 17, 220, 532, 19, 220, 220, 362, 26, 201, 201, 198, 362, 220, 220, 657, 220, 220, 362, 220, 220, 604, 220, 220, 657, 220, 532, 17, 220, 220, 362, 220, 362, 220, 220, 362, 220, 220, 657, 220, 220, 362, 220, 220, 657, 220, 220, 657, 220, 220, 604, 220, 220, 362, 220, 220, 657, 220, 220, 657, 220, 220, 362, 220, 532, 17, 220, 220, 362, 26, 201, 201, 198, 362, 220, 220, 657, 220, 220, 362, 220, 220, 362, 220, 220, 657, 220, 220, 657, 220, 220, 362, 220, 657, 220, 220, 362, 220, 532, 17, 220, 220, 657, 220, 220, 657, 220, 220, 657, 220, 220, 362, 220, 220, 657, 220, 220, 657, 220, 220, 657, 220, 220, 362, 220, 532, 17, 220, 220, 362, 26, 201, 201, 198, 604, 220, 220, 362, 220, 220, 657, 220, 220, 604, 220, 532, 16, 220, 220, 657, 220, 220, 657, 220, 604, 220, 220, 657, 220, 220, 657, 220, 220, 657, 220, 220, 657, 220, 220, 362, 220, 220, 604, 220, 220, 362, 220, 220, 657, 220, 220, 362, 220, 220, 657, 220, 532, 17, 220, 220, 362, 26, 201, 201, 198, 657, 220, 220, 657, 220, 220, 657, 220, 220, 657, 220, 532, 17, 220, 220, 657, 220, 532, 17, 220, 604, 220, 220, 362, 220, 220, 657, 220, 220, 657, 220, 532, 17, 220, 220, 657, 220, 220, 362, 220, 220, 657, 220, 220, 657, 220, 220, 657, 220, 220, 657, 220, 532, 18, 220, 220, 657, 26, 201, 201, 198, 362, 220, 532, 17, 220, 532, 17, 220, 532, 17, 220, 532, 19, 220, 532, 17, 220, 532, 19, 220, 657, 220, 532, 17, 220, 532, 19, 220, 532, 17, 220, 532, 19, 220, 532, 17, 220, 220, 657, 220, 532, 19, 220, 532, 19, 220, 220, 657, 220, 532, 17, 220, 532, 19, 220, 532, 17, 26, 201, 201, 198, 362, 220, 220, 352, 220, 220, 657, 220, 220, 362, 220, 532, 17, 220, 532, 17, 220, 220, 657, 220, 362, 220, 220, 362, 220, 532, 17, 220, 220, 657, 220, 532, 17, 220, 220, 657, 220, 220, 604, 220, 220, 657, 220, 220, 657, 220, 220, 657, 220, 532, 17, 220, 532, 19, 220, 220, 657, 26, 201, 201, 198, 362, 220, 220, 657, 220, 220, 657, 220, 220, 362, 220, 220, 657, 220, 220, 657, 220, 220, 657, 220, 362, 220, 220, 352, 220, 220, 657, 220, 220, 657, 220, 220, 657, 220, 220, 657, 220, 220, 604, 220, 220, 657, 220, 220, 657, 220, 220, 657, 220, 220, 362, 220, 532, 17, 220, 220, 362, 26, 201, 201, 198, 362, 220, 220, 657, 220, 220, 657, 220, 220, 657, 220, 532, 17, 220, 532, 17, 220, 532, 17, 220, 362, 220, 220, 362, 220, 220, 657, 220, 220, 657, 220, 532, 17, 220, 220, 657, 220, 220, 657, 220, 220, 657, 220, 220, 657, 220, 220, 657, 220, 220, 657, 220, 532, 19, 220, 220, 362, 26, 201, 201, 198, 362, 220, 220, 362, 220, 532, 17, 220, 220, 362, 220, 532, 17, 220, 220, 657, 220, 220, 657, 220, 362, 220, 220, 362, 220, 532, 17, 220, 532, 17, 220, 220, 657, 220, 220, 657, 220, 220, 362, 220, 220, 362, 220, 532, 17, 220, 220, 657, 220, 220, 657, 220, 532, 19, 220, 220, 657, 26, 201, 201, 198, 362, 220, 220, 362, 220, 220, 657, 220, 220, 604, 220, 220, 657, 220, 220, 657, 220, 220, 362, 220, 604, 220, 220, 604, 220, 220, 362, 220, 220, 362, 220, 220, 362, 220, 220, 513, 220, 220, 604, 220, 220, 604, 220, 220, 362, 220, 220, 604, 220, 220, 604, 220, 220, 657, 220, 220, 604, 26, 201, 201, 198, 657, 220, 220, 657, 220, 532, 19, 220, 220, 657, 220, 532, 17, 220, 532, 17, 220, 532, 19, 220, 657, 220, 532, 17, 220, 532, 17, 220, 532, 17, 220, 532, 17, 220, 220, 657, 220, 220, 362, 220, 220, 657, 220, 532, 17, 220, 532, 17, 220, 220, 657, 220, 532, 19, 220, 220, 657, 201, 201, 198, 60, 201, 198, 31, 9288, 220, 12759, 1, 32, 5064, 35, 16045, 12473, 41, 38, 1, 2343, 99, 116, 201, 201, 198, 220, 220, 220, 220, 220, 220, 12759, 1, 33, 39, 5631, 4851, 40, 7156, 41, 1, 2343, 99, 116, 201, 201, 198, 220, 220, 220, 220, 220, 220, 12759, 1, 35, 10008, 2749, 41, 18429, 21713, 1, 2343, 99, 116, 201, 201, 198, 220, 220, 220, 220, 220, 220, 12759, 1, 34, 41, 39, 2885, 5064, 4579, 36, 1, 2343, 99, 116, 201, 201, 198, 220, 220, 220, 220, 220, 220, 12759, 1, 25241, 41, 10227, 4579, 15112, 1, 6624, 201, 201, 198, 58, 201, 201, 198, 220, 657, 220, 532, 16, 220, 220, 352, 220, 532, 16, 220, 532, 18, 220, 532, 20, 220, 532, 20, 220, 532, 16, 220, 532, 16, 220, 532, 16, 26, 201, 201, 198, 220, 352, 220, 220, 657, 220, 220, 352, 220, 220, 513, 220, 532, 18, 220, 532, 16, 220, 532, 16, 220, 220, 352, 220, 220, 513, 220, 532, 16, 26, 201, 201, 198, 532, 16, 220, 532, 16, 220, 220, 657, 220, 220, 352, 220, 532, 18, 220, 532, 16, 220, 532, 20, 220, 532, 16, 220, 220, 352, 220, 532, 20, 26, 201, 201, 198, 220, 352, 220, 532, 18, 220, 532, 16, 220, 220, 657, 220, 532, 20, 220, 532, 18, 220, 532, 20, 220, 220, 352, 220, 532, 16, 220, 532, 16, 26, 201, 201, 198, 220, 513, 220, 220, 513, 220, 220, 513, 220, 220, 642, 220, 220, 657, 220, 220, 513, 220, 532, 16, 220, 220, 513, 220, 220, 642, 220, 532, 16, 26, 201, 201, 198, 220, 642, 220, 220, 352, 220, 220, 352, 220, 220, 513, 220, 532, 18, 220, 220, 657, 220, 532, 16, 220, 220, 513, 220, 220, 513, 220, 220, 352, 26, 201, 201, 198, 220, 642, 220, 220, 352, 220, 220, 642, 220, 220, 642, 220, 220, 352, 220, 220, 352, 220, 220, 657, 220, 220, 642, 220, 220, 642, 220, 220, 513, 26, 201, 201, 198, 220, 352, 220, 532, 16, 220, 220, 352, 220, 532, 16, 220, 532, 18, 220, 532, 18, 220, 532, 20, 220, 220, 657, 220, 220, 352, 220, 220, 352, 26, 201, 201, 198, 220, 352, 220, 532, 18, 220, 532, 16, 220, 220, 352, 220, 532, 20, 220, 532, 18, 220, 532, 20, 220, 532, 16, 220, 220, 657, 220, 532, 18, 26, 201, 201, 198, 220, 352, 220, 220, 352, 220, 220, 642, 220, 220, 352, 220, 220, 352, 220, 532, 16, 220, 532, 18, 220, 532, 16, 220, 220, 513, 220, 220, 657, 201, 201, 198, 60, 201, 198, 31, 9288, 220, 12759, 1, 41, 24861, 120, 42, 317, 24861, 120, 33, 24861, 120, 34, 24861, 120, 35, 24861, 120, 36, 24861, 120, 37, 24861, 120, 38, 24861, 120, 39, 24861, 120, 40, 24861, 120, 43, 24861, 120, 44, 1, 2343, 99, 116, 201, 201, 198, 220, 220, 220, 220, 220, 220, 12759, 1, 41, 317, 24861, 120, 33, 24861, 120, 34, 24861, 120, 35, 24861, 120, 36, 24861, 120, 37, 24861, 120, 38, 24861, 120, 39, 24861, 120, 40, 24861, 120, 42, 24861, 120, 43, 24861, 120, 44, 1, 2343, 99, 116, 201, 201, 198, 220, 220, 220, 220, 220, 220, 12759, 1, 41, 24861, 120, 42, 317, 24861, 120, 33, 24861, 120, 34, 24861, 120, 35, 24861, 120, 36, 24861, 120, 37, 24861, 120, 38, 24861, 120, 39, 24861, 120, 40, 24861, 120, 43, 24861, 120, 44, 1, 2343, 99, 116, 201, 201, 198, 220, 220, 220, 220, 220, 220, 12759, 1, 40, 24861, 120, 41, 24861, 120, 42, 317, 24861, 120, 33, 24861, 120, 34, 24861, 120, 35, 24861, 120, 36, 24861, 120, 37, 24861, 120, 38, 24861, 120, 39, 24861, 120, 43, 24861, 120, 44, 1, 2343, 99, 116, 201, 201, 198, 220, 220, 220, 220, 220, 220, 12759, 1, 39, 24861, 120, 40, 24861, 120, 41, 24861, 120, 42, 406, 24861, 120, 32, 24861, 120, 33, 24861, 120, 34, 24861, 120, 35, 24861, 120, 36, 24861, 120, 37, 24861, 120, 38, 24861, 120, 44, 1, 2343, 99, 116, 201, 201, 198, 220, 220, 220, 220, 220, 220, 12759, 1, 39, 24861, 120, 40, 24861, 120, 41, 317, 24861, 120, 33, 24861, 120, 34, 24861, 120, 35, 24861, 120, 36, 24861, 120, 37, 24861, 120, 38, 24861, 120, 42, 24861, 120, 43, 24861, 120, 44, 1, 2343, 99, 116, 201, 201, 198, 220, 220, 220, 220, 220, 220, 12759, 1, 42, 24861, 120, 43, 317, 24861, 120, 33, 24861, 120, 34, 24861, 120, 35, 24861, 120, 36, 24861, 120, 37, 24861, 120, 38, 24861, 120, 39, 24861, 120, 40, 24861, 120, 41, 24861, 120, 44, 1, 2343, 99, 116, 201, 201, 198, 220, 220, 220, 220, 220, 220, 12759, 1, 40, 24861, 120, 41, 24861, 120, 42, 317, 24861, 120, 33, 24861, 120, 34, 24861, 120, 35, 24861, 120, 36, 24861, 120, 37, 24861, 120, 38, 24861, 120, 39, 24861, 120, 43, 24861, 120, 44, 1, 2343, 99, 116, 201, 201, 198, 220, 220, 220, 220, 220, 220, 12759, 1, 33, 24861, 120, 34, 317, 24861, 120, 35, 24861, 120, 36, 24861, 120, 37, 24861, 120, 38, 24861, 120, 39, 24861, 120, 40, 24861, 120, 41, 24861, 120, 42, 24861, 120, 43, 24861, 120, 44, 1, 2343, 99, 116, 201, 201, 198, 220, 220, 220, 220, 220, 220, 12759, 1, 39, 24861, 120, 40, 317, 24861, 120, 33, 24861, 120, 34, 24861, 120, 35, 24861, 120, 36, 24861, 120, 37, 24861, 120, 38, 24861, 120, 41, 24861, 120, 42, 24861, 120, 43, 24861, 120, 44, 1, 6624, 201, 201, 198, 58, 201, 201, 198, 220, 657, 220, 220, 352, 220, 220, 352, 220, 220, 657, 220, 220, 657, 220, 220, 657, 220, 220, 657, 220, 220, 513, 220, 220, 642, 220, 767, 220, 220, 718, 220, 220, 352, 220, 220, 657, 26, 201, 201, 198, 532, 16, 220, 220, 657, 220, 220, 657, 220, 532, 16, 220, 532, 16, 220, 532, 16, 220, 532, 16, 220, 220, 362, 220, 220, 604, 220, 718, 220, 220, 642, 220, 220, 657, 220, 532, 16, 26, 201, 201, 198, 532, 16, 220, 220, 657, 220, 220, 657, 220, 532, 16, 220, 532, 16, 220, 532, 16, 220, 532, 16, 220, 220, 362, 220, 220, 604, 220, 718, 220, 220, 642, 220, 220, 657, 220, 532, 16, 26, 201, 201, 198, 220, 657, 220, 220, 352, 220, 220, 352, 220, 220, 657, 220, 220, 657, 220, 220, 657, 220, 220, 657, 220, 220, 513, 220, 220, 642, 220, 767, 220, 220, 718, 220, 220, 352, 220, 220, 657, 26, 201, 201, 198, 220, 657, 220, 220, 352, 220, 220, 352, 220, 220, 657, 220, 220, 657, 220, 220, 657, 220, 220, 657, 220, 220, 513, 220, 220, 642, 220, 767, 220, 220, 718, 220, 220, 352, 220, 220, 657, 26, 201, 201, 198, 220, 657, 220, 220, 352, 220, 220, 352, 220, 220, 657, 220, 220, 657, 220, 220, 657, 220, 220, 657, 220, 220, 513, 220, 220, 642, 220, 767, 220, 220, 718, 220, 220, 352, 220, 220, 657, 26, 201, 201, 198, 220, 657, 220, 220, 352, 220, 220, 352, 220, 220, 657, 220, 220, 657, 220, 220, 657, 220, 220, 657, 220, 220, 513, 220, 220, 642, 220, 767, 220, 220, 718, 220, 220, 352, 220, 220, 657, 26, 201, 201, 198, 532, 18, 220, 532, 17, 220, 532, 17, 220, 532, 18, 220, 532, 18, 220, 532, 18, 220, 532, 18, 220, 220, 657, 220, 220, 362, 220, 604, 220, 220, 513, 220, 532, 17, 220, 532, 18, 26, 201, 201, 198, 532, 20, 220, 532, 19, 220, 532, 19, 220, 532, 20, 220, 532, 20, 220, 532, 20, 220, 532, 20, 220, 532, 17, 220, 220, 657, 220, 362, 220, 220, 352, 220, 532, 19, 220, 532, 20, 26, 201, 201, 198, 532, 22, 220, 532, 21, 220, 532, 21, 220, 532, 22, 220, 532, 22, 220, 532, 22, 220, 532, 22, 220, 532, 19, 220, 532, 17, 220, 657, 220, 532, 16, 220, 532, 21, 220, 532, 22, 26, 201, 201, 198, 532, 21, 220, 532, 20, 220, 532, 20, 220, 532, 21, 220, 532, 21, 220, 532, 21, 220, 532, 21, 220, 532, 18, 220, 532, 16, 220, 352, 220, 220, 657, 220, 532, 20, 220, 532, 21, 26, 201, 201, 198, 532, 16, 220, 220, 657, 220, 220, 657, 220, 532, 16, 220, 532, 16, 220, 532, 16, 220, 532, 16, 220, 220, 362, 220, 220, 604, 220, 718, 220, 220, 642, 220, 220, 657, 220, 532, 16, 26, 201, 201, 198, 220, 657, 220, 220, 352, 220, 220, 352, 220, 220, 657, 220, 220, 657, 220, 220, 657, 220, 220, 657, 220, 220, 513, 220, 220, 642, 220, 767, 220, 220, 718, 220, 220, 352, 220, 220, 657, 201, 201, 198, 60, 201, 198, 437, 201, 198, 201, 198, 31, 9288, 2617, 33490, 20608, 29, 357, 4967, 828, 279, 13, 2414, 1983, 1, 2221, 201, 198, 31, 9288, 220, 12759, 1, 1415, 1954, 1, 2343, 99, 116, 201, 201, 198, 220, 220, 220, 220, 220, 220, 12759, 1, 1415, 2624, 1, 2343, 99, 116, 201, 201, 198, 220, 220, 220, 220, 220, 220, 12759, 1, 1954, 1415, 1, 2343, 99, 116, 201, 201, 198, 220, 220, 220, 220, 220, 220, 12759, 1, 19, 25667, 1, 2343, 99, 116, 201, 201, 198, 220, 220, 220, 220, 220, 220, 12759, 1, 18, 28872, 1, 6624, 201, 201, 198, 58, 201, 201, 198, 220, 657, 220, 220, 352, 220, 220, 352, 220, 532, 16, 26, 201, 201, 198, 532, 16, 220, 220, 657, 220, 532, 16, 220, 220, 352, 26, 201, 201, 198, 532, 16, 220, 220, 352, 220, 220, 657, 220, 220, 352, 26, 201, 201, 198, 220, 352, 220, 532, 16, 220, 532, 16, 220, 220, 657, 201, 201, 198, 60, 201, 198, 31, 9288, 220, 12759, 1, 4051, 19924, 1, 2343, 99, 116, 201, 201, 198, 220, 220, 220, 220, 220, 220, 12759, 1, 21526, 1954, 1, 2343, 99, 116, 201, 201, 198, 220, 220, 220, 220, 220, 220, 12759, 1, 40064, 1065, 1, 2343, 99, 116, 201, 201, 198, 220, 220, 220, 220, 220, 220, 12759, 1, 1485, 37730, 1, 2343, 99, 116, 201, 201, 198, 220, 220, 220, 220, 220, 220, 12759, 1, 32114, 3132, 1, 2343, 99, 116, 201, 201, 198, 220, 220, 220, 220, 220, 220, 12759, 1, 11623, 2682, 1, 2343, 99, 116, 201, 201, 198, 220, 220, 220, 220, 220, 220, 12759, 1, 1731, 35273, 1, 6624, 201, 201, 198, 58, 201, 201, 198, 220, 657, 220, 532, 18, 220, 532, 16, 220, 352, 220, 220, 352, 26, 201, 201, 198, 220, 513, 220, 220, 657, 220, 532, 16, 220, 513, 220, 220, 352, 26, 201, 201, 198, 220, 352, 220, 220, 352, 220, 220, 657, 220, 513, 220, 220, 352, 26, 201, 201, 198, 532, 16, 220, 532, 18, 220, 532, 18, 220, 657, 220, 532, 16, 26, 201, 201, 198, 532, 16, 220, 532, 16, 220, 532, 16, 220, 352, 220, 220, 657, 201, 201, 198, 60, 201, 201, 198, 31, 9288, 220, 12759, 1, 10163, 1, 2343, 99, 116, 201, 201, 198, 220, 220, 220, 220, 220, 220, 12759, 1, 10163, 1, 2343, 99, 116, 201, 201, 198, 220, 220, 220, 220, 220, 220, 12759, 1, 36453, 1, 2343, 99, 116, 201, 201, 198, 220, 220, 220, 220, 220, 220, 12759, 1, 26427, 1, 6624, 201, 201, 198, 58, 201, 201, 198, 657, 220, 657, 220, 532, 17, 26, 201, 201, 198, 657, 220, 657, 220, 532, 17, 26, 201, 201, 198, 362, 220, 362, 220, 220, 657, 201, 201, 198, 60, 201, 198, 437, 201, 198, 201, 198, 31, 9288, 2617, 33490, 20608, 29, 357, 4967, 828, 279, 13, 2816, 1, 2221, 201, 198, 31, 9288, 220, 12759, 1, 64, 158, 224, 225, 11, 64, 158, 224, 227, 11, 64, 158, 224, 224, 11, 64, 158, 224, 226, 11, 64, 158, 224, 223, 1, 2343, 99, 116, 201, 201, 198, 220, 220, 220, 220, 220, 220, 12759, 1, 64, 158, 224, 225, 11, 64, 158, 224, 227, 11, 64, 158, 224, 226, 11, 64, 158, 224, 224, 11, 64, 158, 224, 223, 1, 2343, 99, 116, 201, 201, 198, 220, 220, 220, 220, 220, 220, 12759, 1, 64, 158, 224, 225, 11, 64, 158, 224, 227, 11, 64, 158, 224, 224, 24861, 120, 64, 158, 224, 226, 11, 64, 158, 224, 223, 1, 6624, 201, 201, 198, 58, 201, 201, 198, 220, 657, 220, 220, 513, 220, 513, 220, 220, 513, 220, 220, 513, 26, 201, 201, 198, 532, 18, 220, 220, 657, 220, 513, 220, 220, 657, 220, 220, 513, 26, 201, 201, 198, 532, 18, 220, 532, 18, 220, 657, 220, 532, 18, 220, 532, 18, 26, 201, 201, 198, 532, 18, 220, 220, 657, 220, 513, 220, 220, 657, 220, 220, 513, 26, 201, 201, 198, 532, 18, 220, 532, 18, 220, 513, 220, 532, 18, 220, 220, 657, 201, 201, 198, 60, 201, 201, 198, 437, 201, 198, 201, 198, 31, 9288, 2617, 33490, 20608, 29, 357, 7908, 828, 279, 13, 2816, 1, 2221, 201, 198, 31, 9288, 220, 12759, 1, 66, 35705, 119, 68, 35705, 119, 67, 35705, 119, 65, 35705, 119, 64, 1, 2343, 99, 116, 201, 201, 198, 220, 220, 220, 220, 220, 220, 12759, 1, 66, 35705, 119, 68, 35705, 119, 67, 35705, 119, 65, 35705, 119, 64, 1, 2343, 99, 116, 201, 201, 198, 220, 220, 220, 220, 220, 220, 12759, 1, 66, 35705, 119, 68, 35705, 119, 65, 35705, 119, 67, 35705, 119, 64, 1, 2343, 99, 116, 201, 201, 198, 220, 220, 220, 220, 220, 220, 12759, 1, 66, 35705, 119, 68, 35705, 119, 67, 35705, 119, 65, 35705, 119, 64, 1, 2343, 99, 116, 201, 201, 198, 220, 220, 220, 220, 220, 220, 12759, 1, 68, 35705, 119, 66, 35705, 119, 67, 35705, 119, 64, 35705, 119, 65, 1, 2343, 99, 116, 201, 201, 198, 220, 220, 220, 220, 220, 220, 12759, 1, 68, 35705, 119, 67, 35705, 119, 66, 35705, 119, 64, 35705, 119, 65, 1, 2343, 99, 116, 201, 201, 198, 220, 220, 220, 220, 220, 220, 12759, 1, 68, 35705, 119, 66, 35705, 119, 67, 35705, 119, 64, 35705, 119, 65, 1, 2343, 99, 116, 201, 201, 198, 220, 220, 220, 220, 220, 220, 12759, 1, 65, 35705, 119, 68, 35705, 119, 67, 35705, 119, 66, 35705, 119, 64, 1, 2343, 99, 116, 201, 201, 198, 220, 220, 220, 220, 220, 220, 12759, 1, 67, 35705, 119, 65, 35705, 119, 68, 35705, 119, 66, 35705, 119, 64, 1, 6624, 201, 201, 198, 58, 201, 201, 198, 220, 657, 220, 220, 513, 220, 220, 860, 220, 220, 860, 220, 860, 26, 201, 201, 198, 532, 18, 220, 220, 657, 220, 220, 642, 220, 220, 642, 220, 642, 26, 201, 201, 198, 532, 24, 220, 532, 20, 220, 220, 657, 220, 532, 18, 220, 352, 26, 201, 201, 198, 532, 24, 220, 532, 20, 220, 220, 513, 220, 220, 657, 220, 767, 26, 201, 201, 198, 532, 24, 220, 532, 20, 220, 532, 16, 220, 532, 22, 220, 657, 201, 201, 198, 60, 201, 201, 198, 437, 201, 198, 201, 198, 31, 9288, 2617, 366, 23830, 2830, 709, 11, 2409, 272, 709, 11, 412, 1326, 306, 40993, 357, 23344, 16725, 2221, 201, 198, 31, 9288, 220, 12759, 1, 32, 24861, 120, 34, 11, 33, 1, 2343, 99, 116, 201, 201, 198, 220, 220, 220, 220, 220, 220, 12759, 1, 34, 11, 32, 24861, 120, 33, 1, 2343, 99, 116, 201, 201, 198, 220, 220, 220, 220, 220, 220, 12759, 1, 33, 24861, 120, 34, 11, 32, 1, 6624, 201, 201, 198, 58, 201, 201, 198, 220, 657, 220, 220, 657, 220, 362, 26, 201, 201, 198, 220, 657, 220, 220, 657, 220, 362, 26, 201, 201, 198, 532, 17, 220, 532, 17, 220, 657, 201, 201, 198, 60, 201, 198, 31, 9288, 220, 12759, 1, 32, 347, 376, 360, 357, 34, 412, 16725, 2343, 99, 116, 201, 201, 198, 220, 220, 220, 220, 220, 220, 12759, 1, 35, 412, 317, 347, 327, 376, 1, 2343, 99, 116, 201, 201, 198, 220, 220, 220, 220, 220, 220, 12759, 1, 33, 357, 36, 317, 5769, 34, 360, 8, 376, 1, 2343, 99, 116, 201, 201, 198, 220, 220, 220, 220, 220, 220, 12759, 18109, 37, 327, 8, 360, 347, 357, 32, 412, 16725, 2343, 99, 116, 201, 201, 198, 220, 220, 220, 220, 220, 220, 12759, 1, 34, 360, 357, 33, 376, 8, 412, 317, 1, 6624, 201, 201, 198, 58, 201, 201, 198, 220, 657, 220, 220, 352, 220, 532, 16, 220, 352, 220, 220, 352, 220, 532, 16, 26, 201, 201, 198, 532, 16, 220, 220, 657, 220, 532, 16, 220, 352, 220, 532, 18, 220, 532, 17, 26, 201, 201, 198, 220, 352, 220, 220, 352, 220, 220, 657, 220, 657, 220, 220, 657, 220, 532, 17, 26, 201, 201, 198, 532, 16, 220, 532, 16, 220, 220, 657, 220, 657, 220, 532, 18, 220, 532, 16, 26, 201, 201, 198, 532, 16, 220, 220, 513, 220, 220, 657, 220, 513, 220, 220, 657, 220, 220, 352, 26, 201, 201, 198, 220, 352, 220, 220, 362, 220, 220, 362, 220, 352, 220, 532, 16, 220, 220, 657, 201, 201, 198, 60, 201, 201, 198, 437 ]
1.296624
4,976
<filename>src/Hangul.jl<gh_stars>0 module Hangul # Hangul Compatibility Jamo export Jamo export Letter, Consonant, Vowel export Syllable export ComposeError, DecomposeError export to_char, to_syllable include("jamo.jl") # Hangul Jamo export YetJamo export Initial, Medial, Final export YetSyllable export to_string include("yetjamo.jl") end # module
[ 27, 34345, 29, 10677, 14, 39, 648, 377, 13, 20362, 27, 456, 62, 30783, 29, 15, 198, 21412, 24300, 377, 198, 198, 2, 24300, 377, 46021, 9986, 78, 198, 39344, 9986, 78, 198, 39344, 18121, 11, 3515, 261, 415, 11, 569, 322, 417, 198, 39344, 1632, 297, 540, 198, 39344, 3082, 577, 12331, 11, 4280, 3361, 577, 12331, 198, 39344, 284, 62, 10641, 11, 284, 62, 1837, 297, 540, 198, 17256, 7203, 73, 18811, 13, 20362, 4943, 198, 198, 2, 24300, 377, 9986, 78, 198, 39344, 6430, 41, 18811, 198, 39344, 20768, 11, 2019, 498, 11, 8125, 198, 39344, 6430, 13940, 297, 540, 198, 39344, 284, 62, 8841, 198, 17256, 7203, 25907, 73, 18811, 13, 20362, 4943, 198, 198, 437, 1303, 8265, 198 ]
2.869919
123
################## # Society Type # ################## abstract type Society{N, K, T} end ########################### # Society Redefinitions # ########################### length(soc::Society) = length(soc.agents) size(soc::Society) = (length(soc.agents), length(soc.agents[1])) size(soc::Society, i::Int) = size(soc)[i] getindex(soc::Society, i::Int) = soc.agents[i] getindex(soc::Society, c::Colon) = soc.agents[:] getindex(soc::Society, c1::Colon, c2::Colon) = soc.links[:, :] endof(soc::Society) = soc.agents[end] getindex(soc::Society, i::Int, j::Int) = soc.links[i, j] getindex(soc::Society, i::Int, r::UnitRange) = soc.links[i, r] getindex(soc::Society, r::UnitRange, j::Int) = soc.links[r, j] getindex(soc::Society, r::UnitRange, s::UnitRange) = soc.links[r, s] getindex(soc::Society, i::Int, c::Colon) = soc.links[i, c] getindex(soc::Society, c::Colon, j::Int) = soc.links[c, j] getindex(soc::Society, c::Colon, r::UnitRange) = soc.links[c, r] getindex(soc::Society, r::UnitRange, c::Colon) = soc.links[r, c] setindex!(soc::Society, x::MoralVector, i::Int64) = soc.agents[i] = x start(soc::Society) = 1 done(soc::Society, s::Int) = s > length(soc) next(soc::Society, s::Int) = (soc[s], s+1) ######################### # Society Definitions # ######################### """ agents(soc::Society) Returns the agents vector of a Society soc """ agents(soc::Society) = soc[:] """ agents(soc::Society, i::Int) Returns the ith agent of a Society soc """ agents(soc::Society, i::Int) = soc[i] """ interactions(soc::Society) Returns the links of a Society soc """ interactions(soc::Society) = soc.links """ insertagent!{N,K,T}(soc::Society{N,K,T}, x::MoralVector{K,T}, i::Int) Insert new agent x at position i in Society soc """ insertagent!{N, K, T}(soc::Society{N,K,T}, x::MoralVector{K,T}, i::Int) = soc.agents[i] = x """ hamiltonian{N,K,T}(soc::Society{N,K,T}, x::MoralVector{K,T}) Evaluates the hamiltonian, that is, the total social cost of a Society given some MoralVector x """ function hamiltonian{N,K,T}(soc::Society{N,K,T}, x::MoralVector{K,T}) hamil = 0 for j in 1:N for i in 1:N Rij = soc[i, j] if Rij != 0 hamil += Rij*cogcost(soc,i,j,x) end end end return hamil end """ magnetization{N,K,T}(soc::Society{N,K,T}, x::MoralVector{K,T}) Evaluates the magnetization of a Society, that is, the total sum of the MoralVectors opinions """ function magnetization{N,K,T}(soc::Society{N,K,T}, x::MoralVector{K,T}) mag = 0. for agi in agents(soc) mag += agi ⋅ x end return mag / N end """ believeness{N,K,T}(soc::Society{N,K,T}, x::MoralVector{K,T}) Evaluates the believeness of a Society, that is, the sum of the absolute values of MoralVectors opinions """ function believeness{N,K,T}(soc::Society{N,K,T}, x::MoralVector{K,T}) bel = 0. for agi in agents(soc) bel += abs(agi ⋅ x) end return bel / N end """ quadrupole{N,K,T}(soc::Society{N,K,T}, x::MoralVector{K,T}) Evaluates the quadrupole of a Society, that is, something very nasty and obscure: * \frac{1}{N^2 K} \sum_{\langle ij \rangle} R_{ij} j_i h_j """ function quadrupole{N,K,T}(soc::Society{N,K,T}, x::MoralVector{K,T}) qd = 0. for i in 1:N for j in (i+1):N qd += soc[i, j] * (soc[i] ⋅ x) * (soc[j] ⋅ x) end end return qd / N^2 end """ consensus{N,K,T}(soc::Society{N,K,T}, i::Int, j::Int) Evaluates the consensus of MoralVectors i and j within a Society, that is, the between the agents inner representations """ function consensus{N,K,T}(soc::Society{N,K,T}, i::Int, j::Int) if 0 < i <= N && 0 < j <= N return soc[i] ⋅ soc[j] else error("The indices given are out of range") end end """ consensus{N,K,T}(soc::Society{N,K,T}) Evaluates the consensus of a Society, that is, the matrix of the correlations between the MoralVectors inner representations """ function consensus{N,K,T}(soc::Society{N,K,T}; format = :none) ψ = zeros(N, N) for i in 1:N for j in (i+1):N ψ[i, j] = consensus(soc, i, j) end end if format == :ordered return ψ[ψ .!= 0.] end return ψ end
[ 14468, 2235, 198, 2, 220, 7023, 5994, 220, 1303, 198, 14468, 2235, 198, 198, 397, 8709, 2099, 7023, 90, 45, 11, 509, 11, 309, 92, 886, 628, 198, 14468, 7804, 21017, 198, 2, 220, 7023, 2297, 891, 50101, 220, 1303, 198, 14468, 7804, 21017, 198, 198, 13664, 7, 35634, 3712, 37949, 1905, 8, 220, 220, 220, 220, 220, 220, 796, 4129, 7, 35634, 13, 49638, 8, 198, 7857, 7, 35634, 3712, 37949, 1905, 8, 220, 220, 220, 220, 220, 220, 220, 220, 796, 357, 13664, 7, 35634, 13, 49638, 828, 4129, 7, 35634, 13, 49638, 58, 16, 60, 4008, 198, 7857, 7, 35634, 3712, 37949, 1905, 11, 1312, 3712, 5317, 8, 796, 2546, 7, 35634, 38381, 72, 60, 198, 198, 1136, 9630, 7, 35634, 3712, 37949, 1905, 11, 1312, 3712, 5317, 8, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 796, 1307, 13, 49638, 58, 72, 60, 198, 1136, 9630, 7, 35634, 3712, 37949, 1905, 11, 269, 3712, 5216, 261, 8, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 796, 1307, 13, 49638, 58, 47715, 198, 1136, 9630, 7, 35634, 3712, 37949, 1905, 11, 269, 16, 3712, 5216, 261, 11, 269, 17, 3712, 5216, 261, 8, 220, 220, 220, 220, 220, 220, 796, 1307, 13, 28751, 58, 45299, 1058, 60, 198, 437, 1659, 7, 35634, 3712, 37949, 1905, 8, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 796, 1307, 13, 49638, 58, 437, 60, 628, 198, 1136, 9630, 7, 35634, 3712, 37949, 1905, 11, 1312, 3712, 5317, 11, 474, 3712, 5317, 8, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 796, 1307, 13, 28751, 58, 72, 11, 474, 60, 198, 1136, 9630, 7, 35634, 3712, 37949, 1905, 11, 1312, 3712, 5317, 11, 374, 3712, 26453, 17257, 8, 220, 220, 220, 220, 220, 220, 796, 1307, 13, 28751, 58, 72, 11, 374, 60, 198, 1136, 9630, 7, 35634, 3712, 37949, 1905, 11, 374, 3712, 26453, 17257, 11, 474, 3712, 5317, 8, 220, 220, 220, 220, 220, 220, 796, 1307, 13, 28751, 58, 81, 11, 474, 60, 198, 1136, 9630, 7, 35634, 3712, 37949, 1905, 11, 374, 3712, 26453, 17257, 11, 264, 3712, 26453, 17257, 8, 796, 1307, 13, 28751, 58, 81, 11, 264, 60, 198, 1136, 9630, 7, 35634, 3712, 37949, 1905, 11, 1312, 3712, 5317, 11, 269, 3712, 5216, 261, 8, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 796, 1307, 13, 28751, 58, 72, 11, 269, 60, 198, 1136, 9630, 7, 35634, 3712, 37949, 1905, 11, 269, 3712, 5216, 261, 11, 474, 3712, 5317, 8, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 796, 1307, 13, 28751, 58, 66, 11, 474, 60, 198, 1136, 9630, 7, 35634, 3712, 37949, 1905, 11, 269, 3712, 5216, 261, 11, 374, 3712, 26453, 17257, 8, 220, 220, 220, 220, 796, 1307, 13, 28751, 58, 66, 11, 374, 60, 198, 1136, 9630, 7, 35634, 3712, 37949, 1905, 11, 374, 3712, 26453, 17257, 11, 269, 3712, 5216, 261, 8, 220, 220, 220, 220, 796, 1307, 13, 28751, 58, 81, 11, 269, 60, 198, 198, 2617, 9630, 0, 7, 35634, 3712, 37949, 1905, 11, 2124, 3712, 44, 6864, 38469, 11, 1312, 3712, 5317, 2414, 8, 796, 220, 198, 220, 220, 220, 1307, 13, 49638, 58, 72, 60, 796, 2124, 198, 198, 9688, 7, 35634, 3712, 37949, 1905, 8, 220, 220, 220, 220, 220, 220, 220, 796, 352, 198, 28060, 7, 35634, 3712, 37949, 1905, 11, 264, 3712, 5317, 8, 796, 264, 1875, 4129, 7, 35634, 8, 198, 19545, 7, 35634, 3712, 37949, 1905, 11, 264, 3712, 5317, 8, 796, 357, 35634, 58, 82, 4357, 264, 10, 16, 8, 628, 198, 14468, 7804, 2, 198, 2, 220, 7023, 45205, 220, 1303, 198, 14468, 7804, 2, 198, 198, 37811, 198, 220, 220, 220, 6554, 7, 35634, 3712, 37949, 1905, 8, 198, 198, 35561, 262, 6554, 15879, 286, 257, 7023, 1307, 198, 37811, 198, 49638, 7, 35634, 3712, 37949, 1905, 8, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 796, 1307, 58, 47715, 628, 198, 37811, 198, 220, 220, 220, 6554, 7, 35634, 3712, 37949, 1905, 11, 1312, 3712, 5317, 8, 198, 198, 35561, 262, 340, 71, 5797, 286, 257, 7023, 1307, 198, 37811, 198, 49638, 7, 35634, 3712, 37949, 1905, 11, 1312, 3712, 5317, 8, 796, 1307, 58, 72, 60, 628, 198, 37811, 198, 220, 220, 220, 12213, 7, 35634, 3712, 37949, 1905, 8, 198, 198, 35561, 262, 6117, 286, 257, 7023, 1307, 198, 37811, 198, 3849, 4658, 7, 35634, 3712, 37949, 1905, 8, 220, 220, 220, 220, 796, 1307, 13, 28751, 628, 198, 37811, 198, 220, 220, 220, 7550, 25781, 0, 90, 45, 11, 42, 11, 51, 92, 7, 35634, 3712, 37949, 1905, 90, 45, 11, 42, 11, 51, 5512, 2124, 3712, 44, 6864, 38469, 90, 42, 11, 51, 5512, 1312, 3712, 5317, 8, 198, 198, 44402, 649, 5797, 2124, 379, 2292, 1312, 287, 7023, 1307, 198, 37811, 198, 28463, 25781, 0, 90, 45, 11, 509, 11, 309, 92, 7, 35634, 3712, 37949, 1905, 90, 45, 11, 42, 11, 51, 5512, 2124, 3712, 44, 6864, 38469, 90, 42, 11, 51, 5512, 1312, 3712, 5317, 8, 796, 198, 220, 220, 220, 1307, 13, 49638, 58, 72, 60, 796, 2124, 628, 198, 37811, 198, 220, 220, 220, 8891, 9044, 666, 90, 45, 11, 42, 11, 51, 92, 7, 35634, 3712, 37949, 1905, 90, 45, 11, 42, 11, 51, 5512, 2124, 3712, 44, 6864, 38469, 90, 42, 11, 51, 30072, 198, 198, 36, 2100, 12632, 262, 8891, 9044, 666, 11, 326, 318, 11, 262, 2472, 1919, 1575, 286, 257, 7023, 1813, 617, 39020, 38469, 2124, 198, 37811, 198, 8818, 8891, 9044, 666, 90, 45, 11, 42, 11, 51, 92, 7, 35634, 3712, 37949, 1905, 90, 45, 11, 42, 11, 51, 5512, 2124, 3712, 44, 6864, 38469, 90, 42, 11, 51, 30072, 198, 220, 220, 220, 8891, 346, 796, 657, 628, 220, 220, 220, 329, 474, 287, 352, 25, 45, 329, 1312, 287, 352, 25, 45, 198, 220, 220, 220, 220, 220, 220, 220, 371, 2926, 796, 1307, 58, 72, 11, 474, 60, 628, 220, 220, 220, 220, 220, 220, 220, 611, 371, 2926, 14512, 657, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8891, 346, 15853, 371, 2926, 9, 66, 519, 15805, 7, 35634, 11, 72, 11, 73, 11, 87, 8, 220, 198, 220, 220, 220, 220, 220, 220, 220, 886, 198, 220, 220, 220, 886, 886, 628, 220, 220, 220, 1441, 8891, 346, 198, 437, 628, 198, 37811, 198, 220, 220, 220, 19972, 1634, 90, 45, 11, 42, 11, 51, 92, 7, 35634, 3712, 37949, 1905, 90, 45, 11, 42, 11, 51, 5512, 2124, 3712, 44, 6864, 38469, 90, 42, 11, 51, 30072, 198, 198, 36, 2100, 12632, 262, 19972, 1634, 286, 257, 7023, 11, 326, 318, 11, 262, 2472, 2160, 286, 262, 39020, 53, 478, 669, 9317, 198, 37811, 198, 8818, 19972, 1634, 90, 45, 11, 42, 11, 51, 92, 7, 35634, 3712, 37949, 1905, 90, 45, 11, 42, 11, 51, 5512, 2124, 3712, 44, 6864, 38469, 90, 42, 11, 51, 30072, 198, 220, 220, 220, 2153, 796, 657, 13, 628, 220, 220, 220, 329, 556, 72, 287, 6554, 7, 35634, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2153, 15853, 556, 72, 2343, 233, 227, 2124, 198, 220, 220, 220, 886, 628, 220, 220, 220, 1441, 2153, 1220, 399, 220, 198, 437, 628, 198, 37811, 198, 220, 220, 220, 1250, 574, 408, 90, 45, 11, 42, 11, 51, 92, 7, 35634, 3712, 37949, 1905, 90, 45, 11, 42, 11, 51, 5512, 2124, 3712, 44, 6864, 38469, 90, 42, 11, 51, 30072, 198, 198, 36, 2100, 12632, 262, 1250, 574, 408, 286, 257, 7023, 11, 326, 318, 11, 262, 2160, 286, 262, 4112, 3815, 286, 39020, 53, 478, 669, 9317, 198, 37811, 198, 8818, 1250, 574, 408, 90, 45, 11, 42, 11, 51, 92, 7, 35634, 3712, 37949, 1905, 90, 45, 11, 42, 11, 51, 5512, 2124, 3712, 44, 6864, 38469, 90, 42, 11, 51, 30072, 198, 220, 220, 220, 894, 796, 657, 13, 628, 220, 220, 220, 329, 556, 72, 287, 6554, 7, 35634, 8, 198, 220, 220, 220, 220, 220, 220, 220, 894, 15853, 2352, 7, 18013, 2343, 233, 227, 2124, 8, 198, 220, 220, 220, 886, 628, 220, 220, 220, 1441, 894, 1220, 399, 220, 198, 437, 628, 198, 37811, 198, 220, 220, 220, 15094, 12618, 2305, 90, 45, 11, 42, 11, 51, 92, 7, 35634, 3712, 37949, 1905, 90, 45, 11, 42, 11, 51, 5512, 2124, 3712, 44, 6864, 38469, 90, 42, 11, 51, 30072, 198, 198, 36, 2100, 12632, 262, 15094, 12618, 2305, 286, 257, 7023, 11, 326, 318, 11, 1223, 845, 17166, 290, 18611, 25, 198, 198, 9, 3467, 31944, 90, 16, 18477, 45, 61, 17, 509, 92, 3467, 16345, 23330, 59, 75, 9248, 1312, 73, 3467, 81, 9248, 92, 371, 23330, 2926, 92, 474, 62, 72, 289, 62, 73, 198, 37811, 198, 8818, 15094, 12618, 2305, 90, 45, 11, 42, 11, 51, 92, 7, 35634, 3712, 37949, 1905, 90, 45, 11, 42, 11, 51, 5512, 2124, 3712, 44, 6864, 38469, 90, 42, 11, 51, 30072, 198, 220, 220, 220, 10662, 67, 796, 657, 13, 628, 220, 220, 220, 329, 1312, 287, 352, 25, 45, 329, 474, 287, 357, 72, 10, 16, 2599, 45, 198, 220, 220, 220, 220, 220, 220, 220, 10662, 67, 15853, 1307, 58, 72, 11, 474, 60, 1635, 357, 35634, 58, 72, 60, 2343, 233, 227, 2124, 8, 1635, 357, 35634, 58, 73, 60, 2343, 233, 227, 2124, 8, 220, 198, 220, 220, 220, 886, 886, 628, 220, 220, 220, 1441, 10662, 67, 1220, 399, 61, 17, 220, 198, 437, 628, 198, 37811, 198, 220, 220, 220, 11529, 90, 45, 11, 42, 11, 51, 92, 7, 35634, 3712, 37949, 1905, 90, 45, 11, 42, 11, 51, 5512, 1312, 3712, 5317, 11, 474, 3712, 5317, 8, 198, 198, 36, 2100, 12632, 262, 11529, 286, 39020, 53, 478, 669, 1312, 290, 474, 1626, 257, 7023, 11, 326, 318, 11, 262, 1022, 262, 6554, 8434, 24612, 198, 37811, 198, 8818, 11529, 90, 45, 11, 42, 11, 51, 92, 7, 35634, 3712, 37949, 1905, 90, 45, 11, 42, 11, 51, 5512, 1312, 3712, 5317, 11, 474, 3712, 5317, 8, 198, 220, 220, 220, 611, 657, 1279, 1312, 19841, 399, 11405, 657, 1279, 474, 19841, 399, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 1307, 58, 72, 60, 2343, 233, 227, 1307, 58, 73, 60, 198, 220, 220, 220, 2073, 198, 220, 220, 220, 220, 220, 220, 220, 4049, 7203, 464, 36525, 1813, 389, 503, 286, 2837, 4943, 198, 220, 220, 220, 886, 198, 437, 628, 198, 37811, 198, 220, 220, 220, 11529, 90, 45, 11, 42, 11, 51, 92, 7, 35634, 3712, 37949, 1905, 90, 45, 11, 42, 11, 51, 30072, 198, 198, 36, 2100, 12632, 262, 11529, 286, 257, 7023, 11, 326, 318, 11, 262, 17593, 286, 262, 35811, 1022, 262, 39020, 53, 478, 669, 8434, 24612, 198, 37811, 198, 8818, 11529, 90, 45, 11, 42, 11, 51, 92, 7, 35634, 3712, 37949, 1905, 90, 45, 11, 42, 11, 51, 19629, 5794, 796, 1058, 23108, 8, 198, 220, 220, 220, 18074, 230, 796, 1976, 27498, 7, 45, 11, 399, 8, 628, 220, 220, 220, 329, 1312, 287, 352, 25, 45, 329, 474, 287, 357, 72, 10, 16, 2599, 45, 198, 220, 220, 220, 220, 220, 220, 220, 18074, 230, 58, 72, 11, 474, 60, 796, 11529, 7, 35634, 11, 1312, 11, 474, 8, 198, 220, 220, 220, 886, 886, 628, 220, 220, 220, 611, 5794, 6624, 1058, 24071, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 18074, 230, 58, 139, 230, 764, 0, 28, 657, 8183, 198, 220, 220, 220, 886, 198, 220, 220, 220, 1441, 18074, 230, 198, 437, 198 ]
2.201904
1,996
<filename>src/Poisson/core_obsolete.jl<gh_stars>1-10 """ This module represents an explicit, direct sparse 2D finite-difference Poisson solver for heterogeneous media, i.e. media having spatially varying (space-dependent) medium parameters. The following functionality is currently available in this module: * 'Forward' problem: given the source, and the conductivity distribution, solve for the electrical potential ψ: Example problem: solve Aψ=∇⋅j; A=∇⋅(σ(x,z)∇), for ψ. * 'Inverse' problem: given wave propagation related pore pressure, and mechanical medium properties, calculate the source term: Example problem: solve Aψ=-∇⋅j; A=∇⋅([Q*k/η](x,z)∇B*P), for ∇⋅j; * The Boundary Value Problem that is currently implemented assumes Neumann boundary conditions at all boundaries. Developed by:\\\n <NAME>, Massachusetts Institute of Technology, USA.\\\n In collaboration with: <NAME> & <NAME>, Massachusetts Institute of Technology, USA.\\\n Date: October, 2017 \\\n Contact: <EMAIL> """ module Poisson using SparseArrays using StatsBase """ Poisson.solve(field,mpars,solflag) solves the forward or inverse Poisson problem in a heterogeneous medium. # Function input arguments: * `field` : either source term used in 'forward' mode to get field, or the field (e.g. pore pressure) used in 'inverse' mode to calculate source-term * `mpars` : medium parameters for forward or inverse mode * `solflag` : Solution flag determining whether to use forward (solflag=1) or inverse mode (solflag=-1) of Poisson solver. """ function solve(field,mpars,solflag::Int64) # fields: either field or source, mpars=medium pars if(solflag==-1) pp=field; # elseif(solflag==1) src=field; else error("In Poisson.solve: change solflag to solflag=1 (forward problem) or solflag=-1 (inverse problem)") end nz=size(mpars,1); nx=size(mpars,2); dz= inv(nz - 1); dx= inv(nx - 1); z=(0 : nz - 1)*dz; x=(0:nx-1)*dx; #-------------------- Build explicit operator matrix A=∇⋅(mpars(x,z)∇) for direct Poisson solver -------------------- # Some notes: # We build the operator matrix explicitly like this to properly deal with the Neumann boundary conditions at all boundaries. # The standard Kronecker product approach for building sparse operator matrices seemed to generate some errors at the boundaries. # Medium properties calculated on staggered grid. # Directions: z-direction row-wise, x-direction column-wise. # Allocate non-zero operator entries k = 5*(nz - 2)*(nx - 2)+ # pentadiagonal operator entry allocation: 5, since using 5-point finite-difference stencil (star-shaped) 2*(2*(nz - 2) + 2*(nx - 2)+ # bidiagonal non-corner 4-boundary allocation # for boundaries (2 points only) 4); # bidiagonal corner boundary allocation # The sparse() function is often a handy way to construct sparse matrices. # It takes as its input a vector I of row indices, a vector J of column indices, and a vector V of nonzero values. # Sparse(I,J,V) constructs a sparse matrix such that S[I[k], J[k]] = V[k]. iz=Array{Float64,1}; ix=Array{Float64,1}; iz=collect(1:nz*nx); # same row: row index=1 --> vectors must have same length [k] ix=collect(1:nz*nx); # column indices val=zeros(nz*nx); # actual values global A=sparse(ix,iz,val,nz*nx,nz*nx); # pre-allocate sparse operator matrix A dz = dz.^2; # for simplicity below dx = dx.^2; println("fffffff", dz*dx) #-------------- Create operator A for the interior points (without boundary)--------------------------------------- for j = 2 : nx - 1 # interior x (column) loop (for amount of internal nodes) k = 2 + nz*(j - 1); # initial interior z for this x. To jump from j (new column), need nz*... to proceed to next column vector k for i = 2 : nz - 1 # interior z (row) loop: A[k,k - nz] = .5*(mpars[i,j] + mpars[i,j - 1])/dx; # moving left (and placing actual staggered 2D grid medium value there) A[k,k - 1] = .5*(mpars[i,j] + mpars[i - 1,j])/dz; # moving up the grid A[k,k] = -(mpars[i,j] + .5*(mpars[i,j - 1] + mpars[i,j + 1]))/dx - (mpars[i,j] + .5*(mpars[i - 1,j] + mpars[i + 1,j]))/dz; # diagonal elements: ∇⋅\medpars(x,z)∇ calculated using 5 mpars points A[k,k + 1] = .5*(mpars[i,j] + mpars[i + 1,j])/dz; # moving down the grid A[k,k + nz] = .5*(mpars[i,j]+ mpars[i,j + 1])/dx; # moving right on grid (need nz values to go to next column) k = k + 1; # to next z end # The foregoing A terms are operations by hand ... end #------------- Create operator A for the top and bottom boundaries including Neumann conditions (without the corners)------------- if(solflag==-1) # for 'inverse' problem: source plays no role here, so just allocate zeros with proper size. src=zeros(nz,nx); elseif(solflag==1) # for 'forward' problem src = src[:]; # vectorize source (which was function input argument) end for j = 2 : nx - 1 # interior x (column) loop: k = 1 + nz*(j - 1);# initial boundary z for this x (k = i + m*(j - 1)) for i = [1 nz] # % north & south boundary z (row) loop: o = k - Int(sign(i - .5*nz)); #% sign function determines correct direction to: inward from north or south boundary # to define direction(from boundary down or up) A[k,k] = -A[o,k]; #% build in symmetry ... --> trick to get symmetry, the next line is leading. A[k,o] = -A[k,k]; #% cancelation implies equation # Neumann: value of psi = same. The operator does not know value. Just knows has to subtract two values --> minus sign src[k] = 0; # 0 to equate boundary values in source term ... (?) k = k + nz - 1; #% from north to south boundary end end # Create A for the east and west boundaries without corner points for j = [1 nx] # west & east boundary x (column) loop: k = 2 + nz*(j - 1); #% initial interior z for this x (k = i + m*(j - 1)) for i = 2 : nz - 1 # interior z (row) loop: o = k - Int(sign(j - .5*nx))*nz; # inward from west or east boundary A[k,k] = -A[o,k]; #% build in symmetry ... A[k,o] = -A[k,k]; #% cancelation implies equation src[k]= 0; #% 0 to equate boundary values k = k + 1; #% to next z end end # Create A for the corner points for j = [1 nx] #% west & east boundary x (column) loop: k = 1 + nz*(j - 1); #% start on north boundary for i = [1 nz] #% north & south boundary y (row) loop: o = k - Int(sign(i - .5*nz))- #% inward from north or south boundary Int(sign(j - .5*nx))*nz; # inward from west or east boundary # two terms to move diagonal A[k,k] = A[o,o]; #% nonzero, alas asymmetric ... A[k,o] = -A[k,k]; #% ... cancelation implies equation src[k] = 0; #% 0 to equate boundary values k = k + nz - 1; #% from north to south boundary end end if(solflag == -1) #for inverse problem: fields + medium --> source term pp_vec=pp[:]; # vectorize 2D pore pressure field (according to organization operator A). divj=-reshape(A*pp_vec,nz,nx); return divj # function command --> return these variables, in this case electrical source term ∇⋅j (used in inverse problem) elseif(solflag==1) # forward problem: source+medium --> fields # To 'fix' the nullspace, and make the source consistent with the nullspace --> not always fast/memory allowable since # julia backslash operator does not like non-square matrices... (?) #ix=Array{Float64,1}; #ix=ones(nz*nx); # same row: row index=1 #iz=collect(1:nz*nx); # column indices #v=ones(nz*nx); # actual values #onemat=sparse(ix,iz,v); # A = [onemat;A]; # fix null space # psi = reshape(A\[0; src], nz, nx); # make source consistent with null space psi_vec=A\src[:]; # direct inverse solve using backslash operator psi = reshape(psi_vec, nz, nx); # reshape electrical potential vector psi into 2D electrical potential map (z,x) psi = psi .- StatsBase.mean(StatsBase.mean(psi)); # alternative to 'fix' nullspace: make zero-mean... # src=reshape(src,nz,nx); # reshape source vector into 2D source map for plotting purposes only. return psi,A # function command --> return these variables, in this case electrical potential ψ end # end solflag if statement end # function command end # end module Poisson
[ 27, 34345, 29, 10677, 14, 18833, 30927, 14, 7295, 62, 672, 23869, 13, 20362, 27, 456, 62, 30783, 29, 16, 12, 940, 198, 37811, 198, 1212, 8265, 6870, 281, 7952, 11, 1277, 29877, 362, 35, 27454, 12, 26069, 1945, 7695, 30927, 1540, 332, 329, 14445, 32269, 2056, 11, 198, 72, 13, 68, 13, 2056, 1719, 15246, 1927, 15874, 357, 13200, 12, 21186, 8, 7090, 10007, 13, 198, 464, 1708, 11244, 318, 3058, 1695, 287, 428, 8265, 25, 198, 9, 705, 39746, 6, 1917, 25, 1813, 262, 2723, 11, 290, 262, 3189, 3458, 6082, 11, 8494, 329, 262, 12278, 2785, 18074, 230, 25, 198, 197, 17934, 1917, 25, 8494, 317, 139, 230, 28, 24861, 229, 158, 233, 227, 73, 26, 317, 28, 24861, 229, 158, 233, 227, 7, 38392, 7, 87, 11, 89, 8, 24861, 229, 828, 329, 18074, 230, 13, 198, 9, 705, 818, 4399, 6, 1917, 25, 1813, 6769, 43594, 3519, 279, 382, 3833, 11, 290, 12370, 7090, 6608, 11, 15284, 262, 2723, 3381, 25, 198, 197, 17934, 1917, 25, 8494, 317, 139, 230, 10779, 24861, 229, 158, 233, 227, 73, 26, 317, 28, 24861, 229, 158, 233, 227, 26933, 48, 9, 74, 14, 138, 115, 16151, 87, 11, 89, 8, 24861, 229, 33, 9, 47, 828, 329, 18872, 229, 158, 233, 227, 73, 26, 198, 9, 383, 30149, 560, 11052, 20647, 326, 318, 3058, 9177, 18533, 3169, 40062, 18645, 3403, 379, 477, 13215, 13, 198, 19246, 276, 416, 25, 6852, 59, 77, 198, 27, 20608, 22330, 10140, 5136, 286, 8987, 11, 4916, 13, 6852, 59, 77, 198, 818, 12438, 351, 25, 1279, 20608, 29, 1222, 1279, 20608, 22330, 10140, 5136, 286, 8987, 11, 4916, 13, 6852, 59, 77, 198, 10430, 25, 3267, 11, 2177, 3467, 6852, 77, 198, 17829, 25, 1279, 27630, 4146, 29, 198, 37811, 198, 21412, 7695, 30927, 198, 198, 3500, 1338, 17208, 3163, 20477, 198, 3500, 20595, 14881, 198, 198, 37811, 198, 18833, 30927, 13, 82, 6442, 7, 3245, 11, 3149, 945, 11, 34453, 32109, 8, 39107, 262, 2651, 393, 34062, 7695, 30927, 1917, 287, 257, 14445, 32269, 7090, 13, 198, 2, 15553, 5128, 7159, 25, 198, 9, 4600, 3245, 63, 1058, 2035, 2723, 3381, 973, 287, 705, 11813, 6, 4235, 284, 651, 2214, 11, 393, 262, 2214, 357, 68, 13, 70, 13, 279, 382, 3833, 8, 973, 287, 705, 259, 4399, 6, 4235, 284, 15284, 2723, 12, 4354, 198, 9, 4600, 3149, 945, 63, 1058, 7090, 10007, 329, 2651, 393, 34062, 4235, 198, 9, 4600, 34453, 32109, 63, 1058, 28186, 6056, 13213, 1771, 284, 779, 2651, 357, 34453, 32109, 28, 16, 8, 393, 34062, 4235, 357, 34453, 32109, 10779, 16, 8, 286, 7695, 30927, 1540, 332, 13, 198, 37811, 198, 8818, 8494, 7, 3245, 11, 3149, 945, 11, 34453, 32109, 3712, 5317, 2414, 8, 1303, 7032, 25, 2035, 2214, 393, 2723, 11, 29034, 945, 28, 24132, 13544, 198, 198, 361, 7, 34453, 32109, 855, 12, 16, 8, 198, 197, 381, 28, 3245, 26, 1303, 198, 17772, 361, 7, 34453, 32109, 855, 16, 8, 198, 197, 10677, 28, 3245, 26, 198, 17772, 198, 197, 18224, 7203, 818, 7695, 30927, 13, 82, 6442, 25, 1487, 1540, 32109, 284, 1540, 32109, 28, 16, 357, 11813, 1917, 8, 393, 1540, 32109, 10779, 16, 357, 259, 4399, 1917, 8, 4943, 198, 437, 628, 198, 27305, 28, 7857, 7, 3149, 945, 11, 16, 1776, 198, 77, 87, 28, 7857, 7, 3149, 945, 11, 17, 1776, 198, 67, 89, 28, 800, 7, 27305, 532, 352, 1776, 198, 34350, 28, 800, 7, 77, 87, 532, 352, 1776, 198, 89, 16193, 15, 1058, 299, 89, 532, 352, 27493, 67, 89, 26, 198, 87, 16193, 15, 25, 77, 87, 12, 16, 27493, 34350, 26, 198, 198, 2, 19351, 220, 10934, 7952, 10088, 17593, 317, 28, 24861, 229, 158, 233, 227, 7, 3149, 945, 7, 87, 11, 89, 8, 24861, 229, 8, 329, 1277, 7695, 30927, 1540, 332, 41436, 198, 2, 2773, 4710, 25, 198, 2, 775, 1382, 262, 10088, 17593, 11777, 588, 428, 284, 6105, 1730, 351, 262, 3169, 40062, 18645, 3403, 379, 477, 13215, 13, 198, 2, 383, 3210, 13685, 505, 15280, 1720, 3164, 329, 2615, 29877, 10088, 2603, 45977, 3947, 284, 7716, 617, 8563, 379, 262, 13215, 13, 198, 2, 13398, 6608, 10488, 319, 48480, 10706, 13, 198, 2, 47426, 25, 1976, 12, 37295, 5752, 12, 3083, 11, 2124, 12, 37295, 5721, 12, 3083, 13, 198, 198, 2, 1439, 13369, 1729, 12, 22570, 10088, 12784, 198, 74, 796, 642, 9, 7, 27305, 532, 362, 27493, 7, 77, 87, 532, 362, 47762, 1303, 28145, 9189, 27923, 10088, 5726, 20157, 25, 642, 11, 1201, 1262, 642, 12, 4122, 27454, 12, 26069, 1945, 45219, 2856, 357, 7364, 12, 16760, 8, 198, 220, 220, 220, 362, 9, 7, 17, 9, 7, 27305, 532, 362, 8, 1343, 362, 9, 7, 77, 87, 532, 362, 47762, 220, 1303, 8406, 72, 27923, 1729, 12, 10215, 1008, 604, 12, 7784, 560, 20157, 1303, 329, 13215, 357, 17, 2173, 691, 8, 198, 220, 220, 220, 604, 1776, 1303, 8406, 72, 27923, 5228, 18645, 20157, 198, 2, 383, 29877, 3419, 2163, 318, 1690, 257, 15728, 835, 284, 5678, 29877, 2603, 45977, 13, 198, 2, 632, 2753, 355, 663, 5128, 257, 15879, 314, 286, 5752, 36525, 11, 257, 15879, 449, 286, 5721, 36525, 11, 290, 257, 15879, 569, 286, 1729, 22570, 3815, 13, 198, 2, 1338, 17208, 7, 40, 11, 41, 11, 53, 8, 34175, 257, 29877, 17593, 884, 326, 311, 58, 40, 58, 74, 4357, 449, 58, 74, 11907, 796, 569, 58, 74, 4083, 198, 528, 28, 19182, 90, 43879, 2414, 11, 16, 19629, 198, 844, 28, 19182, 90, 43879, 2414, 11, 16, 19629, 198, 528, 28, 33327, 7, 16, 25, 27305, 9, 77, 87, 1776, 1303, 976, 5752, 25, 5752, 6376, 28, 16, 14610, 30104, 1276, 423, 976, 4129, 685, 74, 60, 198, 844, 28, 33327, 7, 16, 25, 27305, 9, 77, 87, 1776, 1303, 5721, 36525, 198, 2100, 28, 9107, 418, 7, 27305, 9, 77, 87, 1776, 1303, 4036, 3815, 198, 198, 20541, 317, 28, 82, 29572, 7, 844, 11, 528, 11, 2100, 11, 27305, 9, 77, 87, 11, 27305, 9, 77, 87, 1776, 1303, 662, 12, 439, 13369, 29877, 10088, 17593, 317, 198, 198, 67, 89, 796, 288, 89, 13, 61, 17, 26, 1303, 329, 21654, 2174, 198, 34350, 796, 44332, 13, 61, 17, 26, 198, 35235, 7203, 12927, 20972, 1600, 288, 89, 9, 34350, 8, 198, 198, 2, 26171, 13610, 10088, 317, 329, 262, 11087, 2173, 357, 19419, 18645, 8, 3880, 26866, 198, 1640, 474, 796, 362, 1058, 299, 87, 532, 352, 1303, 11087, 2124, 357, 28665, 8, 9052, 357, 1640, 2033, 286, 5387, 13760, 8, 198, 220, 220, 220, 479, 796, 362, 1343, 299, 89, 9, 7, 73, 532, 352, 1776, 1303, 4238, 11087, 1976, 329, 428, 2124, 13, 1675, 4391, 422, 474, 357, 3605, 5721, 828, 761, 299, 89, 9, 986, 284, 5120, 284, 1306, 5721, 15879, 479, 198, 220, 220, 220, 329, 1312, 796, 362, 1058, 299, 89, 532, 352, 220, 1303, 11087, 1976, 357, 808, 8, 9052, 25, 198, 220, 220, 220, 220, 220, 220, 220, 317, 58, 74, 11, 74, 532, 299, 89, 60, 796, 764, 20, 9, 7, 3149, 945, 58, 72, 11, 73, 60, 1343, 29034, 945, 58, 72, 11, 73, 532, 352, 12962, 14, 34350, 26, 1303, 3867, 1364, 357, 392, 12560, 4036, 48480, 362, 35, 10706, 7090, 1988, 612, 8, 198, 220, 220, 220, 220, 220, 220, 220, 317, 58, 74, 11, 74, 532, 352, 60, 796, 764, 20, 9, 7, 3149, 945, 58, 72, 11, 73, 60, 1343, 29034, 945, 58, 72, 532, 352, 11, 73, 12962, 14, 67, 89, 26, 1303, 3867, 510, 262, 10706, 198, 220, 220, 220, 220, 220, 220, 220, 317, 58, 74, 11, 74, 60, 796, 532, 7, 3149, 945, 58, 72, 11, 73, 60, 1343, 764, 20, 9, 7, 3149, 945, 58, 72, 11, 73, 532, 352, 60, 1343, 29034, 945, 58, 72, 11, 73, 1343, 352, 60, 4008, 14, 34350, 532, 198, 220, 220, 220, 220, 220, 220, 220, 357, 3149, 945, 58, 72, 11, 73, 60, 1343, 764, 20, 9, 7, 3149, 945, 58, 72, 532, 352, 11, 73, 60, 1343, 29034, 945, 58, 72, 1343, 352, 11, 73, 60, 4008, 14, 67, 89, 26, 1303, 40039, 4847, 25, 18872, 229, 158, 233, 227, 59, 1150, 79, 945, 7, 87, 11, 89, 8, 24861, 229, 10488, 1262, 642, 29034, 945, 2173, 198, 220, 220, 220, 220, 220, 220, 220, 317, 58, 74, 11, 74, 1343, 352, 60, 796, 764, 20, 9, 7, 3149, 945, 58, 72, 11, 73, 60, 1343, 29034, 945, 58, 72, 1343, 352, 11, 73, 12962, 14, 67, 89, 26, 1303, 3867, 866, 262, 10706, 198, 220, 220, 220, 220, 220, 220, 220, 317, 58, 74, 11, 74, 1343, 299, 89, 60, 796, 764, 20, 9, 7, 3149, 945, 58, 72, 11, 73, 48688, 29034, 945, 58, 72, 11, 73, 1343, 352, 12962, 14, 34350, 26, 1303, 3867, 826, 319, 10706, 357, 31227, 299, 89, 3815, 284, 467, 284, 1306, 5721, 8, 198, 220, 220, 220, 220, 220, 220, 220, 479, 796, 479, 1343, 352, 26, 1303, 284, 1306, 1976, 198, 220, 220, 220, 886, 1303, 383, 41660, 317, 2846, 389, 4560, 416, 1021, 2644, 198, 437, 198, 198, 2, 32501, 13610, 10088, 317, 329, 262, 1353, 290, 4220, 13215, 1390, 3169, 40062, 3403, 357, 19419, 262, 14371, 8, 32501, 198, 198, 361, 7, 34453, 32109, 855, 12, 16, 8, 1303, 329, 705, 259, 4399, 6, 1917, 25, 2723, 5341, 645, 2597, 994, 11, 523, 655, 31935, 1976, 27498, 351, 1774, 2546, 13, 198, 197, 10677, 28, 9107, 418, 7, 27305, 11, 77, 87, 1776, 198, 198, 17772, 361, 7, 34453, 32109, 855, 16, 8, 1303, 329, 705, 11813, 6, 1917, 198, 197, 10677, 796, 12351, 58, 25, 11208, 1303, 15879, 1096, 2723, 357, 4758, 373, 2163, 5128, 4578, 8, 198, 437, 628, 198, 198, 1640, 474, 796, 362, 1058, 299, 87, 532, 352, 1303, 11087, 2124, 357, 28665, 8, 9052, 25, 198, 220, 220, 220, 479, 796, 352, 1343, 299, 89, 9, 7, 73, 532, 352, 1776, 2, 4238, 18645, 1976, 329, 428, 2124, 357, 74, 796, 1312, 1343, 285, 9, 7, 73, 532, 352, 4008, 198, 220, 220, 220, 329, 1312, 796, 685, 16, 299, 89, 60, 220, 1303, 4064, 5093, 1222, 5366, 18645, 1976, 357, 808, 8, 9052, 25, 198, 220, 220, 220, 220, 220, 220, 220, 267, 796, 479, 532, 2558, 7, 12683, 7, 72, 532, 764, 20, 9, 27305, 18125, 1303, 4, 1051, 2163, 15947, 3376, 4571, 284, 25, 29879, 422, 5093, 393, 5366, 18645, 1303, 284, 8160, 4571, 7, 6738, 18645, 866, 393, 510, 8, 198, 220, 220, 220, 220, 220, 220, 220, 317, 58, 74, 11, 74, 60, 796, 532, 32, 58, 78, 11, 74, 11208, 1303, 4, 1382, 287, 40686, 2644, 14610, 6908, 284, 651, 40686, 11, 262, 1306, 1627, 318, 3756, 13, 198, 220, 220, 220, 220, 220, 220, 220, 317, 58, 74, 11, 78, 60, 796, 532, 32, 58, 74, 11, 74, 11208, 1303, 4, 14241, 341, 15565, 16022, 1303, 3169, 40062, 25, 1988, 286, 46231, 796, 976, 13, 383, 10088, 857, 407, 760, 1988, 13, 2329, 4206, 468, 284, 34128, 734, 3815, 14610, 20208, 1051, 198, 220, 220, 220, 220, 220, 220, 220, 12351, 58, 74, 60, 796, 657, 26, 1303, 657, 284, 45423, 18645, 3815, 287, 2723, 3381, 2644, 357, 10091, 198, 220, 220, 220, 220, 220, 220, 220, 479, 796, 479, 1343, 299, 89, 532, 352, 26, 1303, 4, 422, 5093, 284, 5366, 18645, 198, 220, 220, 220, 886, 198, 437, 628, 198, 2, 13610, 317, 329, 262, 7627, 290, 7421, 13215, 1231, 5228, 2173, 198, 1640, 474, 796, 685, 16, 299, 87, 60, 1303, 7421, 1222, 7627, 18645, 2124, 357, 28665, 8, 9052, 25, 198, 220, 220, 220, 479, 796, 362, 1343, 299, 89, 9, 7, 73, 532, 352, 1776, 1303, 4, 4238, 11087, 1976, 329, 428, 2124, 357, 74, 796, 1312, 1343, 285, 9, 7, 73, 532, 352, 4008, 198, 220, 220, 220, 329, 1312, 796, 362, 1058, 299, 89, 532, 352, 1303, 11087, 1976, 357, 808, 8, 9052, 25, 198, 220, 220, 220, 220, 220, 220, 220, 267, 796, 479, 532, 2558, 7, 12683, 7, 73, 532, 764, 20, 9, 77, 87, 4008, 9, 27305, 26, 1303, 29879, 422, 7421, 393, 7627, 18645, 198, 220, 220, 220, 220, 220, 220, 220, 317, 58, 74, 11, 74, 60, 796, 532, 32, 58, 78, 11, 74, 11208, 1303, 4, 1382, 287, 40686, 2644, 198, 220, 220, 220, 220, 220, 220, 220, 317, 58, 74, 11, 78, 60, 796, 532, 32, 58, 74, 11, 74, 11208, 1303, 4, 14241, 341, 15565, 16022, 198, 220, 220, 220, 220, 220, 220, 220, 12351, 58, 74, 22241, 657, 26, 220, 1303, 4, 657, 284, 45423, 18645, 3815, 198, 220, 220, 220, 220, 220, 220, 220, 479, 796, 479, 1343, 352, 26, 1303, 4, 284, 1306, 1976, 198, 220, 220, 220, 886, 198, 886, 198, 198, 2, 13610, 317, 329, 262, 5228, 2173, 198, 1640, 474, 796, 685, 16, 299, 87, 60, 1303, 4, 7421, 1222, 7627, 18645, 2124, 357, 28665, 8, 9052, 25, 198, 220, 220, 220, 479, 796, 352, 1343, 299, 89, 9, 7, 73, 532, 352, 1776, 1303, 4, 923, 319, 5093, 18645, 198, 220, 220, 220, 329, 1312, 796, 685, 16, 299, 89, 60, 1303, 4, 5093, 1222, 5366, 18645, 331, 357, 808, 8, 9052, 25, 198, 220, 220, 220, 220, 220, 220, 267, 796, 479, 532, 2558, 7, 12683, 7, 72, 532, 764, 20, 9, 27305, 4008, 12, 1303, 4, 29879, 422, 5093, 393, 5366, 18645, 198, 220, 220, 220, 220, 220, 220, 220, 2558, 7, 12683, 7, 73, 532, 764, 20, 9, 77, 87, 4008, 9, 27305, 26, 1303, 29879, 422, 7421, 393, 7627, 18645, 1303, 734, 2846, 284, 1445, 40039, 198, 220, 220, 220, 220, 220, 220, 220, 317, 58, 74, 11, 74, 60, 796, 317, 58, 78, 11, 78, 11208, 1303, 4, 1729, 22570, 11, 47156, 30372, 19482, 2644, 198, 220, 220, 220, 220, 220, 220, 220, 317, 58, 74, 11, 78, 60, 796, 532, 32, 58, 74, 11, 74, 11208, 1303, 4, 2644, 14241, 341, 15565, 16022, 198, 220, 220, 220, 220, 220, 220, 220, 12351, 58, 74, 60, 796, 657, 26, 1303, 4, 657, 284, 45423, 18645, 3815, 198, 220, 220, 220, 220, 220, 220, 220, 479, 796, 479, 1343, 299, 89, 532, 352, 26, 1303, 4, 422, 5093, 284, 5366, 18645, 198, 220, 220, 220, 886, 198, 886, 198, 198, 361, 7, 34453, 32109, 6624, 532, 16, 8, 1303, 1640, 34062, 1917, 25, 7032, 1343, 7090, 14610, 2723, 3381, 198, 197, 381, 62, 35138, 28, 381, 58, 25, 11208, 1303, 15879, 1096, 362, 35, 279, 382, 3833, 2214, 357, 38169, 284, 4009, 10088, 317, 737, 198, 197, 7146, 73, 10779, 3447, 1758, 7, 32, 9, 381, 62, 35138, 11, 27305, 11, 77, 87, 1776, 628, 220, 220, 220, 220, 197, 7783, 2659, 73, 220, 1303, 2163, 3141, 14610, 1441, 777, 9633, 11, 287, 428, 1339, 12278, 2723, 3381, 18872, 229, 158, 233, 227, 73, 357, 1484, 287, 34062, 1917, 8, 628, 198, 198, 17772, 361, 7, 34453, 32109, 855, 16, 8, 1303, 2651, 1917, 25, 2723, 10, 24132, 14610, 7032, 198, 2, 1675, 705, 13049, 6, 262, 9242, 13200, 11, 290, 787, 262, 2723, 6414, 351, 262, 9242, 13200, 14610, 407, 1464, 3049, 14, 31673, 49299, 1201, 198, 2, 474, 43640, 736, 6649, 1077, 10088, 857, 407, 588, 1729, 12, 23415, 2603, 45977, 986, 357, 10091, 198, 197, 2, 844, 28, 19182, 90, 43879, 2414, 11, 16, 19629, 198, 197, 2, 844, 28, 1952, 7, 27305, 9, 77, 87, 1776, 1303, 976, 5752, 25, 5752, 6376, 28, 16, 198, 197, 2, 528, 28, 33327, 7, 16, 25, 27305, 9, 77, 87, 1776, 1303, 5721, 36525, 198, 197, 2, 85, 28, 1952, 7, 27305, 9, 77, 87, 1776, 1303, 4036, 3815, 198, 197, 2, 261, 368, 265, 28, 82, 29572, 7, 844, 11, 528, 11, 85, 1776, 198, 197, 2, 317, 796, 685, 261, 368, 265, 26, 32, 11208, 1303, 4259, 9242, 2272, 198, 197, 2, 46231, 796, 27179, 1758, 7, 32, 59, 58, 15, 26, 12351, 4357, 299, 89, 11, 299, 87, 1776, 1303, 787, 2723, 6414, 351, 9242, 2272, 628, 198, 197, 862, 72, 62, 35138, 28, 32, 59, 10677, 58, 25, 11208, 1303, 1277, 34062, 8494, 1262, 736, 6649, 1077, 10088, 198, 197, 862, 72, 796, 27179, 1758, 7, 862, 72, 62, 35138, 11, 299, 89, 11, 299, 87, 1776, 1303, 27179, 1758, 12278, 2785, 15879, 46231, 656, 362, 35, 12278, 2785, 3975, 357, 89, 11, 87, 8, 198, 197, 862, 72, 796, 46231, 764, 12, 20595, 14881, 13, 32604, 7, 29668, 14881, 13, 32604, 7, 862, 72, 18125, 1303, 5559, 284, 705, 13049, 6, 9242, 13200, 25, 787, 6632, 12, 32604, 986, 198, 2, 197, 10677, 28, 3447, 1758, 7, 10677, 11, 27305, 11, 77, 87, 1776, 1303, 27179, 1758, 2723, 15879, 656, 362, 35, 2723, 3975, 329, 29353, 4959, 691, 13, 628, 220, 220, 220, 220, 197, 7783, 46231, 11, 32, 220, 1303, 2163, 3141, 14610, 1441, 777, 9633, 11, 287, 428, 1339, 12278, 2785, 18074, 230, 198, 437, 1303, 886, 1540, 32109, 611, 2643, 198, 198, 437, 1303, 2163, 3141, 628, 198, 198, 437, 1303, 886, 8265, 7695, 30927, 628 ]
2.845886
2,868
<gh_stars>1-10 #function testNHHill_L() using CGDycore # Physical parameters Param=CGDycore.PhysParameters(); nx=60; ny=2; lx=6000000; ly=200000; x0=-3000000; y0=0; Boundary = (;WE="Period", BT="Period") Param.Grid=CGDycore.CartGrid(nx,ny,lx,ly,x0,y0,CGDycore.OrientFaceCart,Boundary,Param); Param.TopoS="AgnesiCartX"; Param.H=15600; nz=40; zP=zeros(nz,1); z=zeros(nz+1,1); dz=Param.H/nz; zP[1]=dz/2; for i=2:nz zP[i]=zP[i-1]+dz; end for i=2:nz+1 z[i]=z[i-1]+dz; end Param.Grid.nz=nz; Param.Grid.z=z; Param.Grid.zP=zP; Param.Grid.dz=dz; # Model Param.ModelType="Curl"; Param.Coriolis=false; Param.Thermo=""; Param.Source=false; Param.StrideDamp=6000; Param.Relax=1.e-1; Param.Damping=true; Param.Flat=false; Param.Coriolis=false; Param.Buoyancy=true; Param.hC=400; Param.x0C=0; Param.aC=100000; Param.Th0=300; Param.uMax=10; Param.vMax=0; Param.NBr=1.e-2; Param.Equation="Compressible"; Param.RefProfile=false # Discretization OrdPoly=4; OrdPolyZ=1; (CG,Param)=CGDycore.Discretization(OrdPoly,OrdPolyZ,CGDycore.JacobiDG3,Param); Param.HyperVisc=true; Param.HyperDCurl=1.e4; Param.HyperDGrad=1.e4; Param.HyperDDiv=1.e4; Param.Upwind=false # Initial conditions Param.NumV=5; U=zeros(CG.NumG,nz,Param.NumV); Param.ProfRho="GravityHill"; Param.ProfTheta="GravityHill"; Param.ProfVel="Const"; Param.RhoPos=1; Param.uPos=2; Param.vPos=3; Param.wPos=4; Param.ThPos=5; U[:,:,Param.RhoPos]=CGDycore.Project(CGDycore.fRho,CG,Param); (U[:,:,Param.uPos],U[:,:,Param.vPos])=CGDycore.ProjectVec(CGDycore.fVel,CG,Param); U[:,:,Param.ThPos]=CGDycore.Project(CGDycore.fTheta,CG,Param).*U[:,:,Param.RhoPos]; # Output Param.vtkFileName="Hill_L"; Param.vtk=0; vtkGrid=CGDycore.vtkCGGrid(CG,CGDycore.TransCart,CGDycore.Topo,Param); Param.cNames = [ "Rho", "u", "v", "w", "Th" ] IntMethod="Rosenbrock"; #IntMethod="RungeKutta"; if strcmp(IntMethod,"Rosenbrock") dtau=30; else dtau=.4; end nIter=6000; Param.RK=CGDycore.RungeKuttaMethod("RK4"); Param.ROS=CGDycore.RosenbrockMethod("SSP-Knoth"); CFL=0.125; time=0; Param.EndTime=216000; nIter=Param.EndTime/dtau; PrintTime=10000; PrintInt=floor(PrintTime/dtau); Param.vtk=CGDycore.vtkOutput(U,vtkGrid,CG,Param); nIter=20 # Print initial conditions Param.vtk=CGDycore.vtkOutput(U,vtkGrid,CG,Param); # str = IntMethod if str == "Rosenbrock" @time begin for i=1:nIter @info "Iteration: $i" @show dtau U .= CGDycore.RosenbrockSchur(U,dtau,CGDycore.FcnNHCurlVec,CGDycore.JacSchur,CG,Param); if mod(i,PrintInt)==0 Param.vtk=CGDycore.vtkOutput(U,vtkGrid,CG,Param); end end end elseif str == "RungeKutta" for i=1:nIter @info "Iteration: $i" U .= CGDycore.RungeKuttaExplicit(U,dtau,CGDycore.FcnNHCurlVec,CG,Param); time[1] += dtau; if mod(i,PrintInt)==0 Param.vtk=CGDycore.vtkOutput(U,vtkGrid,CG,Param); end end else error("Bad str") end
[ 27, 456, 62, 30783, 29, 16, 12, 940, 198, 2, 8818, 1332, 45, 16768, 359, 62, 43, 3419, 198, 198, 3500, 29925, 35, 88, 7295, 198, 198, 2, 16331, 10007, 198, 22973, 28, 39816, 35, 88, 7295, 13, 43215, 48944, 9783, 198, 198, 77, 87, 28, 1899, 26, 198, 3281, 28, 17, 26, 198, 75, 87, 28, 21, 10535, 26, 198, 306, 28, 33470, 26, 198, 87, 15, 10779, 18, 10535, 26, 198, 88, 15, 28, 15, 26, 198, 198, 49646, 560, 796, 357, 26, 8845, 2625, 5990, 2101, 1600, 22205, 2625, 5990, 2101, 4943, 198, 22973, 13, 41339, 28, 39816, 35, 88, 7295, 13, 43476, 41339, 7, 77, 87, 11, 3281, 11, 75, 87, 11, 306, 11, 87, 15, 11, 88, 15, 11, 39816, 35, 88, 7295, 13, 46, 8289, 32388, 43476, 11, 49646, 560, 11, 22973, 1776, 198, 22973, 13, 9126, 34049, 2625, 10262, 2516, 72, 43476, 55, 8172, 198, 198, 22973, 13, 39, 28, 1314, 8054, 26, 198, 27305, 28, 1821, 26, 198, 89, 47, 28, 9107, 418, 7, 27305, 11, 16, 1776, 198, 89, 28, 9107, 418, 7, 27305, 10, 16, 11, 16, 1776, 198, 67, 89, 28, 22973, 13, 39, 14, 27305, 26, 198, 89, 47, 58, 16, 22241, 67, 89, 14, 17, 26, 198, 1640, 1312, 28, 17, 25, 27305, 198, 220, 1976, 47, 58, 72, 22241, 89, 47, 58, 72, 12, 16, 48688, 67, 89, 26, 198, 437, 198, 1640, 1312, 28, 17, 25, 27305, 10, 16, 198, 220, 1976, 58, 72, 22241, 89, 58, 72, 12, 16, 48688, 67, 89, 26, 198, 437, 198, 198, 22973, 13, 41339, 13, 27305, 28, 27305, 26, 198, 22973, 13, 41339, 13, 89, 28, 89, 26, 198, 22973, 13, 41339, 13, 89, 47, 28, 89, 47, 26, 198, 22973, 13, 41339, 13, 67, 89, 28, 67, 89, 26, 198, 198, 2, 9104, 198, 22973, 13, 17633, 6030, 2625, 34, 6371, 8172, 198, 22973, 13, 10606, 1669, 271, 28, 9562, 26, 198, 22973, 13, 35048, 5908, 2625, 8172, 198, 22973, 13, 7416, 28, 9562, 26, 198, 22973, 13, 1273, 13154, 35, 696, 28, 43434, 26, 198, 22973, 13, 6892, 897, 28, 16, 13, 68, 12, 16, 26, 198, 22973, 13, 35, 37843, 28, 7942, 26, 198, 22973, 13, 7414, 265, 28, 9562, 26, 198, 22973, 13, 10606, 1669, 271, 28, 9562, 26, 198, 22973, 13, 38374, 726, 3883, 28, 7942, 26, 198, 22973, 13, 71, 34, 28, 7029, 26, 198, 22973, 13, 87, 15, 34, 28, 15, 26, 198, 22973, 13, 64, 34, 28, 3064, 830, 26, 198, 22973, 13, 817, 15, 28, 6200, 26, 198, 22973, 13, 84, 11518, 28, 940, 26, 198, 22973, 13, 85, 11518, 28, 15, 26, 198, 22973, 13, 45, 9414, 28, 16, 13, 68, 12, 17, 26, 198, 22973, 13, 23588, 341, 2625, 7293, 601, 856, 8172, 198, 22973, 13, 8134, 37046, 28, 9562, 628, 198, 2, 8444, 1186, 1634, 198, 35422, 34220, 28, 19, 26, 198, 35422, 34220, 57, 28, 16, 26, 198, 7, 39816, 11, 22973, 47505, 39816, 35, 88, 7295, 13, 15642, 1186, 1634, 7, 35422, 34220, 11, 35422, 34220, 57, 11, 39816, 35, 88, 7295, 13, 28821, 13411, 35, 38, 18, 11, 22973, 1776, 198, 22973, 13, 38197, 53, 2304, 28, 7942, 26, 198, 22973, 13, 38197, 9697, 6371, 28, 16, 13, 68, 19, 26, 198, 22973, 13, 38197, 35, 42731, 28, 16, 13, 68, 19, 26, 198, 22973, 13, 38197, 16458, 452, 28, 16, 13, 68, 19, 26, 198, 22973, 13, 4933, 7972, 28, 9562, 628, 198, 2, 20768, 3403, 198, 22973, 13, 33111, 53, 28, 20, 26, 198, 52, 28, 9107, 418, 7, 39816, 13, 33111, 38, 11, 27305, 11, 22973, 13, 33111, 53, 1776, 198, 22973, 13, 15404, 49, 8873, 2625, 38, 16995, 36369, 8172, 198, 22973, 13, 15404, 464, 8326, 2625, 38, 16995, 36369, 8172, 198, 22973, 13, 15404, 46261, 2625, 34184, 8172, 198, 22973, 13, 49, 8873, 21604, 28, 16, 26, 198, 22973, 13, 84, 21604, 28, 17, 26, 198, 22973, 13, 85, 21604, 28, 18, 26, 198, 22973, 13, 86, 21604, 28, 19, 26, 198, 22973, 13, 817, 21604, 28, 20, 26, 198, 52, 58, 45299, 45299, 22973, 13, 49, 8873, 21604, 22241, 39816, 35, 88, 7295, 13, 16775, 7, 39816, 35, 88, 7295, 13, 69, 49, 8873, 11, 39816, 11, 22973, 1776, 198, 7, 52, 58, 45299, 45299, 22973, 13, 84, 21604, 4357, 52, 58, 45299, 45299, 22973, 13, 85, 21604, 12962, 28, 39816, 35, 88, 7295, 13, 16775, 53, 721, 7, 39816, 35, 88, 7295, 13, 69, 46261, 11, 39816, 11, 22973, 1776, 198, 52, 58, 45299, 45299, 22973, 13, 817, 21604, 22241, 39816, 35, 88, 7295, 13, 16775, 7, 39816, 35, 88, 7295, 13, 69, 464, 8326, 11, 39816, 11, 22973, 737, 9, 52, 58, 45299, 45299, 22973, 13, 49, 8873, 21604, 11208, 198, 198, 2, 25235, 198, 22973, 13, 85, 30488, 8979, 5376, 2625, 36369, 62, 43, 8172, 198, 22973, 13, 85, 30488, 28, 15, 26, 198, 85, 30488, 41339, 28, 39816, 35, 88, 7295, 13, 85, 30488, 34, 11190, 6058, 7, 39816, 11, 39816, 35, 88, 7295, 13, 8291, 43476, 11, 39816, 35, 88, 7295, 13, 9126, 78, 11, 22973, 1776, 198, 22973, 13, 66, 36690, 796, 685, 198, 220, 366, 49, 8873, 1600, 198, 220, 366, 84, 1600, 198, 220, 366, 85, 1600, 198, 220, 366, 86, 1600, 198, 220, 366, 817, 1, 198, 60, 628, 198, 5317, 17410, 2625, 49, 5233, 7957, 694, 8172, 198, 2, 5317, 17410, 2625, 10987, 469, 42, 315, 8326, 8172, 198, 361, 965, 48991, 7, 5317, 17410, 553, 49, 5233, 7957, 694, 4943, 198, 220, 288, 83, 559, 28, 1270, 26, 198, 17772, 198, 220, 288, 83, 559, 28, 13, 19, 26, 198, 437, 198, 77, 29993, 28, 43434, 26, 198, 22973, 13, 49, 42, 28, 39816, 35, 88, 7295, 13, 10987, 469, 42, 315, 8326, 17410, 7203, 49, 42, 19, 15341, 198, 22973, 13, 49, 2640, 28, 39816, 35, 88, 7295, 13, 49, 5233, 7957, 694, 17410, 7203, 50, 4303, 12, 25095, 849, 15341, 198, 34, 3697, 28, 15, 13, 11623, 26, 198, 2435, 28, 15, 26, 198, 22973, 13, 12915, 7575, 28, 20666, 830, 26, 198, 77, 29993, 28, 22973, 13, 12915, 7575, 14, 28664, 559, 26, 198, 18557, 7575, 28, 49388, 26, 198, 18557, 5317, 28, 28300, 7, 18557, 7575, 14, 28664, 559, 1776, 198, 22973, 13, 85, 30488, 28, 39816, 35, 88, 7295, 13, 85, 30488, 26410, 7, 52, 11, 85, 30488, 41339, 11, 39816, 11, 22973, 1776, 198, 77, 29993, 28, 1238, 198, 198, 2, 12578, 4238, 3403, 198, 22973, 13, 85, 30488, 28, 39816, 35, 88, 7295, 13, 85, 30488, 26410, 7, 52, 11, 85, 30488, 41339, 11, 39816, 11, 22973, 1776, 198, 2, 198, 198, 2536, 796, 2558, 17410, 198, 361, 965, 6624, 366, 49, 5233, 7957, 694, 1, 198, 220, 220, 220, 2488, 2435, 2221, 198, 220, 220, 220, 220, 220, 329, 1312, 28, 16, 25, 77, 29993, 198, 220, 220, 220, 220, 220, 220, 220, 2488, 10951, 366, 29993, 341, 25, 720, 72, 1, 198, 220, 220, 220, 220, 220, 220, 220, 2488, 12860, 288, 83, 559, 198, 220, 220, 220, 220, 220, 220, 220, 471, 764, 28, 29925, 35, 88, 7295, 13, 49, 5233, 7957, 694, 14874, 333, 7, 52, 11, 28664, 559, 11, 39816, 35, 88, 7295, 13, 37, 31522, 45, 16045, 6371, 53, 721, 11, 39816, 35, 88, 7295, 13, 28821, 14874, 333, 11, 39816, 11, 22973, 1776, 198, 220, 220, 220, 220, 220, 220, 220, 611, 953, 7, 72, 11, 18557, 5317, 8, 855, 15, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 25139, 13, 85, 30488, 28, 39816, 35, 88, 7295, 13, 85, 30488, 26410, 7, 52, 11, 85, 30488, 41339, 11, 39816, 11, 22973, 1776, 198, 220, 220, 220, 220, 220, 220, 220, 886, 198, 220, 220, 220, 220, 220, 886, 198, 220, 220, 220, 886, 198, 198, 17772, 361, 965, 6624, 366, 10987, 469, 42, 315, 8326, 1, 198, 220, 220, 220, 329, 1312, 28, 16, 25, 77, 29993, 198, 220, 220, 220, 220, 220, 2488, 10951, 366, 29993, 341, 25, 720, 72, 1, 628, 220, 220, 220, 220, 220, 471, 764, 28, 29925, 35, 88, 7295, 13, 10987, 469, 42, 315, 8326, 18438, 3628, 7, 52, 11, 28664, 559, 11, 39816, 35, 88, 7295, 13, 37, 31522, 45, 16045, 6371, 53, 721, 11, 39816, 11, 22973, 1776, 628, 220, 220, 220, 220, 220, 640, 58, 16, 60, 15853, 288, 83, 559, 26, 198, 220, 220, 220, 220, 220, 611, 953, 7, 72, 11, 18557, 5317, 8, 855, 15, 198, 220, 220, 220, 220, 220, 220, 220, 25139, 13, 85, 30488, 28, 39816, 35, 88, 7295, 13, 85, 30488, 26410, 7, 52, 11, 85, 30488, 41339, 11, 39816, 11, 22973, 1776, 198, 220, 220, 220, 220, 220, 886, 198, 220, 220, 220, 886, 198, 17772, 198, 220, 4049, 7203, 22069, 965, 4943, 198, 437, 628, 628, 198 ]
1.974255
1,476
const FIELDS = Dict( :name => (String, 0, 100), :mode => (Int, 100, 8), :uid => (Int, 108, 8), :gid => (Int, 116, 8), :size => (Int, 124, 12), :mtime => (Int, 136, 12), :chksum => (Int, 148, 8), :typeflag => (Char, 156, 1), :linkname => (String, 157, 100), :magic => (String, 257, 6), :version => (String, 263, 2), :uname => (String, 265, 32), :gname => (String, 297, 32), :devmajor => (Int, 329, 8), :devminor => (Int, 337, 8), :prefix => (String, 345, 155), ) function field_data(buf::Vector{UInt8}, field::Symbol) type, offset, len = FIELDS[field] return String(buf[offset .+ (1:len)]) end function parse_header(buf::Vector{UInt8}) Dict(f => field_data(buf, f) for f in keys(FIELDS)) end
[ 9979, 18930, 3698, 5258, 796, 360, 713, 7, 198, 220, 220, 220, 1058, 3672, 220, 220, 220, 220, 220, 220, 5218, 357, 10100, 11, 220, 220, 657, 11, 1802, 828, 198, 220, 220, 220, 1058, 14171, 220, 220, 220, 220, 220, 220, 5218, 357, 5317, 11, 220, 220, 220, 1802, 11, 220, 220, 807, 828, 198, 220, 220, 220, 1058, 27112, 220, 220, 220, 220, 220, 220, 220, 5218, 357, 5317, 11, 220, 220, 220, 15495, 11, 220, 220, 807, 828, 198, 220, 220, 220, 1058, 70, 312, 220, 220, 220, 220, 220, 220, 220, 5218, 357, 5317, 11, 220, 220, 220, 18693, 11, 220, 220, 807, 828, 198, 220, 220, 220, 1058, 7857, 220, 220, 220, 220, 220, 220, 5218, 357, 5317, 11, 220, 220, 220, 19755, 11, 220, 1105, 828, 198, 220, 220, 220, 1058, 76, 2435, 220, 220, 220, 220, 220, 5218, 357, 5317, 11, 220, 220, 220, 21056, 11, 220, 1105, 828, 198, 220, 220, 220, 1058, 354, 591, 388, 220, 220, 220, 220, 5218, 357, 5317, 11, 220, 220, 220, 22613, 11, 220, 220, 807, 828, 198, 220, 220, 220, 1058, 4906, 32109, 220, 220, 5218, 357, 12441, 11, 220, 220, 23871, 11, 220, 220, 352, 828, 198, 220, 220, 220, 1058, 8726, 3672, 220, 220, 5218, 357, 10100, 11, 23313, 11, 1802, 828, 198, 220, 220, 220, 1058, 32707, 220, 220, 220, 220, 220, 5218, 357, 10100, 11, 36100, 11, 220, 220, 718, 828, 198, 220, 220, 220, 1058, 9641, 220, 220, 220, 5218, 357, 10100, 11, 39135, 11, 220, 220, 362, 828, 198, 220, 220, 220, 1058, 403, 480, 220, 220, 220, 220, 220, 5218, 357, 10100, 11, 32090, 11, 220, 3933, 828, 198, 220, 220, 220, 1058, 70, 3672, 220, 220, 220, 220, 220, 5218, 357, 10100, 11, 41103, 11, 220, 3933, 828, 198, 220, 220, 220, 1058, 7959, 22478, 220, 220, 5218, 357, 5317, 11, 220, 220, 220, 42141, 11, 220, 220, 807, 828, 198, 220, 220, 220, 1058, 7959, 1084, 273, 220, 220, 5218, 357, 5317, 11, 220, 220, 220, 42294, 11, 220, 220, 807, 828, 198, 220, 220, 220, 1058, 40290, 220, 220, 220, 220, 5218, 357, 10100, 11, 39937, 11, 20708, 828, 198, 8, 198, 198, 8818, 2214, 62, 7890, 7, 29325, 3712, 38469, 90, 52, 5317, 23, 5512, 2214, 3712, 13940, 23650, 8, 198, 220, 220, 220, 2099, 11, 11677, 11, 18896, 796, 18930, 3698, 5258, 58, 3245, 60, 198, 220, 220, 220, 1441, 10903, 7, 29325, 58, 28968, 764, 10, 357, 16, 25, 11925, 8, 12962, 198, 437, 198, 198, 8818, 21136, 62, 25677, 7, 29325, 3712, 38469, 90, 52, 5317, 23, 30072, 198, 220, 220, 220, 360, 713, 7, 69, 5218, 2214, 62, 7890, 7, 29325, 11, 277, 8, 329, 277, 287, 8251, 7, 11674, 3698, 5258, 4008, 198, 437, 198 ]
1.909871
466
""" x = admm(A, B; ...) Solves non-negative least-squares problem by the Alternating Direction Method of Multipliers (ADMM). Optional arguments: ρ: penalty parameter (set heuristically by default) ε: tolerance for stopping (small number times sqrt[m*n] by default) References: <NAME>, <NAME>, <NAME>, <NAME>, and <NAME> (2011). Distributed Optimization and Statistical Learning via the Alternating Direction Method of Multipliers. Foundations and Trends in Machine Learning. http://stanford.edu/~eryu/nnlsqr.html """ function admm(A::Matrix{Float64}, B::Matrix{Float64}; ρ=max(0.1,vecnorm(A)^2/size(A,2)), ε=sqrt(size(A,2)*size(B,2))*1e-15, kwargs...) # Dimensions m,k = size(A) n = size(B,2) # Cache matrices AtB = A'*B AtAρ = A'*A + eye(k)*ρ # Cache cholesky factorization L = cholfact(AtAρ) # Matrix storing the solutions X = zeros(k,n) # Initialize variables Z,U = zeros(k,n),zeros(k,n) X = L \ (AtB+ρ*(Z-U)) # Solve while vecnorm(X-Z) > ε Z = max(0,X+U) U = U+X-Z X = L \ (AtB+ρ*(Z-U)) end # Z ≈ X, return Z because nonnegativity is strictly enforced return Z end
[ 37811, 198, 87, 796, 512, 3020, 7, 32, 11, 347, 26, 2644, 8, 198, 198, 50, 9010, 1729, 12, 31591, 1551, 12, 16485, 3565, 1917, 416, 262, 13243, 803, 41837, 11789, 198, 1659, 15237, 489, 3183, 357, 2885, 12038, 737, 198, 198, 30719, 7159, 25, 198, 220, 220, 220, 18074, 223, 25, 7389, 11507, 357, 2617, 339, 333, 16772, 416, 4277, 8, 198, 220, 220, 220, 7377, 113, 25, 15621, 329, 12225, 357, 17470, 1271, 1661, 19862, 17034, 58, 76, 9, 77, 60, 416, 4277, 8, 198, 198, 19927, 25, 198, 220, 220, 220, 1279, 20608, 22330, 1279, 20608, 22330, 1279, 20608, 22330, 1279, 20608, 22330, 290, 1279, 20608, 29, 357, 9804, 737, 4307, 6169, 198, 220, 220, 220, 30011, 1634, 290, 34931, 18252, 2884, 262, 13243, 803, 41837, 11789, 198, 220, 220, 220, 286, 15237, 489, 3183, 13, 4062, 602, 290, 34308, 287, 10850, 18252, 13, 628, 220, 220, 220, 2638, 1378, 14192, 3841, 13, 15532, 14, 93, 1924, 84, 14, 20471, 7278, 80, 81, 13, 6494, 198, 37811, 198, 8818, 512, 3020, 7, 32, 3712, 46912, 90, 43879, 2414, 5512, 198, 197, 220, 220, 220, 220, 220, 220, 220, 220, 220, 347, 3712, 46912, 90, 43879, 2414, 19629, 198, 197, 220, 220, 220, 220, 220, 220, 220, 220, 220, 18074, 223, 28, 9806, 7, 15, 13, 16, 11, 35138, 27237, 7, 32, 8, 61, 17, 14, 7857, 7, 32, 11, 17, 36911, 198, 197, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7377, 113, 28, 31166, 17034, 7, 7857, 7, 32, 11, 17, 27493, 7857, 7, 33, 11, 17, 4008, 9, 16, 68, 12, 1314, 11, 198, 197, 220, 220, 220, 220, 220, 220, 220, 220, 220, 479, 86, 22046, 23029, 628, 197, 2, 41265, 198, 197, 76, 11, 74, 796, 2546, 7, 32, 8, 198, 197, 77, 796, 2546, 7, 33, 11, 17, 8, 628, 197, 2, 34088, 2603, 45977, 198, 197, 2953, 33, 796, 317, 6, 9, 33, 220, 198, 197, 2953, 32, 33643, 796, 317, 6, 9, 32, 1343, 4151, 7, 74, 27493, 33643, 628, 197, 2, 34088, 442, 4316, 2584, 5766, 1634, 198, 197, 43, 796, 442, 4024, 529, 7, 2953, 32, 33643, 8, 198, 197, 198, 197, 2, 24936, 23069, 262, 8136, 198, 197, 55, 796, 1976, 27498, 7, 74, 11, 77, 8, 628, 197, 2, 20768, 1096, 9633, 197, 198, 197, 57, 11, 52, 796, 1976, 27498, 7, 74, 11, 77, 828, 9107, 418, 7, 74, 11, 77, 8, 198, 197, 55, 796, 406, 3467, 357, 2953, 33, 10, 33643, 9, 7, 57, 12, 52, 4008, 198, 197, 198, 197, 2, 4294, 303, 198, 197, 4514, 43030, 27237, 7, 55, 12, 57, 8, 1875, 7377, 113, 198, 197, 197, 57, 796, 3509, 7, 15, 11, 55, 10, 52, 8, 198, 197, 197, 52, 796, 471, 10, 55, 12, 57, 198, 197, 197, 55, 796, 406, 3467, 357, 2953, 33, 10, 33643, 9, 7, 57, 12, 52, 4008, 198, 197, 437, 628, 197, 2, 1168, 15139, 230, 1395, 11, 1441, 1168, 780, 1729, 12480, 22055, 318, 14084, 20326, 198, 197, 7783, 1168, 198, 437, 628 ]
2.294347
513
@testset "lmm" begin rng = MersenneTwister(123) FDM = FiniteDifferences.central_fdm(5, 1) N = 10 in_dim = 3 out_dim = 6 x1 = MOInput([rand(rng, in_dim) for _ in 1:N], out_dim) x2 = MOInput([rand(rng, in_dim) for _ in 1:N], out_dim) H = rand(4, 6) k = LinearMixingModelKernel( [Matern32Kernel(), SqExponentialKernel(), FBMKernel(), Matern32Kernel()], H ) @test k isa LinearMixingModelKernel @test k isa MOKernel @test k isa Kernel @test k(x1[1], x2[1]) isa Real @test string(k) == "Linear Mixing Model Multi-Output Kernel" @test repr("text/plain", k) == ( "Linear Mixing Model Multi-Output Kernel. Kernels:\n" * "\tMatern 3/2 Kernel (metric = Euclidean(0.0))\n" * "\tSquared Exponential Kernel (metric = Euclidean(0.0))\n" * "\tFractional Brownian Motion Kernel (h = 0.5)\n" * "\tMatern 3/2 Kernel (metric = Euclidean(0.0))" ) k = LinearMixingModelKernel(SEKernel(), H) @test k isa LinearMixingModelKernel @test k isa MOKernel @test k isa Kernel @test length(k.K) == 4 for kernel in k.K @test isa(kernel, SEKernel) end @test string(k) == "Linear Mixing Model Multi-Output Kernel" @test repr("text/plain", k) == ( "Linear Mixing Model Multi-Output Kernel. Kernels:\n" * "\tSquared Exponential Kernel (metric = Euclidean(0.0))\n" * "\tSquared Exponential Kernel (metric = Euclidean(0.0))\n" * "\tSquared Exponential Kernel (metric = Euclidean(0.0))\n" * "\tSquared Exponential Kernel (metric = Euclidean(0.0))" ) test_ADs(k) end
[ 31, 9288, 2617, 366, 75, 3020, 1, 2221, 198, 220, 220, 220, 374, 782, 796, 337, 364, 29727, 5080, 1694, 7, 10163, 8, 198, 220, 220, 220, 376, 23127, 796, 4463, 578, 28813, 4972, 13, 31463, 62, 16344, 76, 7, 20, 11, 352, 8, 198, 220, 220, 220, 399, 796, 838, 198, 220, 220, 220, 287, 62, 27740, 796, 513, 198, 220, 220, 220, 503, 62, 27740, 796, 718, 198, 220, 220, 220, 2124, 16, 796, 13070, 20560, 26933, 25192, 7, 81, 782, 11, 287, 62, 27740, 8, 329, 4808, 287, 352, 25, 45, 4357, 503, 62, 27740, 8, 198, 220, 220, 220, 2124, 17, 796, 13070, 20560, 26933, 25192, 7, 81, 782, 11, 287, 62, 27740, 8, 329, 4808, 287, 352, 25, 45, 4357, 503, 62, 27740, 8, 198, 220, 220, 220, 367, 796, 43720, 7, 19, 11, 718, 8, 628, 220, 220, 220, 479, 796, 44800, 35608, 278, 17633, 42, 7948, 7, 198, 220, 220, 220, 220, 220, 220, 220, 685, 44, 9205, 2624, 42, 7948, 22784, 311, 80, 16870, 35470, 42, 7948, 22784, 376, 12261, 42, 7948, 22784, 337, 9205, 2624, 42, 7948, 3419, 4357, 367, 198, 220, 220, 220, 1267, 198, 220, 220, 220, 2488, 9288, 479, 318, 64, 44800, 35608, 278, 17633, 42, 7948, 198, 220, 220, 220, 2488, 9288, 479, 318, 64, 337, 11380, 7948, 198, 220, 220, 220, 2488, 9288, 479, 318, 64, 32169, 198, 220, 220, 220, 2488, 9288, 479, 7, 87, 16, 58, 16, 4357, 2124, 17, 58, 16, 12962, 318, 64, 6416, 628, 220, 220, 220, 2488, 9288, 4731, 7, 74, 8, 6624, 366, 14993, 451, 15561, 278, 9104, 15237, 12, 26410, 32169, 1, 198, 220, 220, 220, 2488, 9288, 41575, 7203, 5239, 14, 25638, 1600, 479, 8, 6624, 357, 198, 220, 220, 220, 220, 220, 220, 220, 366, 14993, 451, 15561, 278, 9104, 15237, 12, 26410, 32169, 13, 509, 44930, 7479, 77, 1, 1635, 198, 220, 220, 220, 220, 220, 220, 220, 37082, 83, 44, 9205, 513, 14, 17, 32169, 357, 4164, 1173, 796, 48862, 485, 272, 7, 15, 13, 15, 4008, 59, 77, 1, 1635, 198, 220, 220, 220, 220, 220, 220, 220, 37082, 83, 22266, 1144, 5518, 35470, 32169, 357, 4164, 1173, 796, 48862, 485, 272, 7, 15, 13, 15, 4008, 59, 77, 1, 1635, 198, 220, 220, 220, 220, 220, 220, 220, 37082, 83, 37, 7861, 282, 4373, 666, 20843, 32169, 357, 71, 796, 657, 13, 20, 19415, 77, 1, 1635, 198, 220, 220, 220, 220, 220, 220, 220, 37082, 83, 44, 9205, 513, 14, 17, 32169, 357, 4164, 1173, 796, 48862, 485, 272, 7, 15, 13, 15, 4008, 1, 198, 220, 220, 220, 1267, 628, 220, 220, 220, 479, 796, 44800, 35608, 278, 17633, 42, 7948, 7, 5188, 42, 7948, 22784, 367, 8, 628, 220, 220, 220, 2488, 9288, 479, 318, 64, 44800, 35608, 278, 17633, 42, 7948, 198, 220, 220, 220, 2488, 9288, 479, 318, 64, 337, 11380, 7948, 198, 220, 220, 220, 2488, 9288, 479, 318, 64, 32169, 198, 220, 220, 220, 2488, 9288, 4129, 7, 74, 13, 42, 8, 6624, 604, 198, 220, 220, 220, 329, 9720, 287, 479, 13, 42, 198, 220, 220, 220, 220, 220, 220, 220, 2488, 9288, 318, 64, 7, 33885, 11, 7946, 42, 7948, 8, 198, 220, 220, 220, 886, 628, 220, 220, 220, 2488, 9288, 4731, 7, 74, 8, 6624, 366, 14993, 451, 15561, 278, 9104, 15237, 12, 26410, 32169, 1, 198, 220, 220, 220, 2488, 9288, 41575, 7203, 5239, 14, 25638, 1600, 479, 8, 6624, 357, 198, 220, 220, 220, 220, 220, 220, 220, 366, 14993, 451, 15561, 278, 9104, 15237, 12, 26410, 32169, 13, 509, 44930, 7479, 77, 1, 1635, 198, 220, 220, 220, 220, 220, 220, 220, 37082, 83, 22266, 1144, 5518, 35470, 32169, 357, 4164, 1173, 796, 48862, 485, 272, 7, 15, 13, 15, 4008, 59, 77, 1, 1635, 198, 220, 220, 220, 220, 220, 220, 220, 37082, 83, 22266, 1144, 5518, 35470, 32169, 357, 4164, 1173, 796, 48862, 485, 272, 7, 15, 13, 15, 4008, 59, 77, 1, 1635, 198, 220, 220, 220, 220, 220, 220, 220, 37082, 83, 22266, 1144, 5518, 35470, 32169, 357, 4164, 1173, 796, 48862, 485, 272, 7, 15, 13, 15, 4008, 59, 77, 1, 1635, 198, 220, 220, 220, 220, 220, 220, 220, 37082, 83, 22266, 1144, 5518, 35470, 32169, 357, 4164, 1173, 796, 48862, 485, 272, 7, 15, 13, 15, 4008, 1, 198, 220, 220, 220, 1267, 628, 220, 220, 220, 1332, 62, 2885, 82, 7, 74, 8, 198, 437, 198 ]
2.198391
746
using Gadfly, DataFrames plot(readtable(joinpath(dirname(@__FILE__), "issue120.csv")), x=:x1, y=:x2)
[ 3500, 20925, 12254, 11, 6060, 35439, 198, 198, 29487, 7, 961, 11487, 7, 22179, 6978, 7, 15908, 3672, 7, 31, 834, 25664, 834, 828, 366, 21949, 10232, 13, 40664, 4943, 828, 2124, 28, 25, 87, 16, 11, 331, 28, 25, 87, 17, 8, 198 ]
2.318182
44
""" center_predictors(X::AbstractMatrix) Centers the columns of a matrix `X` of predictors to mean 0. Returns a tuple with: 1. `μ_X`: 1xK `Matrix` of `Float64`s of the means of the K columns in the original `X` matrix. 2. `X_centered`: A `Matrix` of `Float64`s with the same dimensions as the original matrix `X` with the columns centered on mean μ=0. # Arguments - `X::AbstractMatrix`: a matrix of predictors where rows are observations and columns are variables. """ function center_predictors(X::AbstractMatrix) μ_X = mapslices(mean, X; dims=1) X_centered = similar(X, Float64) for (idx, val) in enumerate(eachcol(X)) X_centered[:, idx] = val .- μ_X[1, idx] end return vec(μ_X), X_centered end """ standardize_predictors(X::AbstractMatrix) Standardizes the columns of a matrix `X` of predictors to mean 0 and standard deviation 1. Returns a tuple with: 1. `μ_X`: 1xK `Matrix` of `Float64`s of the means of the K columns in the original `X` matrix. 2. `σ_X`: 1xK `Matrix` of `Float64`s of the standard deviations of the K columns in the original `X` matrix. 3. `X_std`: A `Matrix` of `Float64`s with the same dimensions as the original matrix `X` with the columns centered on mean μ=0 and standard deviation σ=1. # Arguments - `X::AbstractMatrix`: a matrix of predictors where rows are observations and columns are variables. """ function standardize_predictors(X::AbstractMatrix) μ_X = mapslices(mean, X; dims=1) σ_X = mapslices(std, X; dims=1) X_std = similar(X, Float64) for (idx, val) in enumerate(eachcol(X)) X_std[:, idx] = (val .- μ_X[1, idx]) ./ σ_X[1, idx] end return vec(μ_X), vec(σ_X), X_std end """ standardize_predictors(x::AbstractVector) Standardizes the vector `x` to mean 0 and standard deviation 1. Returns a tuple with: 1. `μ_X`: `Float64`s of the mean of the original vector `x`. 2. `σ_X`: `Float64`s of the standard deviations of the original vector `x`. 3. `x_std`: A `Vector` of `Float64`s with the same length as the original vector `x` with the values centered on mean μ=0 and standard deviation σ=1. # Arguments - `x::AbstractVector`: a vector. """ function standardize_predictors(x::AbstractVector) μ_x = mean(x) σ_x = std(x) x_std = (x .- μ_x) ./ σ_x return μ_x, σ_x, x_std end """ tuple_length(::NTuple{N, Any}) where {N} = Int(N) This is a hack to get the length of any tuple. """ tuple_length(::NTuple{N,Any}) where {N} = Int(N) """ convert_str_to_indices(v::AbstractVector) Converts a vector `v` to a vector of indices, i.e. a vector where all the entries are integers. Returns a tuple with the first element as the converted vector and the second element a `Dict` specifying which string is which integer. This function is especially useful for random-effects varying-intercept hierarchical models. Normally `v` would be a vector of group membership with values such as `"group_1"`, `"group_2"` etc. For random-effect models with varying-intercepts, Turing needs the group membership values to be passed as `Int`s. """ function convert_str_to_indices(v::AbstractVector) d = Dict{eltype(v),Int}() v_int = Int[] for i in v n = get!(d, i, length(d) + 1) push!(v_int, n) end return v_int, d end
[ 37811, 198, 220, 220, 220, 3641, 62, 79, 17407, 669, 7, 55, 3712, 23839, 46912, 8, 198, 198, 19085, 364, 262, 15180, 286, 257, 17593, 4600, 55, 63, 286, 4331, 669, 284, 1612, 657, 13, 198, 198, 35561, 257, 46545, 351, 25, 198, 16, 13, 4600, 34703, 62, 55, 63, 25, 352, 87, 42, 4600, 46912, 63, 286, 4600, 43879, 2414, 63, 82, 286, 262, 1724, 286, 262, 509, 15180, 287, 262, 2656, 4600, 55, 63, 198, 6759, 8609, 13, 198, 17, 13, 4600, 55, 62, 38050, 63, 25, 317, 4600, 46912, 63, 286, 4600, 43879, 2414, 63, 82, 351, 262, 976, 15225, 355, 262, 2656, 17593, 198, 63, 55, 63, 351, 262, 15180, 19254, 319, 1612, 18919, 28, 15, 13, 198, 198, 2, 20559, 2886, 198, 12, 4600, 55, 3712, 23839, 46912, 63, 25, 257, 17593, 286, 4331, 669, 810, 15274, 389, 13050, 290, 15180, 389, 198, 25641, 2977, 13, 198, 37811, 198, 8818, 3641, 62, 79, 17407, 669, 7, 55, 3712, 23839, 46912, 8, 198, 220, 220, 220, 18919, 62, 55, 796, 8739, 677, 274, 7, 32604, 11, 1395, 26, 5391, 82, 28, 16, 8, 198, 220, 220, 220, 1395, 62, 38050, 796, 2092, 7, 55, 11, 48436, 2414, 8, 198, 220, 220, 220, 329, 357, 312, 87, 11, 1188, 8, 287, 27056, 378, 7, 27379, 4033, 7, 55, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 1395, 62, 38050, 58, 45299, 4686, 87, 60, 796, 1188, 764, 12, 18919, 62, 55, 58, 16, 11, 4686, 87, 60, 198, 220, 220, 220, 886, 198, 220, 220, 220, 1441, 43030, 7, 34703, 62, 55, 828, 1395, 62, 38050, 198, 437, 198, 198, 37811, 198, 220, 220, 220, 3210, 1096, 62, 79, 17407, 669, 7, 55, 3712, 23839, 46912, 8, 198, 198, 23615, 4340, 262, 15180, 286, 257, 17593, 4600, 55, 63, 286, 4331, 669, 284, 1612, 657, 290, 3210, 28833, 352, 13, 198, 198, 35561, 257, 46545, 351, 25, 198, 16, 13, 4600, 34703, 62, 55, 63, 25, 352, 87, 42, 4600, 46912, 63, 286, 4600, 43879, 2414, 63, 82, 286, 262, 1724, 286, 262, 509, 15180, 287, 262, 2656, 4600, 55, 63, 198, 6759, 8609, 13, 198, 17, 13, 4600, 38392, 62, 55, 63, 25, 352, 87, 42, 4600, 46912, 63, 286, 4600, 43879, 2414, 63, 82, 286, 262, 3210, 47060, 286, 262, 509, 15180, 287, 262, 198, 14986, 4600, 55, 63, 17593, 13, 198, 18, 13, 4600, 55, 62, 19282, 63, 25, 317, 4600, 46912, 63, 286, 4600, 43879, 2414, 63, 82, 351, 262, 976, 15225, 355, 262, 2656, 17593, 198, 63, 55, 63, 351, 262, 15180, 19254, 319, 1612, 18919, 28, 15, 290, 3210, 28833, 18074, 225, 28, 16, 13, 198, 198, 2, 20559, 2886, 198, 12, 4600, 55, 3712, 23839, 46912, 63, 25, 257, 17593, 286, 4331, 669, 810, 15274, 389, 13050, 290, 15180, 389, 198, 25641, 2977, 13, 198, 37811, 198, 8818, 3210, 1096, 62, 79, 17407, 669, 7, 55, 3712, 23839, 46912, 8, 198, 220, 220, 220, 18919, 62, 55, 796, 8739, 677, 274, 7, 32604, 11, 1395, 26, 5391, 82, 28, 16, 8, 198, 220, 220, 220, 18074, 225, 62, 55, 796, 8739, 677, 274, 7, 19282, 11, 1395, 26, 5391, 82, 28, 16, 8, 198, 220, 220, 220, 1395, 62, 19282, 796, 2092, 7, 55, 11, 48436, 2414, 8, 198, 220, 220, 220, 329, 357, 312, 87, 11, 1188, 8, 287, 27056, 378, 7, 27379, 4033, 7, 55, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 1395, 62, 19282, 58, 45299, 4686, 87, 60, 796, 357, 2100, 764, 12, 18919, 62, 55, 58, 16, 11, 4686, 87, 12962, 24457, 18074, 225, 62, 55, 58, 16, 11, 4686, 87, 60, 198, 220, 220, 220, 886, 198, 220, 220, 220, 1441, 43030, 7, 34703, 62, 55, 828, 43030, 7, 38392, 62, 55, 828, 1395, 62, 19282, 198, 437, 198, 198, 37811, 198, 220, 220, 220, 3210, 1096, 62, 79, 17407, 669, 7, 87, 3712, 23839, 38469, 8, 198, 198, 23615, 4340, 262, 15879, 4600, 87, 63, 284, 1612, 657, 290, 3210, 28833, 352, 13, 198, 198, 35561, 257, 46545, 351, 25, 198, 16, 13, 4600, 34703, 62, 55, 63, 25, 4600, 43879, 2414, 63, 82, 286, 262, 1612, 286, 262, 2656, 15879, 4600, 87, 44646, 198, 17, 13, 4600, 38392, 62, 55, 63, 25, 4600, 43879, 2414, 63, 82, 286, 262, 3210, 47060, 286, 262, 2656, 15879, 4600, 87, 44646, 198, 18, 13, 4600, 87, 62, 19282, 63, 25, 317, 4600, 38469, 63, 286, 4600, 43879, 2414, 63, 82, 351, 262, 976, 4129, 355, 262, 2656, 15879, 198, 63, 87, 63, 351, 262, 3815, 19254, 319, 1612, 18919, 28, 15, 290, 3210, 28833, 18074, 225, 28, 16, 13, 198, 198, 2, 20559, 2886, 198, 12, 4600, 87, 3712, 23839, 38469, 63, 25, 257, 15879, 13, 198, 37811, 198, 8818, 3210, 1096, 62, 79, 17407, 669, 7, 87, 3712, 23839, 38469, 8, 198, 220, 220, 220, 18919, 62, 87, 796, 1612, 7, 87, 8, 198, 220, 220, 220, 18074, 225, 62, 87, 796, 14367, 7, 87, 8, 198, 220, 220, 220, 2124, 62, 19282, 796, 357, 87, 764, 12, 18919, 62, 87, 8, 24457, 18074, 225, 62, 87, 198, 220, 220, 220, 1441, 18919, 62, 87, 11, 18074, 225, 62, 87, 11, 2124, 62, 19282, 198, 437, 198, 198, 37811, 198, 220, 220, 220, 46545, 62, 13664, 7, 3712, 11251, 29291, 90, 45, 11, 4377, 30072, 810, 1391, 45, 92, 796, 2558, 7, 45, 8, 198, 198, 1212, 318, 257, 8156, 284, 651, 262, 4129, 286, 597, 46545, 13, 198, 37811, 198, 83, 29291, 62, 13664, 7, 3712, 11251, 29291, 90, 45, 11, 7149, 30072, 810, 1391, 45, 92, 796, 2558, 7, 45, 8, 198, 198, 37811, 198, 220, 220, 220, 10385, 62, 2536, 62, 1462, 62, 521, 1063, 7, 85, 3712, 23839, 38469, 8, 198, 198, 3103, 24040, 257, 15879, 4600, 85, 63, 284, 257, 15879, 286, 36525, 11, 1312, 13, 68, 13, 257, 15879, 810, 477, 262, 12784, 389, 198, 18908, 364, 13, 16409, 257, 46545, 351, 262, 717, 5002, 355, 262, 11513, 15879, 290, 262, 198, 12227, 5002, 257, 4600, 35, 713, 63, 31577, 543, 4731, 318, 543, 18253, 13, 198, 198, 1212, 2163, 318, 2592, 4465, 329, 4738, 12, 34435, 15874, 12, 3849, 984, 38958, 4981, 13, 198, 43625, 4600, 85, 63, 561, 307, 257, 15879, 286, 1448, 9931, 351, 3815, 884, 355, 4600, 1, 8094, 62, 16, 1, 47671, 198, 63, 1, 8094, 62, 17, 1, 63, 3503, 13, 1114, 4738, 12, 10760, 4981, 351, 15874, 12, 3849, 984, 82, 11, 39141, 2476, 262, 1448, 198, 30814, 1056, 3815, 284, 307, 3804, 355, 4600, 5317, 63, 82, 13, 198, 37811, 198, 8818, 10385, 62, 2536, 62, 1462, 62, 521, 1063, 7, 85, 3712, 23839, 38469, 8, 198, 220, 220, 220, 288, 796, 360, 713, 90, 417, 4906, 7, 85, 828, 5317, 92, 3419, 198, 220, 220, 220, 410, 62, 600, 796, 2558, 21737, 198, 220, 220, 220, 329, 1312, 287, 410, 198, 220, 220, 220, 220, 220, 220, 220, 299, 796, 651, 0, 7, 67, 11, 1312, 11, 4129, 7, 67, 8, 1343, 352, 8, 198, 220, 220, 220, 220, 220, 220, 220, 4574, 0, 7, 85, 62, 600, 11, 299, 8, 198, 220, 220, 220, 886, 198, 220, 220, 220, 1441, 410, 62, 600, 11, 288, 198, 437, 198 ]
2.699093
1,213
using LightXML """ Verision Comment v0.1 hf, firstversion v0.2 hf, use exiftool instead of tiffcommit ref: http://web.mit.edu/jhawk/mnt/cgs/Image-ExifTool-6.99/html/exiftool_pod.html https://exiftool.org/TagNames/EXIF.html https://docs.openmicroscopy.org/ome-model/5.6.3/ome-tiff/specification.html https://micro-manager.org/wiki/Micro-Manager_File_Formats """ """ Create and return XML string with xyzt """ function generatexml(SizeX::Integer, SizeY::Integer, SizeZ::Integer, SizeT::Integer) tiffXML = XMLDocument(); OME = create_root(tiffXML, "OME"); xmlns="http://www.openmicroscopy.org/Schemas/OME/2016-06" xmlns_xsi="http://www.w3.org/2001/XMLSchema-instance" Creator="OME Bio-Formats 5.2.2" UUID="urn:uuid:a5ae8c1b-ac04-4544-97c1-bbdd0bdf8629" # use fixed value now xsi_schemaLocation="http://www.openmicroscopy.org/Schemas/OME/2016-06 http://www.openmicroscopy.org/Schemas/OME/2016-06/ome.xsd" OME_attributes = Dict("xmlns"=>xmlns, "xmlns:xsi"=>xmlns_xsi, "Creator"=>Creator, "UUID"=>UUID, "xsi:schemaLocation"=>xsi_schemaLocation) set_attributes(OME, OME_attributes) name = "test.tiff" Image= new_child(OME, "Image") set_attributes(Image, Dict("ID"=>"Image:0", "Name"=>name)) Pixels = new_child(Image, "Pixels"); SizeC=1; #SizeT=10; #SizeX=1300; #SizeY=1900; #SizeZ=2; PhysicalSizeX=PhysicalSizeY=0.108; PhysicalSizeZ=0.5; TimeIncrement=600; Pixels_attributes = Dict("ID"=>"Pixels:0","Type"=>"uint16", "BigEndian"=>"false", "DimensionOrder"=>"XYZCT", "SizeC"=>1,"SizeX"=>SizeX, "SizeY"=>SizeY, "SizeZ"=>SizeZ, "SizeT"=>SizeT, "PhysicalSizeX"=>PhysicalSizeX, "PhysicalSizeY"=>PhysicalSizeY, "PhysicalSizeZ"=>PhysicalSizeZ, "PhysicalSizeXUnit"=>"µm", "PhysicalSizeYUnit"=>"µm", "PhysicalSizeZUnit"=>"µm", "TimeIncrement"=>TimeIncrement, "TimeIncrementUnit"=>"s"); set_attributes(Pixels, Pixels_attributes) Channel_ = new_child(Pixels, "Channel"); set_attributes(Channel_, Dict("ID"=>"Channel:0:0", "SamplesPerPixel"=>"1")); LightPath =new_child(Channel_, "LightPath"); for i in 1:SizeC*SizeZ*SizeT new_child(Pixels, "TiffData") end """ for c in 0:SizeC-1 for t in 0:SizeT-1 for z in 0:SizeZ-1 TiffData = new_child(Pixels, "TiffData") TiffData_attributes = Dict("FirstC"=>c, "FirstT"=>t, "FirstZ"=>z, "IFD"=>t*SizeZ+z,"PlaneCount"=>1) set_attributes(TiffData, TiffData_attributes) end end end """ tiffXML; end """ Embed OME-XML to tiff with XYZT informance """ function embedxml(SizeX::Integer, SizeY::Integer, SizeZ::Integer, SizeT::Integer, img_name::String) tiffxml = generatexml(SizeX, SizeY, SizeZ, SizeT); print("Embedding OME-XML") #run(`/home/hf/Bin/bftools/tiffcomment -set $tiffxml $img_name`); if Sys.which("exiftool") == Nothing print("Please install exiftool") else run(`exiftool -ImageDescription=$tiffxml $img_name -overwrite_original`, wait=false) #run(pipeline(`echo $tiffxml`, `exiftool -ImageDescription\<= $img_name -overwrite_original`), wait=false) #run(`ulimit -s 65536 ; exiftool -ImageDescription\<= $img_name -overwrite_original`, wait=true) # run in backgroud to continue next computing work # I assume that run computing takes more time to embed xml #run(`rm $img_name"_original"`) end println("") nothing; end
[ 3500, 4401, 55, 5805, 198, 37811, 198, 13414, 1166, 18957, 198, 85, 15, 13, 16, 220, 220, 220, 220, 289, 69, 11, 717, 9641, 198, 85, 15, 13, 17, 220, 220, 220, 220, 289, 69, 11, 779, 409, 2135, 970, 2427, 286, 256, 733, 41509, 198, 198, 5420, 25, 2638, 1378, 12384, 13, 2781, 13, 15532, 14, 73, 40624, 14, 76, 429, 14, 66, 14542, 14, 5159, 12, 3109, 361, 25391, 12, 21, 13, 2079, 14, 6494, 14, 1069, 2135, 970, 62, 33320, 13, 6494, 198, 220, 220, 220, 3740, 1378, 1069, 2135, 970, 13, 2398, 14, 24835, 36690, 14, 6369, 5064, 13, 6494, 198, 220, 220, 220, 3740, 1378, 31628, 13, 9654, 24055, 1416, 11081, 13, 2398, 14, 462, 12, 19849, 14, 20, 13, 21, 13, 18, 14, 462, 12, 83, 733, 14, 16684, 2649, 13, 6494, 198, 220, 220, 220, 3740, 1378, 24055, 12, 37153, 13, 2398, 14, 15466, 14, 13031, 12, 13511, 62, 8979, 62, 8479, 1381, 198, 37811, 198, 198, 37811, 198, 16447, 290, 1441, 23735, 4731, 351, 2124, 45579, 83, 198, 37811, 198, 8818, 7716, 19875, 7, 10699, 55, 3712, 46541, 11, 12849, 56, 3712, 46541, 11, 12849, 57, 3712, 46541, 11, 12849, 51, 3712, 46541, 8, 198, 220, 220, 220, 256, 733, 55, 5805, 796, 23735, 24941, 9783, 198, 220, 220, 220, 440, 11682, 796, 2251, 62, 15763, 7, 83, 733, 55, 5805, 11, 366, 13649, 15341, 198, 220, 220, 220, 35555, 5907, 2625, 4023, 1378, 2503, 13, 9654, 24055, 1416, 11081, 13, 2398, 14, 27054, 5356, 14, 13649, 14, 5304, 12, 3312, 1, 220, 198, 220, 220, 220, 35555, 5907, 62, 87, 13396, 2625, 4023, 1378, 2503, 13, 86, 18, 13, 2398, 14, 14585, 14, 55, 5805, 27054, 2611, 12, 39098, 1, 198, 220, 220, 220, 21038, 2625, 13649, 16024, 12, 8479, 1381, 642, 13, 17, 13, 17, 1, 220, 198, 220, 220, 220, 471, 27586, 2625, 700, 25, 12303, 312, 25, 64, 20, 3609, 23, 66, 16, 65, 12, 330, 3023, 12, 2231, 2598, 12, 5607, 66, 16, 12, 11848, 1860, 15, 65, 7568, 4521, 1959, 1, 1303, 779, 5969, 1988, 783, 198, 220, 220, 220, 2124, 13396, 62, 15952, 2611, 14749, 2625, 4023, 1378, 2503, 13, 9654, 24055, 1416, 11081, 13, 2398, 14, 27054, 5356, 14, 13649, 14, 5304, 12, 3312, 2638, 1378, 2503, 13, 9654, 24055, 1416, 11081, 13, 2398, 14, 27054, 5356, 14, 13649, 14, 5304, 12, 3312, 14, 462, 13, 87, 21282, 1, 198, 220, 220, 220, 440, 11682, 62, 1078, 7657, 796, 360, 713, 7203, 19875, 5907, 1, 14804, 19875, 5907, 11, 366, 19875, 5907, 25, 87, 13396, 1, 14804, 19875, 5907, 62, 87, 13396, 11, 366, 16719, 273, 1, 14804, 16719, 273, 11, 366, 52, 27586, 1, 14804, 52, 27586, 11, 366, 87, 13396, 25, 15952, 2611, 14749, 1, 14804, 87, 13396, 62, 15952, 2611, 14749, 8, 198, 220, 220, 220, 900, 62, 1078, 7657, 7, 13649, 11, 440, 11682, 62, 1078, 7657, 8, 198, 220, 220, 220, 220, 198, 220, 220, 220, 1438, 796, 366, 9288, 13, 83, 733, 1, 198, 220, 220, 220, 7412, 28, 649, 62, 9410, 7, 13649, 11, 366, 5159, 4943, 198, 220, 220, 220, 900, 62, 1078, 7657, 7, 5159, 11, 360, 713, 7203, 2389, 1, 14804, 1, 5159, 25, 15, 1600, 366, 5376, 1, 14804, 3672, 4008, 198, 220, 220, 220, 220, 198, 220, 220, 220, 350, 14810, 796, 649, 62, 9410, 7, 5159, 11, 366, 47, 14810, 15341, 198, 220, 220, 220, 12849, 34, 28, 16, 26, 220, 198, 220, 220, 220, 1303, 10699, 51, 28, 940, 26, 220, 1303, 10699, 55, 28, 1485, 405, 26, 1303, 10699, 56, 28, 48104, 26, 1303, 10699, 57, 28, 17, 26, 198, 220, 220, 220, 16331, 10699, 55, 28, 31611, 10699, 56, 28, 15, 13, 15711, 26, 16331, 10699, 57, 28, 15, 13, 20, 26, 198, 220, 220, 220, 3862, 15562, 434, 28, 8054, 26, 198, 220, 220, 220, 350, 14810, 62, 1078, 7657, 796, 360, 713, 7203, 2389, 1, 14804, 1, 47, 14810, 25, 15, 2430, 6030, 1, 14804, 1, 28611, 1433, 1600, 366, 12804, 12915, 666, 1, 14804, 1, 9562, 1600, 198, 220, 220, 220, 366, 29271, 3004, 18743, 1, 14804, 1, 34278, 57, 4177, 1600, 366, 10699, 34, 1, 14804, 16, 553, 10699, 55, 1, 14804, 10699, 55, 11, 366, 10699, 56, 1, 14804, 10699, 56, 11, 366, 10699, 57, 1, 14804, 10699, 57, 11, 366, 10699, 51, 1, 14804, 10699, 51, 11, 198, 220, 220, 220, 366, 31611, 10699, 55, 1, 14804, 31611, 10699, 55, 11, 366, 31611, 10699, 56, 1, 14804, 31611, 10699, 56, 11, 366, 31611, 10699, 57, 1, 14804, 31611, 10699, 57, 11, 198, 220, 220, 220, 366, 31611, 10699, 55, 26453, 1, 14804, 1, 126, 113, 76, 1600, 366, 31611, 10699, 56, 26453, 1, 14804, 1, 126, 113, 76, 1600, 366, 31611, 10699, 57, 26453, 1, 14804, 1, 126, 113, 76, 1600, 198, 220, 220, 220, 366, 7575, 15562, 434, 1, 14804, 7575, 15562, 434, 11, 366, 7575, 15562, 434, 26453, 1, 14804, 1, 82, 15341, 198, 220, 220, 220, 900, 62, 1078, 7657, 7, 47, 14810, 11, 350, 14810, 62, 1078, 7657, 8, 198, 220, 220, 220, 220, 198, 220, 220, 220, 11102, 62, 796, 649, 62, 9410, 7, 47, 14810, 11, 366, 29239, 15341, 198, 220, 220, 220, 900, 62, 1078, 7657, 7, 29239, 62, 11, 360, 713, 7203, 2389, 1, 14804, 1, 29239, 25, 15, 25, 15, 1600, 366, 50, 12629, 5990, 40809, 1, 14804, 1, 16, 4943, 1776, 198, 220, 220, 220, 4401, 15235, 796, 3605, 62, 9410, 7, 29239, 62, 11, 366, 15047, 15235, 15341, 198, 220, 220, 220, 220, 198, 220, 220, 220, 329, 1312, 287, 352, 25, 10699, 34, 9, 10699, 57, 9, 10699, 51, 198, 220, 220, 220, 220, 220, 220, 220, 649, 62, 9410, 7, 47, 14810, 11, 366, 51, 733, 6601, 4943, 198, 220, 220, 220, 886, 198, 197, 37811, 198, 197, 1640, 269, 287, 657, 25, 10699, 34, 12, 16, 198, 220, 220, 220, 220, 197, 1640, 256, 287, 657, 25, 10699, 51, 12, 16, 198, 220, 220, 220, 220, 220, 220, 220, 220, 197, 1640, 1976, 287, 657, 25, 10699, 57, 12, 16, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 35775, 6601, 796, 649, 62, 9410, 7, 47, 14810, 11, 366, 51, 733, 6601, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 35775, 6601, 62, 1078, 7657, 796, 360, 713, 7203, 5962, 34, 1, 14804, 66, 11, 366, 5962, 51, 1, 14804, 83, 11, 366, 5962, 57, 1, 14804, 89, 11, 220, 198, 197, 197, 197, 197, 197, 197, 197, 197, 197, 197, 220, 366, 5064, 35, 1, 14804, 83, 9, 10699, 57, 10, 89, 553, 3646, 1531, 12332, 1, 14804, 16, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 900, 62, 1078, 7657, 7, 51, 733, 6601, 11, 35775, 6601, 62, 1078, 7657, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 886, 198, 220, 220, 220, 220, 220, 220, 220, 886, 198, 220, 220, 220, 886, 198, 197, 37811, 198, 220, 220, 220, 256, 733, 55, 5805, 26, 198, 437, 198, 198, 37811, 198, 31567, 276, 440, 11682, 12, 55, 5805, 284, 256, 733, 351, 41420, 57, 51, 4175, 590, 198, 37811, 198, 8818, 11525, 19875, 7, 10699, 55, 3712, 46541, 11, 12849, 56, 3712, 46541, 11, 12849, 57, 3712, 46541, 11, 12849, 51, 3712, 46541, 11, 33705, 62, 3672, 3712, 10100, 8, 198, 220, 220, 220, 256, 733, 19875, 796, 7716, 19875, 7, 10699, 55, 11, 12849, 56, 11, 12849, 57, 11, 12849, 51, 1776, 198, 220, 220, 220, 3601, 7203, 31567, 6048, 278, 440, 11682, 12, 55, 5805, 4943, 198, 220, 220, 220, 1303, 5143, 7, 63, 14, 11195, 14, 71, 69, 14, 33, 259, 14, 65, 701, 10141, 14, 83, 733, 23893, 532, 2617, 720, 83, 733, 19875, 720, 9600, 62, 3672, 63, 1776, 198, 220, 220, 220, 611, 311, 893, 13, 4758, 7203, 1069, 2135, 970, 4943, 6624, 10528, 198, 220, 220, 220, 220, 220, 220, 220, 3601, 7203, 5492, 2721, 409, 2135, 970, 4943, 198, 220, 220, 220, 2073, 198, 197, 197, 5143, 7, 63, 1069, 2135, 970, 532, 5159, 11828, 43641, 83, 733, 19875, 720, 9600, 62, 3672, 532, 2502, 13564, 62, 14986, 47671, 4043, 28, 9562, 8, 198, 197, 197, 2, 5143, 7, 79, 541, 4470, 7, 63, 30328, 720, 83, 733, 19875, 47671, 4600, 1069, 2135, 970, 532, 5159, 11828, 49778, 28, 720, 9600, 62, 3672, 532, 2502, 13564, 62, 14986, 63, 828, 4043, 28, 9562, 8, 198, 197, 197, 2, 5143, 7, 63, 377, 320, 270, 532, 82, 45021, 2623, 2162, 409, 2135, 970, 532, 5159, 11828, 49778, 28, 720, 9600, 62, 3672, 532, 2502, 13564, 62, 14986, 47671, 4043, 28, 7942, 8, 198, 197, 197, 2, 1057, 287, 736, 70, 5493, 284, 2555, 1306, 14492, 670, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 314, 7048, 326, 1057, 14492, 2753, 517, 640, 284, 11525, 35555, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 5143, 7, 63, 26224, 720, 9600, 62, 3672, 1, 62, 14986, 1, 63, 8, 198, 220, 220, 220, 886, 198, 220, 220, 220, 44872, 7203, 4943, 198, 220, 220, 220, 2147, 26, 198, 437, 198 ]
2.244516
1,550
rootbase = pwd() function webserverpath(folder::AbstractString) global rootbase = joinpath(pwd(),folder) end """ File(file::String) Return a file content located in "rootbase" """ function File(file::String) return File("", file) end """ File(folder::String, file::String) Return a file content located in "joinpath(rootbase, folder)" """ function File(folder::String, file::String) path = joinpath(rootbase, folder, file) f = open(path) return read(f, String) end """ files(roop::String, file::String) Create a GET route to file """ function files(folder::String, file::String) extension="text/plain" ext= split(file,".") if(length(ext)>1) my_extension = ext[end] if (haskey(mimetypes, my_extension)) extension = mimetypes[my_extension] end end data = File(folder, file) routefile = replace(joinpath(folder,file),"\\" => "/") Get( string("/",routefile) , (request,HTTP)->(begin HTTP.Response(200 , HTTP.mkheaders(["Content-Type" => extension]) , body=data) end) ) end """ Create routes to files inside "rootbase" """ function WebServer(folder::String, exten::String) path = joinpath(rootbase, folder) ls= readdir(path) for i = 1:length(ls) if isfile( joinpath(path, ls[i]) ) ext = split(ls[i], ".") if length(ext) > 1 && ext[1] != "" && occursin(exten, ext[end] ) files(folder,ls[i]) end elseif isdir( joinpath(path, ls[i]) ) WebServer(joinpath(folder, ls[i]) ,exten) end end end function webserverfiles(load::AbstractString) if load == "*" WebServer("", "") else WebServer("", load) end end
[ 198, 197, 15763, 8692, 796, 279, 16993, 3419, 628, 197, 8818, 2639, 18497, 6978, 7, 43551, 3712, 23839, 10100, 8, 198, 197, 220, 3298, 6808, 8692, 796, 4654, 6978, 7, 79, 16993, 22784, 43551, 8, 198, 197, 437, 628, 197, 37811, 198, 197, 8979, 7, 7753, 3712, 10100, 8, 628, 197, 13615, 257, 2393, 2695, 5140, 287, 366, 15763, 8692, 1, 198, 197, 37811, 198, 197, 8818, 9220, 7, 7753, 3712, 10100, 8, 198, 197, 220, 220, 220, 1441, 9220, 7203, 1600, 2393, 8, 198, 197, 437, 628, 197, 37811, 198, 197, 8979, 7, 43551, 3712, 10100, 11, 2393, 3712, 10100, 8, 628, 197, 13615, 257, 2393, 2695, 5140, 287, 366, 22179, 6978, 7, 15763, 8692, 11, 9483, 16725, 198, 197, 37811, 198, 197, 8818, 9220, 7, 43551, 3712, 10100, 11, 2393, 3712, 10100, 8, 198, 197, 220, 3108, 796, 4654, 6978, 7, 15763, 8692, 11, 9483, 11, 2393, 8, 198, 197, 220, 277, 796, 1280, 7, 6978, 8, 198, 197, 220, 1441, 1100, 7, 69, 11, 10903, 8, 198, 197, 437, 628, 197, 37811, 198, 197, 16624, 7, 305, 404, 3712, 10100, 11, 2393, 3712, 10100, 8, 628, 197, 16447, 257, 17151, 6339, 284, 2393, 198, 197, 37811, 198, 197, 8818, 3696, 7, 43551, 3712, 10100, 11, 2393, 3712, 10100, 8, 198, 197, 220, 220, 220, 7552, 2625, 5239, 14, 25638, 1, 198, 197, 220, 220, 220, 1070, 28, 6626, 7, 7753, 553, 19570, 198, 197, 220, 220, 220, 611, 7, 13664, 7, 2302, 8, 29, 16, 8, 198, 197, 220, 220, 220, 220, 220, 616, 62, 2302, 3004, 796, 1070, 58, 437, 60, 198, 197, 220, 220, 220, 220, 220, 611, 357, 10134, 2539, 7, 76, 320, 2963, 12272, 11, 616, 62, 2302, 3004, 4008, 198, 197, 220, 220, 220, 220, 220, 220, 220, 7552, 796, 17007, 2963, 12272, 58, 1820, 62, 2302, 3004, 60, 198, 197, 220, 220, 220, 220, 220, 886, 198, 197, 220, 220, 220, 886, 198, 197, 220, 220, 220, 1366, 796, 9220, 7, 43551, 11, 2393, 8, 198, 197, 220, 220, 220, 3441, 891, 576, 796, 6330, 7, 22179, 6978, 7, 43551, 11, 7753, 27267, 6852, 1, 5218, 12813, 4943, 198, 197, 220, 220, 220, 3497, 7, 4731, 7203, 14, 1600, 81, 448, 891, 576, 8, 837, 357, 25927, 11, 40717, 8, 3784, 7, 27471, 198, 197, 220, 220, 220, 220, 220, 14626, 13, 31077, 7, 2167, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 837, 14626, 13, 28015, 50145, 7, 14692, 19746, 12, 6030, 1, 5218, 7552, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 837, 1767, 28, 7890, 8, 198, 197, 220, 220, 220, 886, 8, 1267, 198, 197, 437, 628, 197, 37811, 198, 197, 16447, 11926, 284, 3696, 2641, 366, 15763, 8692, 1, 198, 197, 37811, 198, 197, 8818, 5313, 10697, 7, 43551, 3712, 10100, 11, 1070, 268, 3712, 10100, 8, 198, 197, 220, 3108, 796, 4654, 6978, 7, 15763, 8692, 11, 9483, 8, 198, 197, 220, 43979, 28, 1100, 15908, 7, 6978, 8, 198, 197, 220, 329, 1312, 796, 352, 25, 13664, 7, 7278, 8, 198, 197, 220, 220, 220, 611, 318, 7753, 7, 4654, 6978, 7, 6978, 11, 43979, 58, 72, 12962, 1267, 198, 197, 220, 220, 220, 220, 220, 1070, 796, 6626, 7, 7278, 58, 72, 4357, 366, 19570, 198, 197, 220, 220, 220, 220, 220, 611, 4129, 7, 2302, 8, 1875, 352, 11405, 1070, 58, 16, 60, 14512, 13538, 11405, 8833, 259, 7, 2302, 268, 11, 1070, 58, 437, 60, 1267, 198, 197, 220, 220, 220, 220, 220, 220, 220, 3696, 7, 43551, 11, 7278, 58, 72, 12962, 198, 197, 220, 220, 220, 220, 220, 886, 198, 197, 220, 220, 220, 2073, 361, 318, 15908, 7, 4654, 6978, 7, 6978, 11, 43979, 58, 72, 12962, 1267, 198, 197, 220, 220, 220, 220, 220, 5313, 10697, 7, 22179, 6978, 7, 43551, 11, 43979, 58, 72, 12962, 837, 2302, 268, 8, 198, 197, 220, 220, 220, 886, 198, 197, 220, 886, 198, 197, 437, 628, 197, 8818, 2639, 18497, 16624, 7, 2220, 3712, 23839, 10100, 8, 198, 197, 220, 611, 3440, 6624, 366, 9, 1, 198, 197, 220, 220, 220, 5313, 10697, 7203, 1600, 366, 4943, 198, 197, 220, 2073, 198, 197, 220, 220, 220, 5313, 10697, 7203, 1600, 3440, 8, 198, 197, 220, 886, 198, 197, 437 ]
2.415385
715
<reponame>vikashdwd/JuML struct FileCovariate{T<:AbstractFloat} <: AbstractCovariate{T} name::String length::Int64 datapath::String end Base.length(covariate::FileCovariate{T}) where {T<:AbstractFloat} = covariate.length function slice(covariate::FileCovariate{T}, fromobs::Integer, toobs::Integer, slicelength::Integer) where {T<:AbstractFloat} #len = toobs - fromobs + 1 slicelength = verifyslicelength(fromobs, toobs, slicelength) sizeT = sizeof(T) iostream = open(covariate.datapath) seek(iostream, sizeT * (fromobs - 1)) buffer = Vector{T}(slicelength) map(Seq(Vector{T}, (buffer, iostream, fromobs, toobs, slicelength), nextdatachunk), SubArray{T,1,Array{T,1},Tuple{UnitRange{Int64}},true}) do slice view(slice, 1:length(slice)) end #data = Vector{UInt8}(sizeof(T) * len) # open(covariate.datapath) do f # seek(f, sizeof(T) * (fromobs - 1)) # readbytes!(f, data) # end # covdata = reinterpret(T, data) # slice(covdata, 1, len, slicelength) end function Base.map(covariate::FileCovariate, dataframe::AbstractDataFrame) dataframe[getname(covariate)] end
[ 27, 7856, 261, 480, 29, 28930, 1077, 67, 16993, 14, 33018, 5805, 198, 7249, 9220, 34, 709, 2743, 378, 90, 51, 27, 25, 23839, 43879, 92, 1279, 25, 27741, 34, 709, 2743, 378, 90, 51, 92, 198, 220, 220, 220, 1438, 3712, 10100, 198, 220, 220, 220, 4129, 3712, 5317, 2414, 198, 220, 220, 220, 4818, 499, 776, 3712, 10100, 198, 437, 198, 198, 14881, 13, 13664, 7, 66, 709, 2743, 378, 3712, 8979, 34, 709, 2743, 378, 90, 51, 30072, 810, 1391, 51, 27, 25, 23839, 43879, 92, 796, 44829, 378, 13, 13664, 198, 198, 8818, 16416, 7, 66, 709, 2743, 378, 3712, 8979, 34, 709, 2743, 378, 90, 51, 5512, 422, 8158, 3712, 46541, 11, 284, 8158, 3712, 46541, 11, 14369, 417, 3286, 3712, 46541, 8, 810, 1391, 51, 27, 25, 23839, 43879, 92, 198, 220, 220, 220, 1303, 11925, 796, 284, 8158, 532, 422, 8158, 1343, 352, 198, 220, 220, 220, 14369, 417, 3286, 796, 3326, 361, 893, 677, 417, 3286, 7, 6738, 8158, 11, 284, 8158, 11, 14369, 417, 3286, 8, 220, 198, 220, 220, 220, 2546, 51, 796, 39364, 7, 51, 8, 198, 220, 220, 220, 1312, 455, 1476, 796, 1280, 7, 66, 709, 2743, 378, 13, 19608, 499, 776, 8, 198, 220, 220, 220, 5380, 7, 72, 455, 1476, 11, 2546, 51, 1635, 357, 6738, 8158, 532, 352, 4008, 198, 220, 220, 220, 11876, 796, 20650, 90, 51, 92, 7, 82, 677, 417, 3286, 8, 198, 220, 220, 220, 3975, 7, 4653, 80, 7, 38469, 90, 51, 5512, 357, 22252, 11, 1312, 455, 1476, 11, 422, 8158, 11, 284, 8158, 11, 14369, 417, 3286, 828, 1306, 19608, 620, 2954, 828, 3834, 19182, 90, 51, 11, 16, 11, 19182, 90, 51, 11, 16, 5512, 51, 29291, 90, 26453, 17257, 90, 5317, 2414, 92, 5512, 7942, 30072, 466, 16416, 198, 220, 220, 220, 220, 220, 220, 220, 1570, 7, 48369, 11, 352, 25, 13664, 7, 48369, 4008, 198, 220, 220, 220, 886, 198, 220, 220, 220, 1303, 7890, 796, 20650, 90, 52, 5317, 23, 92, 7, 7857, 1659, 7, 51, 8, 1635, 18896, 8, 198, 220, 220, 220, 1303, 1280, 7, 66, 709, 2743, 378, 13, 19608, 499, 776, 8, 466, 277, 198, 220, 220, 220, 1303, 220, 220, 220, 220, 5380, 7, 69, 11, 39364, 7, 51, 8, 1635, 357, 6738, 8158, 532, 352, 4008, 198, 220, 220, 220, 1303, 220, 220, 220, 220, 1100, 33661, 0, 7, 69, 11, 1366, 8, 198, 220, 220, 220, 1303, 886, 198, 220, 220, 220, 1303, 39849, 7890, 796, 302, 27381, 7, 51, 11, 1366, 8, 198, 220, 220, 220, 1303, 16416, 7, 66, 709, 7890, 11, 352, 11, 18896, 11, 14369, 417, 3286, 8, 198, 437, 198, 198, 8818, 7308, 13, 8899, 7, 66, 709, 2743, 378, 3712, 8979, 34, 709, 2743, 378, 11, 1366, 14535, 3712, 23839, 6601, 19778, 8, 198, 220, 220, 220, 1366, 14535, 58, 1136, 3672, 7, 66, 709, 2743, 378, 15437, 198, 437, 628 ]
2.347561
492
<gh_stars>1-10 using ApproxFun using SpecialExponentialFamilies using Test @testset "SpecialExponentialFamilies.jl" begin include("test_twintower.jl") end
[ 27, 456, 62, 30783, 29, 16, 12, 940, 198, 3500, 2034, 13907, 24629, 198, 3500, 6093, 16870, 35470, 37, 321, 3922, 198, 3500, 6208, 198, 198, 31, 9288, 2617, 366, 13409, 16870, 35470, 37, 321, 3922, 13, 20362, 1, 2221, 198, 220, 220, 220, 2291, 7203, 9288, 62, 4246, 600, 789, 13, 20362, 4943, 198, 437, 198 ]
2.807018
57
<reponame>brenhinkeller/NaNStatistics.jl function _nancov(x::AbstractVector, y::AbstractVector, corrected::Bool, μᵪ::Number, μᵧ::Number) # Calculate covariance σᵪᵧ = ∅ = zero(promote_type(typeof(μᵪ), typeof(μᵧ), Int)) n = 0 @turbo for i ∈ indices((x,y)) δᵪ = x[i] - μᵪ δᵧ = y[i] - μᵧ δ² = δᵪ * δᵧ notnan = δ²==δ² n += notnan σᵪᵧ += ifelse(notnan, δ², ∅) end σᵪᵧ = σᵪᵧ / (n-corrected) return σᵪᵧ end """ ```julia nancov(x::AbstractVector, y::AbstractVector; corrected::Bool=true) ``` Compute the covariance between the vectors `x` and `y`. As `Statistics.cov`, but ignoring `NaN`s. If `corrected` is `true` as is the default, _Bessel's correction_ will be applied, such that the sum is scaled by `n-1` rather than `n`, where `n = length(x)`. """ function nancov(x::AbstractVector, y::AbstractVector; corrected::Bool=true) # Check lengths nᵪ = length(x) nᵧ = length(y) @assert nᵪ == nᵧ μᵪ = _nanmean(x,:) μᵧ = _nanmean(y,:) σᵪᵧ = _nancov(x, y, corrected, μᵪ, μᵧ) return σᵪᵧ end """ ```julia nancov(X::AbstractMatrix; dims::Int=1, corrected::Bool=true) ``` Compute the covariance matrix of the matrix `X`, along dimension `dims`. As `Statistics.cov`, but ignoring `NaN`s. If `corrected` is `true` as is the default, _Bessel's correction_ will be applied, such that the sum is scaled by `n-1` rather than `n`, where `n = length(x)`. """ function nancov(X::AbstractMatrix; dims::Int=1, corrected::Bool=true) Tₒ = Base.promote_op(/, eltype(X), Int) n = size(X, dims) m = size(X, mod(dims,2)+1) Σ = similar(X, Tₒ, (m, m)) # Only two dimensions are possible, so handle each manually if dims == 1 # Precalculate means for each column μ = ntuple(m) do d nanmean(view(X,:,d)) end # Fill covariance matrix symmetrically @inbounds for i = 1:m for j = 1:i σᵢⱼ = _nancov(view(X,:,i), view(X,:,j), corrected, μ[i], μ[j]) Σ[i,j] = Σ[j,i] = σᵢⱼ end end elseif dims == 2 # Precalculate means for each row μ = ntuple(m) do d nanmean(view(X,d,:)) end # Fill covariance matrix symmetrically @inbounds for i = 1:m for j = 1:i σᵢⱼ = _nancov(view(X,i,:), view(X,j,:), corrected, μ[i], μ[j]) Σ[i,j] = Σ[j,i] = σᵢⱼ end end else throw("Dimension not in range") end return Σ end export nancov """ ```julia nancor(x::AbstractVector, y::AbstractVector) ``` Compute the (Pearson's product-moment) correlation between the vectors `x` and `y`. As `Statistics.cor`, but ignoring `NaN`s. Equivalent to `nancov(x,y) / (nanstd(x) * nanstd(y))`. """ function nancor(x::AbstractVector, y::AbstractVector; corrected::Bool=true) # Check lengths nᵪ = length(x) nᵧ = length(y) @assert nᵪ == nᵧ μᵪ = nanmean(x) μᵧ = nanmean(y) σᵪ = nanstd(x, mean=μᵪ, corrected=corrected) σᵧ = nanstd(y, mean=μᵧ, corrected=corrected) σᵪᵧ = _nancov(x, y, corrected, μᵪ, μᵧ) ρᵪᵧ = σᵪᵧ / (σᵪ * σᵧ) return ρᵪᵧ end """ ```julia nancor(X::AbstractMatrix; dims::Int=1) ``` Compute the (Pearson's product-moment) correlation matrix of the matrix `X`, along dimension `dims`. As `Statistics.cor`, but ignoring `NaN`s. """ function nancor(X::AbstractMatrix; dims::Int=1, corrected::Bool=true) Tₒ = Base.promote_op(/, eltype(X), Int) n = size(X, dims) m = size(X, mod(dims,2)+1) Ρ = similar(X, Tₒ, (m, m)) # Diagonal must be unity @inbounds for i = 1:m Ρ[i,i] = one(Tₒ) end # Only two dimensions are possible, so handle each manually if dims == 1 # Precalculate means and standard deviations μ = ntuple(m) do d nanmean(view(X,:,d)) end σ = ntuple(m) do d nanstd(view(X,:,d), mean=μ[d], corrected=corrected) end # Fill off-diagonals symmetrically @inbounds for i = 1:m for j = 1:i σᵢⱼ = _nancov(view(X,:,i), view(X,:,j), corrected, μ[i], μ[j]) Ρ[i,j] = Ρ[j,i] = σᵢⱼ / (σ[i] * σ[j]) end end elseif dims == 2 # Precalculate means and standard deviations μ = ntuple(m) do d nanmean(view(X,d,:)) end σ = ntuple(m) do d nanstd(view(X,d,:), mean=μ[d], corrected=corrected) end @inbounds for i = 1:m for j = 1:i-1 σᵢⱼ = _nancov(view(X,i,:), view(X,j,:), corrected, μ[i], μ[j]) Ρ[i,j] = Ρ[j,i] = σᵢⱼ / (σ[i] * σ[j]) end end else throw("Dimension not in range") end return Ρ end export nancor
[ 27, 7856, 261, 480, 29, 65, 918, 20079, 365, 6051, 14, 26705, 45, 48346, 13, 20362, 198, 8818, 4808, 77, 1192, 709, 7, 87, 3712, 23839, 38469, 11, 331, 3712, 23839, 38469, 11, 19267, 3712, 33, 970, 11, 18919, 39611, 103, 3712, 15057, 11, 18919, 39611, 100, 3712, 15057, 8, 198, 220, 220, 220, 1303, 27131, 378, 44829, 590, 198, 220, 220, 220, 18074, 225, 39611, 103, 39611, 100, 796, 18872, 227, 796, 6632, 7, 16963, 1258, 62, 4906, 7, 4906, 1659, 7, 34703, 39611, 103, 828, 2099, 1659, 7, 34703, 39611, 100, 828, 2558, 4008, 198, 220, 220, 220, 299, 796, 657, 198, 220, 220, 220, 2488, 36590, 2127, 329, 1312, 18872, 230, 36525, 19510, 87, 11, 88, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7377, 112, 39611, 103, 796, 2124, 58, 72, 60, 532, 18919, 39611, 103, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7377, 112, 39611, 100, 796, 331, 58, 72, 60, 532, 18919, 39611, 100, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7377, 112, 31185, 796, 7377, 112, 39611, 103, 1635, 7377, 112, 39611, 100, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 407, 12647, 796, 7377, 112, 31185, 855, 138, 112, 31185, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 299, 15853, 407, 12647, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 18074, 225, 39611, 103, 39611, 100, 15853, 611, 17772, 7, 1662, 12647, 11, 7377, 112, 31185, 11, 18872, 227, 8, 198, 220, 220, 220, 886, 198, 220, 220, 220, 18074, 225, 39611, 103, 39611, 100, 796, 18074, 225, 39611, 103, 39611, 100, 1220, 357, 77, 12, 30283, 276, 8, 198, 220, 220, 220, 1441, 18074, 225, 39611, 103, 39611, 100, 198, 437, 628, 198, 37811, 198, 15506, 63, 73, 43640, 198, 77, 1192, 709, 7, 87, 3712, 23839, 38469, 11, 331, 3712, 23839, 38469, 26, 19267, 3712, 33, 970, 28, 7942, 8, 198, 15506, 63, 198, 7293, 1133, 262, 44829, 590, 1022, 262, 30104, 4600, 87, 63, 290, 4600, 88, 44646, 198, 1722, 4600, 48346, 13, 66, 709, 47671, 475, 15482, 4600, 26705, 45, 63, 82, 13, 198, 198, 1532, 4600, 30283, 276, 63, 318, 4600, 7942, 63, 355, 318, 262, 4277, 11, 4808, 33, 7878, 338, 17137, 62, 481, 307, 5625, 11, 198, 10508, 326, 262, 2160, 318, 27464, 416, 4600, 77, 12, 16, 63, 2138, 621, 4600, 77, 47671, 810, 4600, 77, 796, 4129, 7, 87, 8, 44646, 198, 37811, 198, 8818, 299, 1192, 709, 7, 87, 3712, 23839, 38469, 11, 331, 3712, 23839, 38469, 26, 19267, 3712, 33, 970, 28, 7942, 8, 198, 220, 220, 220, 1303, 6822, 20428, 198, 220, 220, 220, 299, 39611, 103, 796, 4129, 7, 87, 8, 198, 220, 220, 220, 299, 39611, 100, 796, 4129, 7, 88, 8, 198, 220, 220, 220, 2488, 30493, 299, 39611, 103, 6624, 299, 39611, 100, 628, 220, 220, 220, 18919, 39611, 103, 796, 4808, 12647, 32604, 7, 87, 11, 25, 8, 198, 220, 220, 220, 18919, 39611, 100, 796, 4808, 12647, 32604, 7, 88, 11, 25, 8, 198, 220, 220, 220, 18074, 225, 39611, 103, 39611, 100, 796, 4808, 77, 1192, 709, 7, 87, 11, 331, 11, 19267, 11, 18919, 39611, 103, 11, 18919, 39611, 100, 8, 198, 220, 220, 220, 1441, 18074, 225, 39611, 103, 39611, 100, 198, 437, 198, 198, 37811, 198, 15506, 63, 73, 43640, 198, 77, 1192, 709, 7, 55, 3712, 23839, 46912, 26, 5391, 82, 3712, 5317, 28, 16, 11, 19267, 3712, 33, 970, 28, 7942, 8, 198, 15506, 63, 198, 7293, 1133, 262, 44829, 590, 17593, 286, 262, 17593, 4600, 55, 47671, 1863, 15793, 4600, 67, 12078, 44646, 198, 1722, 4600, 48346, 13, 66, 709, 47671, 475, 15482, 4600, 26705, 45, 63, 82, 13, 198, 198, 1532, 4600, 30283, 276, 63, 318, 4600, 7942, 63, 355, 318, 262, 4277, 11, 4808, 33, 7878, 338, 17137, 62, 481, 307, 5625, 11, 198, 10508, 326, 262, 2160, 318, 27464, 416, 4600, 77, 12, 16, 63, 2138, 621, 4600, 77, 47671, 810, 4600, 77, 796, 4129, 7, 87, 8, 44646, 198, 37811, 198, 8818, 299, 1192, 709, 7, 55, 3712, 23839, 46912, 26, 5391, 82, 3712, 5317, 28, 16, 11, 19267, 3712, 33, 970, 28, 7942, 8, 198, 220, 220, 220, 309, 158, 224, 240, 796, 7308, 13, 16963, 1258, 62, 404, 7, 47454, 1288, 4906, 7, 55, 828, 2558, 8, 198, 220, 220, 220, 299, 796, 2546, 7, 55, 11, 5391, 82, 8, 198, 220, 220, 220, 285, 796, 2546, 7, 55, 11, 953, 7, 67, 12078, 11, 17, 47762, 16, 8, 198, 220, 220, 220, 7377, 96, 796, 2092, 7, 55, 11, 309, 158, 224, 240, 11, 357, 76, 11, 285, 4008, 198, 220, 220, 220, 1303, 5514, 734, 15225, 389, 1744, 11, 523, 5412, 1123, 14500, 198, 220, 220, 220, 611, 5391, 82, 6624, 352, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 3771, 9948, 3129, 378, 1724, 329, 1123, 5721, 198, 220, 220, 220, 220, 220, 220, 220, 18919, 796, 299, 83, 29291, 7, 76, 8, 466, 288, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 15709, 32604, 7, 1177, 7, 55, 11, 45299, 67, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 886, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 27845, 44829, 590, 17593, 23606, 21879, 1146, 198, 220, 220, 220, 220, 220, 220, 220, 2488, 259, 65, 3733, 329, 1312, 796, 352, 25, 76, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 474, 796, 352, 25, 72, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 18074, 225, 39611, 95, 158, 109, 120, 796, 4808, 77, 1192, 709, 7, 1177, 7, 55, 11, 45299, 72, 828, 1570, 7, 55, 11, 45299, 73, 828, 19267, 11, 18919, 58, 72, 4357, 18919, 58, 73, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7377, 96, 58, 72, 11, 73, 60, 796, 7377, 96, 58, 73, 11, 72, 60, 796, 18074, 225, 39611, 95, 158, 109, 120, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 886, 198, 220, 220, 220, 220, 220, 220, 220, 886, 198, 220, 220, 220, 2073, 361, 5391, 82, 6624, 362, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 3771, 9948, 3129, 378, 1724, 329, 1123, 5752, 198, 220, 220, 220, 220, 220, 220, 220, 18919, 796, 299, 83, 29291, 7, 76, 8, 466, 288, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 15709, 32604, 7, 1177, 7, 55, 11, 67, 11, 25, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 886, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 27845, 44829, 590, 17593, 23606, 21879, 1146, 198, 220, 220, 220, 220, 220, 220, 220, 2488, 259, 65, 3733, 329, 1312, 796, 352, 25, 76, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 474, 796, 352, 25, 72, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 18074, 225, 39611, 95, 158, 109, 120, 796, 4808, 77, 1192, 709, 7, 1177, 7, 55, 11, 72, 11, 25, 828, 1570, 7, 55, 11, 73, 11, 25, 828, 19267, 11, 18919, 58, 72, 4357, 18919, 58, 73, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7377, 96, 58, 72, 11, 73, 60, 796, 7377, 96, 58, 73, 11, 72, 60, 796, 18074, 225, 39611, 95, 158, 109, 120, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 886, 198, 220, 220, 220, 220, 220, 220, 220, 886, 198, 220, 220, 220, 2073, 198, 220, 220, 220, 220, 220, 220, 220, 3714, 7203, 29271, 3004, 407, 287, 2837, 4943, 198, 220, 220, 220, 886, 198, 220, 220, 220, 1441, 7377, 96, 198, 437, 198, 39344, 299, 1192, 709, 628, 198, 198, 37811, 198, 15506, 63, 73, 43640, 198, 77, 1192, 273, 7, 87, 3712, 23839, 38469, 11, 331, 3712, 23839, 38469, 8, 198, 15506, 63, 198, 7293, 1133, 262, 357, 46262, 1559, 338, 1720, 12, 32542, 298, 8, 16096, 1022, 262, 30104, 4600, 87, 63, 290, 4600, 88, 44646, 198, 1722, 4600, 48346, 13, 10215, 47671, 475, 15482, 4600, 26705, 45, 63, 82, 13, 198, 198, 23588, 29540, 284, 4600, 77, 1192, 709, 7, 87, 11, 88, 8, 1220, 357, 12647, 19282, 7, 87, 8, 1635, 15709, 19282, 7, 88, 4008, 44646, 198, 37811, 198, 8818, 299, 1192, 273, 7, 87, 3712, 23839, 38469, 11, 331, 3712, 23839, 38469, 26, 19267, 3712, 33, 970, 28, 7942, 8, 198, 220, 220, 220, 1303, 6822, 20428, 198, 220, 220, 220, 299, 39611, 103, 796, 4129, 7, 87, 8, 198, 220, 220, 220, 299, 39611, 100, 796, 4129, 7, 88, 8, 198, 220, 220, 220, 2488, 30493, 299, 39611, 103, 6624, 299, 39611, 100, 628, 220, 220, 220, 18919, 39611, 103, 796, 15709, 32604, 7, 87, 8, 198, 220, 220, 220, 18919, 39611, 100, 796, 15709, 32604, 7, 88, 8, 198, 220, 220, 220, 18074, 225, 39611, 103, 796, 15709, 19282, 7, 87, 11, 1612, 28, 34703, 39611, 103, 11, 19267, 28, 30283, 276, 8, 198, 220, 220, 220, 18074, 225, 39611, 100, 796, 15709, 19282, 7, 88, 11, 1612, 28, 34703, 39611, 100, 11, 19267, 28, 30283, 276, 8, 198, 220, 220, 220, 18074, 225, 39611, 103, 39611, 100, 796, 4808, 77, 1192, 709, 7, 87, 11, 331, 11, 19267, 11, 18919, 39611, 103, 11, 18919, 39611, 100, 8, 198, 220, 220, 220, 18074, 223, 39611, 103, 39611, 100, 796, 18074, 225, 39611, 103, 39611, 100, 1220, 357, 38392, 39611, 103, 1635, 18074, 225, 39611, 100, 8, 628, 220, 220, 220, 1441, 18074, 223, 39611, 103, 39611, 100, 198, 437, 628, 198, 37811, 198, 15506, 63, 73, 43640, 198, 77, 1192, 273, 7, 55, 3712, 23839, 46912, 26, 5391, 82, 3712, 5317, 28, 16, 8, 198, 15506, 63, 198, 7293, 1133, 262, 357, 46262, 1559, 338, 1720, 12, 32542, 298, 8, 16096, 17593, 286, 262, 17593, 4600, 55, 47671, 198, 24176, 15793, 4600, 67, 12078, 44646, 1081, 4600, 48346, 13, 10215, 47671, 475, 15482, 4600, 26705, 45, 63, 82, 13, 198, 37811, 198, 8818, 299, 1192, 273, 7, 55, 3712, 23839, 46912, 26, 5391, 82, 3712, 5317, 28, 16, 11, 19267, 3712, 33, 970, 28, 7942, 8, 198, 220, 220, 220, 309, 158, 224, 240, 796, 7308, 13, 16963, 1258, 62, 404, 7, 47454, 1288, 4906, 7, 55, 828, 2558, 8, 198, 220, 220, 220, 299, 796, 2546, 7, 55, 11, 5391, 82, 8, 198, 220, 220, 220, 285, 796, 2546, 7, 55, 11, 953, 7, 67, 12078, 11, 17, 47762, 16, 8, 198, 220, 220, 220, 7377, 94, 796, 2092, 7, 55, 11, 309, 158, 224, 240, 11, 357, 76, 11, 285, 4008, 198, 220, 220, 220, 1303, 6031, 27923, 1276, 307, 14111, 198, 220, 220, 220, 2488, 259, 65, 3733, 329, 1312, 796, 352, 25, 76, 198, 220, 220, 220, 220, 220, 220, 220, 7377, 94, 58, 72, 11, 72, 60, 796, 530, 7, 51, 158, 224, 240, 8, 198, 220, 220, 220, 886, 198, 220, 220, 220, 1303, 5514, 734, 15225, 389, 1744, 11, 523, 5412, 1123, 14500, 198, 220, 220, 220, 611, 5391, 82, 6624, 352, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 3771, 9948, 3129, 378, 1724, 290, 3210, 47060, 198, 220, 220, 220, 220, 220, 220, 220, 18919, 796, 299, 83, 29291, 7, 76, 8, 466, 288, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 15709, 32604, 7, 1177, 7, 55, 11, 45299, 67, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 886, 198, 220, 220, 220, 220, 220, 220, 220, 18074, 225, 796, 299, 83, 29291, 7, 76, 8, 466, 288, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 15709, 19282, 7, 1177, 7, 55, 11, 45299, 67, 828, 1612, 28, 34703, 58, 67, 4357, 19267, 28, 30283, 276, 8, 198, 220, 220, 220, 220, 220, 220, 220, 886, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 27845, 572, 12, 10989, 1840, 874, 23606, 21879, 1146, 198, 220, 220, 220, 220, 220, 220, 220, 2488, 259, 65, 3733, 329, 1312, 796, 352, 25, 76, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 474, 796, 352, 25, 72, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 18074, 225, 39611, 95, 158, 109, 120, 796, 4808, 77, 1192, 709, 7, 1177, 7, 55, 11, 45299, 72, 828, 1570, 7, 55, 11, 45299, 73, 828, 19267, 11, 18919, 58, 72, 4357, 18919, 58, 73, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7377, 94, 58, 72, 11, 73, 60, 796, 7377, 94, 58, 73, 11, 72, 60, 796, 18074, 225, 39611, 95, 158, 109, 120, 1220, 357, 38392, 58, 72, 60, 1635, 18074, 225, 58, 73, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 886, 198, 220, 220, 220, 220, 220, 220, 220, 886, 198, 220, 220, 220, 2073, 361, 5391, 82, 6624, 362, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 3771, 9948, 3129, 378, 1724, 290, 3210, 47060, 198, 220, 220, 220, 220, 220, 220, 220, 18919, 796, 299, 83, 29291, 7, 76, 8, 466, 288, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 15709, 32604, 7, 1177, 7, 55, 11, 67, 11, 25, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 886, 198, 220, 220, 220, 220, 220, 220, 220, 18074, 225, 796, 299, 83, 29291, 7, 76, 8, 466, 288, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 15709, 19282, 7, 1177, 7, 55, 11, 67, 11, 25, 828, 1612, 28, 34703, 58, 67, 4357, 19267, 28, 30283, 276, 8, 198, 220, 220, 220, 220, 220, 220, 220, 886, 198, 220, 220, 220, 220, 220, 220, 220, 2488, 259, 65, 3733, 329, 1312, 796, 352, 25, 76, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 474, 796, 352, 25, 72, 12, 16, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 18074, 225, 39611, 95, 158, 109, 120, 796, 4808, 77, 1192, 709, 7, 1177, 7, 55, 11, 72, 11, 25, 828, 1570, 7, 55, 11, 73, 11, 25, 828, 19267, 11, 18919, 58, 72, 4357, 18919, 58, 73, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7377, 94, 58, 72, 11, 73, 60, 796, 7377, 94, 58, 73, 11, 72, 60, 796, 18074, 225, 39611, 95, 158, 109, 120, 1220, 357, 38392, 58, 72, 60, 1635, 18074, 225, 58, 73, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 886, 198, 220, 220, 220, 220, 220, 220, 220, 886, 198, 220, 220, 220, 2073, 198, 220, 220, 220, 220, 220, 220, 220, 3714, 7203, 29271, 3004, 407, 287, 2837, 4943, 198, 220, 220, 220, 886, 198, 220, 220, 220, 1441, 7377, 94, 198, 437, 198, 39344, 299, 1192, 273, 198 ]
1.893333
2,550
# To update the reference data, run # julia --project=. update_reference_data.jl using ParticleDA, HDF5, StableRNGs include(joinpath(@__DIR__, "model", "model.jl")) using .Model reference_file = joinpath(@__DIR__, "reference_data.h5") rm(reference_file; force=true) x_true, _, _ = ParticleDA.run_particle_filter(Model.init, joinpath(@__DIR__, "integration_test_1.yaml"), BootstrapFilter()) h5write(reference_file, "integration_test_1", x_true) x_true, _, _ = ParticleDA.run_particle_filter(Model.init, joinpath(@__DIR__, "integration_test_2.yaml"), BootstrapFilter()) h5write(reference_file, "integration_test_2", x_true) rng = StableRNG(123) _, x_avg, _ = ParticleDA.run_particle_filter(Model.init, joinpath(@__DIR__, "integration_test_4.yaml"), BootstrapFilter(); rng) h5write(reference_file, "integration_test_4", x_avg) rng = StableRNG(123) _, x_avg, _ = ParticleDA.run_particle_filter(Model.init, joinpath(@__DIR__, "optimal_filter_test_1.yaml"), OptimalFilter(); rng) h5write(reference_file, "integration_test_6", x_avg)
[ 2, 1675, 4296, 262, 4941, 1366, 11, 1057, 198, 2, 220, 220, 474, 43640, 1377, 16302, 28, 13, 4296, 62, 35790, 62, 7890, 13, 20362, 198, 3500, 2142, 1548, 5631, 11, 5572, 37, 20, 11, 520, 540, 49, 10503, 82, 198, 17256, 7, 22179, 6978, 7, 31, 834, 34720, 834, 11, 366, 19849, 1600, 366, 19849, 13, 20362, 48774, 198, 3500, 764, 17633, 198, 198, 35790, 62, 7753, 796, 4654, 6978, 7, 31, 834, 34720, 834, 11, 366, 35790, 62, 7890, 13, 71, 20, 4943, 198, 26224, 7, 35790, 62, 7753, 26, 2700, 28, 7942, 8, 198, 198, 87, 62, 7942, 11, 4808, 11, 4808, 796, 2142, 1548, 5631, 13, 5143, 62, 3911, 1548, 62, 24455, 7, 17633, 13, 15003, 11, 4654, 6978, 7, 31, 834, 34720, 834, 11, 366, 18908, 1358, 62, 9288, 62, 16, 13, 88, 43695, 12340, 18892, 26418, 22417, 28955, 198, 71, 20, 13564, 7, 35790, 62, 7753, 11, 366, 18908, 1358, 62, 9288, 62, 16, 1600, 2124, 62, 7942, 8, 198, 198, 87, 62, 7942, 11, 4808, 11, 4808, 796, 2142, 1548, 5631, 13, 5143, 62, 3911, 1548, 62, 24455, 7, 17633, 13, 15003, 11, 4654, 6978, 7, 31, 834, 34720, 834, 11, 366, 18908, 1358, 62, 9288, 62, 17, 13, 88, 43695, 12340, 18892, 26418, 22417, 28955, 198, 71, 20, 13564, 7, 35790, 62, 7753, 11, 366, 18908, 1358, 62, 9288, 62, 17, 1600, 2124, 62, 7942, 8, 198, 198, 81, 782, 796, 520, 540, 49, 10503, 7, 10163, 8, 198, 62, 11, 2124, 62, 615, 70, 11, 4808, 796, 2142, 1548, 5631, 13, 5143, 62, 3911, 1548, 62, 24455, 7, 17633, 13, 15003, 11, 4654, 6978, 7, 31, 834, 34720, 834, 11, 366, 18908, 1358, 62, 9288, 62, 19, 13, 88, 43695, 12340, 18892, 26418, 22417, 9783, 374, 782, 8, 198, 71, 20, 13564, 7, 35790, 62, 7753, 11, 366, 18908, 1358, 62, 9288, 62, 19, 1600, 2124, 62, 615, 70, 8, 198, 198, 81, 782, 796, 520, 540, 49, 10503, 7, 10163, 8, 198, 62, 11, 2124, 62, 615, 70, 11, 4808, 796, 2142, 1548, 5631, 13, 5143, 62, 3911, 1548, 62, 24455, 7, 17633, 13, 15003, 11, 4654, 6978, 7, 31, 834, 34720, 834, 11, 366, 8738, 4402, 62, 24455, 62, 9288, 62, 16, 13, 88, 43695, 12340, 13123, 4402, 22417, 9783, 374, 782, 8, 198, 71, 20, 13564, 7, 35790, 62, 7753, 11, 366, 18908, 1358, 62, 9288, 62, 21, 1600, 2124, 62, 615, 70, 8, 198 ]
2.540541
407
""" Get global settings. """ function get_options() opt = Dict() opt["base_folder"] = "/data02/Ican/vic_sim/past_1km" opt["target_folder"] = "/data02/Ican/vic_sim/jan_past_1031" opt["eval_folder"] = "/data02/Ican/vic_sim/jan_eval_1031" opt["stat_sel"] = ["191.2", "122.11", "2.32", "2.279", "224.1", "12.70", "62.5", "22.4"] opt["resolutions"] = ["1km", "5km", "10km", "25km", "50km"] opt["startyear"] = 1982 opt["endyear"] = 2012 opt["timestep"] = 3 opt["output_force"] = "FALSE" opt["full_energy"] = "FALSE" opt["output_binary"] = "TRUE" return opt end """ Get wsh_info file. """ function get_wsh_info() @load Pkg.dir("IcanProj", "data", "wsh_info.jld2") wsh_info return wsh_info end
[ 198, 198, 37811, 198, 3855, 3298, 6460, 13, 198, 37811, 198, 8818, 651, 62, 25811, 3419, 198, 220, 220, 220, 220, 198, 220, 220, 220, 2172, 796, 360, 713, 3419, 628, 220, 220, 220, 2172, 14692, 8692, 62, 43551, 8973, 796, 12813, 7890, 2999, 14, 40, 5171, 14, 25531, 62, 14323, 14, 30119, 62, 16, 13276, 1, 198, 220, 220, 220, 2172, 14692, 16793, 62, 43551, 8973, 796, 12813, 7890, 2999, 14, 40, 5171, 14, 25531, 62, 14323, 14, 13881, 62, 30119, 62, 940, 3132, 1, 198, 220, 220, 220, 2172, 14692, 18206, 62, 43551, 8973, 796, 12813, 7890, 2999, 14, 40, 5171, 14, 25531, 62, 14323, 14, 13881, 62, 18206, 62, 940, 3132, 1, 628, 220, 220, 220, 2172, 14692, 14269, 62, 741, 8973, 796, 14631, 26492, 13, 17, 1600, 366, 18376, 13, 1157, 1600, 366, 17, 13, 2624, 1600, 366, 17, 13, 26050, 1600, 366, 24137, 13, 16, 1600, 366, 1065, 13, 2154, 1600, 366, 5237, 13, 20, 1600, 366, 1828, 13, 19, 8973, 628, 220, 220, 220, 2172, 14692, 411, 14191, 8973, 796, 14631, 16, 13276, 1600, 366, 20, 13276, 1600, 366, 940, 13276, 1600, 366, 1495, 13276, 1600, 366, 1120, 13276, 8973, 198, 220, 220, 220, 220, 198, 220, 220, 220, 2172, 14692, 9688, 1941, 8973, 796, 14489, 198, 220, 220, 220, 2172, 14692, 437, 1941, 8973, 796, 2321, 198, 220, 220, 220, 2172, 14692, 16514, 395, 538, 8973, 796, 513, 198, 220, 220, 220, 2172, 14692, 22915, 62, 3174, 8973, 796, 366, 37, 23719, 1, 198, 220, 220, 220, 2172, 14692, 12853, 62, 22554, 8973, 796, 366, 37, 23719, 1, 198, 220, 220, 220, 2172, 14692, 22915, 62, 39491, 8973, 796, 366, 5446, 8924, 1, 628, 220, 220, 220, 1441, 2172, 198, 198, 437, 628, 198, 37811, 198, 3855, 266, 1477, 62, 10951, 2393, 13, 198, 37811, 198, 8818, 651, 62, 86, 1477, 62, 10951, 3419, 628, 220, 220, 220, 2488, 2220, 350, 10025, 13, 15908, 7203, 40, 5171, 2964, 73, 1600, 366, 7890, 1600, 366, 86, 1477, 62, 10951, 13, 73, 335, 17, 4943, 266, 1477, 62, 10951, 628, 220, 220, 220, 1441, 266, 1477, 62, 10951, 198, 198, 437, 198 ]
2.151261
357
<filename>src/renderers/json.jl # module Bukdu import JSON function render(T::Type{Val{:JSON}}, obj::Any)::Conn filtering(render,T,obj) do Conn(200, Dict("Content-Type"=>"application/json"), JSON.json(obj)) end end
[ 27, 34345, 29, 10677, 14, 10920, 19288, 14, 17752, 13, 20362, 198, 2, 8265, 36810, 646, 198, 198, 11748, 19449, 198, 198, 8818, 8543, 7, 51, 3712, 6030, 90, 7762, 90, 25, 40386, 92, 5512, 26181, 3712, 7149, 2599, 25, 37321, 198, 220, 220, 220, 25431, 7, 13287, 11, 51, 11, 26801, 8, 466, 198, 220, 220, 220, 220, 220, 220, 220, 20776, 7, 2167, 11, 360, 713, 7203, 19746, 12, 6030, 1, 14804, 1, 31438, 14, 17752, 12340, 19449, 13, 17752, 7, 26801, 4008, 198, 220, 220, 220, 886, 198, 437, 198 ]
2.505376
93
<reponame>Asaber5492/MCPhylo.jl #################### Empirical Move #################### #################### Types and Constructors #################### mutable struct EmpiricalTune <: SamplerTune samplerfun::Union{Function, Missing} width::Int64 replacement::Bool EmpiricalTune() = new() EmpiricalTune(samplerfun::Union{Function, Missing}, width::Int64, replacement::Bool=false)= new(samplerfun, width, false) end EmpiricalTune(x::Vector, width::Int64, replacement::Bool=false)= EmpiricalTune(missing, width, replacement) const EmpiricalVariate = SamplerVariate{EmpiricalTune} #################### Sampler Constructor #################### """ function Empirical(params::ElementOrVector{Symbol}, width::Int64; args...) This Sampler generates Samples from a distribution by selecting a random value from this distribution. The move will always be accepted. """ function Empirical(params::ElementOrVector{Symbol}, width::Int64; args...) samplerfx = function(model::Model, block::Integer) block = SamplingBlock(model, block) v = SamplerVariate(block, width, args...) sample!(v, x -> rand!(block, x)) relist(block, v) end Sampler(params, samplerfx, EmpiricalTune()) end sample!(v::EmpiricalVariate) = sample(v, v.tune.samplerfun) function sample!(v::EmpiricalVariate, sampler_func::Function) width = v.tune.width sam = sampler_func(width) if width > 1 && v.tune.replacement while length(Set(sam)) != width sam = sampler_func(width) end end v[:] = sam v end
[ 27, 7856, 261, 480, 29, 1722, 27359, 20, 40256, 14, 9655, 2725, 2645, 78, 13, 20362, 198, 14468, 4242, 2295, 4063, 605, 10028, 1303, 14468, 21017, 198, 198, 14468, 4242, 24897, 290, 28407, 669, 1303, 14468, 21017, 628, 198, 76, 18187, 2878, 2295, 4063, 605, 51, 1726, 1279, 25, 3409, 20053, 51, 1726, 198, 220, 220, 220, 6072, 20053, 12543, 3712, 38176, 90, 22203, 11, 25639, 92, 198, 220, 220, 220, 9647, 3712, 5317, 2414, 198, 220, 220, 220, 9014, 3712, 33, 970, 628, 220, 220, 220, 2295, 4063, 605, 51, 1726, 3419, 796, 649, 3419, 628, 220, 220, 220, 2295, 4063, 605, 51, 1726, 7, 37687, 20053, 12543, 3712, 38176, 90, 22203, 11, 25639, 5512, 9647, 3712, 5317, 2414, 11, 9014, 3712, 33, 970, 28, 9562, 47505, 198, 220, 220, 220, 220, 220, 220, 220, 649, 7, 37687, 20053, 12543, 11, 9647, 11, 3991, 8, 198, 437, 198, 198, 36, 3149, 343, 605, 51, 1726, 7, 87, 3712, 38469, 11, 9647, 3712, 5317, 2414, 11, 9014, 3712, 33, 970, 28, 9562, 47505, 198, 220, 220, 220, 2295, 4063, 605, 51, 1726, 7, 45688, 11, 9647, 11, 9014, 8, 198, 198, 9979, 2295, 4063, 605, 23907, 378, 796, 3409, 20053, 23907, 378, 90, 36, 3149, 343, 605, 51, 1726, 92, 628, 198, 14468, 4242, 3409, 20053, 28407, 273, 1303, 14468, 21017, 198, 37811, 198, 198, 8818, 2295, 4063, 605, 7, 37266, 3712, 20180, 5574, 38469, 90, 13940, 23650, 5512, 9647, 3712, 5317, 2414, 26, 26498, 23029, 198, 198, 1212, 3409, 20053, 18616, 3409, 2374, 422, 257, 6082, 416, 17246, 257, 4738, 1988, 198, 6738, 428, 6082, 13, 383, 1445, 481, 1464, 307, 6292, 13, 198, 37811, 198, 8818, 2295, 4063, 605, 7, 37266, 3712, 20180, 5574, 38469, 90, 13940, 23650, 5512, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9647, 3712, 5317, 2414, 26, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 26498, 23029, 198, 220, 220, 220, 6072, 20053, 21373, 796, 2163, 7, 19849, 3712, 17633, 11, 2512, 3712, 46541, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2512, 796, 3409, 11347, 12235, 7, 19849, 11, 2512, 8, 198, 220, 220, 220, 220, 220, 220, 220, 410, 796, 3409, 20053, 23907, 378, 7, 9967, 11, 9647, 11, 26498, 23029, 198, 220, 220, 220, 220, 220, 220, 220, 6291, 0, 7, 85, 11, 2124, 4613, 43720, 0, 7, 9967, 11, 2124, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 823, 396, 7, 9967, 11, 410, 8, 198, 220, 220, 220, 886, 198, 220, 220, 220, 3409, 20053, 7, 37266, 11, 6072, 20053, 21373, 11, 2295, 4063, 605, 51, 1726, 28955, 198, 437, 198, 198, 39873, 0, 7, 85, 3712, 36, 3149, 343, 605, 23907, 378, 8, 796, 6291, 7, 85, 11, 410, 13, 83, 1726, 13, 37687, 20053, 12543, 8, 198, 8818, 6291, 0, 7, 85, 3712, 36, 3149, 343, 605, 23907, 378, 11, 6072, 20053, 62, 20786, 3712, 22203, 8, 198, 220, 220, 220, 9647, 796, 410, 13, 83, 1726, 13, 10394, 198, 220, 220, 220, 6072, 796, 6072, 20053, 62, 20786, 7, 10394, 8, 198, 220, 220, 220, 611, 9647, 1875, 352, 11405, 410, 13, 83, 1726, 13, 35666, 5592, 198, 220, 220, 220, 220, 220, 220, 220, 981, 4129, 7, 7248, 7, 37687, 4008, 14512, 9647, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6072, 796, 6072, 20053, 62, 20786, 7, 10394, 8, 198, 220, 220, 220, 220, 220, 220, 220, 886, 198, 220, 220, 220, 886, 198, 220, 220, 220, 410, 58, 47715, 796, 6072, 198, 220, 220, 220, 410, 198, 437, 198 ]
2.669951
609
<filename>test/runtests.jl using MaximumLikelihoodPower const MLE = MaximumLikelihoodPower import MaximumLikelihoodPower.Example using Test include("testmle.jl")
[ 27, 34345, 29, 9288, 14, 81, 2797, 3558, 13, 20362, 198, 3500, 22246, 7594, 11935, 13434, 198, 9979, 337, 2538, 796, 22246, 7594, 11935, 13434, 198, 11748, 22246, 7594, 11935, 13434, 13, 16281, 198, 198, 3500, 6208, 198, 198, 17256, 7203, 9288, 76, 293, 13, 20362, 4943, 198 ]
3.416667
48
export PostponeScheduler import DataStructures: Queue, enqueue!, dequeue! import Base: show, similar, wait abstract type AbstractPostponedAction end ## struct PostponeScheduler <: AbstractScheduler postponed_actions :: Queue{AbstractPostponedAction} PostponeScheduler() = new(Queue{AbstractPostponedAction}()) end Base.show(io::IO, ::PostponeScheduler) = print(io, "PostponeScheduler()") Base.similar(::PostponeScheduler) = PostponeScheduler() ## mutable struct PostponedSubscriptionProps is_subscribed :: Bool is_unsubscribed :: Bool subscription :: Teardown PostponedSubscriptionProps() = new(false, false, voidTeardown) end ## struct PostponedSubscriptionAction <: AbstractPostponedAction scheduler :: PostponeScheduler source actor props :: PostponedSubscriptionProps end function release!(action::PostponedSubscriptionAction) if !action.props.is_unsubscribed && !action.props.is_subscribed action.props.subscription = on_subscribe!(action.source, action.actor, action.scheduler) action.props.is_subscribed = true end end ## struct PostponedUnsubscriptionAction <: AbstractPostponedAction props :: PostponedSubscriptionProps end function release!(action::PostponedUnsubscriptionAction) if !action.props.is_unsubscribed && action.props.is_subscribed unsubscribe!(action.props.subscription) action.props.is_unsubscribed = true end end ## struct PostponedNextAction <: AbstractPostponedAction actor data end release!(action::PostponedNextAction) = next!(action.actor, action.data) ## struct PostponedErrorAction <: AbstractPostponedAction actor error end release!(action::PostponedErrorAction) = error!(action.actor, action.error) ## struct PostponedCompleteAction <: AbstractPostponedAction actor end release!(action::PostponedCompleteAction) = complete!(action.actor) ## function release!(scheduler::PostponeScheduler) index = 1 n = length(getactions(scheduler)) while index <= n action = dequeue!(getactions(scheduler)) release!(action) index += 1 end end function Base.wait(scheduler::PostponeScheduler) while length(getactions(scheduler)) !== 0 release!(scheduler) end end makeinstance(::Type, scheduler::PostponeScheduler) = scheduler instancetype(::Type, ::Type{ <: PostponeScheduler }) = PostponeScheduler getactions(scheduler::PostponeScheduler) = scheduler.postponed_actions scheduled_next!(actor, data, scheduler::PostponeScheduler) = enqueue!(getactions(scheduler), PostponedNextAction(actor, data)) scheduled_error!(actor, error, scheduler::PostponeScheduler) = enqueue!(getactions(scheduler), PostponedErrorAction(actor, error)) scheduled_complete!(actor, scheduler::PostponeScheduler) = enqueue!(getactions(scheduler), PostponedCompleteAction(actor)) function scheduled_subscription!(source, actor, scheduler::PostponeScheduler) postponed_subscription_props = PostponedSubscriptionProps() enqueue!(getactions(scheduler), PostponedSubscriptionAction(scheduler, source, actor, postponed_subscription_props)) return PostponedSubscription(scheduler, postponed_subscription_props) end struct PostponedSubscription <: Teardown scheduler :: PostponeScheduler props :: PostponedSubscriptionProps end as_teardown(::Type{ <: PostponedSubscription }) = UnsubscribableTeardownLogic() function on_unsubscribe!(subscription::PostponedSubscription) enqueue!(getactions(subscription.scheduler), PostponedUnsubscriptionAction(subscription.props)) return nothing end
[ 39344, 2947, 79, 505, 50, 1740, 18173, 198, 198, 11748, 6060, 44909, 942, 25, 4670, 518, 11, 551, 36560, 28265, 390, 36560, 0, 198, 11748, 7308, 25, 905, 11, 2092, 11, 4043, 198, 198, 397, 8709, 2099, 27741, 6307, 79, 12004, 12502, 886, 198, 198, 2235, 198, 198, 7249, 2947, 79, 505, 50, 1740, 18173, 1279, 25, 27741, 50, 1740, 18173, 198, 220, 220, 220, 33922, 62, 4658, 7904, 4670, 518, 90, 23839, 6307, 79, 12004, 12502, 92, 628, 220, 220, 220, 2947, 79, 505, 50, 1740, 18173, 3419, 796, 649, 7, 34991, 90, 23839, 6307, 79, 12004, 12502, 92, 28955, 198, 437, 198, 198, 14881, 13, 12860, 7, 952, 3712, 9399, 11, 7904, 6307, 79, 505, 50, 1740, 18173, 8, 796, 3601, 7, 952, 11, 366, 6307, 79, 505, 50, 1740, 18173, 3419, 4943, 198, 14881, 13, 38610, 7, 3712, 6307, 79, 505, 50, 1740, 18173, 8, 220, 220, 220, 220, 220, 796, 2947, 79, 505, 50, 1740, 18173, 3419, 198, 198, 2235, 198, 198, 76, 18187, 2878, 2947, 79, 12004, 7004, 33584, 2964, 862, 220, 198, 220, 220, 220, 318, 62, 7266, 47495, 220, 220, 7904, 347, 970, 198, 220, 220, 220, 318, 62, 403, 7266, 47495, 7904, 347, 970, 198, 220, 220, 220, 14569, 220, 220, 220, 7904, 1665, 446, 593, 628, 220, 220, 220, 2947, 79, 12004, 7004, 33584, 2964, 862, 3419, 796, 649, 7, 9562, 11, 3991, 11, 7951, 6767, 446, 593, 8, 198, 437, 198, 198, 2235, 220, 198, 198, 7249, 2947, 79, 12004, 7004, 33584, 12502, 1279, 25, 27741, 6307, 79, 12004, 12502, 220, 198, 220, 220, 220, 6038, 18173, 7904, 2947, 79, 505, 50, 1740, 18173, 198, 220, 220, 220, 2723, 198, 220, 220, 220, 8674, 198, 220, 220, 220, 25744, 7904, 2947, 79, 12004, 7004, 33584, 2964, 862, 198, 437, 198, 198, 8818, 2650, 0, 7, 2673, 3712, 6307, 79, 12004, 7004, 33584, 12502, 8, 198, 220, 220, 220, 611, 5145, 2673, 13, 1676, 862, 13, 271, 62, 403, 7266, 47495, 11405, 5145, 2673, 13, 1676, 862, 13, 271, 62, 7266, 47495, 198, 220, 220, 220, 220, 220, 220, 220, 2223, 13, 1676, 862, 13, 7266, 33584, 220, 796, 319, 62, 7266, 12522, 0, 7, 2673, 13, 10459, 11, 2223, 13, 11218, 11, 2223, 13, 1416, 704, 18173, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2223, 13, 1676, 862, 13, 271, 62, 7266, 47495, 796, 2081, 198, 220, 220, 220, 886, 198, 437, 198, 198, 2235, 198, 198, 7249, 2947, 79, 12004, 3118, 7266, 33584, 12502, 1279, 25, 27741, 6307, 79, 12004, 12502, 220, 198, 220, 220, 220, 25744, 7904, 2947, 79, 12004, 7004, 33584, 2964, 862, 198, 437, 198, 198, 8818, 2650, 0, 7, 2673, 3712, 6307, 79, 12004, 3118, 7266, 33584, 12502, 8, 198, 220, 220, 220, 611, 5145, 2673, 13, 1676, 862, 13, 271, 62, 403, 7266, 47495, 11405, 2223, 13, 1676, 862, 13, 271, 62, 7266, 47495, 198, 220, 220, 220, 220, 220, 220, 220, 32793, 12522, 0, 7, 2673, 13, 1676, 862, 13, 7266, 33584, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2223, 13, 1676, 862, 13, 271, 62, 403, 7266, 47495, 796, 2081, 198, 220, 220, 220, 886, 198, 437, 198, 198, 2235, 198, 198, 7249, 2947, 79, 12004, 10019, 12502, 1279, 25, 27741, 6307, 79, 12004, 12502, 198, 220, 220, 220, 8674, 198, 220, 220, 220, 1366, 198, 437, 198, 198, 20979, 0, 7, 2673, 3712, 6307, 79, 12004, 10019, 12502, 8, 796, 1306, 0, 7, 2673, 13, 11218, 11, 2223, 13, 7890, 8, 198, 198, 2235, 198, 198, 7249, 2947, 79, 12004, 12331, 12502, 1279, 25, 27741, 6307, 79, 12004, 12502, 198, 220, 220, 220, 8674, 198, 220, 220, 220, 4049, 198, 437, 198, 198, 20979, 0, 7, 2673, 3712, 6307, 79, 12004, 12331, 12502, 8, 796, 4049, 0, 7, 2673, 13, 11218, 11, 2223, 13, 18224, 8, 198, 198, 2235, 198, 198, 7249, 2947, 79, 12004, 20988, 12502, 1279, 25, 27741, 6307, 79, 12004, 12502, 198, 220, 220, 220, 8674, 198, 437, 198, 198, 20979, 0, 7, 2673, 3712, 6307, 79, 12004, 20988, 12502, 8, 796, 1844, 0, 7, 2673, 13, 11218, 8, 198, 198, 2235, 198, 198, 8818, 2650, 0, 7, 1416, 704, 18173, 3712, 6307, 79, 505, 50, 1740, 18173, 8, 198, 220, 220, 220, 6376, 796, 352, 198, 220, 220, 220, 299, 796, 4129, 7, 1136, 4658, 7, 1416, 704, 18173, 4008, 198, 220, 220, 220, 981, 6376, 19841, 299, 198, 220, 220, 220, 220, 220, 220, 220, 2223, 796, 390, 36560, 0, 7, 1136, 4658, 7, 1416, 704, 18173, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 2650, 0, 7, 2673, 8, 198, 220, 220, 220, 220, 220, 220, 220, 6376, 15853, 352, 198, 220, 220, 220, 886, 198, 437, 198, 198, 8818, 7308, 13, 17077, 7, 1416, 704, 18173, 3712, 6307, 79, 505, 50, 1740, 18173, 8, 198, 220, 220, 220, 981, 4129, 7, 1136, 4658, 7, 1416, 704, 18173, 4008, 5145, 855, 657, 198, 220, 220, 220, 220, 220, 220, 220, 2650, 0, 7, 1416, 704, 18173, 8, 198, 220, 220, 220, 886, 198, 437, 198, 198, 15883, 39098, 7, 3712, 6030, 11, 6038, 18173, 3712, 6307, 79, 505, 50, 1740, 18173, 8, 796, 6038, 18173, 198, 198, 8625, 1192, 2963, 431, 7, 3712, 6030, 11, 7904, 6030, 90, 1279, 25, 2947, 79, 505, 50, 1740, 18173, 32092, 796, 2947, 79, 505, 50, 1740, 18173, 198, 198, 1136, 4658, 7, 1416, 704, 18173, 3712, 6307, 79, 505, 50, 1740, 18173, 8, 796, 6038, 18173, 13, 7353, 79, 12004, 62, 4658, 198, 198, 1416, 704, 6309, 62, 19545, 0, 7, 11218, 11, 1366, 11, 6038, 18173, 3712, 6307, 79, 505, 50, 1740, 18173, 8, 220, 220, 796, 551, 36560, 0, 7, 1136, 4658, 7, 1416, 704, 18173, 828, 2947, 79, 12004, 10019, 12502, 7, 11218, 11, 1366, 4008, 198, 1416, 704, 6309, 62, 18224, 0, 7, 11218, 11, 4049, 11, 6038, 18173, 3712, 6307, 79, 505, 50, 1740, 18173, 8, 796, 551, 36560, 0, 7, 1136, 4658, 7, 1416, 704, 18173, 828, 2947, 79, 12004, 12331, 12502, 7, 11218, 11, 4049, 4008, 198, 1416, 704, 6309, 62, 20751, 0, 7, 11218, 11, 6038, 18173, 3712, 6307, 79, 505, 50, 1740, 18173, 8, 220, 220, 220, 220, 796, 551, 36560, 0, 7, 1136, 4658, 7, 1416, 704, 18173, 828, 2947, 79, 12004, 20988, 12502, 7, 11218, 4008, 198, 198, 8818, 7530, 62, 7266, 33584, 0, 7, 10459, 11, 8674, 11, 6038, 18173, 3712, 6307, 79, 505, 50, 1740, 18173, 8, 220, 198, 220, 220, 220, 33922, 62, 7266, 33584, 62, 1676, 862, 796, 2947, 79, 12004, 7004, 33584, 2964, 862, 3419, 198, 220, 220, 220, 551, 36560, 0, 7, 1136, 4658, 7, 1416, 704, 18173, 828, 2947, 79, 12004, 7004, 33584, 12502, 7, 1416, 704, 18173, 11, 2723, 11, 8674, 11, 33922, 62, 7266, 33584, 62, 1676, 862, 4008, 198, 220, 220, 220, 1441, 2947, 79, 12004, 7004, 33584, 7, 1416, 704, 18173, 11, 33922, 62, 7266, 33584, 62, 1676, 862, 8, 198, 437, 198, 198, 7249, 2947, 79, 12004, 7004, 33584, 1279, 25, 1665, 446, 593, 198, 220, 220, 220, 6038, 18173, 7904, 2947, 79, 505, 50, 1740, 18173, 198, 220, 220, 220, 25744, 220, 220, 220, 220, 7904, 2947, 79, 12004, 7004, 33584, 2964, 862, 198, 437, 198, 198, 292, 62, 660, 446, 593, 7, 3712, 6030, 90, 1279, 25, 2947, 79, 12004, 7004, 33584, 32092, 796, 791, 7266, 40075, 540, 6767, 446, 593, 11187, 291, 3419, 198, 198, 8818, 319, 62, 403, 7266, 12522, 0, 7, 7266, 33584, 3712, 6307, 79, 12004, 7004, 33584, 8, 198, 220, 220, 220, 551, 36560, 0, 7, 1136, 4658, 7, 7266, 33584, 13, 1416, 704, 18173, 828, 2947, 79, 12004, 3118, 7266, 33584, 12502, 7, 7266, 33584, 13, 1676, 862, 4008, 198, 220, 220, 220, 1441, 2147, 198, 437 ]
2.796139
1,295
<filename>src/environments/3rd_party/structs.jl struct GymEnv{T,Ta,To,P} <: AbstractEnv pyenv::P observation_space::To action_space::Ta state::P end export GymEnv mutable struct AtariEnv{IsGrayScale,TerminalOnLifeLoss,N,S<:AbstractRNG} <: AbstractEnv ale::Ptr{Nothing} name::String screens::Tuple{Array{UInt8,N},Array{UInt8,N}} # for max-pooling actions::Vector{Int} action_space::Base.OneTo{Int} observation_space::Space{Array{ClosedInterval{UInt8},N}} noopmax::Int frame_skip::Int reward::Float32 lives::Int rng::S end export AtariEnv mutable struct OpenSpielEnv{S,G} <: AbstractEnv state::S game::G end export OpenSpielEnv # ??? can we safely ignore the `game` field here Base.hash(e::OpenSpielEnv, h::UInt) = hash(e.state, h) Base.:(==)(e::OpenSpielEnv, ee::OpenSpielEnv) = e.state == ee.state mutable struct SnakeGameEnv{A,N,G} <: AbstractEnv game::G latest_snakes_length::Vector{Int} latest_actions::Vector{CartesianIndex{2}} is_terminated::Bool end export SnakeGameEnv
[ 27, 34345, 29, 10677, 14, 268, 12103, 14, 18, 4372, 62, 10608, 14, 7249, 82, 13, 20362, 198, 7249, 31187, 4834, 85, 90, 51, 11, 38586, 11, 2514, 11, 47, 92, 1279, 25, 27741, 4834, 85, 198, 220, 220, 220, 12972, 24330, 3712, 47, 198, 220, 220, 220, 13432, 62, 13200, 3712, 2514, 198, 220, 220, 220, 2223, 62, 13200, 3712, 38586, 198, 220, 220, 220, 1181, 3712, 47, 198, 437, 198, 39344, 31187, 4834, 85, 198, 198, 76, 18187, 2878, 35884, 4834, 85, 90, 3792, 46130, 29990, 11, 44798, 282, 2202, 14662, 43, 793, 11, 45, 11, 50, 27, 25, 23839, 49, 10503, 92, 1279, 25, 27741, 4834, 85, 198, 220, 220, 220, 31341, 3712, 46745, 90, 18465, 92, 198, 220, 220, 220, 1438, 3712, 10100, 198, 220, 220, 220, 8947, 3712, 51, 29291, 90, 19182, 90, 52, 5317, 23, 11, 45, 5512, 19182, 90, 52, 5317, 23, 11, 45, 11709, 220, 1303, 329, 3509, 12, 7742, 278, 198, 220, 220, 220, 4028, 3712, 38469, 90, 5317, 92, 198, 220, 220, 220, 2223, 62, 13200, 3712, 14881, 13, 3198, 2514, 90, 5317, 92, 198, 220, 220, 220, 13432, 62, 13200, 3712, 14106, 90, 19182, 90, 2601, 1335, 9492, 2100, 90, 52, 5317, 23, 5512, 45, 11709, 198, 220, 220, 220, 645, 404, 9806, 3712, 5317, 198, 220, 220, 220, 5739, 62, 48267, 3712, 5317, 198, 220, 220, 220, 6721, 3712, 43879, 2624, 198, 220, 220, 220, 3160, 3712, 5317, 198, 220, 220, 220, 374, 782, 3712, 50, 198, 437, 198, 39344, 35884, 4834, 85, 198, 198, 76, 18187, 2878, 4946, 4561, 8207, 4834, 85, 90, 50, 11, 38, 92, 1279, 25, 27741, 4834, 85, 198, 220, 220, 220, 1181, 3712, 50, 198, 220, 220, 220, 983, 3712, 38, 198, 437, 198, 39344, 4946, 4561, 8207, 4834, 85, 198, 198, 2, 34913, 460, 356, 11512, 8856, 262, 4600, 6057, 63, 2214, 994, 198, 14881, 13, 17831, 7, 68, 3712, 11505, 4561, 8207, 4834, 85, 11, 289, 3712, 52, 5317, 8, 796, 12234, 7, 68, 13, 5219, 11, 289, 8, 198, 14881, 11207, 7, 855, 5769, 68, 3712, 11505, 4561, 8207, 4834, 85, 11, 304, 68, 3712, 11505, 4561, 8207, 4834, 85, 8, 796, 304, 13, 5219, 6624, 304, 68, 13, 5219, 198, 198, 76, 18187, 2878, 16705, 8777, 4834, 85, 90, 32, 11, 45, 11, 38, 92, 1279, 25, 27741, 4834, 85, 198, 220, 220, 220, 983, 3712, 38, 198, 220, 220, 220, 3452, 62, 16184, 1124, 62, 13664, 3712, 38469, 90, 5317, 92, 198, 220, 220, 220, 3452, 62, 4658, 3712, 38469, 90, 43476, 35610, 15732, 90, 17, 11709, 198, 220, 220, 220, 318, 62, 23705, 515, 3712, 33, 970, 198, 437, 198, 39344, 16705, 8777, 4834, 85, 198 ]
2.366667
450
<gh_stars>0 # indicator of the free cone """ IndFree() Returns the indicator function of the whole space, or "free cone", i.e., a function which is identically zero. """ immutable IndFree <: IndicatorConvexCone end """ Zero() Returns the identically zero function. """ typealias Zero IndFree function (f::IndFree)(x::AbstractArray) return 0.0 end function prox!(f::IndFree, x::AbstractArray, y::AbstractArray, gamma::Real=1.0) y[:] = x return 0.0 end fun_name(f::IndFree) = "indicator of the free cone" fun_dom(f::IndFree) = "AbstractArray{Real}, AbstractArray{Complex}" fun_expr(f::IndFree) = "x ↦ 0" fun_params(f::IndFree) = "none" function prox_naive(f::IndFree, x::AbstractArray, gamma::Real=1.0) return x, 0.0 end
[ 27, 456, 62, 30783, 29, 15, 198, 2, 16916, 286, 262, 1479, 27763, 198, 198, 37811, 198, 220, 1423, 11146, 3419, 198, 198, 35561, 262, 16916, 2163, 286, 262, 2187, 2272, 11, 393, 366, 5787, 27763, 1600, 1312, 13, 68, 1539, 198, 64, 2163, 543, 318, 1852, 1146, 6632, 13, 198, 37811, 198, 198, 8608, 18187, 1423, 11146, 1279, 25, 1423, 26407, 3103, 303, 87, 34, 505, 886, 198, 198, 37811, 198, 220, 12169, 3419, 198, 198, 35561, 262, 1852, 1146, 6632, 2163, 13, 198, 37811, 198, 198, 4906, 26011, 12169, 1423, 11146, 198, 198, 8818, 357, 69, 3712, 5497, 11146, 5769, 87, 3712, 23839, 19182, 8, 198, 220, 1441, 657, 13, 15, 198, 437, 198, 198, 8818, 14793, 0, 7, 69, 3712, 5497, 11146, 11, 2124, 3712, 23839, 19182, 11, 331, 3712, 23839, 19182, 11, 34236, 3712, 15633, 28, 16, 13, 15, 8, 198, 220, 331, 58, 47715, 796, 2124, 198, 220, 1441, 657, 13, 15, 198, 437, 198, 198, 12543, 62, 3672, 7, 69, 3712, 5497, 11146, 8, 796, 366, 521, 26407, 286, 262, 1479, 27763, 1, 198, 12543, 62, 3438, 7, 69, 3712, 5497, 11146, 8, 796, 366, 23839, 19182, 90, 15633, 5512, 27741, 19182, 90, 5377, 11141, 36786, 198, 12543, 62, 31937, 7, 69, 3712, 5497, 11146, 8, 796, 366, 87, 17804, 99, 657, 1, 198, 12543, 62, 37266, 7, 69, 3712, 5497, 11146, 8, 796, 366, 23108, 1, 198, 198, 8818, 14793, 62, 2616, 425, 7, 69, 3712, 5497, 11146, 11, 2124, 3712, 23839, 19182, 11, 34236, 3712, 15633, 28, 16, 13, 15, 8, 198, 220, 1441, 2124, 11, 657, 13, 15, 198, 437, 198 ]
2.744444
270
<reponame>glwagner/OceanLES.jl """ VelocityFields(arch, grid) Return a NamedTuple with fields `u`, `v`, `w` initialized on the architecture `arch` and `grid`. """ function VelocityFields(arch, grid) u = FaceFieldX(arch, grid) v = FaceFieldY(arch, grid) w = FaceFieldZ(arch, grid) return (u=u, v=v, w=w) end """ TracerFields(arch, grid) Return a NamedTuple with tracer fields initialized as `CellField`s on the architecture `arch` and `grid`. """ function TracerFields(arch, grid, tracernames) tracerfields = Tuple(CellField(arch, grid) for c in tracernames) return NamedTuple{tracernames}(tracerfields) end TracerFields(arch, grid, ::Union{Tuple{}, Nothing}) = NamedTuple{()}(()) TracerFields(arch, grid, tracer::Symbol) = TracerFields(arch, grid, tuple(tracer)) TracerFields(arch, grid, tracers::NamedTuple) = tracers tracernames(::Nothing) = () tracernames(name::Symbol) = tuple(name) tracernames(names::NTuple{N, Symbol}) where N = :u ∈ names ? names[4:end] : names tracernames(::NamedTuple{names}) where names = tracernames(names) """ PressureFields(arch, grid) Return a NamedTuple with pressure fields `pHY′` and `pNHS` initialized as `CellField`s on the architecture `arch` and `grid`. """ function PressureFields(arch, grid) pHY′ = CellField(arch, grid) pNHS = CellField(arch, grid) return (pHY′=pHY′, pNHS=pNHS) end """ Tendencies(arch, grid, tracernames) Return a NamedTuple with tendencies for all solution fields (velocity fields and tracer fields), initialized on the architecture `arch` and `grid`. """ function Tendencies(arch, grid, tracernames) velocities = (u = FaceFieldX(arch, grid), v = FaceFieldY(arch, grid), w = FaceFieldZ(arch, grid)) tracers = TracerFields(arch, grid, tracernames) return merge(velocities, tracers) end
[ 27, 7856, 261, 480, 29, 4743, 86, 363, 1008, 14, 46607, 28378, 13, 20362, 198, 37811, 198, 220, 220, 220, 43137, 15878, 82, 7, 998, 11, 10706, 8, 198, 198, 13615, 257, 34441, 51, 29291, 351, 7032, 4600, 84, 47671, 4600, 85, 47671, 4600, 86, 63, 23224, 319, 198, 1169, 10959, 4600, 998, 63, 290, 4600, 25928, 44646, 198, 37811, 198, 8818, 43137, 15878, 82, 7, 998, 11, 10706, 8, 198, 220, 220, 220, 334, 796, 15399, 15878, 55, 7, 998, 11, 10706, 8, 198, 220, 220, 220, 410, 796, 15399, 15878, 56, 7, 998, 11, 10706, 8, 198, 220, 220, 220, 266, 796, 15399, 15878, 57, 7, 998, 11, 10706, 8, 198, 220, 220, 220, 1441, 357, 84, 28, 84, 11, 410, 28, 85, 11, 266, 28, 86, 8, 198, 437, 198, 198, 37811, 198, 220, 220, 220, 833, 11736, 15878, 82, 7, 998, 11, 10706, 8, 198, 198, 13615, 257, 34441, 51, 29291, 351, 491, 11736, 7032, 23224, 198, 292, 4600, 28780, 15878, 63, 82, 319, 262, 10959, 4600, 998, 63, 290, 4600, 25928, 44646, 198, 37811, 198, 8818, 833, 11736, 15878, 82, 7, 998, 11, 10706, 11, 491, 330, 1142, 1047, 8, 198, 220, 220, 220, 491, 11736, 25747, 796, 309, 29291, 7, 28780, 15878, 7, 998, 11, 10706, 8, 329, 269, 287, 491, 330, 1142, 1047, 8, 198, 220, 220, 220, 1441, 34441, 51, 29291, 90, 2213, 330, 1142, 1047, 92, 7, 2213, 11736, 25747, 8, 198, 437, 198, 198, 2898, 11736, 15878, 82, 7, 998, 11, 10706, 11, 7904, 38176, 90, 51, 29291, 90, 5512, 10528, 30072, 796, 34441, 51, 29291, 90, 3419, 92, 7, 28955, 198, 2898, 11736, 15878, 82, 7, 998, 11, 10706, 11, 491, 11736, 3712, 13940, 23650, 8, 796, 833, 11736, 15878, 82, 7, 998, 11, 10706, 11, 46545, 7, 2213, 11736, 4008, 198, 2898, 11736, 15878, 82, 7, 998, 11, 10706, 11, 491, 49908, 3712, 45, 2434, 51, 29291, 8, 796, 491, 49908, 198, 198, 2213, 330, 1142, 1047, 7, 3712, 18465, 8, 796, 7499, 198, 2213, 330, 1142, 1047, 7, 3672, 3712, 13940, 23650, 8, 796, 46545, 7, 3672, 8, 198, 2213, 330, 1142, 1047, 7, 14933, 3712, 11251, 29291, 90, 45, 11, 38357, 30072, 810, 399, 796, 1058, 84, 18872, 230, 3891, 5633, 3891, 58, 19, 25, 437, 60, 1058, 3891, 198, 2213, 330, 1142, 1047, 7, 3712, 45, 2434, 51, 29291, 90, 14933, 30072, 810, 3891, 796, 491, 330, 1142, 1047, 7, 14933, 8, 198, 198, 37811, 198, 220, 220, 220, 30980, 15878, 82, 7, 998, 11, 10706, 8, 198, 198, 13615, 257, 34441, 51, 29291, 351, 3833, 7032, 4600, 79, 42598, 17478, 63, 290, 4600, 79, 45, 7998, 63, 198, 17532, 355, 4600, 28780, 15878, 63, 82, 319, 262, 10959, 4600, 998, 63, 290, 4600, 25928, 44646, 198, 37811, 198, 8818, 30980, 15878, 82, 7, 998, 11, 10706, 8, 198, 220, 220, 220, 22918, 56, 17478, 796, 12440, 15878, 7, 998, 11, 10706, 8, 198, 220, 220, 220, 279, 45, 7998, 796, 12440, 15878, 7, 998, 11, 10706, 8, 198, 220, 220, 220, 1441, 357, 79, 42598, 17478, 28, 79, 42598, 17478, 11, 279, 45, 7998, 28, 79, 45, 7998, 8, 198, 437, 198, 198, 37811, 198, 220, 220, 220, 48664, 3976, 7, 998, 11, 10706, 11, 491, 330, 1142, 1047, 8, 198, 198, 13615, 257, 34441, 51, 29291, 351, 25671, 329, 477, 4610, 7032, 198, 7, 626, 11683, 7032, 290, 491, 11736, 7032, 828, 23224, 319, 198, 1169, 10959, 4600, 998, 63, 290, 4600, 25928, 44646, 198, 37811, 198, 8818, 48664, 3976, 7, 998, 11, 10706, 11, 491, 330, 1142, 1047, 8, 628, 220, 220, 220, 11555, 420, 871, 796, 357, 84, 796, 15399, 15878, 55, 7, 998, 11, 10706, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 410, 796, 15399, 15878, 56, 7, 998, 11, 10706, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 266, 796, 15399, 15878, 57, 7, 998, 11, 10706, 4008, 628, 220, 220, 220, 491, 49908, 796, 833, 11736, 15878, 82, 7, 998, 11, 10706, 11, 491, 330, 1142, 1047, 8, 628, 220, 220, 220, 1441, 20121, 7, 626, 420, 871, 11, 491, 49908, 8, 198, 437, 198 ]
2.615493
710
<gh_stars>10-100 struct CG{T <: AbstractFloat} u::Vector{T} r::Vector{T} c::Vector{T} function CG{T}(dim_b::Integer, dim_x::Integer) where {T <: AbstractFloat} new{T}(zeros(T, dim_b), zeros(T, dim_b), zeros(T, dim_x)) end end CG{T}(dims_A::Dims{2}) where {T} = CG{T}(dims_A...) function (cg::CG{T})(x, A, b; tol::Real = sqrt(eps(real(eltype(b)))), maxiter::Int = size(A, 2), initiallyzero::Bool = false) where {T} if !(T == eltype(x) == eltype(A) == eltype(b)) @warn "eltype mismatch: expected x, A, and b to have eltype $T. CG may run slower as a result" maxlog=1 error() end d1, d2 = size(A) u = cg.u r = cg.r c = cg.c if !(length(r) == d1 && length(u) == length(c) == d2) resize!(u, d2) resize!(r, d1) resize!(c, d2) end fill!(u, zero(T)) copyto!(r, b) # do not need to zero out c as e overwrite it below if initiallyzero # ignore x and treat x0 = 0 --> r0 = b residual = norm(b) reltol = residual * tol else # x0 = x --> r0 = b - A*x0 mul!(c, A, x) # A*x0 r .-= c # b - A*x0 residual = norm(r) reltol = norm(b) * tol # TODO norm(b) or norm(r)? end prev_residual = one(residual) for _ = 1:maxiter residual <= reltol && break β = residual^2 / prev_residual^2 u .= r .+ β .* u mul!(c, A, u) α = residual^2 / dot(u, c) # Improve solution and residual x .+= α .* u r .-= α .* c prev_residual = residual residual = norm(r) end x end
[ 27, 456, 62, 30783, 29, 940, 12, 3064, 198, 7249, 29925, 90, 51, 1279, 25, 27741, 43879, 92, 198, 220, 220, 220, 334, 3712, 38469, 90, 51, 92, 198, 220, 220, 220, 374, 3712, 38469, 90, 51, 92, 198, 220, 220, 220, 269, 3712, 38469, 90, 51, 92, 198, 220, 220, 220, 2163, 29925, 90, 51, 92, 7, 27740, 62, 65, 3712, 46541, 11, 5391, 62, 87, 3712, 46541, 8, 810, 1391, 51, 1279, 25, 27741, 43879, 92, 198, 220, 220, 220, 220, 220, 220, 220, 649, 90, 51, 92, 7, 9107, 418, 7, 51, 11, 5391, 62, 65, 828, 1976, 27498, 7, 51, 11, 5391, 62, 65, 828, 1976, 27498, 7, 51, 11, 5391, 62, 87, 4008, 198, 220, 220, 220, 886, 198, 437, 198, 39816, 90, 51, 92, 7, 67, 12078, 62, 32, 3712, 35, 12078, 90, 17, 30072, 810, 1391, 51, 92, 796, 29925, 90, 51, 92, 7, 67, 12078, 62, 32, 23029, 198, 198, 8818, 357, 66, 70, 3712, 39816, 90, 51, 92, 5769, 87, 11, 317, 11, 275, 26, 284, 75, 3712, 15633, 796, 19862, 17034, 7, 25386, 7, 5305, 7, 417, 4906, 7, 65, 22305, 828, 3509, 2676, 3712, 5317, 796, 2546, 7, 32, 11, 362, 828, 7317, 22570, 3712, 33, 970, 796, 3991, 8, 810, 1391, 51, 92, 198, 220, 220, 220, 611, 5145, 7, 51, 6624, 1288, 4906, 7, 87, 8, 6624, 1288, 4906, 7, 32, 8, 6624, 1288, 4906, 7, 65, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 2488, 40539, 366, 417, 4906, 46318, 25, 2938, 2124, 11, 317, 11, 290, 275, 284, 423, 1288, 4906, 720, 51, 13, 29925, 743, 1057, 13611, 355, 257, 1255, 1, 3509, 6404, 28, 16, 198, 220, 220, 220, 220, 220, 220, 220, 4049, 3419, 198, 220, 220, 220, 886, 628, 220, 220, 220, 288, 16, 11, 288, 17, 796, 2546, 7, 32, 8, 198, 220, 220, 220, 334, 796, 269, 70, 13, 84, 198, 220, 220, 220, 374, 796, 269, 70, 13, 81, 198, 220, 220, 220, 269, 796, 269, 70, 13, 66, 628, 220, 220, 220, 611, 5145, 7, 13664, 7, 81, 8, 6624, 288, 16, 11405, 4129, 7, 84, 8, 6624, 4129, 7, 66, 8, 6624, 288, 17, 8, 198, 220, 220, 220, 220, 220, 220, 220, 47558, 0, 7, 84, 11, 288, 17, 8, 198, 220, 220, 220, 220, 220, 220, 220, 47558, 0, 7, 81, 11, 288, 16, 8, 198, 220, 220, 220, 220, 220, 220, 220, 47558, 0, 7, 66, 11, 288, 17, 8, 198, 220, 220, 220, 886, 628, 220, 220, 220, 6070, 0, 7, 84, 11, 6632, 7, 51, 4008, 198, 220, 220, 220, 4866, 1462, 0, 7, 81, 11, 275, 8, 198, 220, 220, 220, 1303, 466, 407, 761, 284, 6632, 503, 269, 355, 304, 49312, 340, 2174, 628, 220, 220, 220, 611, 7317, 22570, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 8856, 2124, 290, 2190, 2124, 15, 796, 657, 14610, 374, 15, 796, 275, 198, 220, 220, 220, 220, 220, 220, 220, 29598, 796, 2593, 7, 65, 8, 198, 220, 220, 220, 220, 220, 220, 220, 823, 83, 349, 796, 29598, 1635, 284, 75, 198, 220, 220, 220, 2073, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 2124, 15, 796, 2124, 14610, 374, 15, 796, 275, 532, 317, 9, 87, 15, 198, 220, 220, 220, 220, 220, 220, 220, 35971, 0, 7, 66, 11, 317, 11, 2124, 8, 1303, 317, 9, 87, 15, 198, 220, 220, 220, 220, 220, 220, 220, 374, 764, 12, 28, 269, 1303, 275, 532, 317, 9, 87, 15, 198, 220, 220, 220, 220, 220, 220, 220, 29598, 796, 2593, 7, 81, 8, 198, 220, 220, 220, 220, 220, 220, 220, 823, 83, 349, 796, 2593, 7, 65, 8, 1635, 284, 75, 1303, 16926, 46, 2593, 7, 65, 8, 393, 2593, 7, 81, 19427, 198, 220, 220, 220, 886, 628, 220, 220, 220, 8654, 62, 411, 312, 723, 796, 530, 7, 411, 312, 723, 8, 198, 220, 220, 220, 329, 4808, 796, 352, 25, 9806, 2676, 198, 220, 220, 220, 220, 220, 220, 220, 29598, 19841, 823, 83, 349, 11405, 2270, 628, 220, 220, 220, 220, 220, 220, 220, 27169, 796, 29598, 61, 17, 1220, 8654, 62, 411, 312, 723, 61, 17, 198, 220, 220, 220, 220, 220, 220, 220, 334, 764, 28, 374, 764, 10, 27169, 764, 9, 334, 628, 220, 220, 220, 220, 220, 220, 220, 35971, 0, 7, 66, 11, 317, 11, 334, 8, 198, 220, 220, 220, 220, 220, 220, 220, 26367, 796, 29598, 61, 17, 1220, 16605, 7, 84, 11, 269, 8, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 20580, 4610, 290, 29598, 198, 220, 220, 220, 220, 220, 220, 220, 2124, 764, 47932, 26367, 764, 9, 334, 198, 220, 220, 220, 220, 220, 220, 220, 374, 764, 12, 28, 26367, 764, 9, 269, 628, 220, 220, 220, 220, 220, 220, 220, 8654, 62, 411, 312, 723, 796, 29598, 198, 220, 220, 220, 220, 220, 220, 220, 29598, 796, 2593, 7, 81, 8, 198, 220, 220, 220, 886, 198, 220, 220, 220, 2124, 198, 437, 198 ]
1.918536
847
<gh_stars>0 #!/usr/bin/env julia const prgm = basename(Base.source_path()) if length(ARGS) < 2 println("usage: ", prgm, " <file> [line]...") exit(1) end file = ARGS[1] const numbers = map(x -> begin try parse(Uint, x) catch println(prgm, ": ", x, ": not a number") exit(1) end end, ARGS[2:end]) f = open(file) lines = readlines(f) close(f) if maximum(numbers) > length(lines) println(prgm, ": detected extraneous line number") exit(1) end deleteat!(lines, sort(unique(numbers))) f = open(file, "w") write(f, join(lines)) close(f)
[ 27, 456, 62, 30783, 29, 15, 198, 2, 48443, 14629, 14, 8800, 14, 24330, 474, 43640, 198, 198, 9979, 778, 39870, 796, 1615, 12453, 7, 14881, 13, 10459, 62, 6978, 28955, 198, 198, 361, 4129, 7, 1503, 14313, 8, 1279, 362, 198, 220, 220, 220, 44872, 7203, 26060, 25, 33172, 778, 39870, 11, 366, 1279, 7753, 29, 685, 1370, 60, 9313, 8, 198, 220, 220, 220, 8420, 7, 16, 8, 198, 437, 198, 198, 7753, 796, 5923, 14313, 58, 16, 60, 198, 198, 9979, 3146, 796, 3975, 7, 87, 4613, 2221, 198, 220, 220, 220, 1949, 198, 220, 220, 220, 220, 220, 220, 220, 21136, 7, 52, 600, 11, 2124, 8, 198, 220, 220, 220, 4929, 198, 220, 220, 220, 220, 220, 220, 220, 44872, 7, 1050, 39870, 11, 366, 25, 33172, 2124, 11, 366, 25, 407, 257, 1271, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 8420, 7, 16, 8, 198, 220, 220, 220, 886, 198, 437, 11, 5923, 14313, 58, 17, 25, 437, 12962, 198, 198, 69, 796, 1280, 7, 7753, 8, 198, 6615, 796, 1100, 6615, 7, 69, 8, 198, 19836, 7, 69, 8, 198, 198, 361, 5415, 7, 77, 17024, 8, 1875, 4129, 7, 6615, 8, 198, 220, 220, 220, 44872, 7, 1050, 39870, 11, 366, 25, 12326, 22820, 11655, 1627, 1271, 4943, 198, 220, 220, 220, 8420, 7, 16, 8, 198, 437, 198, 198, 33678, 265, 0, 7, 6615, 11, 3297, 7, 34642, 7, 77, 17024, 22305, 198, 69, 796, 1280, 7, 7753, 11, 366, 86, 4943, 198, 13564, 7, 69, 11, 4654, 7, 6615, 4008, 198, 19836, 7, 69, 8, 198 ]
2.197761
268