content
stringlengths 5
1.03M
| input_ids
sequencelengths 4
823k
| ratio_char_token
float64 0.4
12.5
| token_count
int64 4
823k
|
---|---|---|---|
using JuMP
using Dates
const OPTIMAL = JuMP.MathOptInterface.OPTIMAL
const INFEASIBLE = JuMP.MathOptInterface.INFEASIBLE
const UNBOUNDED = JuMP.MathOptInterface.DUAL_INFEASIBLE
function resolvePlne(model, verbose=1, nameOfPL="")
optimize!(model)
if verbose == 3
println(solution_summary(model, verbose=true))
return model
end
status = termination_status(model)
# if status == JuMP.MathOptInterface.OPTIMAL
# println("Valeur optimale = ", objective_value(model))
# end
if verbose >= 2
last = ""
for var in all_variables(model)
which = split(JuMP.name(var), "[")[1]
if which != last
last = which
println("\nVariables $(last)")
end
println(var, ": ", value(var))
end
end
if verbose >= 1
println("\nObjetive value: ", objective_value(model))
end
if ! isempty(nameOfPL)
write_to_file(model, nameOfPL*"_model_"*string(Dates.now())*".mps")
end
return model
end
function getModelVariables(model)
end
| [
3500,
12585,
7378,
198,
3500,
44712,
198,
198,
9979,
39852,
3955,
1847,
796,
12585,
7378,
13,
37372,
27871,
39317,
13,
3185,
51,
3955,
1847,
198,
9979,
3268,
15112,
1921,
34563,
796,
12585,
7378,
13,
37372,
27871,
39317,
13,
1268,
15112,
1921,
34563,
198,
9979,
4725,
33,
15919,
1961,
796,
12585,
7378,
13,
37372,
27871,
39317,
13,
35,
25620,
62,
1268,
15112,
1921,
34563,
628,
198,
8818,
10568,
3646,
710,
7,
19849,
11,
15942,
577,
28,
16,
11,
1438,
5189,
6489,
2625,
4943,
628,
197,
40085,
1096,
0,
7,
19849,
8,
628,
197,
361,
15942,
577,
6624,
513,
198,
197,
197,
35235,
7,
82,
2122,
62,
49736,
7,
19849,
11,
15942,
577,
28,
7942,
4008,
198,
197,
197,
7783,
2746,
198,
197,
437,
628,
197,
13376,
796,
19883,
62,
13376,
7,
19849,
8,
628,
197,
2,
611,
3722,
6624,
12585,
7378,
13,
37372,
27871,
39317,
13,
3185,
51,
3955,
1847,
198,
197,
2,
220,
197,
35235,
7203,
53,
1000,
333,
6436,
1000,
796,
33172,
9432,
62,
8367,
7,
19849,
4008,
198,
197,
2,
886,
628,
198,
197,
361,
15942,
577,
18189,
362,
628,
197,
197,
12957,
796,
13538,
198,
197,
197,
1640,
1401,
287,
477,
62,
25641,
2977,
7,
19849,
8,
628,
197,
197,
197,
4758,
796,
6626,
7,
33018,
7378,
13,
3672,
7,
7785,
828,
12878,
4943,
58,
16,
60,
198,
197,
197,
197,
361,
543,
14512,
938,
198,
197,
197,
197,
197,
12957,
796,
543,
198,
197,
197,
197,
197,
35235,
7203,
59,
77,
23907,
2977,
29568,
12957,
8,
4943,
198,
197,
197,
197,
437,
198,
197,
197,
197,
35235,
7,
7785,
11,
366,
25,
33172,
1988,
7,
7785,
4008,
628,
197,
197,
437,
628,
197,
437,
628,
197,
361,
15942,
577,
18189,
352,
198,
197,
197,
35235,
7203,
59,
77,
5944,
31173,
425,
1988,
25,
33172,
9432,
62,
8367,
7,
19849,
4008,
198,
197,
437,
628,
197,
361,
5145,
318,
28920,
7,
3672,
5189,
6489,
8,
220,
198,
197,
197,
13564,
62,
1462,
62,
7753,
7,
19849,
11,
1438,
5189,
6489,
9,
1,
62,
19849,
62,
1,
9,
8841,
7,
35,
689,
13,
2197,
3419,
27493,
1911,
76,
862,
4943,
198,
197,
437,
628,
197,
7783,
2746,
198,
198,
437,
198,
198,
8818,
651,
17633,
23907,
2977,
7,
19849,
8,
198,
197,
198,
437,
628
] | 2.554377 | 377 |
module RandomFerns
using Distributions
using StatsBase
export Ensemble, kfoldCV_fern, kfoldCV_fernEnsemble, build_fern, apply_fern, build_ensemble, apply_ensemble
if VERSION.minor >= 4
typealias Range1{Int} Range{Int}
_int(x) = round(Int, x)
else
_int(x) = int(x)
end
include("utils.jl")
immutable Part
dist::MvNormal
mean::Any
end
immutable Fern
parts::Array{Part}
proj_matrix::Matrix
cuts::Vector
end
immutable Ensemble
ferns::Array{Fern}
end
function random_projection_matrix(method::Symbol, n_features::Int, n_components::Int)
P = zeros(n_components, n_features)
if method == :gaussian
dist = Normal(0, (1/sqrt(n_components)))
rand!(dist, P)
elseif method == :sparse
# todo
end
return P
end
function _get_index{T<:FloatingPoint}(x::Matrix{T}, cuts::Vector{T}, n::Int)
idx = @parallel (+) for i=1:n
c = x[:,i] .< cuts[i]
b = c .* 2^i
end
idx = idx + 1
return idx
end
### regression model ###
function apply_fern{T<:FloatingPoint}(model::Fern, features::Matrix{T})
yhat = zeros(size(features)[1])
w = zeros(size(features)[1])
# project unseen data
x = features * model.proj_matrix'
# get indices
idx = _get_index(x, model.cuts, size(model.proj_matrix)[1])
# we only need to consider those parts
uidx = unique(idx)
for i = 1:size(uidx)[1]
j = uidx[i]
s = idx .== j
if model.parts[j].mean == 0.0
yhat[s] = 0.0
w[s] = 0.0
else
yhat[s] = model.parts[j].mean
w[s] = pdf(model.parts[j].dist, x[s,:]') ./ pdf(model.parts[j].dist, mean(model.parts[j].dist))
end
end
return yhat, w
end
function apply_ensemble{T<:FloatingPoint}(model::Ensemble, features::Matrix{T})
n = size(model.ferns)[2]
yhat = zeros(size(features)[1])
wsum = zeros(size(features)[1])
for i=1:n
yy, w = apply_fern(model.ferns[i], features)
yhat = yhat + (yy .* w)
wsum = wsum + w
end
r = yhat ./ wsum
b = isnan(r)
r[b] = 0
return r
end
function build_fern{T<:FloatingPoint, U<:Real}(labels::Vector{T}, features::Matrix{U}, n_components=5)
# sanity check
if size(labels)[1] != size(features)[1]
println("number of instances in features and labels matrix not equal!")
return None
end
# get random projection and project features
p = random_projection_matrix(:gaussian, size(features)[2], n_components)
x = features * p'
# get cutting values
min_x = minimum(x, 1)
max_x = maximum(x, 1)
cuts = zeros(n_components)
for i = 1:n_components
d = Uniform(min_x[i], max_x[i])
cuts[i] = rand(d)
end
# estimate index
idx = _get_index(x, cuts, n_components)
max_idx = 2^(n_components+1)
# fill all parts with Distributions
parts = Array(Part, 1, max_idx)
for i = 1:max_idx
s = idx .== i
if (sum(s) == 0)
x_cov = eye(n_components)
x_mean = zeros(n_components)
y_mean = 0
else
c = mean_and_cov(x[s,:])
x_cov = c[2] .* eye(n_components)
x_mean = vec(c[1])
y_mean = mean(labels[s])
# do something if covariance matrix is not positive definite
if (det(x_cov) <= 0.0)
x_cov = eye(n_components) # todo: this is probably a bad idea
y_mean = 0.0
end
end
dist = MvNormal(x_mean, x_cov)
parts[i] = Part(dist, y_mean)
end
return Fern(parts, p, cuts)
end
function build_ensemble{T<:FloatingPoint, U<:Real}(labels::Vector{T}, features::Matrix{U}, n_components=5, n_ferns=10)
# sanity check
if size(labels)[1] != size(features)[1]
println("number of instances in features and labels matrix not equal!")
return None
end
ferns = Array(Fern, 1, n_ferns)
for i=1:n_ferns
ferns[i] = build_fern(labels, features, n_components)
end
return Ensemble(ferns)
end
end # module
| [
21412,
14534,
37,
1142,
82,
198,
198,
3500,
46567,
507,
198,
3500,
20595,
14881,
198,
198,
39344,
2039,
15140,
11,
479,
11379,
33538,
62,
69,
1142,
11,
479,
11379,
33538,
62,
69,
1142,
4834,
15140,
11,
1382,
62,
69,
1142,
11,
4174,
62,
69,
1142,
11,
1382,
62,
1072,
11306,
11,
4174,
62,
1072,
11306,
198,
198,
361,
44156,
2849,
13,
1084,
273,
18189,
604,
198,
220,
2099,
26011,
13667,
16,
90,
5317,
92,
13667,
90,
5317,
92,
198,
220,
4808,
600,
7,
87,
8,
796,
2835,
7,
5317,
11,
2124,
8,
198,
17772,
198,
220,
4808,
600,
7,
87,
8,
796,
493,
7,
87,
8,
198,
437,
198,
198,
17256,
7203,
26791,
13,
20362,
4943,
198,
198,
8608,
18187,
2142,
198,
220,
1233,
3712,
44,
85,
26447,
198,
220,
1612,
3712,
7149,
198,
437,
198,
198,
8608,
18187,
38982,
198,
220,
3354,
3712,
19182,
90,
7841,
92,
198,
220,
386,
73,
62,
6759,
8609,
3712,
46912,
198,
220,
6630,
3712,
38469,
198,
437,
198,
198,
8608,
18187,
2039,
15140,
198,
220,
277,
1142,
82,
3712,
19182,
90,
37,
1142,
92,
198,
437,
198,
198,
8818,
4738,
62,
16302,
295,
62,
6759,
8609,
7,
24396,
3712,
13940,
23650,
11,
299,
62,
40890,
3712,
5317,
11,
299,
62,
5589,
3906,
3712,
5317,
8,
628,
220,
350,
796,
1976,
27498,
7,
77,
62,
5589,
3906,
11,
299,
62,
40890,
8,
628,
220,
611,
2446,
6624,
1058,
4908,
31562,
198,
220,
220,
220,
1233,
796,
14435,
7,
15,
11,
357,
16,
14,
31166,
17034,
7,
77,
62,
5589,
3906,
22305,
198,
220,
220,
220,
43720,
0,
7,
17080,
11,
350,
8,
628,
220,
2073,
361,
2446,
6624,
1058,
82,
29572,
628,
220,
220,
220,
1303,
284,
4598,
628,
220,
886,
628,
220,
1441,
350,
198,
198,
437,
198,
198,
8818,
4808,
1136,
62,
9630,
90,
51,
27,
25,
33574,
803,
12727,
92,
7,
87,
3712,
46912,
90,
51,
5512,
6630,
3712,
38469,
90,
51,
5512,
299,
3712,
5317,
8,
198,
220,
4686,
87,
796,
2488,
1845,
29363,
11502,
8,
329,
1312,
28,
16,
25,
77,
198,
220,
220,
220,
269,
796,
2124,
58,
45299,
72,
60,
764,
27,
6630,
58,
72,
60,
198,
220,
220,
220,
275,
796,
269,
764,
9,
362,
61,
72,
198,
220,
886,
628,
220,
4686,
87,
796,
4686,
87,
1343,
352,
198,
220,
1441,
4686,
87,
198,
437,
198,
198,
21017,
20683,
2746,
44386,
198,
198,
8818,
4174,
62,
69,
1142,
90,
51,
27,
25,
33574,
803,
12727,
92,
7,
19849,
3712,
37,
1142,
11,
3033,
3712,
46912,
90,
51,
30072,
628,
220,
331,
5183,
796,
1976,
27498,
7,
7857,
7,
40890,
38381,
16,
12962,
198,
220,
266,
796,
1976,
27498,
7,
7857,
7,
40890,
38381,
16,
12962,
628,
220,
1303,
1628,
29587,
1366,
198,
220,
2124,
796,
3033,
1635,
2746,
13,
1676,
73,
62,
6759,
8609,
6,
628,
220,
1303,
651,
36525,
198,
220,
4686,
87,
796,
4808,
1136,
62,
9630,
7,
87,
11,
2746,
13,
23779,
11,
2546,
7,
19849,
13,
1676,
73,
62,
6759,
8609,
38381,
16,
12962,
628,
220,
1303,
356,
691,
761,
284,
2074,
883,
3354,
198,
220,
334,
312,
87,
796,
3748,
7,
312,
87,
8,
198,
220,
329,
1312,
796,
352,
25,
7857,
7,
27112,
87,
38381,
16,
60,
198,
220,
220,
220,
474,
796,
334,
312,
87,
58,
72,
60,
198,
220,
220,
220,
264,
796,
4686,
87,
764,
855,
474,
628,
220,
220,
220,
611,
2746,
13,
42632,
58,
73,
4083,
32604,
6624,
657,
13,
15,
198,
220,
220,
220,
220,
220,
331,
5183,
58,
82,
60,
796,
657,
13,
15,
198,
220,
220,
220,
220,
220,
266,
58,
82,
60,
796,
657,
13,
15,
198,
220,
220,
220,
2073,
198,
220,
220,
220,
220,
220,
331,
5183,
58,
82,
60,
796,
2746,
13,
42632,
58,
73,
4083,
32604,
198,
220,
220,
220,
220,
220,
266,
58,
82,
60,
796,
37124,
7,
19849,
13,
42632,
58,
73,
4083,
17080,
11,
2124,
58,
82,
11,
47715,
11537,
24457,
37124,
7,
19849,
13,
42632,
58,
73,
4083,
17080,
11,
1612,
7,
19849,
13,
42632,
58,
73,
4083,
17080,
4008,
198,
220,
220,
220,
886,
198,
220,
886,
628,
220,
1441,
331,
5183,
11,
266,
198,
437,
198,
198,
8818,
4174,
62,
1072,
11306,
90,
51,
27,
25,
33574,
803,
12727,
92,
7,
19849,
3712,
4834,
15140,
11,
3033,
3712,
46912,
90,
51,
30072,
628,
220,
299,
796,
2546,
7,
19849,
13,
69,
1142,
82,
38381,
17,
60,
628,
220,
331,
5183,
796,
1976,
27498,
7,
7857,
7,
40890,
38381,
16,
12962,
198,
220,
266,
16345,
796,
1976,
27498,
7,
7857,
7,
40890,
38381,
16,
12962,
628,
220,
329,
1312,
28,
16,
25,
77,
198,
220,
220,
220,
331,
88,
11,
266,
796,
4174,
62,
69,
1142,
7,
19849,
13,
69,
1142,
82,
58,
72,
4357,
3033,
8,
198,
220,
220,
220,
331,
5183,
796,
331,
5183,
1343,
357,
22556,
764,
9,
266,
8,
198,
220,
220,
220,
266,
16345,
796,
266,
16345,
1343,
266,
198,
220,
886,
628,
220,
374,
796,
331,
5183,
24457,
266,
16345,
628,
220,
275,
796,
2125,
272,
7,
81,
8,
198,
220,
374,
58,
65,
60,
796,
657,
628,
220,
1441,
374,
198,
198,
437,
198,
198,
8818,
1382,
62,
69,
1142,
90,
51,
27,
25,
33574,
803,
12727,
11,
471,
27,
25,
15633,
92,
7,
23912,
1424,
3712,
38469,
90,
51,
5512,
3033,
3712,
46912,
90,
52,
5512,
299,
62,
5589,
3906,
28,
20,
8,
628,
220,
1303,
34182,
2198,
198,
220,
611,
2546,
7,
23912,
1424,
38381,
16,
60,
14512,
2546,
7,
40890,
38381,
16,
60,
198,
220,
220,
220,
44872,
7203,
17618,
286,
10245,
287,
3033,
290,
14722,
17593,
407,
4961,
2474,
8,
198,
220,
220,
220,
1441,
6045,
198,
220,
886,
628,
220,
1303,
651,
4738,
20128,
290,
1628,
3033,
198,
220,
279,
796,
4738,
62,
16302,
295,
62,
6759,
8609,
7,
25,
4908,
31562,
11,
2546,
7,
40890,
38381,
17,
4357,
299,
62,
5589,
3906,
8,
198,
220,
2124,
796,
3033,
1635,
279,
6,
628,
220,
1303,
651,
7720,
3815,
198,
220,
949,
62,
87,
796,
5288,
7,
87,
11,
352,
8,
198,
220,
3509,
62,
87,
796,
5415,
7,
87,
11,
352,
8,
628,
220,
6630,
796,
1976,
27498,
7,
77,
62,
5589,
3906,
8,
628,
220,
329,
1312,
796,
352,
25,
77,
62,
5589,
3906,
198,
220,
220,
220,
288,
796,
35712,
7,
1084,
62,
87,
58,
72,
4357,
3509,
62,
87,
58,
72,
12962,
198,
220,
220,
220,
6630,
58,
72,
60,
796,
43720,
7,
67,
8,
198,
220,
886,
628,
220,
1303,
8636,
6376,
198,
220,
4686,
87,
796,
4808,
1136,
62,
9630,
7,
87,
11,
6630,
11,
299,
62,
5589,
3906,
8,
628,
220,
3509,
62,
312,
87,
796,
362,
61,
7,
77,
62,
5589,
3906,
10,
16,
8,
198,
220,
1303,
6070,
477,
3354,
351,
46567,
507,
198,
220,
3354,
796,
15690,
7,
7841,
11,
352,
11,
3509,
62,
312,
87,
8,
198,
220,
329,
1312,
796,
352,
25,
9806,
62,
312,
87,
198,
220,
220,
220,
264,
796,
4686,
87,
764,
855,
1312,
628,
220,
220,
220,
611,
357,
16345,
7,
82,
8,
6624,
657,
8,
198,
220,
220,
220,
220,
220,
2124,
62,
66,
709,
796,
4151,
7,
77,
62,
5589,
3906,
8,
198,
220,
220,
220,
220,
220,
2124,
62,
32604,
796,
1976,
27498,
7,
77,
62,
5589,
3906,
8,
198,
220,
220,
220,
220,
220,
331,
62,
32604,
796,
657,
198,
220,
220,
220,
2073,
198,
220,
220,
220,
220,
220,
269,
796,
1612,
62,
392,
62,
66,
709,
7,
87,
58,
82,
11,
25,
12962,
198,
220,
220,
220,
220,
220,
2124,
62,
66,
709,
796,
269,
58,
17,
60,
764,
9,
4151,
7,
77,
62,
5589,
3906,
8,
198,
220,
220,
220,
220,
220,
2124,
62,
32604,
796,
43030,
7,
66,
58,
16,
12962,
198,
220,
220,
220,
220,
220,
331,
62,
32604,
796,
1612,
7,
23912,
1424,
58,
82,
12962,
628,
220,
220,
220,
220,
220,
1303,
466,
1223,
611,
44829,
590,
17593,
318,
407,
3967,
21892,
198,
220,
220,
220,
220,
220,
611,
357,
15255,
7,
87,
62,
66,
709,
8,
19841,
657,
13,
15,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2124,
62,
66,
709,
796,
4151,
7,
77,
62,
5589,
3906,
8,
1303,
284,
4598,
25,
428,
318,
2192,
257,
2089,
2126,
198,
220,
220,
220,
220,
220,
220,
220,
331,
62,
32604,
796,
657,
13,
15,
198,
220,
220,
220,
220,
220,
886,
628,
220,
220,
220,
886,
628,
220,
220,
220,
1233,
796,
337,
85,
26447,
7,
87,
62,
32604,
11,
2124,
62,
66,
709,
8,
198,
220,
220,
220,
3354,
58,
72,
60,
796,
2142,
7,
17080,
11,
331,
62,
32604,
8,
198,
220,
886,
628,
220,
1441,
38982,
7,
42632,
11,
279,
11,
6630,
8,
198,
437,
198,
198,
8818,
1382,
62,
1072,
11306,
90,
51,
27,
25,
33574,
803,
12727,
11,
471,
27,
25,
15633,
92,
7,
23912,
1424,
3712,
38469,
90,
51,
5512,
3033,
3712,
46912,
90,
52,
5512,
299,
62,
5589,
3906,
28,
20,
11,
299,
62,
69,
1142,
82,
28,
940,
8,
628,
220,
1303,
34182,
2198,
198,
220,
611,
2546,
7,
23912,
1424,
38381,
16,
60,
14512,
2546,
7,
40890,
38381,
16,
60,
198,
220,
220,
220,
44872,
7203,
17618,
286,
10245,
287,
3033,
290,
14722,
17593,
407,
4961,
2474,
8,
198,
220,
220,
220,
1441,
6045,
198,
220,
886,
628,
220,
277,
1142,
82,
796,
15690,
7,
37,
1142,
11,
352,
11,
299,
62,
69,
1142,
82,
8,
628,
220,
329,
1312,
28,
16,
25,
77,
62,
69,
1142,
82,
198,
220,
220,
220,
277,
1142,
82,
58,
72,
60,
796,
1382,
62,
69,
1142,
7,
23912,
1424,
11,
3033,
11,
299,
62,
5589,
3906,
8,
198,
220,
886,
628,
220,
1441,
2039,
15140,
7,
69,
1142,
82,
8,
198,
437,
198,
198,
437,
1303,
8265,
198
] | 2.316401 | 1,634 |
function add_kwargs!(ex::Expr; kwargs...)
ex.head === :call || throw(ArgumentError("expression is not a function call"))
isempty(ex.args) && throw(ArgumentError("expression body is empty"))
if !isempty(kwargs)
params = Expr(:parameters)
for (name, value) in kwargs
push!(params.args, Expr(:kw, name, value))
end
# Parameters need to come after the function name and before positional arguments
if length(ex.args) == 1
push!(ex.args, params)
else
insert!(ex.args, 2, params)
end
end
ex
end
function get_union_call(foo::Symbol, type_tuple::Expr; kwargs...)
# Get types from tuple and create a collection of symbols for use in the call.
types = get_types(get_body(type_tuple))
arg_names = [Symbol("x$j") for j in 1:length(types)]
# Generate the call.
typed_args = map((name, typ) -> :($name::$(unionise_type(typ))), arg_names, types)
call = add_kwargs!(Expr(:call, foo, typed_args...); kwargs...)
return replace_body(type_tuple, call), arg_names
end
"""
unionise_type(tp::Union{Symbol, Expr})
Returns an expression for the type union of `tp` and `Node{<:tp}`. e.g.
`unionise_type(:Real)` returns `:(Union{Real, Node{<:Real}})`.
"""
function unionise_type(tp::Union{Symbol, Expr})
(_tp, _info) = remove_vararg(tp)
tp_clean = (isa(_tp, Expr) && _tp.head == Symbol("<:")) ? _tp.args[1] : _tp
return replace_vararg(:(Union{$_tp, Node{<:$tp_clean}}), (_tp, _info))
end
"""
replace_body(unionall::Union{Symbol, Expr}, replacement::Union{Symbol, Expr})
Replace the body of an expression representing a `UnionAll`. e.g.
replace_body(:(Tuple{T, T} where T), :foo) returns the (nonsensical) expression
:(foo where T). If `unionall` is a `Symbol`, then `replacement` is returned.
"""
replace_body(unionall::Expr, replacement::Union{Symbol, Expr}) =
unionall.head == :where ?
Expr(:where, replace_body(unionall.args[1], replacement), unionall.args[2:end]...) :
replacement
replace_body(::Symbol, replacement::Union{Symbol, Expr}) = replacement
"""
get_body(x::Union{Symbol, Expr})
Get the body from an expression representing a `UnionAll`. e.g. :(Tuple{T, T} where T)
returns :(Tuple{T, T}). If `x` is a `Symbol`, then `x` is returned unaltered.
"""
get_body(unionall::Expr) = unionall.head == :where ? get_body(unionall.args[1]) : unionall
get_body(body::Symbol) = body
"""
get_types(type_tuple::Expr)
Return the types from a type-tuple expression. e.g. :(Tuple{Float64, Real}) returns a
vector [:Float64, :Real]
"""
get_types(type_tuple::Expr) = type_tuple.args[2:end]
"""
isa_vararg(symbol_or_expr)
Returns a bool indicating whether `symbol_or_expr` is a `Vararg`.
"""
isa_vararg(sym::Symbol) = (sym == :Vararg)
isa_vararg(expr::Expr) =
(expr.head == :curly && expr.args[1] == :Vararg) ?
true :
expr.head == :where ? isa_vararg(expr.args[1]) : false
"""
remove_vararg(typ::Union{Symbol, Expr})
Return the type contained by the `typ` if it's a `Vararg` and the `N` parameter if provided.
"""
remove_vararg(typ::Symbol) = isa_vararg(typ) ? (:Any, :Vararg) : (typ, :nothing)
function remove_vararg(typ::Expr)
if isa_vararg(typ)
body = get_body(typ)
new_typ = replace_body(typ, body.args[2])
vararg_info = length(body.args) == 3 ? body.args[3] : :Vararg
return new_typ, vararg_info
else
return (typ, :nothing)
end
end
"""
replace_vararg(typ::SymOrExpr, vararg_info::Tuple)
Convert `typ` to the `Vararg` containing elements of type `typ` specified by
`vararg_info`, which should be a `Tuple` returned from `remove_vararg`.
"""
replace_vararg(typ::SymOrExpr, vararg_info::Tuple) =
vararg_info[2] == :nothing ?
typ :
vararg_info[2] == :no_N || vararg_info[2] == :Vararg ?
replace_body(typ, :(Vararg{$(get_body(typ))})) :
replace_body(typ, :(Vararg{$(get_body(typ)), $(vararg_info[2])}))
"""
parse_kwargs(nt_expr) -> NamedTuple
Accepts an expression containing a `NamedTuple` literal and parses it into a `NamedTuple`
with expressions as values.
"""
function parse_kwargs(nt_expr)
if isempty(nt_expr.args) || nt_expr == Expr(:call, :NamedTuple)
return NamedTuple()
end
first_arg = first(nt_expr.args)
if first_arg isa Expr && first_arg.head == :parameters
return parse_kwargs_parameters(nt_expr)
elseif first_arg isa Expr && first_arg.head == :(=)
return parse_kwargs_tuple(nt_expr)
else
throw(ArgumentError("Unsupported expression $nt_expr for kwargs;"
* " they must be passed as a NamedTuple literal"))
end
end
function parse_kwargs_tuple(tup_expr)
nt_names = Tuple(first(ex.args) for ex in tup_expr.args)
return NamedTuple{nt_names}(last(ex.args) for ex in tup_expr.args)
end
function parse_kwargs_parameters(param_tuple_expr)
# code is the same even though the inner args are also different expression types
# (:kw vs :())
return parse_kwargs_tuple(param_tuple_expr.args[1])
end
"""
parse_is_node(bool_array_expr) -> Vector{Bool}
Accepts an expression containing a `Vector{Bool}` literal and parses it into a
`Vector{Bool}`.
"""
function parse_is_node(bool_array_expr)
if bool_array_expr.head != :vect
throw(ArgumentError("Unsupported expression $bool_array_expr for is_node; "
* "it must be passed as a `Vector{Bool}` literal (e.g., `[true, false]`)"))
end
return collect(Bool, bool_array_expr.args)
end
| [
8818,
751,
62,
46265,
22046,
0,
7,
1069,
3712,
3109,
1050,
26,
479,
86,
22046,
23029,
198,
220,
220,
220,
409,
13,
2256,
24844,
1058,
13345,
8614,
3714,
7,
28100,
1713,
12331,
7203,
38011,
318,
407,
257,
2163,
869,
48774,
198,
220,
220,
220,
318,
28920,
7,
1069,
13,
22046,
8,
11405,
3714,
7,
28100,
1713,
12331,
7203,
38011,
1767,
318,
6565,
48774,
198,
220,
220,
220,
611,
5145,
271,
28920,
7,
46265,
22046,
8,
198,
220,
220,
220,
220,
220,
220,
220,
42287,
796,
1475,
1050,
7,
25,
17143,
7307,
8,
198,
220,
220,
220,
220,
220,
220,
220,
329,
357,
3672,
11,
1988,
8,
287,
479,
86,
22046,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4574,
0,
7,
37266,
13,
22046,
11,
1475,
1050,
7,
25,
46265,
11,
1438,
11,
1988,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
886,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
40117,
761,
284,
1282,
706,
262,
2163,
1438,
290,
878,
45203,
7159,
198,
220,
220,
220,
220,
220,
220,
220,
611,
4129,
7,
1069,
13,
22046,
8,
6624,
352,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4574,
0,
7,
1069,
13,
22046,
11,
42287,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7550,
0,
7,
1069,
13,
22046,
11,
362,
11,
42287,
8,
198,
220,
220,
220,
220,
220,
220,
220,
886,
198,
220,
220,
220,
886,
198,
220,
220,
220,
409,
198,
437,
198,
198,
8818,
651,
62,
24592,
62,
13345,
7,
21943,
3712,
13940,
23650,
11,
2099,
62,
83,
29291,
3712,
3109,
1050,
26,
479,
86,
22046,
23029,
198,
220,
220,
220,
1303,
3497,
3858,
422,
46545,
290,
2251,
257,
4947,
286,
14354,
329,
779,
287,
262,
869,
13,
198,
220,
220,
220,
3858,
796,
651,
62,
19199,
7,
1136,
62,
2618,
7,
4906,
62,
83,
29291,
4008,
198,
220,
220,
220,
1822,
62,
14933,
796,
685,
13940,
23650,
7203,
87,
3,
73,
4943,
329,
474,
287,
352,
25,
13664,
7,
19199,
15437,
628,
220,
220,
220,
1303,
2980,
378,
262,
869,
13,
198,
220,
220,
220,
25683,
62,
22046,
796,
3975,
19510,
3672,
11,
2170,
8,
4613,
1058,
16763,
3672,
3712,
3,
7,
24592,
786,
62,
4906,
7,
28004,
4008,
828,
1822,
62,
14933,
11,
3858,
8,
198,
220,
220,
220,
869,
796,
751,
62,
46265,
22046,
0,
7,
3109,
1050,
7,
25,
13345,
11,
22944,
11,
25683,
62,
22046,
986,
1776,
479,
86,
22046,
23029,
628,
220,
220,
220,
1441,
6330,
62,
2618,
7,
4906,
62,
83,
29291,
11,
869,
828,
1822,
62,
14933,
198,
437,
198,
198,
37811,
198,
220,
220,
220,
6441,
786,
62,
4906,
7,
34788,
3712,
38176,
90,
13940,
23650,
11,
1475,
1050,
30072,
198,
198,
35561,
281,
5408,
329,
262,
2099,
6441,
286,
4600,
34788,
63,
290,
4600,
19667,
90,
27,
25,
34788,
92,
44646,
304,
13,
70,
13,
198,
63,
24592,
786,
62,
4906,
7,
25,
15633,
8,
63,
5860,
4600,
37498,
38176,
90,
15633,
11,
19081,
90,
27,
25,
15633,
11709,
8,
44646,
198,
37811,
198,
8818,
6441,
786,
62,
4906,
7,
34788,
3712,
38176,
90,
13940,
23650,
11,
1475,
1050,
30072,
198,
220,
220,
220,
44104,
34788,
11,
4808,
10951,
8,
796,
4781,
62,
7785,
853,
7,
34788,
8,
198,
220,
220,
220,
256,
79,
62,
27773,
796,
357,
9160,
28264,
34788,
11,
1475,
1050,
8,
11405,
4808,
34788,
13,
2256,
6624,
38357,
7203,
27,
11097,
4008,
5633,
4808,
34788,
13,
22046,
58,
16,
60,
1058,
4808,
34788,
198,
220,
220,
220,
1441,
6330,
62,
7785,
853,
7,
37498,
38176,
90,
3,
62,
34788,
11,
19081,
90,
27,
25,
3,
34788,
62,
27773,
11709,
828,
44104,
34788,
11,
4808,
10951,
4008,
198,
437,
198,
198,
37811,
198,
220,
220,
220,
6330,
62,
2618,
7,
24592,
439,
3712,
38176,
90,
13940,
23650,
11,
1475,
1050,
5512,
9014,
3712,
38176,
90,
13940,
23650,
11,
1475,
1050,
30072,
198,
198,
3041,
5372,
262,
1767,
286,
281,
5408,
10200,
257,
4600,
38176,
3237,
44646,
304,
13,
70,
13,
198,
33491,
62,
2618,
7,
37498,
51,
29291,
90,
51,
11,
309,
92,
810,
309,
828,
1058,
21943,
8,
5860,
262,
357,
77,
684,
46165,
8,
5408,
198,
37498,
21943,
810,
309,
737,
1002,
4600,
24592,
439,
63,
318,
257,
4600,
13940,
23650,
47671,
788,
4600,
35666,
5592,
63,
318,
4504,
13,
198,
37811,
198,
33491,
62,
2618,
7,
24592,
439,
3712,
3109,
1050,
11,
9014,
3712,
38176,
90,
13940,
23650,
11,
1475,
1050,
30072,
796,
198,
220,
220,
220,
6441,
439,
13,
2256,
6624,
1058,
3003,
5633,
198,
220,
220,
220,
220,
220,
220,
220,
1475,
1050,
7,
25,
3003,
11,
6330,
62,
2618,
7,
24592,
439,
13,
22046,
58,
16,
4357,
9014,
828,
6441,
439,
13,
22046,
58,
17,
25,
437,
60,
23029,
1058,
198,
220,
220,
220,
220,
220,
220,
220,
9014,
198,
33491,
62,
2618,
7,
3712,
13940,
23650,
11,
9014,
3712,
38176,
90,
13940,
23650,
11,
1475,
1050,
30072,
796,
9014,
198,
198,
37811,
198,
220,
220,
220,
651,
62,
2618,
7,
87,
3712,
38176,
90,
13940,
23650,
11,
1475,
1050,
30072,
198,
198,
3855,
262,
1767,
422,
281,
5408,
10200,
257,
4600,
38176,
3237,
44646,
304,
13,
70,
13,
36147,
51,
29291,
90,
51,
11,
309,
92,
810,
309,
8,
198,
7783,
82,
36147,
51,
29291,
90,
51,
11,
309,
92,
737,
1002,
4600,
87,
63,
318,
257,
4600,
13940,
23650,
47671,
788,
4600,
87,
63,
318,
4504,
555,
282,
4400,
13,
198,
37811,
198,
1136,
62,
2618,
7,
24592,
439,
3712,
3109,
1050,
8,
796,
6441,
439,
13,
2256,
6624,
1058,
3003,
5633,
651,
62,
2618,
7,
24592,
439,
13,
22046,
58,
16,
12962,
1058,
6441,
439,
198,
1136,
62,
2618,
7,
2618,
3712,
13940,
23650,
8,
796,
1767,
198,
198,
37811,
198,
220,
220,
220,
651,
62,
19199,
7,
4906,
62,
83,
29291,
3712,
3109,
1050,
8,
198,
198,
13615,
262,
3858,
422,
257,
2099,
12,
83,
29291,
5408,
13,
304,
13,
70,
13,
36147,
51,
29291,
90,
43879,
2414,
11,
6416,
30072,
5860,
257,
198,
31364,
685,
25,
43879,
2414,
11,
1058,
15633,
60,
198,
37811,
198,
1136,
62,
19199,
7,
4906,
62,
83,
29291,
3712,
3109,
1050,
8,
796,
2099,
62,
83,
29291,
13,
22046,
58,
17,
25,
437,
60,
198,
198,
37811,
198,
220,
220,
220,
318,
64,
62,
7785,
853,
7,
1837,
23650,
62,
273,
62,
31937,
8,
198,
198,
35561,
257,
20512,
12739,
1771,
4600,
1837,
23650,
62,
273,
62,
31937,
63,
318,
257,
4600,
19852,
853,
44646,
198,
37811,
198,
9160,
62,
7785,
853,
7,
37047,
3712,
13940,
23650,
8,
796,
357,
37047,
6624,
1058,
19852,
853,
8,
198,
9160,
62,
7785,
853,
7,
31937,
3712,
3109,
1050,
8,
796,
198,
220,
220,
220,
357,
31937,
13,
2256,
6624,
1058,
22019,
306,
11405,
44052,
13,
22046,
58,
16,
60,
6624,
1058,
19852,
853,
8,
5633,
198,
220,
220,
220,
220,
220,
220,
220,
2081,
1058,
198,
220,
220,
220,
220,
220,
220,
220,
44052,
13,
2256,
6624,
1058,
3003,
5633,
318,
64,
62,
7785,
853,
7,
31937,
13,
22046,
58,
16,
12962,
1058,
3991,
198,
198,
37811,
198,
220,
220,
220,
4781,
62,
7785,
853,
7,
28004,
3712,
38176,
90,
13940,
23650,
11,
1475,
1050,
30072,
198,
198,
13615,
262,
2099,
7763,
416,
262,
4600,
28004,
63,
611,
340,
338,
257,
4600,
19852,
853,
63,
290,
262,
4600,
45,
63,
11507,
611,
2810,
13,
198,
37811,
198,
28956,
62,
7785,
853,
7,
28004,
3712,
13940,
23650,
8,
796,
318,
64,
62,
7785,
853,
7,
28004,
8,
5633,
357,
25,
7149,
11,
1058,
19852,
853,
8,
1058,
357,
28004,
11,
1058,
22366,
8,
198,
8818,
4781,
62,
7785,
853,
7,
28004,
3712,
3109,
1050,
8,
198,
220,
220,
220,
611,
318,
64,
62,
7785,
853,
7,
28004,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1767,
796,
651,
62,
2618,
7,
28004,
8,
198,
220,
220,
220,
220,
220,
220,
220,
649,
62,
28004,
796,
6330,
62,
2618,
7,
28004,
11,
1767,
13,
22046,
58,
17,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
1401,
853,
62,
10951,
796,
4129,
7,
2618,
13,
22046,
8,
6624,
513,
5633,
1767,
13,
22046,
58,
18,
60,
1058,
1058,
19852,
853,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
649,
62,
28004,
11,
1401,
853,
62,
10951,
198,
220,
220,
220,
2073,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
357,
28004,
11,
1058,
22366,
8,
198,
220,
220,
220,
886,
198,
437,
198,
198,
37811,
198,
220,
220,
220,
6330,
62,
7785,
853,
7,
28004,
3712,
43094,
5574,
3109,
1050,
11,
1401,
853,
62,
10951,
3712,
51,
29291,
8,
198,
198,
3103,
1851,
4600,
28004,
63,
284,
262,
4600,
19852,
853,
63,
7268,
4847,
286,
2099,
4600,
28004,
63,
7368,
416,
198,
63,
7785,
853,
62,
10951,
47671,
543,
815,
307,
257,
4600,
51,
29291,
63,
4504,
422,
4600,
28956,
62,
7785,
853,
44646,
198,
37811,
198,
33491,
62,
7785,
853,
7,
28004,
3712,
43094,
5574,
3109,
1050,
11,
1401,
853,
62,
10951,
3712,
51,
29291,
8,
796,
198,
220,
220,
220,
1401,
853,
62,
10951,
58,
17,
60,
6624,
1058,
22366,
5633,
198,
220,
220,
220,
220,
220,
220,
220,
2170,
1058,
198,
220,
220,
220,
220,
220,
220,
220,
1401,
853,
62,
10951,
58,
17,
60,
6624,
1058,
3919,
62,
45,
8614,
1401,
853,
62,
10951,
58,
17,
60,
6624,
1058,
19852,
853,
5633,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6330,
62,
2618,
7,
28004,
11,
36147,
19852,
853,
90,
3,
7,
1136,
62,
2618,
7,
28004,
4008,
92,
4008,
1058,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6330,
62,
2618,
7,
28004,
11,
36147,
19852,
853,
90,
3,
7,
1136,
62,
2618,
7,
28004,
36911,
29568,
7785,
853,
62,
10951,
58,
17,
12962,
92,
4008,
198,
198,
37811,
198,
220,
220,
220,
21136,
62,
46265,
22046,
7,
429,
62,
31937,
8,
4613,
34441,
51,
29291,
198,
198,
38855,
82,
281,
5408,
7268,
257,
4600,
45,
2434,
51,
29291,
63,
18875,
290,
13544,
274,
340,
656,
257,
4600,
45,
2434,
51,
29291,
63,
198,
4480,
14700,
355,
3815,
13,
198,
37811,
198,
8818,
21136,
62,
46265,
22046,
7,
429,
62,
31937,
8,
198,
220,
220,
220,
611,
318,
28920,
7,
429,
62,
31937,
13,
22046,
8,
8614,
299,
83,
62,
31937,
6624,
1475,
1050,
7,
25,
13345,
11,
1058,
45,
2434,
51,
29291,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
34441,
51,
29291,
3419,
198,
220,
220,
220,
886,
628,
220,
220,
220,
717,
62,
853,
796,
717,
7,
429,
62,
31937,
13,
22046,
8,
198,
220,
220,
220,
611,
717,
62,
853,
318,
64,
1475,
1050,
11405,
717,
62,
853,
13,
2256,
6624,
1058,
17143,
7307,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
21136,
62,
46265,
22046,
62,
17143,
7307,
7,
429,
62,
31937,
8,
198,
220,
220,
220,
2073,
361,
717,
62,
853,
318,
64,
1475,
1050,
11405,
717,
62,
853,
13,
2256,
6624,
36147,
28,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
21136,
62,
46265,
22046,
62,
83,
29291,
7,
429,
62,
31937,
8,
198,
220,
220,
220,
2073,
198,
220,
220,
220,
220,
220,
220,
220,
3714,
7,
28100,
1713,
12331,
7203,
3118,
15999,
5408,
720,
429,
62,
31937,
329,
479,
86,
22046,
26033,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1635,
366,
484,
1276,
307,
3804,
355,
257,
34441,
51,
29291,
18875,
48774,
198,
220,
220,
220,
886,
198,
437,
198,
198,
8818,
21136,
62,
46265,
22046,
62,
83,
29291,
7,
83,
929,
62,
31937,
8,
198,
220,
220,
220,
299,
83,
62,
14933,
796,
309,
29291,
7,
11085,
7,
1069,
13,
22046,
8,
329,
409,
287,
256,
929,
62,
31937,
13,
22046,
8,
198,
220,
220,
220,
1441,
34441,
51,
29291,
90,
429,
62,
14933,
92,
7,
12957,
7,
1069,
13,
22046,
8,
329,
409,
287,
256,
929,
62,
31937,
13,
22046,
8,
198,
437,
198,
198,
8818,
21136,
62,
46265,
22046,
62,
17143,
7307,
7,
17143,
62,
83,
29291,
62,
31937,
8,
198,
220,
220,
220,
1303,
2438,
318,
262,
976,
772,
996,
262,
8434,
26498,
389,
635,
1180,
5408,
3858,
198,
220,
220,
220,
1303,
357,
25,
46265,
3691,
1058,
28955,
198,
220,
220,
220,
1441,
21136,
62,
46265,
22046,
62,
83,
29291,
7,
17143,
62,
83,
29291,
62,
31937,
13,
22046,
58,
16,
12962,
198,
437,
198,
198,
37811,
198,
220,
220,
220,
21136,
62,
271,
62,
17440,
7,
30388,
62,
18747,
62,
31937,
8,
4613,
20650,
90,
33,
970,
92,
198,
198,
38855,
82,
281,
5408,
7268,
257,
4600,
38469,
90,
33,
970,
92,
63,
18875,
290,
13544,
274,
340,
656,
257,
198,
63,
38469,
90,
33,
970,
92,
44646,
198,
37811,
198,
8818,
21136,
62,
271,
62,
17440,
7,
30388,
62,
18747,
62,
31937,
8,
198,
220,
220,
220,
611,
20512,
62,
18747,
62,
31937,
13,
2256,
14512,
1058,
303,
310,
198,
220,
220,
220,
220,
220,
220,
220,
3714,
7,
28100,
1713,
12331,
7203,
3118,
15999,
5408,
720,
30388,
62,
18747,
62,
31937,
329,
318,
62,
17440,
26,
366,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1635,
366,
270,
1276,
307,
3804,
355,
257,
4600,
38469,
90,
33,
970,
92,
63,
18875,
357,
68,
13,
70,
1539,
4600,
58,
7942,
11,
3991,
60,
63,
16725,
4008,
198,
220,
220,
220,
886,
628,
220,
220,
220,
1441,
2824,
7,
33,
970,
11,
20512,
62,
18747,
62,
31937,
13,
22046,
8,
198,
437,
198
] | 2.458886 | 2,262 |
module MultiPartParsing
import ..access_threaded, ..Request, ..Multipart, ..payload
using ..Parsers
export parse_multipart_form
const CR_BYTE = 0x0d # \r
const LF_BYTE = 0x0a # \n
const DASH_BYTE = 0x2d # -
const HTAB_BYTE = 0x09 # \t
const SPACE_BYTE = 0x20
const SEMICOLON_BYTE = UInt8(';')
const CRLFCRLF = (CR_BYTE, LF_BYTE, CR_BYTE, LF_BYTE)
"compare byte buffer `a` from index `i` to index `j` with `b` and check if they are byte-equal"
function byte_buffers_eq(a, i, j, b)
l = 1
@inbounds for k = i:j
a[k] == b[l] || return false
l += 1
end
return true
end
"""
find_multipart_boundary(bytes, boundaryDelimiter; start::Int=1)
Find the first and last index of the next boundary delimiting a part, and if
the discovered boundary is the terminating boundary.
"""
function find_multipart_boundary(bytes::AbstractVector{UInt8}, boundaryDelimiter::AbstractVector{UInt8}; start::Int=1)
# The boundary delimiter line is prepended with two '-' characters
# The boundary delimiter line starts on a new line, so must be preceded by a \r\n.
# The boundary delimiter line ends with \r\n, and can have "optional linear whitespace" between
# the end of the boundary delimiter, and the \r\n.
# The last boundary delimiter line has an additional '--' at the end of the boundary delimiter
# [RFC2046 5.1.1](https://tools.ietf.org/html/rfc2046#section-5.1.1)
i = start
end_index = i + length(boundaryDelimiter) + 1
while end_index <= length(bytes)
if bytes[i] == DASH_BYTE && bytes[i + 1] == DASH_BYTE && byte_buffers_eq(bytes, i + 2, end_index, boundaryDelimiter)
# boundary delimiter line start on a new line ...
if i > 1
(i == 2 || bytes[i-2] != CR_BYTE || bytes[i-1] != LF_BYTE) && error("boundary delimiter found, but it was not the start of a line")
# the CRLF preceding the boundary delimiter is "conceptually attached
# to the boundary", so account for this with the index
i -= 2
end
# need to check if there are enough characters for the CRLF or for two dashes
end_index < length(bytes)-1 || error("boundary delimiter found, but did not end with new line")
is_terminating_delimiter = bytes[end_index+1] == DASH_BYTE && bytes[end_index+2] == DASH_BYTE
is_terminating_delimiter && (end_index += 2)
# ... there can be arbitrary SP and HTAB space between the boundary delimiter ...
while end_index < length(bytes) && (bytes[end_index+1] in (HTAB_BYTE, SPACE_BYTE))
end_index += 1
end
# ... and ends with a new line
newlineEnd = end_index < length(bytes)-1 &&
bytes[end_index+1] == CR_BYTE &&
bytes[end_index+2] == LF_BYTE
if !newlineEnd
error("boundary delimiter found, but did not end with new line")
end
end_index += 2
return (is_terminating_delimiter, i, end_index)
end
i += 1
end_index += 1
end
error("boundary delimiter not found")
end
"""
find_multipart_boundaries(bytes, boundary; start=1)
Find the start and end indexes of all the parts of the multipart object. Ultimately this method is
looking for the data between the boundary delimiters in the byte array. A vector containing all
the start/end pairs is returned.
"""
function find_multipart_boundaries(bytes::AbstractVector{UInt8}, boundary::AbstractVector{UInt8}; start=1)
idxs = Tuple{Int, Int}[]
while true
(is_terminating_delimiter, i, end_index) = find_multipart_boundary(bytes, boundary; start = start)
push!(idxs, (i, end_index))
is_terminating_delimiter && break
start = end_index + 1
end
return idxs
end
"""
find_header_boundary(bytes)
Find the end of the multipart header in the byte array. Returns a Tuple with the
start index(1) and the end index. Headers are separated from the body by CRLFCRLF.
[RFC2046 5.1](https://tools.ietf.org/html/rfc2046#section-5.1)
[RFC822 3.1](https://tools.ietf.org/html/rfc822#section-3.1)
"""
function find_header_boundary(bytes::AbstractVector{UInt8})
length(CRLFCRLF) > length(bytes) && return nothing
l = length(bytes) - length(CRLFCRLF) + 1
i = 1
end_index = length(CRLFCRLF)
while (i <= l)
byte_buffers_eq(bytes, i, end_index, CRLFCRLF) && return (1, end_index)
i += 1
end_index += 1
end
error("no delimiter found separating header from multipart body")
end
const content_disposition_regex = Parsers.RegexAndMatchData[]
function content_disposition_regex_f()
r = Parsers.RegexAndMatchData(r"^Content-Disposition:[ \t]*form-data;[ \t]*(.*)\r\n"x)
Parsers.init!(r)
end
const content_disposition_flag_regex = Parsers.RegexAndMatchData[]
function content_disposition_flag_regex_f()
r = Parsers.RegexAndMatchData(r"""^
[ \t]*([!#$%&'*+\-.^_`|~[:alnum:]]+);?
"""x)
Parsers.init!(r)
end
const content_disposition_pair_regex = Parsers.RegexAndMatchData[]
function content_disposition_pair_regex_f()
r = Parsers.RegexAndMatchData(r"""^
[ \t]*([!#$%&'*+\-.^_`|~[:alnum:]]+)[ \t]*=[ \t]*"(.*?)";?
"""x)
Parsers.init!(r)
end
const content_type_regex = Parsers.RegexAndMatchData[]
function content_type_regex_f()
r = Parsers.RegexAndMatchData(r"(?i)Content-Type: (\S*[^;\s])"x)
Parsers.init!(r)
end
"""
parse_multipart_chunk(chunk)
Parse a single multi-part chunk into a Multipart object. This will decode
the header and extract the contents from the byte array.
"""
function parse_multipart_chunk(chunk)
startIndex, end_index = find_header_boundary(chunk)
header = SubString(unsafe_string(pointer(chunk, startIndex), end_index - startIndex + 1))
content = view(chunk, end_index+1:lastindex(chunk))
# find content disposition
re = access_threaded(content_disposition_regex_f, content_disposition_regex)
if !Parsers.exec(re, header)
@warn "Content disposition is not specified dropping the chunk." String(chunk)
return nothing # Specifying content disposition is mandatory
end
content_disposition = Parsers.group(1, re, header)
re_flag = access_threaded(content_disposition_flag_regex_f, content_disposition_flag_regex)
re_pair = access_threaded(content_disposition_pair_regex_f, content_disposition_pair_regex)
name = nothing
filename = nothing
while !isempty(content_disposition)
if Parsers.exec(re_pair, content_disposition)
key = Parsers.group(1, re_pair, content_disposition)
value = Parsers.group(2, re_pair, content_disposition)
if key == "name"
name = value
elseif key == "filename"
filename = value
else
# do stuff with other content disposition key-value pairs
end
content_disposition = Parsers.nextbytes(re_pair, content_disposition)
elseif Parsers.exec(re_flag, content_disposition)
# do stuff with content disposition flags
content_disposition = Parsers.nextbytes(re_flag, content_disposition)
else
break
end
end
name === nothing && return
re_ct = access_threaded(content_type_regex_f, content_type_regex)
contenttype = Parsers.exec(re_ct, header) ? Parsers.group(1, re_ct, header) : "text/plain"
return Multipart(filename, IOBuffer(content), contenttype, "", name)
end
"""
parse_multipart_body(body, boundary)::Vector{Multipart}
Parse the multipart body received from the client breaking it into the various
chunks which are returned as an array of Multipart objects.
"""
function parse_multipart_body(body::AbstractVector{UInt8}, boundary::AbstractString)::Vector{Multipart}
multiparts = Multipart[]
idxs = find_multipart_boundaries(body, codeunits(boundary))
length(idxs) > 1 || (return multiparts)
for i in 1:length(idxs)-1
chunk = view(body, idxs[i][2]+1:idxs[i+1][1]-1)
push!(multiparts, parse_multipart_chunk(chunk))
end
return multiparts
end
"""
parse_multipart_form(req::Request)::Vector{Multipart}
Parse the full mutipart form submission from the client returning and
array of Multipart objects containing all the data.
The order of the multipart form data in the request should be preserved.
[RFC7578 5.2](https://tools.ietf.org/html/rfc7578#section-5.2).
The boundary delimiter MUST NOT appear inside any of the encapsulated parts. Note
that the boundary delimiter does not need to have '-' characters, but a line using
the boundary delimiter will start with '--' and end in \r\n.
[RFC2046 5.1](https://tools.ietf.org/html/rfc2046#section-5.1.1)
"""
function parse_multipart_form(req::Request)::Union{Vector{Multipart}, Nothing}
# parse boundary from Content-Type
m = match(r"multipart/form-data; boundary=(.*)$", req["Content-Type"])
m === nothing && return nothing
boundary_delimiter = m[1]
# [RFC2046 5.1.1](https://tools.ietf.org/html/rfc2046#section-5.1.1)
length(boundary_delimiter) > 70 && error("boundary delimiter must not be greater than 70 characters")
return parse_multipart_body(payload(req), boundary_delimiter)
end
function __init__()
resize!(empty!(content_disposition_regex), Threads.nthreads())
resize!(empty!(content_disposition_flag_regex), Threads.nthreads())
resize!(empty!(content_disposition_pair_regex), Threads.nthreads())
resize!(empty!(content_type_regex), Threads.nthreads())
return
end
end # module MultiPartParsing
| [
21412,
15237,
7841,
47,
945,
278,
198,
198,
11748,
11485,
15526,
62,
16663,
276,
11,
11485,
18453,
11,
11485,
15205,
541,
433,
11,
11485,
15577,
2220,
198,
3500,
11485,
47,
945,
364,
198,
198,
39344,
21136,
62,
16680,
541,
433,
62,
687,
198,
198,
9979,
8740,
62,
17513,
9328,
796,
657,
87,
15,
67,
1303,
3467,
81,
198,
9979,
47629,
62,
17513,
9328,
796,
657,
87,
15,
64,
1303,
3467,
77,
198,
9979,
360,
11211,
62,
17513,
9328,
796,
657,
87,
17,
67,
1303,
532,
198,
9979,
367,
5603,
33,
62,
17513,
9328,
796,
657,
87,
2931,
1303,
3467,
83,
198,
9979,
37253,
62,
17513,
9328,
796,
657,
87,
1238,
198,
9979,
48603,
2149,
3535,
1340,
62,
17513,
9328,
796,
471,
5317,
23,
10786,
26,
11537,
198,
9979,
327,
7836,
4851,
7836,
37,
796,
357,
9419,
62,
17513,
9328,
11,
47629,
62,
17513,
9328,
11,
8740,
62,
17513,
9328,
11,
47629,
62,
17513,
9328,
8,
198,
198,
1,
5589,
533,
18022,
11876,
4600,
64,
63,
422,
6376,
4600,
72,
63,
284,
6376,
4600,
73,
63,
351,
4600,
65,
63,
290,
2198,
611,
484,
389,
18022,
12,
40496,
1,
198,
8818,
18022,
62,
36873,
364,
62,
27363,
7,
64,
11,
1312,
11,
474,
11,
275,
8,
198,
220,
220,
220,
300,
796,
352,
198,
220,
220,
220,
2488,
259,
65,
3733,
329,
479,
796,
1312,
25,
73,
198,
220,
220,
220,
220,
220,
220,
220,
257,
58,
74,
60,
6624,
275,
58,
75,
60,
8614,
1441,
3991,
198,
220,
220,
220,
220,
220,
220,
220,
300,
15853,
352,
198,
220,
220,
220,
886,
198,
220,
220,
220,
1441,
2081,
198,
437,
198,
198,
37811,
198,
220,
220,
220,
1064,
62,
16680,
541,
433,
62,
7784,
560,
7,
33661,
11,
18645,
13856,
320,
2676,
26,
923,
3712,
5317,
28,
16,
8,
198,
198,
16742,
262,
717,
290,
938,
6376,
286,
262,
1306,
18645,
46728,
1780,
257,
636,
11,
290,
611,
198,
1169,
5071,
18645,
318,
262,
47985,
18645,
13,
198,
37811,
198,
8818,
1064,
62,
16680,
541,
433,
62,
7784,
560,
7,
33661,
3712,
23839,
38469,
90,
52,
5317,
23,
5512,
18645,
13856,
320,
2676,
3712,
23839,
38469,
90,
52,
5317,
23,
19629,
923,
3712,
5317,
28,
16,
8,
198,
220,
220,
220,
1303,
383,
18645,
46728,
2676,
1627,
318,
3143,
1631,
351,
734,
705,
19355,
3435,
198,
220,
220,
220,
1303,
383,
18645,
46728,
2676,
1627,
4940,
319,
257,
649,
1627,
11,
523,
1276,
307,
27165,
416,
257,
3467,
81,
59,
77,
13,
198,
220,
220,
220,
1303,
383,
18645,
46728,
2676,
1627,
5645,
351,
3467,
81,
59,
77,
11,
290,
460,
423,
366,
25968,
14174,
13216,
10223,
1,
1022,
198,
220,
220,
220,
1303,
262,
886,
286,
262,
18645,
46728,
2676,
11,
290,
262,
3467,
81,
59,
77,
13,
198,
220,
220,
220,
1303,
383,
938,
18645,
46728,
2676,
1627,
468,
281,
3224,
705,
438,
6,
379,
262,
886,
286,
262,
18645,
46728,
2676,
198,
220,
220,
220,
1303,
685,
41150,
1238,
3510,
642,
13,
16,
13,
16,
16151,
5450,
1378,
31391,
13,
1155,
69,
13,
2398,
14,
6494,
14,
81,
16072,
1238,
3510,
2,
5458,
12,
20,
13,
16,
13,
16,
8,
628,
220,
220,
220,
1312,
796,
923,
198,
220,
220,
220,
886,
62,
9630,
796,
1312,
1343,
4129,
7,
7784,
560,
13856,
320,
2676,
8,
1343,
352,
198,
220,
220,
220,
981,
886,
62,
9630,
19841,
4129,
7,
33661,
8,
198,
220,
220,
220,
220,
220,
220,
220,
611,
9881,
58,
72,
60,
6624,
360,
11211,
62,
17513,
9328,
11405,
9881,
58,
72,
1343,
352,
60,
6624,
360,
11211,
62,
17513,
9328,
11405,
18022,
62,
36873,
364,
62,
27363,
7,
33661,
11,
1312,
1343,
362,
11,
886,
62,
9630,
11,
18645,
13856,
320,
2676,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
18645,
46728,
2676,
1627,
923,
319,
257,
649,
1627,
2644,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
1312,
1875,
352,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
357,
72,
6624,
362,
8614,
9881,
58,
72,
12,
17,
60,
14512,
8740,
62,
17513,
9328,
8614,
9881,
58,
72,
12,
16,
60,
14512,
47629,
62,
17513,
9328,
8,
11405,
4049,
7203,
7784,
560,
46728,
2676,
1043,
11,
475,
340,
373,
407,
262,
923,
286,
257,
1627,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
262,
327,
7836,
37,
18148,
262,
18645,
46728,
2676,
318,
366,
43169,
935,
7223,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
284,
262,
18645,
1600,
523,
1848,
329,
428,
351,
262,
6376,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1312,
48185,
362,
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,
1303,
761,
284,
2198,
611,
612,
389,
1576,
3435,
329,
262,
327,
7836,
37,
393,
329,
734,
288,
7465,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
886,
62,
9630,
1279,
4129,
7,
33661,
13219,
16,
8614,
4049,
7203,
7784,
560,
46728,
2676,
1043,
11,
475,
750,
407,
886,
351,
649,
1627,
4943,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
318,
62,
23705,
803,
62,
12381,
320,
2676,
796,
9881,
58,
437,
62,
9630,
10,
16,
60,
6624,
360,
11211,
62,
17513,
9328,
11405,
9881,
58,
437,
62,
9630,
10,
17,
60,
6624,
360,
11211,
62,
17513,
9328,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
318,
62,
23705,
803,
62,
12381,
320,
2676,
11405,
357,
437,
62,
9630,
15853,
362,
8,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
2644,
612,
460,
307,
14977,
6226,
290,
367,
5603,
33,
2272,
1022,
262,
18645,
46728,
2676,
2644,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
981,
886,
62,
9630,
1279,
4129,
7,
33661,
8,
11405,
357,
33661,
58,
437,
62,
9630,
10,
16,
60,
287,
357,
39,
5603,
33,
62,
17513,
9328,
11,
37253,
62,
17513,
9328,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
886,
62,
9630,
15853,
352,
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,
1303,
2644,
290,
5645,
351,
257,
649,
1627,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
649,
1370,
12915,
796,
886,
62,
9630,
1279,
4129,
7,
33661,
13219,
16,
11405,
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,
9881,
58,
437,
62,
9630,
10,
16,
60,
6624,
8740,
62,
17513,
9328,
11405,
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,
9881,
58,
437,
62,
9630,
10,
17,
60,
6624,
47629,
62,
17513,
9328,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
5145,
3605,
1370,
12915,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4049,
7203,
7784,
560,
46728,
2676,
1043,
11,
475,
750,
407,
886,
351,
649,
1627,
4943,
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,
886,
62,
9630,
15853,
362,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
357,
271,
62,
23705,
803,
62,
12381,
320,
2676,
11,
1312,
11,
886,
62,
9630,
8,
198,
220,
220,
220,
220,
220,
220,
220,
886,
628,
220,
220,
220,
220,
220,
220,
220,
1312,
15853,
352,
198,
220,
220,
220,
220,
220,
220,
220,
886,
62,
9630,
15853,
352,
198,
220,
220,
220,
886,
628,
220,
220,
220,
4049,
7203,
7784,
560,
46728,
2676,
407,
1043,
4943,
198,
437,
198,
198,
37811,
198,
220,
220,
220,
1064,
62,
16680,
541,
433,
62,
7784,
3166,
7,
33661,
11,
18645,
26,
923,
28,
16,
8,
198,
198,
16742,
262,
923,
290,
886,
39199,
286,
477,
262,
3354,
286,
262,
18540,
433,
2134,
13,
220,
24199,
428,
2446,
318,
198,
11534,
329,
262,
1366,
1022,
262,
18645,
46728,
270,
364,
287,
262,
18022,
7177,
13,
220,
317,
15879,
7268,
477,
198,
1169,
923,
14,
437,
14729,
318,
4504,
13,
198,
37811,
198,
8818,
1064,
62,
16680,
541,
433,
62,
7784,
3166,
7,
33661,
3712,
23839,
38469,
90,
52,
5317,
23,
5512,
18645,
3712,
23839,
38469,
90,
52,
5317,
23,
19629,
923,
28,
16,
8,
198,
220,
220,
220,
4686,
34223,
796,
309,
29291,
90,
5317,
11,
2558,
92,
21737,
198,
220,
220,
220,
981,
2081,
198,
220,
220,
220,
220,
220,
220,
220,
357,
271,
62,
23705,
803,
62,
12381,
320,
2676,
11,
1312,
11,
886,
62,
9630,
8,
796,
1064,
62,
16680,
541,
433,
62,
7784,
560,
7,
33661,
11,
18645,
26,
923,
796,
923,
8,
198,
220,
220,
220,
220,
220,
220,
220,
4574,
0,
7,
312,
34223,
11,
357,
72,
11,
886,
62,
9630,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
318,
62,
23705,
803,
62,
12381,
320,
2676,
11405,
2270,
198,
220,
220,
220,
220,
220,
220,
220,
923,
796,
886,
62,
9630,
1343,
352,
198,
220,
220,
220,
886,
198,
220,
220,
220,
1441,
4686,
34223,
198,
437,
198,
198,
37811,
198,
220,
220,
220,
1064,
62,
25677,
62,
7784,
560,
7,
33661,
8,
198,
198,
16742,
262,
886,
286,
262,
18540,
433,
13639,
287,
262,
18022,
7177,
13,
220,
16409,
257,
309,
29291,
351,
262,
198,
9688,
6376,
7,
16,
8,
290,
262,
886,
6376,
13,
7123,
364,
389,
11266,
422,
262,
1767,
416,
327,
7836,
4851,
7836,
37,
13,
198,
198,
58,
41150,
1238,
3510,
642,
13,
16,
16151,
5450,
1378,
31391,
13,
1155,
69,
13,
2398,
14,
6494,
14,
81,
16072,
1238,
3510,
2,
5458,
12,
20,
13,
16,
8,
198,
58,
41150,
23,
1828,
513,
13,
16,
16151,
5450,
1378,
31391,
13,
1155,
69,
13,
2398,
14,
6494,
14,
81,
16072,
23,
1828,
2,
5458,
12,
18,
13,
16,
8,
198,
37811,
198,
8818,
1064,
62,
25677,
62,
7784,
560,
7,
33661,
3712,
23839,
38469,
90,
52,
5317,
23,
30072,
198,
220,
220,
220,
4129,
7,
34,
7836,
4851,
7836,
37,
8,
1875,
4129,
7,
33661,
8,
11405,
1441,
2147,
628,
220,
220,
220,
300,
796,
4129,
7,
33661,
8,
532,
4129,
7,
34,
7836,
4851,
7836,
37,
8,
1343,
352,
198,
220,
220,
220,
1312,
796,
352,
198,
220,
220,
220,
886,
62,
9630,
796,
4129,
7,
34,
7836,
4851,
7836,
37,
8,
198,
220,
220,
220,
981,
357,
72,
19841,
300,
8,
198,
220,
220,
220,
220,
220,
220,
220,
18022,
62,
36873,
364,
62,
27363,
7,
33661,
11,
1312,
11,
886,
62,
9630,
11,
327,
7836,
4851,
7836,
37,
8,
11405,
1441,
357,
16,
11,
886,
62,
9630,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1312,
15853,
352,
198,
220,
220,
220,
220,
220,
220,
220,
886,
62,
9630,
15853,
352,
198,
220,
220,
220,
886,
198,
220,
220,
220,
4049,
7203,
3919,
46728,
2676,
1043,
27259,
13639,
422,
18540,
433,
1767,
4943,
198,
437,
198,
198,
9979,
2695,
62,
6381,
9150,
62,
260,
25636,
796,
23042,
364,
13,
3041,
25636,
1870,
23850,
6601,
21737,
198,
8818,
2695,
62,
6381,
9150,
62,
260,
25636,
62,
69,
3419,
198,
220,
220,
220,
374,
796,
23042,
364,
13,
3041,
25636,
1870,
23850,
6601,
7,
81,
1,
61,
19746,
12,
7279,
9150,
33250,
3467,
83,
60,
9,
687,
12,
7890,
26,
58,
3467,
83,
60,
9,
7,
15885,
19415,
81,
59,
77,
1,
87,
8,
198,
220,
220,
220,
23042,
364,
13,
15003,
0,
7,
81,
8,
198,
437,
198,
198,
9979,
2695,
62,
6381,
9150,
62,
32109,
62,
260,
25636,
796,
23042,
364,
13,
3041,
25636,
1870,
23850,
6601,
21737,
198,
8818,
2695,
62,
6381,
9150,
62,
32109,
62,
260,
25636,
62,
69,
3419,
198,
220,
220,
220,
374,
796,
23042,
364,
13,
3041,
25636,
1870,
23850,
6601,
7,
81,
37811,
61,
198,
220,
220,
220,
685,
3467,
83,
60,
9,
26933,
0,
29953,
4,
5,
6,
9,
10,
59,
34507,
61,
62,
63,
91,
93,
58,
25,
282,
22510,
25,
11907,
10,
1776,
30,
198,
220,
220,
220,
37227,
87,
8,
198,
220,
220,
220,
23042,
364,
13,
15003,
0,
7,
81,
8,
198,
437,
198,
198,
9979,
2695,
62,
6381,
9150,
62,
24874,
62,
260,
25636,
796,
23042,
364,
13,
3041,
25636,
1870,
23850,
6601,
21737,
198,
8818,
2695,
62,
6381,
9150,
62,
24874,
62,
260,
25636,
62,
69,
3419,
198,
220,
220,
220,
374,
796,
23042,
364,
13,
3041,
25636,
1870,
23850,
6601,
7,
81,
37811,
61,
198,
220,
220,
220,
685,
3467,
83,
60,
9,
26933,
0,
29953,
4,
5,
6,
9,
10,
59,
34507,
61,
62,
63,
91,
93,
58,
25,
282,
22510,
25,
11907,
28988,
58,
3467,
83,
60,
9,
41888,
3467,
83,
60,
9,
18109,
15885,
10091,
8172,
30,
198,
220,
220,
220,
37227,
87,
8,
198,
220,
220,
220,
23042,
364,
13,
15003,
0,
7,
81,
8,
198,
437,
198,
198,
9979,
2695,
62,
4906,
62,
260,
25636,
796,
23042,
364,
13,
3041,
25636,
1870,
23850,
6601,
21737,
198,
8818,
2695,
62,
4906,
62,
260,
25636,
62,
69,
3419,
198,
220,
220,
220,
374,
796,
23042,
364,
13,
3041,
25636,
1870,
23850,
6601,
7,
81,
18109,
30,
72,
8,
19746,
12,
6030,
25,
357,
59,
50,
9,
58,
61,
26,
59,
82,
12962,
1,
87,
8,
198,
220,
220,
220,
23042,
364,
13,
15003,
0,
7,
81,
8,
198,
437,
198,
198,
37811,
198,
220,
220,
220,
21136,
62,
16680,
541,
433,
62,
354,
2954,
7,
354,
2954,
8,
198,
198,
10044,
325,
257,
2060,
5021,
12,
3911,
16058,
656,
257,
7854,
541,
433,
2134,
13,
220,
770,
481,
36899,
198,
1169,
13639,
290,
7925,
262,
10154,
422,
262,
18022,
7177,
13,
198,
37811,
198,
8818,
21136,
62,
16680,
541,
433,
62,
354,
2954,
7,
354,
2954,
8,
198,
220,
220,
220,
923,
15732,
11,
886,
62,
9630,
796,
1064,
62,
25677,
62,
7784,
560,
7,
354,
2954,
8,
198,
220,
220,
220,
13639,
796,
3834,
10100,
7,
13271,
8635,
62,
8841,
7,
29536,
7,
354,
2954,
11,
923,
15732,
828,
886,
62,
9630,
532,
923,
15732,
1343,
352,
4008,
198,
220,
220,
220,
2695,
796,
1570,
7,
354,
2954,
11,
886,
62,
9630,
10,
16,
25,
12957,
9630,
7,
354,
2954,
4008,
628,
220,
220,
220,
1303,
1064,
2695,
24665,
198,
220,
220,
220,
302,
796,
1895,
62,
16663,
276,
7,
11299,
62,
6381,
9150,
62,
260,
25636,
62,
69,
11,
2695,
62,
6381,
9150,
62,
260,
25636,
8,
198,
220,
220,
220,
611,
5145,
47,
945,
364,
13,
18558,
7,
260,
11,
13639,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2488,
40539,
366,
19746,
24665,
318,
407,
7368,
12047,
262,
16058,
526,
10903,
7,
354,
2954,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
2147,
1303,
18291,
4035,
2695,
24665,
318,
13677,
198,
220,
220,
220,
886,
198,
220,
220,
220,
2695,
62,
6381,
9150,
796,
23042,
364,
13,
8094,
7,
16,
11,
302,
11,
13639,
8,
628,
220,
220,
220,
302,
62,
32109,
796,
1895,
62,
16663,
276,
7,
11299,
62,
6381,
9150,
62,
32109,
62,
260,
25636,
62,
69,
11,
2695,
62,
6381,
9150,
62,
32109,
62,
260,
25636,
8,
198,
220,
220,
220,
302,
62,
24874,
796,
1895,
62,
16663,
276,
7,
11299,
62,
6381,
9150,
62,
24874,
62,
260,
25636,
62,
69,
11,
2695,
62,
6381,
9150,
62,
24874,
62,
260,
25636,
8,
198,
220,
220,
220,
1438,
796,
2147,
198,
220,
220,
220,
29472,
796,
2147,
198,
220,
220,
220,
981,
5145,
271,
28920,
7,
11299,
62,
6381,
9150,
8,
198,
220,
220,
220,
220,
220,
220,
220,
611,
23042,
364,
13,
18558,
7,
260,
62,
24874,
11,
2695,
62,
6381,
9150,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1994,
796,
23042,
364,
13,
8094,
7,
16,
11,
302,
62,
24874,
11,
2695,
62,
6381,
9150,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1988,
796,
23042,
364,
13,
8094,
7,
17,
11,
302,
62,
24874,
11,
2695,
62,
6381,
9150,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
1994,
6624,
366,
3672,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1438,
796,
1988,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2073,
361,
1994,
6624,
366,
34345,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
29472,
796,
1988,
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,
466,
3404,
351,
584,
2695,
24665,
1994,
12,
8367,
14729,
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,
2695,
62,
6381,
9150,
796,
23042,
364,
13,
19545,
33661,
7,
260,
62,
24874,
11,
2695,
62,
6381,
9150,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
361,
23042,
364,
13,
18558,
7,
260,
62,
32109,
11,
2695,
62,
6381,
9150,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
466,
3404,
351,
2695,
24665,
9701,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2695,
62,
6381,
9150,
796,
23042,
364,
13,
19545,
33661,
7,
260,
62,
32109,
11,
2695,
62,
6381,
9150,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
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,
1438,
24844,
2147,
11405,
1441,
628,
220,
220,
220,
302,
62,
310,
796,
1895,
62,
16663,
276,
7,
11299,
62,
4906,
62,
260,
25636,
62,
69,
11,
2695,
62,
4906,
62,
260,
25636,
8,
198,
220,
220,
220,
2695,
4906,
796,
23042,
364,
13,
18558,
7,
260,
62,
310,
11,
13639,
8,
5633,
23042,
364,
13,
8094,
7,
16,
11,
302,
62,
310,
11,
13639,
8,
1058,
366,
5239,
14,
25638,
1,
628,
220,
220,
220,
1441,
7854,
541,
433,
7,
34345,
11,
314,
9864,
13712,
7,
11299,
828,
2695,
4906,
11,
366,
1600,
1438,
8,
198,
437,
198,
198,
37811,
198,
220,
220,
220,
21136,
62,
16680,
541,
433,
62,
2618,
7,
2618,
11,
18645,
2599,
25,
38469,
90,
15205,
541,
433,
92,
198,
198,
10044,
325,
262,
18540,
433,
1767,
2722,
422,
262,
5456,
7163,
340,
656,
262,
2972,
198,
354,
14125,
543,
389,
4504,
355,
281,
7177,
286,
7854,
541,
433,
5563,
13,
198,
37811,
198,
8818,
21136,
62,
16680,
541,
433,
62,
2618,
7,
2618,
3712,
23839,
38469,
90,
52,
5317,
23,
5512,
18645,
3712,
23839,
10100,
2599,
25,
38469,
90,
15205,
541,
433,
92,
198,
220,
220,
220,
18540,
5889,
796,
7854,
541,
433,
21737,
198,
220,
220,
220,
4686,
34223,
796,
1064,
62,
16680,
541,
433,
62,
7784,
3166,
7,
2618,
11,
2438,
41667,
7,
7784,
560,
4008,
198,
220,
220,
220,
4129,
7,
312,
34223,
8,
1875,
352,
8614,
357,
7783,
18540,
5889,
8,
628,
220,
220,
220,
329,
1312,
287,
352,
25,
13664,
7,
312,
34223,
13219,
16,
198,
220,
220,
220,
220,
220,
220,
220,
16058,
796,
1570,
7,
2618,
11,
4686,
34223,
58,
72,
7131,
17,
48688,
16,
25,
312,
34223,
58,
72,
10,
16,
7131,
16,
45297,
16,
8,
198,
220,
220,
220,
220,
220,
220,
220,
4574,
0,
7,
16680,
541,
5889,
11,
21136,
62,
16680,
541,
433,
62,
354,
2954,
7,
354,
2954,
4008,
198,
220,
220,
220,
886,
198,
220,
220,
220,
1441,
18540,
5889,
198,
437,
628,
198,
37811,
198,
220,
220,
220,
21136,
62,
16680,
541,
433,
62,
687,
7,
42180,
3712,
18453,
2599,
25,
38469,
90,
15205,
541,
433,
92,
198,
198,
10044,
325,
262,
1336,
4517,
541,
433,
1296,
14498,
422,
262,
5456,
8024,
290,
198,
18747,
286,
7854,
541,
433,
5563,
7268,
477,
262,
1366,
13,
198,
198,
464,
1502,
286,
262,
18540,
433,
1296,
1366,
287,
262,
2581,
815,
307,
17232,
13,
198,
58,
41150,
2425,
3695,
642,
13,
17,
16151,
5450,
1378,
31391,
13,
1155,
69,
13,
2398,
14,
6494,
14,
81,
16072,
2425,
3695,
2,
5458,
12,
20,
13,
17,
737,
198,
198,
464,
18645,
46728,
2676,
17191,
5626,
1656,
2641,
597,
286,
262,
32652,
4817,
3354,
13,
5740,
198,
5562,
262,
18645,
46728,
2676,
857,
407,
761,
284,
423,
705,
19355,
3435,
11,
475,
257,
1627,
1262,
198,
1169,
18645,
46728,
2676,
481,
923,
351,
705,
438,
6,
290,
886,
287,
3467,
81,
59,
77,
13,
198,
58,
41150,
1238,
3510,
642,
13,
16,
16151,
5450,
1378,
31391,
13,
1155,
69,
13,
2398,
14,
6494,
14,
81,
16072,
1238,
3510,
2,
5458,
12,
20,
13,
16,
13,
16,
8,
198,
37811,
198,
8818,
21136,
62,
16680,
541,
433,
62,
687,
7,
42180,
3712,
18453,
2599,
25,
38176,
90,
38469,
90,
15205,
541,
433,
5512,
10528,
92,
198,
220,
220,
220,
1303,
21136,
18645,
422,
14041,
12,
6030,
198,
220,
220,
220,
285,
796,
2872,
7,
81,
1,
16680,
541,
433,
14,
687,
12,
7890,
26,
18645,
16193,
15885,
8,
3,
1600,
43089,
14692,
19746,
12,
6030,
8973,
8,
198,
220,
220,
220,
285,
24844,
2147,
11405,
1441,
2147,
628,
220,
220,
220,
18645,
62,
12381,
320,
2676,
796,
285,
58,
16,
60,
628,
220,
220,
220,
1303,
685,
41150,
1238,
3510,
642,
13,
16,
13,
16,
16151,
5450,
1378,
31391,
13,
1155,
69,
13,
2398,
14,
6494,
14,
81,
16072,
1238,
3510,
2,
5458,
12,
20,
13,
16,
13,
16,
8,
198,
220,
220,
220,
4129,
7,
7784,
560,
62,
12381,
320,
2676,
8,
1875,
4317,
11405,
4049,
7203,
7784,
560,
46728,
2676,
1276,
407,
307,
3744,
621,
4317,
3435,
4943,
628,
220,
220,
220,
1441,
21136,
62,
16680,
541,
433,
62,
2618,
7,
15577,
2220,
7,
42180,
828,
18645,
62,
12381,
320,
2676,
8,
198,
437,
198,
198,
8818,
11593,
15003,
834,
3419,
198,
220,
220,
220,
47558,
0,
7,
28920,
0,
7,
11299,
62,
6381,
9150,
62,
260,
25636,
828,
14122,
82,
13,
77,
16663,
82,
28955,
198,
220,
220,
220,
47558,
0,
7,
28920,
0,
7,
11299,
62,
6381,
9150,
62,
32109,
62,
260,
25636,
828,
14122,
82,
13,
77,
16663,
82,
28955,
198,
220,
220,
220,
47558,
0,
7,
28920,
0,
7,
11299,
62,
6381,
9150,
62,
24874,
62,
260,
25636,
828,
14122,
82,
13,
77,
16663,
82,
28955,
198,
220,
220,
220,
47558,
0,
7,
28920,
0,
7,
11299,
62,
4906,
62,
260,
25636,
828,
14122,
82,
13,
77,
16663,
82,
28955,
198,
220,
220,
220,
1441,
198,
437,
198,
198,
437,
1303,
8265,
15237,
7841,
47,
945,
278,
198
] | 2.514123 | 3,859 |
using AutomotiveDrivingModels, AutomotivePOMDPs, POMDPs, ProgressMeter
params = UrbanParams(nlanes_main=1,
crosswalk_pos = [VecSE2(6, 0., pi/2), VecSE2(-6, 0., pi/2), VecSE2(0., -5., 0.)],
crosswalk_length = [14.0, 14., 14.0],
crosswalk_width = [4.0, 4.0, 3.1],
stop_line = 22.0)
env = UrbanEnv(params=params);
mdp = PedCarMDP(env = env, pos_res=3., vel_res=2., ped_birth=0.7, ped_type=VehicleDef(AgentClass.PEDESTRIAN, 1.0, 3.0))
egos = get_ego_states(mdp.env, mdp.pos_res, mdp.vel_res)
for (i, e) in enumerate(egos)
@assert ind2ego(mdp.env, i, mdp.pos_res, mdp.vel_res) == e
end
routes = AutomotivePOMDPs.get_car_routes(mdp.env)
for route in routes
cars = get_car_states(mdp.env, route, mdp.pos_res, mdp.vel_res)
for (i, c) in enumerate(cars)
@assert ind2car(mdp.env, i, route, mdp.pos_res, mdp.vel_res) == c
end
end
peds = get_ped_states(mdp.env, mdp.pos_res, mdp.vel_ped_res)
for (i, p) in enumerate(peds)
if ind2ped(mdp.env, i, mdp.pos_res, mdp.vel_ped_res) != p
println(i)
break
end
end
state_space = states(mdp)
@showprogress for (i, s) in enumerate(state_space)
@assert ind2state(mdp, i) == s
end
| [
3500,
17406,
19138,
20564,
1075,
5841,
1424,
11,
17406,
19138,
47,
2662,
6322,
82,
11,
350,
2662,
6322,
82,
11,
18387,
44,
2357,
201,
198,
201,
198,
37266,
796,
14665,
10044,
4105,
7,
21283,
7305,
62,
12417,
28,
16,
11,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3272,
11152,
62,
1930,
796,
220,
685,
53,
721,
5188,
17,
7,
21,
11,
657,
1539,
31028,
14,
17,
828,
38692,
5188,
17,
32590,
21,
11,
657,
1539,
31028,
14,
17,
828,
38692,
5188,
17,
7,
15,
1539,
532,
20,
1539,
657,
2014,
4357,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3272,
11152,
62,
13664,
796,
220,
685,
1415,
13,
15,
11,
1478,
1539,
1478,
13,
15,
4357,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3272,
11152,
62,
10394,
796,
685,
19,
13,
15,
11,
604,
13,
15,
11,
513,
13,
16,
4357,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2245,
62,
1370,
796,
2534,
13,
15,
8,
201,
198,
24330,
796,
14665,
4834,
85,
7,
37266,
28,
37266,
1776,
201,
198,
201,
198,
9132,
79,
796,
13457,
9914,
44,
6322,
7,
24330,
796,
17365,
11,
1426,
62,
411,
28,
18,
1539,
11555,
62,
411,
28,
17,
1539,
7190,
62,
24280,
28,
15,
13,
22,
11,
7190,
62,
4906,
28,
37870,
1548,
7469,
7,
36772,
9487,
13,
47,
1961,
1546,
5446,
16868,
11,
352,
13,
15,
11,
513,
13,
15,
4008,
201,
198,
201,
198,
201,
198,
1533,
418,
796,
651,
62,
1533,
78,
62,
27219,
7,
9132,
79,
13,
24330,
11,
285,
26059,
13,
1930,
62,
411,
11,
285,
26059,
13,
626,
62,
411,
8,
201,
198,
201,
198,
1640,
357,
72,
11,
304,
8,
287,
27056,
378,
7,
1533,
418,
8,
201,
198,
220,
220,
220,
2488,
30493,
773,
17,
1533,
78,
7,
9132,
79,
13,
24330,
11,
1312,
11,
285,
26059,
13,
1930,
62,
411,
11,
285,
26059,
13,
626,
62,
411,
8,
6624,
304,
201,
198,
437,
201,
198,
201,
198,
81,
448,
274,
796,
17406,
19138,
47,
2662,
6322,
82,
13,
1136,
62,
7718,
62,
81,
448,
274,
7,
9132,
79,
13,
24330,
8,
201,
198,
201,
198,
1640,
6339,
287,
11926,
220,
201,
198,
220,
220,
220,
5006,
796,
651,
62,
7718,
62,
27219,
7,
9132,
79,
13,
24330,
11,
6339,
11,
285,
26059,
13,
1930,
62,
411,
11,
285,
26059,
13,
626,
62,
411,
8,
201,
198,
220,
220,
220,
329,
357,
72,
11,
269,
8,
287,
27056,
378,
7,
37993,
8,
201,
198,
220,
220,
220,
220,
220,
220,
220,
2488,
30493,
773,
17,
7718,
7,
9132,
79,
13,
24330,
11,
1312,
11,
6339,
11,
285,
26059,
13,
1930,
62,
411,
11,
285,
26059,
13,
626,
62,
411,
8,
6624,
269,
201,
198,
220,
220,
220,
886,
201,
198,
437,
201,
198,
201,
198,
79,
5379,
796,
651,
62,
9124,
62,
27219,
7,
9132,
79,
13,
24330,
11,
285,
26059,
13,
1930,
62,
411,
11,
285,
26059,
13,
626,
62,
9124,
62,
411,
8,
201,
198,
201,
198,
1640,
357,
72,
11,
279,
8,
287,
27056,
378,
7,
79,
5379,
8,
201,
198,
220,
220,
220,
611,
773,
17,
9124,
7,
9132,
79,
13,
24330,
11,
1312,
11,
285,
26059,
13,
1930,
62,
411,
11,
285,
26059,
13,
626,
62,
9124,
62,
411,
8,
14512,
279,
201,
198,
220,
220,
220,
220,
220,
220,
220,
44872,
7,
72,
8,
201,
198,
220,
220,
220,
220,
220,
220,
220,
2270,
201,
198,
220,
220,
220,
886,
201,
198,
437,
201,
198,
201,
198,
5219,
62,
13200,
796,
2585,
7,
9132,
79,
8,
201,
198,
201,
198,
31,
12860,
33723,
329,
357,
72,
11,
264,
8,
287,
27056,
378,
7,
5219,
62,
13200,
8,
201,
198,
220,
220,
220,
2488,
30493,
773,
17,
5219,
7,
9132,
79,
11,
1312,
8,
6624,
264,
201,
198,
437,
201,
198
] | 1.878261 | 690 |
module CI_Test
"""
TerribleGreek()
Map lowercase latin characters to symbols that kinda resemble them, ish...
"""
function TerribleGreek()
return Dict('a' => 'α',
'b' => 'β',
'c' => '≪',
'd' => 'δ',
'e' => '∈',
'f' => 'ɾ',
'g' => 'ʔ',
'h' => 'ƕ',
'i' => 'ι',
'j' => 'ȷ',
'k' => 'k',
'l' => 'ł',
'm' => 'μ',
'n' => 'π',
'o' => 'ø',
'p' => 'ɤ',
'q' => '♩',
'r' => 'ρ',
's' => '𝖲',
't' => 'τ',
'u' => '⟰',
'v' => '∇',
'w' => '≅',
'x' => 'Ξ',
'y' => '¥',
'z' => 'ζ',)
end
end # module
| [
21412,
14514,
62,
14402,
628,
198,
37811,
198,
220,
220,
220,
3813,
5547,
44059,
3419,
198,
198,
13912,
2793,
7442,
3042,
259,
3435,
284,
14354,
326,
17855,
22464,
606,
11,
318,
71,
986,
198,
37811,
198,
8818,
3813,
5547,
44059,
3419,
198,
220,
220,
220,
1441,
360,
713,
10786,
64,
6,
5218,
705,
17394,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
65,
6,
5218,
705,
26638,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
66,
6,
5218,
705,
35705,
103,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
67,
6,
5218,
705,
138,
112,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
68,
6,
5218,
705,
24861,
230,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
69,
6,
5218,
705,
133,
122,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
70,
6,
5218,
705,
134,
242,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
71,
6,
5218,
705,
130,
243,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
72,
6,
5218,
705,
29945,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
73,
6,
5218,
705,
132,
115,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
74,
6,
5218,
705,
74,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
75,
6,
5218,
705,
41615,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
76,
6,
5218,
705,
34703,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
77,
6,
5218,
705,
46582,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
78,
6,
5218,
705,
24172,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
79,
6,
5218,
705,
133,
97,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
80,
6,
5218,
705,
17992,
102,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
81,
6,
5218,
705,
33643,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
82,
6,
5218,
705,
47728,
244,
110,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
83,
6,
5218,
705,
32830,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
84,
6,
5218,
705,
158,
253,
108,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
85,
6,
5218,
705,
24861,
229,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
86,
6,
5218,
705,
35705,
227,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
87,
6,
5218,
705,
138,
252,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
88,
6,
5218,
705,
126,
98,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
89,
6,
5218,
705,
138,
114,
3256,
8,
198,
437,
198,
198,
437,
1303,
8265,
198
] | 1.359209 | 657 |
# Normalized is basically wrapper like Symmetric
"""
Normalized(dist::Union{StringSemiMetric, StringMetric})
Creates a normalized distance. The normalized distance always return a Float64 between 0.0 and 1.0 (or a missing if one of the argument is missing).
A Normalized Distance has a keyword argument `max_dist` that defaults to 1.0. It returns 1.0 if the true distance is higher than `max_dist`.
### Examples
```julia-repl
julia> s1 = "New York Mets vs Atlanta"
julia> s2 = "Atlanta Braves vs New York Mets"
julia> Levenshtein()(s1, s2)
25
julia> StringDistances.Normalized(Levenshtein())(s1, s2)
0.8064
```
"""
struct Normalized{T <: Union{StringSemiMetric, StringMetric}} <: StringSemiMetric
dist::T
end
Normalized(dist::Normalized) = dist
# Consider all distances to be normalized by default
function (dist::Normalized)(s1, s2; max_dist = 1.0)
out = dist.dist(s1, s2; max_dist = max_dist)
max_dist !== nothing && out > max_dist && return 1.0
return out
end
function (dist::Normalized{<:Union{Hamming, DamerauLevenshtein}})(s1, s2; max_dist = 1.0)
(s1 === missing) | (s2 === missing) && return missing
s1, s2 = reorder(s1, s2)
len1, len2 = length(s1), length(s2)
len2 == 0 && return 0.0
out = dist.dist(s1, s2) / len2
max_dist !== nothing && out > max_dist && return 1.0
return out
end
function (dist::Normalized{<:Union{Levenshtein, OptimalStringAlignement}})(s1, s2; max_dist = 1.0)
(s1 === missing) | (s2 === missing) && return missing
s1, s2 = reorder(s1, s2)
len1, len2 = length(s1), length(s2)
len2 == 0 && return 0.0
if max_dist == 1.0
d = dist.dist(s1, s2)
else
d = dist.dist(s1, s2; max_dist = ceil(Int, len2 * max_dist))
end
out = d / len2
max_dist !== nothing && out > max_dist && return 1.0
return out
end
function (dist::Normalized{<:AbstractQGramDistance})(s1, s2; max_dist = 1.0)
(s1 === missing) | (s2 === missing) && return missing
# When string length < q for qgram distance, returns s1 == s2
s1, s2 = reorder(s1, s2)
len1, len2 = length(s1), length(s2)
len1 <= dist.dist.q - 1 && return Float64(s1 != s2)
if dist.dist isa QGram
out = dist.dist(s1, s2) / (len1 + len2 - 2 * dist.dist.q + 2)
else
out = dist.dist(s1, s2)
end
max_dist !== nothing && out > max_dist && return 1.0
return out
end | [
2,
14435,
1143,
318,
6209,
29908,
588,
1632,
3020,
19482,
220,
198,
198,
37811,
198,
220,
220,
14435,
1143,
7,
17080,
3712,
38176,
90,
10100,
13900,
72,
9171,
1173,
11,
10903,
9171,
1173,
30072,
198,
198,
16719,
274,
257,
39279,
5253,
13,
383,
39279,
5253,
1464,
1441,
257,
48436,
2414,
1022,
657,
13,
15,
290,
352,
13,
15,
357,
273,
257,
4814,
611,
530,
286,
262,
4578,
318,
4814,
737,
220,
198,
32,
14435,
1143,
34600,
468,
257,
21179,
4578,
4600,
9806,
62,
17080,
63,
326,
26235,
284,
352,
13,
15,
13,
632,
5860,
352,
13,
15,
611,
262,
2081,
5253,
318,
2440,
621,
4600,
9806,
62,
17080,
44646,
198,
198,
21017,
21066,
198,
15506,
63,
73,
43640,
12,
35666,
198,
73,
43640,
29,
264,
16,
796,
366,
3791,
1971,
26053,
3691,
9371,
1,
198,
73,
43640,
29,
264,
17,
796,
366,
43482,
29374,
3691,
968,
1971,
26053,
1,
198,
73,
43640,
29,
1004,
574,
1477,
22006,
3419,
7,
82,
16,
11,
264,
17,
8,
198,
1495,
198,
73,
43640,
29,
10903,
20344,
1817,
13,
26447,
1143,
7,
3123,
574,
1477,
22006,
3419,
5769,
82,
16,
11,
264,
17,
8,
198,
15,
13,
1795,
2414,
220,
198,
15506,
63,
198,
37811,
198,
7249,
14435,
1143,
90,
51,
1279,
25,
4479,
90,
10100,
13900,
72,
9171,
1173,
11,
10903,
9171,
1173,
11709,
1279,
25,
10903,
13900,
72,
9171,
1173,
198,
220,
220,
220,
1233,
3712,
51,
198,
437,
198,
26447,
1143,
7,
17080,
3712,
26447,
1143,
8,
796,
1233,
198,
198,
2,
12642,
477,
18868,
284,
307,
39279,
416,
4277,
198,
8818,
357,
17080,
3712,
26447,
1143,
5769,
82,
16,
11,
264,
17,
26,
3509,
62,
17080,
796,
352,
13,
15,
8,
198,
220,
220,
220,
503,
796,
1233,
13,
17080,
7,
82,
16,
11,
264,
17,
26,
3509,
62,
17080,
796,
3509,
62,
17080,
8,
198,
220,
220,
220,
3509,
62,
17080,
5145,
855,
2147,
11405,
503,
1875,
3509,
62,
17080,
11405,
1441,
352,
13,
15,
198,
220,
220,
220,
1441,
503,
198,
437,
198,
198,
8818,
357,
17080,
3712,
26447,
1143,
90,
27,
25,
38176,
90,
21281,
2229,
11,
360,
2382,
559,
3123,
574,
1477,
22006,
11709,
5769,
82,
16,
11,
264,
17,
26,
3509,
62,
17080,
796,
352,
13,
15,
8,
198,
220,
220,
220,
357,
82,
16,
24844,
4814,
8,
930,
357,
82,
17,
24844,
4814,
8,
11405,
1441,
4814,
198,
220,
220,
220,
264,
16,
11,
264,
17,
796,
302,
2875,
7,
82,
16,
11,
264,
17,
8,
198,
220,
220,
220,
18896,
16,
11,
18896,
17,
796,
4129,
7,
82,
16,
828,
4129,
7,
82,
17,
8,
198,
220,
220,
220,
18896,
17,
6624,
657,
11405,
1441,
657,
13,
15,
198,
220,
220,
220,
503,
796,
1233,
13,
17080,
7,
82,
16,
11,
264,
17,
8,
1220,
18896,
17,
198,
220,
220,
220,
3509,
62,
17080,
5145,
855,
2147,
11405,
503,
1875,
3509,
62,
17080,
11405,
1441,
352,
13,
15,
198,
220,
220,
220,
1441,
503,
198,
437,
198,
198,
8818,
357,
17080,
3712,
26447,
1143,
90,
27,
25,
38176,
90,
3123,
574,
1477,
22006,
11,
13123,
4402,
10100,
2348,
570,
972,
11709,
5769,
82,
16,
11,
264,
17,
26,
3509,
62,
17080,
796,
352,
13,
15,
8,
198,
220,
220,
220,
357,
82,
16,
24844,
4814,
8,
930,
357,
82,
17,
24844,
4814,
8,
11405,
1441,
4814,
198,
220,
220,
220,
264,
16,
11,
264,
17,
796,
302,
2875,
7,
82,
16,
11,
264,
17,
8,
198,
220,
220,
220,
18896,
16,
11,
18896,
17,
796,
4129,
7,
82,
16,
828,
4129,
7,
82,
17,
8,
198,
220,
220,
220,
18896,
17,
6624,
657,
11405,
1441,
657,
13,
15,
198,
220,
220,
220,
611,
3509,
62,
17080,
6624,
352,
13,
15,
198,
220,
220,
220,
220,
220,
220,
220,
288,
796,
1233,
13,
17080,
7,
82,
16,
11,
264,
17,
8,
198,
220,
220,
220,
2073,
198,
220,
220,
220,
220,
220,
220,
220,
288,
796,
1233,
13,
17080,
7,
82,
16,
11,
264,
17,
26,
3509,
62,
17080,
796,
2906,
346,
7,
5317,
11,
18896,
17,
1635,
3509,
62,
17080,
4008,
198,
220,
220,
220,
886,
198,
220,
220,
220,
503,
796,
288,
1220,
18896,
17,
198,
220,
220,
220,
3509,
62,
17080,
5145,
855,
2147,
11405,
503,
1875,
3509,
62,
17080,
11405,
1441,
352,
13,
15,
198,
220,
220,
220,
1441,
503,
198,
437,
198,
198,
8818,
357,
17080,
3712,
26447,
1143,
90,
27,
25,
23839,
48,
38,
859,
45767,
92,
5769,
82,
16,
11,
264,
17,
26,
3509,
62,
17080,
796,
352,
13,
15,
8,
198,
220,
220,
220,
357,
82,
16,
24844,
4814,
8,
930,
357,
82,
17,
24844,
4814,
8,
11405,
1441,
4814,
198,
220,
220,
220,
1303,
1649,
4731,
4129,
1279,
10662,
329,
10662,
4546,
5253,
11,
5860,
264,
16,
6624,
264,
17,
198,
220,
220,
220,
264,
16,
11,
264,
17,
796,
302,
2875,
7,
82,
16,
11,
264,
17,
8,
198,
220,
220,
220,
18896,
16,
11,
18896,
17,
796,
4129,
7,
82,
16,
828,
4129,
7,
82,
17,
8,
198,
220,
220,
220,
18896,
16,
19841,
1233,
13,
17080,
13,
80,
532,
352,
11405,
1441,
48436,
2414,
7,
82,
16,
14512,
264,
17,
8,
198,
220,
220,
220,
611,
1233,
13,
17080,
318,
64,
1195,
38,
859,
198,
220,
220,
220,
220,
220,
220,
220,
503,
796,
1233,
13,
17080,
7,
82,
16,
11,
264,
17,
8,
1220,
357,
11925,
16,
1343,
18896,
17,
532,
362,
1635,
1233,
13,
17080,
13,
80,
1343,
362,
8,
198,
220,
220,
220,
2073,
198,
220,
220,
220,
220,
220,
220,
220,
503,
796,
1233,
13,
17080,
7,
82,
16,
11,
264,
17,
8,
198,
220,
220,
220,
886,
198,
220,
220,
220,
3509,
62,
17080,
5145,
855,
2147,
11405,
503,
1875,
3509,
62,
17080,
11405,
1441,
352,
13,
15,
198,
220,
220,
220,
1441,
503,
198,
437
] | 2.459236 | 969 |
module HelloDocs
export GreetUser
#Exported function:
"""
GreetUser()
Greet User.
"""
function GreetUser()
print("Hello User!")
end
#NON-exported function:
"""
greet()
Greet World.
"""
greet() = print("Hello World!")
#NON-exported function:
"""
GreetYou()
Greet You.
"""
GreetYou() = print("Hello You!")
#
end # module
| [
21412,
18435,
23579,
82,
198,
198,
39344,
402,
2871,
12982,
198,
198,
2,
3109,
9213,
2163,
25,
198,
198,
37811,
198,
220,
220,
220,
402,
2871,
12982,
3419,
198,
198,
38,
2871,
11787,
13,
198,
37811,
198,
8818,
402,
2871,
12982,
3419,
198,
220,
3601,
7203,
15496,
11787,
2474,
8,
198,
437,
198,
198,
2,
45,
1340,
12,
1069,
9213,
2163,
25,
198,
198,
37811,
198,
220,
220,
220,
12589,
3419,
198,
198,
38,
2871,
2159,
13,
198,
37811,
198,
70,
2871,
3419,
796,
3601,
7203,
15496,
2159,
2474,
8,
198,
198,
2,
45,
1340,
12,
1069,
9213,
2163,
25,
198,
198,
37811,
198,
220,
220,
220,
402,
2871,
1639,
3419,
198,
198,
38,
2871,
921,
13,
198,
37811,
198,
38,
2871,
1639,
3419,
796,
3601,
7203,
15496,
921,
2474,
8,
198,
198,
2,
198,
198,
437,
1303,
8265,
628
] | 2.471429 | 140 |
### A Pluto.jl notebook ###
# v0.16.0
using Markdown
using InteractiveUtils
# ╔═╡ a82f22e4-f35b-461a-b481-1dff43722e44
using StaticArrays
# ╔═╡ d42f842d-6c2a-40db-b0c4-e936244a9e7c
using BenchmarkTools
# ╔═╡ 99b5c818-a825-4939-849e-1cade802f63d
using Measurements
# ╔═╡ d6564250-f646-40de-9463-a956af1a5b1d
using ForwardDiff
# ╔═╡ d2f4d622-8e35-4be3-b421-39b28a748cab
using CellListMap
# ╔═╡ f049ab19-7ecf-4c65-bf6d-21352c1fe767
using FastPow
# ╔═╡ 7c792b6b-b6ee-4e30-88d5-d0b8064f2734
begin
using Plots
plot_font = "Computer Modern"
default(
fontfamily=plot_font,
linewidth=2, framestyle=:box, label=:none, grid=false,
size=(400,400)
)
end
# ╔═╡ febe8c06-b3aa-4db1-a3ea-fdc2a81bdebd
using Printf
# ╔═╡ a756dd18-fac6-4527-944e-c16d8cc4bf95
begin
using PlutoUI
TableOfContents()
end
# ╔═╡ a87fad48-73c1-4a08-a6f1-aae759b3c6fc
md"""
# Simulações de partículas em Julia
Leandro Martínez
Instituto de Química - Universidade de Campinas (UNICAMP)
[http://m3g.iqm.unicamp.br](http://m3g.iqm.unicamp.br) -
[https://github.com/m3g](https://github.com/m3g)
"""
# ╔═╡ 172227c2-b27a-40db-91f4-9566c2f6cf52
md"""
# Resumo
- Elementos de uma simulação de partículas
- Performance vs. uma linguagem compilada convencional (Fortran)
- Explorando o caráter genérico das funções
- Simulações diferenciáveis e ajuste de parâmetros
- Using cell lists
- Uma implementação rápida e genérica das células ligadas
- A estratégia do Packmol
- Performance vs. NAMD
- Notas
"""
# ╔═╡ 4b484cf6-4888-4f04-b3fd-94862822b0c0
md"""
# Definindo o tipo de partícula
Definiremos, em princípio, um simples vetor em um espaço bidimensional, com coordenadas `x` e `y`. O ponto será definido com a ajuda do pacote `StaticArrays`, que fornece uma interface conveniente para este tipo de variável, e sua aritmética. A estrutura na memória de vetores destes pontos é idêntica àquela de matrizes `N×M`, onde `N` é a dimensão do espaço (aqui 2D) e `M` é o número de pontos. Julia é "column-major", então este é o formato mais eficiente para este tipo de cálculo.
"""
# ╔═╡ 8c444ee4-8c77-413a-bbeb-9e5ae2428876
struct Vec2D{T} <: FieldVector{2,T}
x::T
y::T
end
# ╔═╡ a0de01b5-779a-48c0-8d61-12b02a5f527e
md"""
Por conveniência, definiremos uma função simples que retorna um vetor aletório,
dado o intervalo de coordenadas desejado:
"""
# ╔═╡ 532eb3bc-5522-4348-afa5-5336ec6752c7
md"""
Ao definir a função acima, tomamos o cuidado de escrever um código genérico para o tipo de varíavel e dimensão, de forma que não precisamos redefir esta função mais tarde, quando realizarmos simulações com diferentes tipo de estrutura de dados.
"""
# ╔═╡ dc5f7484-3dc3-47a7-ad4a-30f97fc14d11
md"""
## Força entre um par de partículas
Inicialmente, a função de energia será um potencial suave, que é zero em distâncias maiores que um raio de corte, e cresce quadraticamente para distâncias menores que este raio.
Se $d = ||\vec{y}-\vec{x}||$ é o módulo da da posição relativa das duas partículas, temos o potencial:
$$u(\vec{x},\vec{y},c)=
\begin{cases}
(d-c)^2 &\textrm{se} & d\leq c \\
0 & \textrm{se} & d > c \\
\end{cases}$$
para o qual a força é:
$$\vec{f_x}(\vec{x},\vec{y},c)=
\begin{cases}
2(d-c)\frac{(\vec{y}-\vec{x})}{d} &\textrm{se} & d\leq c \\
\vec{0} & \textrm{se} & d > c \\
\end{cases}$$
e
$$\vec{f_y} = -\vec{f_x}$$.
"""
# ╔═╡ ab3ff21b-bf82-4d8c-abd1-c27418956ed8
md"""
O pacote padrão `LinearAlgegra` de Julia fornece uma função `norm`, e não há razão par não usá-la (ainda que uma versão manual é simples de escrever e tería performance similar):
"""
# ╔═╡ 7a1db355-bba9-4322-9fb4-a6d7b7bdd60d
import LinearAlgebra: norm
# ╔═╡ cc49ef04-08d8-42bb-9170-9db64e275a51
md"""
As funções de energia e força são simples de entender:
"""
# ╔═╡ d00e56f2-9d3a-4dd3-80eb-3201eff39b96
md"""
E, para o caso unidimensional, com um raio de corte definido, será:
"""
# ╔═╡ b5c09cd3-6063-4a36-96cd-2d128aa11b82
const cutoff = 5.
# ╔═╡ 7719b317-e85b-4583-b401-a8614d4b2373
md"""
A função que calcula a força sobre o pair de partículas correrá de forma ingênua sobre todos os pares de partículas não-repetidos. A função `forces!` vai receber os parâmetros necessários, de forma que poderemos modificar a função mais tarde.
Dentro da função `forces!`, a função `force_pair` vai receber quatro parâmetros: os índices das partículas e suas posições. Vamos usar os índices mais tarde.
"""
# ╔═╡ 144119ad-ab88-4165-883a-f2fc2464a838
md"""
Vamos criar alguns pontos para explicar como a função deve ser chamada.
"""
# ╔═╡ dd9e4332-2908-40ef-b461-6b571df56cf4
md"""
A função `force_pair` será passada para a função que calcula as forças na forma de uma *closure* (função de fechamento?), que vai capturar o valor do raio de corte. A *closure* também permite que ignoremos os índices das partículas, que são parâmetros esperados pela implementação interna da função dentro de `forces!`. Por exemplo:
"""
# ╔═╡ 017cd6a8-712d-4ec5-b31f-7f1f507764f2
md"""
O terceiro argumento de `forces!` é a *closure*, que pode ser lida como:
esta é uma função que, dados `(i,j,x,y)` retorna o valor de `fₓ(x,y,cutoff)`. Então, ela é consistente com a chamada interna de `fₓ` em `forces!`, e "captura" (*closes over*) o parâmetro adicional `cutoff` que é requerido pelo cálculo.
"""
# ╔═╡ b5206dd5-1f46-4437-929b-efd68393b12b
md"""
# Realizando uma simulação de partículas
Agora, dada a função que calcula as forças, podemos realizar uma simulação de partículas. Vamos usar um algoritmo simples de integração de Euler:
1. Calcular as forças no tempo $t$ dadas as posições $x$:
$f(t) = f(x)$
2. Atualizar as posições (usando $a = f/m$):
$x(t + dt) = x(t) + v(t)dt + a(t)dt^2/2$
3. Atualizar as velocidades:
$v(t+dt) = v(t) + a(t)dt$
4. Voltar ao passo 1.
## O código que realiza esta simulação é simples:
"""
# ╔═╡ eb5dc224-1491-11ec-1cae-d51c93cd292c
function md(
x0::Vector{T},
v0::Vector{T},
mass,dt,nsteps,isave,forces!
) where T
x = copy(x0)
v = copy(v0)
a = similar(x0)
f = similar(x0)
trajectory = [ copy(x0) ] # will store the trajectory
for step in 1:nsteps
# Compute forces
forces!(f,x)
# Accelerations
@. a = f / mass
# Update positions
@. x = x + v*dt + a*dt^2/2
# Update velocities
@. v = v + a*dt
# Save if required
if mod(step,isave) == 0
println("Saved trajectory at step: ",step)
push!(trajectory,copy(x))
end
end
return trajectory
end
# ╔═╡ 594ba1d6-2dae-4f20-9546-f52fac17c2f0
md"""
Ao usar um tipo de variável paramétrico (i. e. `Vector{T}`) garantimos que teremos um erro se as posições e velocidades não possuem o mesmo tipo de elemento.
A notação `@.` é muito comum em Julia, e significa que estamos fazendo um cálculo elemento por elemento, sendo apenas uma notação compacta para loops.
"""
# ╔═╡ 66c7d960-7e05-4613-84e8-2a40fe40dc3d
md"""
## Vamos rodar a simulação!
"""
# ╔═╡ e717a8d9-ccfb-4f89-b2a2-f244f108b48d
md"""
Aqui geramos um conjunto aleatório de posições e velocidades, e vamos usar massas iguais a `1.0` para todas as partículas.
"""
# ╔═╡ eab7b195-64d5-4587-8687-48a673ab091b
md"""
## Usando condições periódicas de contorno
Nossas partículas simplesmente explodem, já que as velocidades iniciais eram aleatórias e as partículas só interagem por potenciais repulsivos.
Podemos obter uma dinâmica mais interessante se colocarmos condições periódicas de contorno. Para isso, vamos modificar a forma de calcular as forças.
"""
# ╔═╡ 34dc72dc-4864-47c0-b730-183f67e7aea3
md"""
## Imagens mínimas
A função a seguir define como a imagem mínima relativa de duas partículas, de acordo com as condições periódicas de contorno, pode ser obtida (a operação se chama *wrap* em inglês), para uma caixa cúbica de lado `side`:
"""
# ╔═╡ 02d9bf3b-708c-4293-b198-9043b334ff7e
md"""
Isto permite que calculemos a força usando:
"""
# ╔═╡ 0a5282ee-c88a-4bcc-aca2-477f28e9e04d
md"""
Noss caixa terá lado `100`:
"""
# ╔═╡ b2a4a505-47ff-40bb-9a6d-a08d91c53217
const side = 100.
# ╔═╡ fcff6973-012a-40fc-a618-f6262266287a
md"""
Para executar a simulação com as novas forças periódicas, usaremos a mesma função `md`, apenas sendo necessário passar a nova função `fₓ` na definição de uma *closure*:
"""
# ╔═╡ 14867ffd-cde5-43f8-8399-01169ee29b73
md"""
Um detalhe relevante é que a função `fₓ` tem o mesmo nome. Como ela recebe o parâmetro `side` que não está presente na primeira definição da função, o múlitplo-despacho de Julia se encarregará de escolher o método correto.
"""
# ╔═╡ c4798182-de75-4b59-8be7-f7cf1051364d
md"""
Ao fazer a animação da trajetória, estamos envolvendo as coordenadas nas condições periódicas (*wrapping*):
"""
# ╔═╡ 22fb0386-d4fa-47b9-ac31-decf2731cbc1
md"""
## Performance
"""
# ╔═╡ 8e23a3ea-3039-4a5f-b37f-c4710153938e
md"""
A perforamnance em Julia pode ser medida com a macro `@time` ou com as macros do pacote `BenchmarkTools`. A compilação das funções ocorre quando um método é chamado pela primeira vez, e `BenchmarkTools` vai automaticamente descontar o tempo de compilação e fazer uma amostragem estatisticamente mais relevante.
"""
# ╔═╡ 2a3e7257-63ad-4761-beda-cec18b91f99c
md"""
Um tempo da ordem de `200ms` e alocações de `200kiB` não parecem ruins, mas também não significam nada isoladamente. O interessante é que este código é similar em performance a códigos em linguagens compiladas convencionais, como o Fortran, como mostra [este benchmark](https://github.com/m3g/2021_FortranCon/tree/main/benchmark_vs_fortran).
"""
# ╔═╡ 49b1f040-929a-4238-acd9-6554757b592c
md"""
# Explorando implementações genéricas
## Rodando uma simulação em 3D
Não precisamos fazer muito para rodar a simulação em três dimensões. Só é necessário definir nossos vetores em 3D:
"""
# ╔═╡ 26d5c6e9-a903-4792-a0e0-dec1a2e86a01
struct Vec3D{T} <: FieldVector{3,T}
x::T
y::T
z::T
end
# ╔═╡ 2aef27bd-dea6-4a93-9d0f-b9249c9dd2cd
md"""
Com isto, podemos rodar nossa simulação em 3D:
"""
# ╔═╡ b6dcb9a3-59e3-4eae-9399-fb072c704f1a
md"""
## Propagação automática de erros
Realizer uma simulação com dimensão variável não é a aplicação mais interessante nem a mais útil da programação genérica. Podemos, por exemplo, propagar os erros nas posições das partículas, definindo um tipo de partícula que carrega consigo tanto a posição como sua incerteza acumulada.
Um pequeno exemplo de como isto pode ser definido será mostrado aqui. Primeiro, criamos um tipo de variável que contém tanto a posição como sua incerteza:
"""
# ╔═╡ e4657169-1bb2-4d4a-ac9d-adc80499d07d
struct MyMeasurement{T}
x::T
Δx::T
end
# ╔═╡ 5d395353-5681-4780-983e-902fdb89eaf2
md"""
Vamos definir uma forma customizada de escrever esta variável na tela, para que fique mais bonita:
"""
# ╔═╡ e9376a4b-3d60-42eb-8681-cd2bcec13fe8
Base.show(io::IO,m::MyMeasurement) = println(io," $(m.x) ± $(m.Δx)")
# ╔═╡ c5cdd71f-5ded-482f-9205-c13f01a14d0b
m = MyMeasurement(1.0,0.1)
# ╔═╡ a0993a1f-60a6-45b5-815e-676c49a9f049
md"""
Agora, definimos a aritmética associada a esta variável. Por exemplo, a soma de duas variáveis do tipo `MyMeasurment` soma as incertezas. Mas a subtração delas também soma as incertezas. As outras incertezas são propagadas linearmente, de acordo com a primeira derivada da operação relativamente aos valores das variáveis:
"""
# ╔═╡ 4e7f8db4-b5cc-4a3e-9fa7-e62d8f2a36ac
begin
import Base: -, +, *, /, ^, sqrt
+(m1::MyMeasurement,m2::MyMeasurement) = MyMeasurement(m1.x+m2.x,m1.Δx+m2.Δx)
-(m1::MyMeasurement,m2::MyMeasurement) = MyMeasurement(m1.x-m2.x,m1.Δx+m2.Δx)
*(α,m::MyMeasurement) = MyMeasurement(α*m.x,sign(α)*α*m.Δx)
*(m::MyMeasurement,α) = α*m
/(m::MyMeasurement,α) = inv(α)*m
sqrt(m::MyMeasurement{T}) where T = MyMeasurement(sqrt(m.x),inv(2*sqrt(m.x))*m.Δx)
^(m::MyMeasurement{T},n) where T = MyMeasurement{T}(m.x^n,n*m.x^(n-1)*m.Δx)
end
# ╔═╡ f87e4036-8f82-41c7-90c1-daa5f677488d
function random_point(::Type{PointType},range) where PointType
dim = length(PointType)
T = eltype(PointType)
p = PointType(
range[begin] + rand(T)*(range[end]-range[begin]) for _ in 1:dim
)
return p
end
# ╔═╡ df33b999-4a42-4133-bf59-5a65240790cf
function energy(x::T,y::T,cutoff) where T
Δv = y - x
d = norm(Δv)
if d > cutoff
energy = zero(T)
else
energy = (d - cutoff)^2
end
return energy
end
# ╔═╡ 0f52365d-34f4-46ed-923e-3ea31c6db0ca
function fₓ(x::T,y::T,cutoff) where T
Δv = y - x
d = norm(Δv)
if d > cutoff
fₓ = zero(T)
else
fₓ = 2*(d - cutoff)*(Δv/d)
end
return fₓ
end
# ╔═╡ f58769a6-a656-42a3-8bc6-c204d4cfd897
function forces!(f::Vector{T},x::Vector{T},fₓ::F) where {T,F}
fill!(f,zero(T))
n = length(x)
for i in 1:n-1
for j in i+1:n
fᵢ = fₓ(i,j,x[i],x[j])
f[i] += fᵢ
f[j] -= fᵢ
end
end
return f
end
# ╔═╡ beeb3335-5c49-47de-a1d3-3eef5f9479f1
function wrap(x,side)
x = rem(x,side)
if x >= side/2
x -= side
elseif x < -side/2
x += side
end
return x
end
# ╔═╡ 0967b90d-ac88-476d-a57a-7c38dfa82204
function fₓ(x::T,y::T,cutoff,side) where T
Δv = wrap.(y - x, side)
d = norm(Δv)
if d > cutoff
fₓ = zero(T)
else
fₓ = 2*(d - cutoff)*(Δv/d)
end
return fₓ
end
# ╔═╡ 36da3e92-000c-4d4b-9abf-4cd588b3a354
md"""
Com estas definições, podemos aogra operar sobre estas variáveis do tipo `MyMeasurement` propagando as incertezas automaticamente:
"""
# ╔═╡ 70eb2e0a-a5c8-4975-8f6c-589035bea29c
sqrt((2*(m + 4*m)^2/3))
# ╔═╡ b4646a29-3efd-4bd1-bffc-3575559de937
md"""
E podemos também definir vetores 2D (ou 3D) com valores e incertezas, sem ser necessário modificar nossa definição de vetores:
"""
# ╔═╡ d32743c0-fc80-406f-83c5-4528e439589a
x = Vec2D(MyMeasurement(1.0,0.1),MyMeasurement(2.0,0.2))
# ╔═╡ 98478246-5940-4828-a8f1-9c9fa990676d
md"""
As operações sobre estes vetores, agora, propagam as incertezas também:
"""
# ╔═╡ 310f247e-3fe8-4621-ae0b-b5ee38d2ee89
2*x .+ sqrt.(x)
# ╔═╡ 8267220a-f06e-4761-b310-00f8ba44e4b1
md"""
Prpagar as incertezas em cenários mais gerais requer a definição de outras regras de progração (de derivação). Ao mesmo tempo, queremos considerar a correlação entre as variáveis, o que faz das regras propagação mais complicadas e caras computacionalmente.
Felizmente, alguns pacotes foram criados para fazer esta propagação de erros em casos gerais. Aqui, usaremos o pacote `Measurements`:
"""
# ╔═╡ ce916139-221a-462e-877f-88212663c05e
md"""
### Using `Measurements`
"""
# ╔═╡ 8e2903be-4975-4e14-84ed-6e712f47fe47
md"""
Usando `Measurements` não precisamos modificar nada nos nossos códigos anteriores. Apenas precisamos redefinir o conteúdo de nossas posições e velocidades, que agoram carregarão as incertezas de cada coordenada:
"""
# ╔═╡ 418f31bb-81d5-459b-b402-4fd4e3f4ab27
md"""
Vamos redefinir apenas o que signfica gerar coordenadas iniciais aleatórias, agora com incertezas:
"""
# ╔═╡ 05402cbd-78c6-4234-8680-c351c8c37778
function random_point(::Type{Vec2D{Measurement{T}}},range,Δ) where T
p = Vec2D(
range[begin] + rand(T)*(range[end]-range[begin]) ± rand()*Δ,
range[begin] + rand(T)*(range[end]-range[begin]) ± rand()*Δ
)
return p
end
# ╔═╡ 356ac5a4-c94e-42cb-a085-0198b29c7e52
x0 = [ random_point(Vec2D{Float64},(0,100)) for _ in 1:100]
# ╔═╡ d23b4a92-055e-4ed7-bd46-8a3c59312993
f = similar(x0)
# ╔═╡ e6e29d1e-9a93-49db-a358-6b66f0bc3433
forces!(
f,
x0,
(i,j,x,y) -> fₓ(x,y,cutoff) # closure
)
# ╔═╡ 3755a4f3-1842-4de2-965e-d294c06c54c7
trajectory = md((
x0 = [random_point(Vec2D{Float64},(-50,50)) for _ in 1:100 ],
v0 = [random_point(Vec2D{Float64},(-1,1)) for _ in 1:100 ],
mass = [ 1.0 for _ in 1:100 ],
dt = 0.1,
nsteps = 1000,
isave = 10,
forces! = (f,x) -> forces!(f,x, (i,j,p1,p2) -> fₓ(p1,p2,cutoff))
)...)
# ╔═╡ 985b4ffb-7964-4b50-8c2f-e5f45f352500
trajectory_periodic = md((
x0 = [random_point(Vec2D{Float64},(-50,50)) for _ in 1:100 ],
v0 = [random_point(Vec2D{Float64},(-1,1)) for _ in 1:100 ],
mass = [ 10.0 for _ in 1:100 ],
dt = 0.1,
nsteps = 1000,
isave = 10,
forces! = (f,x) -> forces!(f,x,(i,j,p1,p2) -> fₓ(p1,p2,cutoff,side))
)...)
# ╔═╡ 1ad401b5-20b2-489b-b2aa-92f729b1d725
@benchmark md($(
x0 = [random_point(Vec2D{Float64},-50:50) for _ in 1:100 ],
v0 = [random_point(Vec2D{Float64},-1:1) for _ in 1:100 ],
mass = [ 1.0 for _ in 1:100 ],
dt = 0.1,
nsteps = 1000,
isave = 10,
forces! = (f,x) -> forces!(f,x, (i,j,p1,p2) -> fₓ(p1,p2,cutoff,side))
)...)
# ╔═╡ 0546ee2d-b62d-4c7a-8172-ba87b3c1aea4
trajectory_periodic_3D = md((
x0 = [random_point(Vec3D{Float64},-50:50) for _ in 1:100 ],
v0 = [random_point(Vec3D{Float64},-1:1) for _ in 1:100 ],
mass = [ 1.0 for _ in 1:100 ],
dt = 0.1,
nsteps = 1000,
isave = 10,
forces! = (f,x) -> forces!(f,x,(i,j,p1,p2) -> fₓ(p1,p2,cutoff,side))
)...)
# ╔═╡ 4e97f24c-c237-4117-bc57-e4e88c8fb8d2
md"""
Which generates random points carrying an initial uncertainty we defined:
"""
# ╔═╡ b31da90d-7165-42de-b18d-90584affea03
random_point(Vec2D{Measurement{Float64}},(-50,50),1e-5)
# ╔═╡ 5f37640b-ffd9-4877-a78c-a699b2671919
md"""
Dadas estas novas coordenadas e velocidades, o mesmo código de simulação pod eser usado, mas agora propagando as incertezas automaticamente:
"""
# ╔═╡ 1d6eedfd-d013-4557-9cf2-103f8fb7b72a
md"""
A trajetória, claro, é a mesma (exceto que calculamos menos passos, porque propagar os erros é caro computacionalmente):
"""
# ╔═╡ c003a61d-a434-4d7b-9214-5b52aa044248
md"""
Mas temos, agora, uma estimativa do erro de cada posição, propagado ao longo do tempo desde a incerteza inicial nas medidas:
"""
# ╔═╡ 63eb391f-0238-434a-bc3a-2fa8ed41448e
md"""
### Movimento planetário
Esta propagação de incertezas é provavelmente mais interessante de ver em um movimento planetário:
"""
# ╔═╡ 7b9bb0fd-34a5-42e1-bc35-7259447b73d0
function gravitational_force(i,j,x,y,mass)
G = 0.00049823382528 # MKm³ / (10²⁴kg days²)
dr = y - x
r = norm(dr)
return G*mass[i]*mass[j]*dr/r^3
end
# ╔═╡ 6a4e0e2e-75c5-4cab-987d-3d6b62f9bb06
md"""
Note que agora precisamos dos índices das partículas na função, porque queremos passar também a informação sobre suas massas, que são diferentes.
Um conjunto inicial de posições e velocidades de planetas é algo que precisamos obter [experimentalmente](https://nssdc.gsfc.nasa.gov/planetary/factsheet/). Aqui, a distância está mediad em $10^6$ km, e o tempo está medido em dias. Então, a velocidade está medida em MKm por dia.
A incerteza inicial nas posições será tomada como o diâmetro de cada planeta. Neste exemplo não introduziremos incertezas sobre as velocidades.
"""
# ╔═╡ c91862dd-498a-4712-8e3d-b77e088cd470
planets_x0 = [
Vec2D( 0.0 ± 1.39 , 0. ± 1.39 ), # "Sun"
Vec2D( 57.9 ± 4.879e-3, 0. ± 4.879e-3), # "Mercury"
Vec2D(108.2 ± 12.104e-3, 0. ± 12.104e-3), # "Venus"
Vec2D(149.6 ± 12.756e-3, 0. ± 12.756e-3), # "Earth"
Vec2D(227.9 ± 6.792e-3, 0. ± 6.792e-3), # "Mars"
]
# ╔═╡ a08d6e6d-ddc4-40aa-b7c4-93ea03191415
planets_v0 = [
Vec2D(0. ± 0., 0.0 ± 0.), # "Sun"
Vec2D(0. ± 0., 4.10 ± 0.), # "Mercury"
Vec2D(0. ± 0., 3.02 ± 0.), # "Venus"
Vec2D(0. ± 0., 2.57 ± 0.), # "Earth"
Vec2D(0. ± 0., 2.08 ± 0.) # "Mars"
]
# ╔═╡ a356e2cc-1cb1-457a-986c-998cf1efe008
md"""
As massas estão medidas em $10^{24}$ kg:
"""
# ╔═╡ 57141f7c-9261-4dc5-98e4-b136a15f86fc
const masses = [ 1.99e6, 0.330, 4.87, 5.97, 0.642 ]
# ╔═╡ 055e32d7-073c-40db-a267-750636b9f786
md"""
Vamos ver os planetas orbitando o sol:
"""
# ╔═╡ aaa97ce4-a5ff-4332-89a2-843cee2e5b6d
trajectory_planets = md((
x0 = planets_x0,
v0 = planets_v0,
mass = masses,
dt = 1, # days
nsteps = 2*365, # two Earth years
isave = 1, # save every day
forces! = (f,x) -> forces!(
f,x, (i,j,p1,p2) -> gravitational_force(i,j,p1,p2,masses)
)
)...)
# ╔═╡ 93697e4d-369b-48e9-8b28-a0ff58604d02
md"""
Se você se perguntou porque os erros oscilam, é porque as trajetórias são periódicas. Quando todas as trajetórias inciadas no intervalo de posições associado às incertezas se cruzam, a posição é independente da posição inicial, portanto a incerteza é nula. Em outras palavras, a derivada da posição é zero em função da posição inicial, portanto a incerteza propagada linearmente é nula.
"""
# ╔═╡ c4344e64-aa22-4328-a97a-71e44bcd289f
md"""
Uma coisa que não está bonita, no entanto, é que em dois anos a Terra não completou duas revoluções completas em torno do Sol. Alguma coisa está errada com nossos dados. Podemos melhorar isso?
"""
# ╔═╡ 827bda6f-87d4-4d36-8d89-f144f4595240
md"""
## Podemos derivar tudo!
É supreendente (ao menos para mim) que nossa simulação é completamente diferenciável. Isto quer dizer que podemos ajustar os parâmetros da simulação, e os dados, usando algoritmos de otimização que requerem derivadas analíticas.
Aqui, especulamos que o que estava errado com nossos dados era a posição inicial da Terra. Isso fez com que a órbita fosse um pouco mais lenta do que deveria ser.
Vamos definir, então, uma função objetivo que retorna o deslocament da Terra relativamente a sua posição inicial (no primeiro dia) depois de 2 anos. Nosso objetivo é que a Terra volte à sua posição inicial.
"""
# ╔═╡ 1ff4077a-4742-4c5e-a8d6-c4699469a683
md"""
Primeiro, definimos uma função que exeuta uma simulação de *dois anos* da órbita da Terra. A simulação se inicia com uma posição `x` para a Terra, que é um parâmetro desta função. Vamos ser cuidadosos em definir todas as coordenadas com o mesmo tipo de variável que a o parâmetro `x` de entrada, de forma que a função permaneça genérica e os tipos todos consistentes:
"""
# ╔═╡ 4a75498d-8f4e-406f-8b01-f6a5f153919f
function earth_orbit(x::T=149.6,nsteps=2*3650,isave=20) where T
x0 = [
Vec2D( zero(T), zero(T)), # "Sun"
Vec2D( x, zero(T)) # "Earth"
]
v0 = [
Vec2D( zero(T), zero(T)), # "Sun"
Vec2D( zero(T), 2.57*one(T)), # "Earth"
]
masses = [ 1.99e6, 5.97 ]
trajectory = md((
x0 = x0,
v0 = v0,
mass = masses,
dt = 0.1, # days
nsteps = nsteps, # one Earth year
isave = isave,
forces! = (f,x) -> forces!(f,x,
(i,j,p1,p2) -> gravitational_force(i,j,p1,p2,masses)
)
)...)
return trajectory
end
# ╔═╡ 3ae783ce-d06e-4cc2-b8a3-94512e8f1490
md"""
Agora, definimos nossa função objetivo, que é o módulo do vetor diferença entre a posição inicial e a posição final da Terra (queremos que ela volte para a posição inicial):
"""
# ╔═╡ 13e7da81-8581-4f32-9fdb-2599dd36a12c
function error_in_orbit(x::T=149.6) where T
nsteps = 2*3650
traj = earth_orbit(x,nsteps,nsteps) # Save last point only
return norm(traj[end][2]-[x,0.])
end
# ╔═╡ 4870b1f3-3134-4ddc-a59d-fa806b456a23
md"""
Podemos ver que com os nossos dados atuais o resultado tem um erro significativo:
"""
# ╔═╡ fda6171c-9675-4f2e-b226-7ccf100529cd
error_in_orbit()
# ╔═╡ a862f8a3-0131-4644-bc90-246bf3120790
md"""
Queremos minimizar este erro, e resulta que nossa simulação é completamente diferenciável. Vamos usar o pacote `ForwarDiff` de diferenciação automática:
"""
# ╔═╡ eee3ac4b-4ddb-4699-b6e6-f0ffcc562c07
md"""
Este pacote pode ser usado sem modificações para calcualr as derivadas do erro da órbita relativamente à posição inicial `x` da Terra:
"""
# ╔═╡ 107aec28-ecb5-4007-95e5-25d0a7f0c465
ForwardDiff.derivative(error_in_orbit,149.6)
# ╔═╡ 1394e4c6-c371-47c0-8ca8-f0830d63d8ec
md"""
Para minimizar o erro, escreveremos um simples algorítmo de descida. Muitos pacotes fornecem algoritmos mais sofisticados de otimização, mas aqui vamos manter o código simples também para ilustrar que é possível implementar o algoritmo em Julia:
"""
# ╔═╡ 535716e6-9c1c-4324-a4cd-b1214df3c01d
function gradient_descent(x,f,g,tol,maxtrial)
itrial = 0
step = 1.0
fx = f(x)
gx = g(x)
while (abs(gx) > tol) && (itrial < maxtrial) && (step > 1e-10)
xtrial = x - gx*step
ftrial = f(xtrial)
if ftrial > fx
step = step / 2
else
x = xtrial
fx = ftrial
gx = g(x)
step = step * 2
end
itrial += 1
end
return x, gx, itrial
end
# ╔═╡ b8edfb4e-6780-4ce7-94c1-4073ff7fa832
md"""
A derivada do erro pode ser calculada usando a função `error_in_orbit` na forma de uma *closure*:
"""
# ╔═╡ b8320f78-323c-49a9-a9f9-2748d19ecb35
error_derivative(x) = ForwardDiff.derivative(error_in_orbit,x)
# ╔═╡ 92737d73-676c-4c96-a321-831ecaf37690
md"""
Agora podemos chamar a função `gradient_descent` diretamente:
"""
# ╔═╡ 931a9c5f-8f91-4e88-956b-50c0efc9c58b
best_x0 = gradient_descent(149.6,error_in_orbit,error_derivative,1e-4,1000)
# ╔═╡ b5b96082-efde-464f-bcd4-f2e0a84befcd
md"""
O resultado é razoável: o erro na órbita diminuiu significativamente:
"""
# ╔═╡ 7658a32c-d3da-4ec9-9d96-0d30bb18f08c
error_in_orbit(best_x0[1])
# ╔═╡ e61981d5-5448-45e9-81dc-320ac87ba813
md"""
Vamos como mudou nossa trajetória com as novas condições iniciais:
"""
# ╔═╡ 31e1bb51-c531-4c4a-8634-5caafb7e9e51
earth_traj_0 = earth_orbit(149.6)
# ╔═╡ b0b81da4-6788-45c4-b618-188a02b5e09c
earth_traj_best = earth_orbit(best_x0[1])
# ╔═╡ 47c205c3-ceae-4e12-9ade-753df1608deb
md"""
O ponto azul escuro é a trajetória corrigida, e o azul claro corresponde à trajetória original. Fomos capazes de otimizar *o ponto inicial* da trajetória com um método baseado no gradiente. Este conceito pode ser usado para ajustar parâmetros de simulações de vários tipos (simulações de partículas ou equações diferenciais em geral).
"""
# ╔═╡ 826693ff-9a9b-46b1-aeb3-767a5e6f9441
md"""
# Acelerando com CellListMap.jl
"""
# ╔═╡ d231842d-9b7a-4711-b71b-5d54041ebc1f
md"""
[`CellListMap.jl`](https://m3g.github.io/CellListMap.jl/stable/) é um pacote que implemnta [células ligadas](https://en.wikipedia.org/wiki/Cell_lists) de forma eficiente. Células ligadas são uma forma prática de reduzir o custo do cálculo de propriedades que dependem de distâncias entre partículas dentro de um raio de corte (interações de curto alcance ou listas de vizinhos). O pacote tem uma interface que premite calcular qualquer propriedade dependente da distância, como energias potenciais, forças, funções de distribuição, etc. Condições periódicas de contorno triclinicas (gerais) podem ser usadas, em duas ou três dimensões.
O algorítmo de células ligadas mais simples é bastante simples. Muitas otimizações podem ser feitas, no entanto, na construção das listas e no trato das condições periódicas de contorno, minimizando o número de distâncias desnecessárias calculadas. O cálculo também pode ser paralelizado.
"""
# ╔═╡ 53cedd26-3742-4c23-a8b8-8a1f2bdfa135
md"""
## O algoritmo ingênuo é muito lento O(n²)
"""
# ╔═╡ 889f837d-2e26-4261-b276-5fd91efdda6a
md"""
Com ~1k partículas, o número de pares de partículas já é da ordem de centenas de milhares. O algoritmo ingênuo O(n²) já lento demais. Simulações típicas envolvem dezenas ou centenas de milhares de partículas.
"""
# ╔═╡ 670a01e3-82f8-4c7f-8577-852081d91ed7
md"""
Para começar, vamos simular 1000 partículas:
"""
# ╔═╡ fce1e3e0-cdf7-453f-b913-964c10fa85a6
const n_large = 1000
# ╔═╡ 69a92ac6-833c-4605-b3d0-9400e4572886
md"""
Nosso sistema anterior tinha 100 partículas em um quadrado de lado 100. Vamos manter a densidade constante:
"""
# ╔═╡ 542a9ef5-d9ee-49bd-9d31-61e28b80b5cb
const box_side = sqrt(n_large / (100/100^2))
# ╔═╡ 8bada25c-b586-42b4-851d-232ccca8a456
md"""
Só precisamos gerar novas coordenadas e rodar a simulação:
"""
# ╔═╡ 7600c6dc-769e-4c77-8526-281a1bcec079
x0_large = [ Vec2D(box_side*rand(),box_side*rand()) for _ in 1:n_large ]
# ╔═╡ 29dbc47b-3697-4fdf-8f34-890ab4d0cdae
t_naive = @elapsed trajectory_periodic_large = md((
x0 = x0_large,
v0 = [random_point(Vec2D{Float64},(-1,1)) for _ in 1:n_large ],
mass = [ 10.0 for _ in 1:n_large ],
dt = 0.1,
nsteps = 1000,
isave = 10,
forces! = (f,x) -> forces!(f,x,(i,j,p1,p2) -> fₓ(p1,p2,cutoff,box_side))
)...)
# ╔═╡ 0ee7fc18-f41f-4179-a75e-1e1d56b2db29
md"""
Tempo de execução do algoritmo ingênuo: $t_naive seconds
"""
# ╔═╡ 0d0374ed-5150-40e6-b5a4-9a344b6ca47a
md"""
## Usando células ligadas
"""
# ╔═╡ f7cf613e-be9d-4f62-a778-cc4375eb99df
md"""
Nas células ligadas, as partículas são classificadas em células antes de qualquer cálculo de distâncias. As distâncias são calculadas apenas para partículas de células vizinhas. Se o tamanho das células é muito menor que o tamanho total do sistema, o número de distâncias calculado é drasticamente reduzido.
"""
# ╔═╡ 5be87c6f-5c31-4d14-a8cb-4e63ef39d538
begin
function cell_list_picture()
function square(c,side)
x = [ c[1]-side/2, c[1]+side/2, c[1]+side/2, c[1]-side/2, c[1]-side/2]
y = [ c[2]-side/2, c[2]-side/2, c[2]+side/2, c[2]+side/2, c[2]-side/2]
return x, y
end
plt = plot()
x,y=square([5,5],2)
plot!(
plt,x,y,seriestype=[:shape],
linewidth=2,fillalpha=0.05,color="green",label=""
)
x,y=square([5,5],6)
plot!(
plt,x,y,seriestype=[:shape],
linewidth=2,fillalpha=0.05,color="orange",label=""
)
lines = collect(2:2:8)
vline!(plt,lines,color="gray",label="",style=:dash)
hline!(plt,lines,color="gray",label="",style=:dash)
px = [ 0.1 + 9.8*rand() for i in 1:100 ]
py = [ 0.1 + 9.8*rand() for i in 1:100 ]
scatter!(plt,px,py,label="",alpha=0.20,color="blue")
fontsize=8
annotate!(plt,3,3,text("(i-1,j-1)",fontsize,:Courier))
annotate!(plt,5,3,text("(i-1,j)",fontsize,:Courier))
annotate!(plt,7,3,text("(i-1,j+1)",fontsize,:Courier))
annotate!(plt,3,5,text("(i,j-1)",fontsize,:Courier))
annotate!(plt,5,5,text("(i,j)",fontsize,:Courier))
annotate!(plt,7,5,text("(i,j+1)",fontsize,:Courier))
annotate!(plt,3,7,text("(i+1,j-1)",fontsize,:Courier))
annotate!(plt,5,7,text("(i+1,j)",fontsize,:Courier))
annotate!(plt,7,7,text("(i+1,j+1)",fontsize,:Courier))
plot!(
plt,size=(400,400),
xlim=(1.3,8.7),xticks=:none,
ylim=(1.3,8.7),yticks=:none,
framestyle=:box,
xlabel="x",ylabel="y",grid=false
)
return plt
end
cell_list_picture()
end
# ╔═╡ 0c07edd3-c0a1-4f72-a16a-74badb7a6123
md"""
Para usar o `CellListMap.jl`, precisamos definir o sistema, fornecendo os dados do tamanho da caixa e o raio de corte:
"""
# ╔═╡ 4fc5ef4d-e072-41f7-aef9-b42730c8313c
box = Box([box_side,box_side],cutoff)
# ╔═╡ 19c5cc9d-8304-4e36-a3ea-a1151f28f71d
md"""
As partículas são então classificadas nas células. Partículas virtuais são criadas nas fronteiras para lidar com as condições periódicas de contorno e evitar ter que calcular imagens mínimas durante o cálculo das interações por pares:
"""
# ╔═╡ 7dcadd85-2986-4e42-aa84-67128a8f666d
cl = CellList(x0_large,box)
# ╔═╡ 0b5c6ede-bceb-499a-a9a8-3c6a75ed340a
md"""
Só precisamos implementar a função que é avaliada *se* o par de partículas está dentro do raio de corte. Esta função só será chamada nesta condição. Aqui, a função vai atualizar o vetor de forças:
"""
# ╔═╡ 91b5eac1-4799-4a72-ac6a-e2b117b787d5
function fpair_cl(x,y,i,j,d2,f,box::Box)
Δv = y - x
d = sqrt(d2)
fₓ = 2*(d - box.cutoff)*(Δv/d)
f[i] += fₓ
f[j] -= fₓ
return f
end
# ╔═╡ 0f86ab3c-29aa-472b-8194-228c736ee940
md"""
A função que calcula as forças na nossa simulação vai, então, consistir na atualização das listas de células, seguida da chamada da função `map_pairwise!` de `CellListMap.jl`, que recebe como argumento a função que atualiza a força entre um par de partículas (`fpair_cl`, aqui), além do vetor de forças que deve ser atualizado, `f`, e as propriedades do sistema. Aqui vamos executar somente a versão serial:
"""
# ╔═╡ 0b8a2292-c0d6-44e4-b560-32d9d579a008
function forces_cl!(f::Vector{T},x,box::Box,cl::CellList,fpair::F) where {T,F}
fill!(f,zero(T))
cl = UpdateCellList!(x,box,cl,parallel=false)
map_pairwise!(
(x,y,i,j,d2,f) -> fpair(x,y,i,j,d2,f,box),
f, box, cl, parallel=false
)
return f
end
# ╔═╡ d6585cca-78bf-41d1-aea3-01d9831d76cb
md"""
Agora que temos uma definição apropriada da função que calcula as forças, podemos rodar a simulação novamente:
"""
# ╔═╡ 1b7b7d48-79d2-4317-9045-5b7e7bd073e5
t_cell_lists = @elapsed trajectory_cell_lists = md((
x0 = x0_large,
v0 = [random_point(Vec2D{Float64},(-1,1)) for _ in 1:n_large ],
mass = [ 10.0 for _ in 1:n_large ],
dt = 0.1,
nsteps = 1000,
isave = 10,
forces! = (f,x) -> forces_cl!(f,x,box,cl,fpair_cl)
)...)
# ╔═╡ 3f9dad58-294c-405c-bfc4-67855bb1e825
md"""
Tempo de execução usando `CellListMap.jl`: $t_cell_lists segundos (na segunda execução, a compilação demora cerca de 2 segundos).
"""
# ╔═╡ 6d61b58f-b88f-48f4-8bdd-0bb1a8bc1c82
md"""
Mesmo para um sistema pequeno como este, a simulação foi acelerada significativamente (em terno de $(round(Int,t_naive/t_cell_lists)) vezes).
"""
# ╔═╡ 76b8695e-64dc-44bc-8938-ce22c4a9e4d0
md"""
## Minimização da energia: A estratégia do Packmol
"""
# ╔═╡ 372637ff-9305-4d45-bf6e-e6531dadbd14
md"""
### O potencial de Lennard-Jones
Simulações de dinâmica moelcular geralmente envovlem o cálculo, para cada par de átomos, de um pontecial de Lennard-Jones, que tem a forma:
$$u(r) = \varepsilon\left(\frac{\sigma^{12}}{r^{12}} - 2\frac{\sigma^6}{r^6}\right)$$
As potências altas envolvidas fazem o cálculo desta função numericamente instável. Vamos tentar minimizar a energia de um conjunto de pontos gerado aleatoriamente.
Vamos definir uma função que soma a energia de todas as contribuições de pares de partículas, e usar a função `map_pairwise!` do `CellListMap.jl` para calcular a contribuição de todos os pares de partículas mais próximas que um dado raio de corte.
"""
# ╔═╡ 3b2c08a6-b27e-49be-a0b0-e5cb3d5546e0
md"""
O pacote `FastPow` expande as potências altas em produtos de potenciais menores, que são mais rápidas de calcular (com alguma perda de precisão, que não é importante aqui). Esta expansão poderia ser feita à mão, mas para que o código fique mais claro, e por conveniência, usaremos a macro `@fastpow`.
"""
# ╔═╡ 7280e368-c68a-48a5-91fe-93c76607c144
md"""
A função que calcula a energia associada a um par de partículas é:
"""
# ╔═╡ 755fae26-6db9-45a0-a60d-d0e9c063f8aa
function ulj_pair(r2,u,ε,σ)
@fastpow u += ε*(σ^12/r2^6 - 2*σ^6/r2^3)
return u
end
# ╔═╡ 9a8d8012-ba54-4d9b-8c4c-fe6358508f2a
md"""
E a função que calcula a energia total, mapeando esta função de pares para todos os pares de partículas mais próximos que o raio de corte é, então:
"""
# ╔═╡ ffbeae5f-8aec-4473-a446-5b73bd911733
function ulj(x,ε,σ,box::Box,cl::CellList)
cl = UpdateCellList!(x,box,cl,parallel=false)
u = map_pairwise!(
(x,y,i,j,d2,u) -> ulj_pair(d2,u,ε,σ),
zero(eltype(σ)), box, cl,
parallel=false
)
return u
end
# ╔═╡ 3738e40f-9596-469d-aa58-a4b28d8a22f8
md"""
As funções correspondentes para calcular as forças são:
"""
# ╔═╡ 5f1054b8-2337-43c1-a086-26233e95d42b
function flj_pair!(x,y,i,j,r2,f,ε,σ)
@fastpow ∂u∂x = 12*ε*(σ^12/r2^7 - σ^6/r2^4)*(y-x)
f[i] -= ∂u∂x
f[j] += ∂u∂x
return f
end
# ╔═╡ bd719619-bdd4-4c3c-8d66-1df0f210c595
function flj!(f::Vector{T},x,ε,σ,box,cl) where T
cl = UpdateCellList!(x,box,cl,parallel=false)
fill!(f,zero(T))
map_pairwise!(
(x,y,i,j,d2,f) -> flj_pair!(x,y,i,j,d2,f,ε,σ),
f, box, cl,
parallel=false
)
return f
end
# ╔═╡ f289955b-0239-4b8d-ba08-2edf0a7284c2
md"""
### Um sistema físico: Um gás de Neônio
Vamos simular um sistema com algum significado físico, que é mais interessante que apenas um conjunto de pontos quaisquer.
Vamos calcular a energia de um gás de Neônio com 10 mil partículas, com densidade $\sim 1$ partículas/ų, que é aproximadamente a densidade atômica na água líquida.
Os parâmetros de Lennard-Jones para o Neônio são:
"""
# ╔═╡ 878ab5f7-28c1-4832-9c58-cb36b360766f
const ε = 0.0441795 # kcal/mol
# ╔═╡ a0dcd888-059d-4abe-bb6b-958d2879101c
const σ = 2*1.64009 # Å
# ╔═╡ b1c5b7e5-cfbf-4d93-bd79-2924d957ae14
md"""
Definindo uma densidade adequada para estas dez mil partículas,
o número de pares de partículas dentro do raio de corte é da ordem do número típico de uma simulação de dinâmica molecular convencional (estamos na verdade simulando um gás de Neônio em alta pressão).
"""
# ╔═╡ cd1102ac-1500-4d79-be83-72ac9180c7ce
const n_Ne = 10_000
# ╔═╡ f21604f4-e4f7-4d43-b3d9-32f429df443e
const box_side_Ne = (10_000/0.1)^(1/3)
# ╔═╡ 10826a95-16f8-416d-b8c1-0ef3347c9b20
x0_Ne = [random_point(Vec3D{Float64},(0,box_side_Ne)) for _ in 1:n_Ne ]
# ╔═╡ c46a4f97-78e4-42fd-82b3-4dc6ce99abac
md"""
Dadas as posições iniciais, o tamanho da caixa e o raio de corte típico de 12Å, podemos inicializar as células ligadas:
"""
# ╔═╡ 7c433791-a653-4836-91e2-084355c01d90
const box_Ne = Box([box_side_Ne for _ in 1:3],12.)
# ╔═╡ 410b9da4-7848-4385-bffc-a3d9bd03cf19
const cl_Ne = CellList(x0_Ne,box_Ne)
# ╔═╡ c08fff28-520e-40af-951c-fe3c324f67e0
md"""
### Primeiro, vamos tentar minimizar a energia
"""
# ╔═╡ eb0f9080-2523-4633-be21-3a2281a1629e
md"""
A primeira coisa que fazemos em uma simulação de dinâmica molecular é minimizar a energia do sistema para eliminar maus contatos (afastar partículas que estão muito próximas).
"""
# ╔═╡ e3cc3c77-71ad-4006-8e27-fabaa1ae9cfb
md"""
A energia obtida (após 500 passos do método do gradiente), é:
"""
# ╔═╡ 739c9a8a-13a5-4a33-a441-f5bc6cb35e82
md"""
### Empacotando os átomos
"""
# ╔═╡ 4e059cb8-6dac-450d-9f46-b3e657d9c3cf
md"""
Para empacotar os átomos, o raio de corte precisa ser da ordem dos seus raios,
em lugar do raio de corte das interações de Lennard-Jones. Então, redefinimos as listas de células com um raio de corte de σ/2. Como apenas interações de muito curto alcance serão calculadas, e a função é bem comportada, a otimização é muito rápida:
"""
# ╔═╡ 5ff9c89a-d999-4af2-8e7e-fb99d4948c36
md"""
Vamos redefinir a caixa, com o raio de corte menor:
"""
# ╔═╡ 0f2f55f6-060b-475e-bef7-eaa99da4d99f
box_pack = Box([box_side_Ne for _ in 1:3],σ/2)
# ╔═╡ 415ad590-247b-4a5d-b21e-7af4d0c17493
cl_pack = CellList(x0_Ne,box_pack)
# ╔═╡ 53c2e16e-b7f5-4df2-96f4-08402b5f8979
md"""
Já havíamos definido uma função para calcular as forças de curto alcance (`forces_cl`), mas precisamos aqui a função de "energia" associada:
"""
# ╔═╡ 16cdbc18-e846-4d0a-b7e6-87f07c0c52d9
function u_pack(x,box::Box,cl::CellList)
cl = UpdateCellList!(x,box,cl,parallel=false)
u = map_pairwise!(
(x,y,i,j,d2,u) -> begin
u += (sqrt(d2) - box.cutoff)^2 # objective function
return u
end,
0., box, cl,
parallel=false
)
return u
end
# ╔═╡ 79169f89-fedc-466b-8170-fff99b98e147
md"""
Dadas as funções de energia o gradiente das funções de empacotamente, podemos resolver o problema:
"""
# ╔═╡ b5e258cd-5542-4a4c-ae0f-91c2fee426db
md"""
É importante notar que a otimização do empacotamento convergiu para um minimizador global (a valor da função é zero):
"""
# ╔═╡ b0dc1c2b-82b7-488d-8074-1ef9f59a15e5
md"""
A energia, por outro lado, não é necessariamente baixa:
"""
# ╔═╡ 97b8b15b-75c7-4321-999d-b067ed2a04f9
md"""
Em duas dimensões, esta é a diferença entre um conjunto de pontos gerado aleatoriamente, e um conjunto de pontos obtido após a solução do problema de empacotamento:
"""
# ╔═╡ 591e6a9c-444c-471f-a56b-4dfbc9111989
md"""
Mesmo a energia total sendo alta, temos a garantia de que nenhum par de átomos está mais próximo que o raio de corte mínimo tolerável para as interações repulsivas de curto alcance. Assim, esta configuração é adequada para iniciar uma simulação.
`Packmol` resolve este problema de empacotamento de para moléculas de geometria complexa, e ao mesmo tempo permite ao usuário a especificação de diferentes restrições geométricas que podem ser usadas para definir o arranjo das espécies no espaço.
"""
# ╔═╡ 1f265576-824a-4764-a738-685554068079
md"""
## Quão rápido é `CellListMap.jl`?
Uma ideia da eficiência da implementação das células ligadas em `CellListMap.jl` pode ser obtida comparando o tempo de uma simulação do gás de Neônio, com a mesma simulação feita por um pacote estabelecido de dinâmica molecular, como o [NAMD](https://www.ks.uiuc.edu/Research/namd/).
Podemos executar a simulação usando a mesma função `md` de antes, mas com a função de energia potencial de Lennard-Jones correta:
"""
# ╔═╡ 1e099e1f-6494-419b-8517-5bded3e18aa6
md"""
# Notas
1. Muitos tipos de distribuições podem ser obtidas usando o pacote `Distributions.jl`. O caráter geral das funções em Julia permite que um pacote como este seja usado para gerar distribuições de tipos próprios, como o `Vec2D` implementado aqui.
2. A integração do nosso código `md` é a mais simples de todas. O algoritmo padrão para integração de equações de movimento em dinâmica molecular é o `Velocity-Verlet`, e é este que está implementado no código que compara a eficiência dos `CellListMap.jl` em relação ao NAMD. Muitas outras alternativas estão disponíveis no pacote `DifferentialEquations.jl`.
3. A propagação de incertezas e a diferenciabilidade da simulação de partículas precisa ser vista com um pouco de cautela. Estes sistemas são tipicamente caóticos, portanto as incetezas aumentam de forma exponencial, e as derivadas são muito instáveis. Um blog post interessante sobre a sensibilidade destes cálculos pode está disponível [aqui](https://frankschae.github.io/post/shadowing/). Novamente, o pacote `DifferentialEquations.jl` possui ferramentas mais adequadas para lidar com a otimização de parâmetros das simulações nessas circunstâncias.
"""
# ╔═╡ 10c86547-d4f4-4c3f-8906-ac18ce93f3b6
md"""
# Agradecimentos
Agradeço a [Mosè Giordano](https://giordano.github.io/) por valiosas discussões a respeito do funcionamento pacote `Measurements`, e a [Chris Foster](https://github.com/c42f) por discussões a respeito da propagação de erros nas trajetórias e outras sugestões para o notebook. Também agradeço a vários outros membros dos fórums *discourse* de Julia e Fortran que contribuiram direta ou indiretamente com este trabalho. Agradeço finalmente ao comitê organizador da FortanCon2021 pelo convite, em particular a [Milan Curcic](https://milancurcic.com) e a [Ondřej Čertík](https://github.com/certik), e ao Prof. [Mendeli Vainstein](http://www.if.ufrgs.br/posfis-antigo/index.php/br/permanentes/431-mendeli-vainstein.html) pelo convite para apresentar o seminário na UFRGS.
"""
# ╔═╡ 2871aca3-e6b4-4a2d-868a-36562e9a274c
md"""
# Configurações do notebook
"""
# ╔═╡ 2a2e9155-1c77-46fd-8502-8431573f94d0
md"""
## Configurações padrão para os gráficos
"""
# ╔═╡ b557a646-8c3c-4dc7-8788-bf98aec8c5c0
md"""
Usamos `Printf` para formatar alguns dados.
"""
# ╔═╡ 260d5753-6cc2-4137-8a2c-8d8a47585ecf
md"""
Podemos definir esta variável como `false` e não fazer nenhum gráfico.
"""
# ╔═╡ a9981931-4cc9-4d16-a6d2-34b4071a84d7
const build_plots = true
# ╔═╡ 374f239b-6470-40ed-b068-a8ecaace4f09
build_plots && begin
r = 0:0.1:1.2*cutoff
plot(layout=(1,2),size=(600,300))
plot!(r,energy.(0.,r,cutoff),xlabel="Distance",ylabel="Energy",subplot=1)
plot!(r,fₓ.(0.,r,cutoff),xlabel="Distance",ylabel="Force",subplot=2)
end
# ╔═╡ 43e6b146-ee35-40f1-b540-3da22b9e1b1b
build_plots && scatter([(x.x, x.y) for x in x0])
# ╔═╡ 505ef5ab-f131-4ab3-a723-795b5eb5dc0f
build_plots && @gif for (step,x) in pairs(trajectory)
scatter([ (p.x,p.y) for p in x ], lims=(-250,250))
annotate!(130,-210,text("step: $step",plot_font,12,:left))
end
# ╔═╡ efc586a2-0946-4dc5-ab3a-3902a811f3ad
build_plots && @gif for (step,x) in pairs(trajectory_periodic)
scatter([ wrap.((p.x,p.y),100) for p in x ], lims=(-60,60))
annotate!(25,-50,text("step: $step",plot_font,12,:left))
end
# ╔═╡ 4a498c18-406f-4437-b378-aa9fdc75b919
build_plots && @gif for x in trajectory_periodic_3D
scatter([ wrap.((p.x,p.y,p.z),100) for p in x ], lims=(-60,60))
end
# ╔═╡ d87c22d1-d595-4d43-ab1c-f28d282a3485
build_plots && ( trajectory_2D_error = md((
x0 = [random_point(Vec2D{Measurement{Float64}},(-50,50),1e-5) for _ in 1:100 ],
v0 = [random_point(Vec2D{Measurement{Float64}},(-1,1),1e-5) for _ in 1:100 ],
mass = [ 1.0 for _ in 1:100 ],
dt = 0.1,
nsteps = 100,
isave = 1,
forces! = (f,x) -> forces!(f,x, (i,j,p1,p2) -> fₓ(p1,p2,cutoff,side))
)...) )
# ╔═╡ bf0a5303-f5ce-4711-b9ee-a12ce2d8a397
build_plots && @gif for x in trajectory_2D_error
positions = [ wrap.((p.x.val,p.y.val),100) for p in x ]
scatter(positions, lims=(-60,60))
end
# ╔═╡ e24ce081-e367-4feb-8a79-66b8654a0b3a
build_plots && @gif for x in trajectory_2D_error
histogram(
[ p.x.err for p in x ],
xlabel="Uncertainty in x",ylabel="Number of points",
bins=0:1e-4:20e-4,ylims=[0,50]
)
end
# ╔═╡ 1067527e-76b7-4331-b3ab-efd72fb99dfc
build_plots && @gif for (step,x) in pairs(trajectory_planets)
colors = [ :yellow, :grey, :brown, :blue, :red ]
positions = [ (p.x.val,p.y.val) for p in x ]
xerr = [ p.x.err for p in x ]
yerr = [ p.y.err for p in x ]
scatter(positions,lims=[-250,250], markercolor=colors, xerror=xerr, yerror=yerr)
annotate!(150,-210,text(@sprintf("%5i days",step),plot_font,12))
end
# ╔═╡ 4cef9cea-1e84-42b9-bff6-b9a8b3bfe8da
build_plots && @gif for step in eachindex(earth_traj_best)
colors = [ :yellow, :blue ]
positions0 = [ (p.x,p.y) for p in earth_traj_0[step] ]
positions_best = [ (p.x,p.y) for p in earth_traj_best[step] ]
scatter(positions0,lims=[-250,250], markercolor=colors, alpha=0.5)
scatter!(positions_best,lims=[-250,250], markercolor=colors)
scatter!(
(earth_traj_best[1][2].x,earth_traj_best[1][2].y),
markercolor=:white,alpha=0.5,
markersize=10
)
annotate!(150,-210,text(@sprintf("%5i days",2*step),plot_font,12))
end
# ╔═╡ e5b557d7-0952-4409-ae4c-a0c8ce736e03
build_plots && @gif for (step,x) in pairs(trajectory_periodic_large)
scatter(
[ wrap.((p.x,p.y),box_side) for p in x ],
lims=(-1.1*box_side/2,1.1*box_side/2)
)
end
# ╔═╡ 30d2f39e-5df2-4f38-8032-e5f8492ba335
build_plots && @gif for (step,x) in pairs(trajectory_cell_lists)
scatter(
[ wrap.((p.x,p.y),box_side) for p in x ],
lims=(-1.1*box_side/2,1.1*box_side/2)
)
end
# ╔═╡ 2634feff-7442-4d8f-b8e5-c11113136980
build_plots && begin
r_lj = 2.8:0.05:8
plot(
r_lj,ulj_pair.(r_lj.^2,0.,ε,σ),
xlabel="Distance / Å", ylabel="Potential energy / kcal/mol"
)
end
# ╔═╡ b4154fb7-e0b0-4211-8490-8a8fe47cd2da
md"""
## Método do gradiente para vetores
"""
# ╔═╡ 8ac7b1bf-c958-4eb5-8376-f802b372e796
function gradient_descent!(x::Vector{T},f,g!;tol=1e-3,maxtrial=500) where T
gnorm(x) = maximum(norm(v) for v in x)
itrial = 0
step = 1.0
xtrial = similar(x)
g = fill!(similar(x),zero(T))
fx = f(x)
g = g!(g,x)
while (gnorm(g) > tol) && (itrial < maxtrial)
@. xtrial = x - step*g
ftrial = f(xtrial)
if ftrial >= fx
step = step / 2
else
x .= xtrial
fx = ftrial
g = g!(g,x)
step = step * 2
end
@show itrial, step, fx, ftrial, gnorm(g)
itrial += 1
end
return x
end
# ╔═╡ 357c6621-b2b8-4f30-ba41-ffc1ae6f031b
t_min = @elapsed x_min = gradient_descent!(
copy(x0_Ne),
(x) -> ulj(x,ε,σ,box_Ne,cl_Ne),
(g,x) -> -flj!(g,x,ε,σ,box_Ne,cl_Ne)
)
# ╔═╡ 58eb5b4b-76ad-4f7a-b86b-0494a857dca1
ulj(x_min,ε,σ,box_Ne,cl_Ne)
# ╔═╡ 574047fa-6626-4cd0-8317-32118129711e
md"""
O exemplo aqui é somente ilustrativo, mas mostra um comportamento comum: a energia depois da minimização é ainda muito alta. O custo computacional e a instabilidade numérica do potencial verdadeiro, em curtas distâncias, faz da energia uma função difícil de minimizar.
**Tempo usado na mininimzação da energia: $t_min seconds**
Por causa disto [`Packmol`](http://m3g.iqm.unicamp.br/packmol) foi desenvolvido. Primeiro, resolvemos o problema de empacotar os átomos no espaço, garantindo que a menor distância entre eles seja maior que uma tolerância mínima. Aqui, isto consiste na minimização do nosso potencial suave original:
"""
# ╔═╡ 224336e2-522c-44af-b9a1-307e2ffff0f9
t_pack = @elapsed x_pack = gradient_descent!(
copy(x0_Ne),
(x) -> u_pack(x,box_pack,cl_pack),
(g,x) -> -forces_cl!(g,x,box_pack,cl_pack,fpair_cl)
)
# ╔═╡ 06526edf-911a-4ecc-a350-6d932ca56cd5
md"""
**Tempo necessário para o empacotamento: $t_pack seconds**
"""
# ╔═╡ c48210e0-1a04-4f84-a4e2-f6b5d34a603d
u_pack(x_pack,box_pack,cl_pack)
# ╔═╡ 0471b987-f987-4656-b961-285e32d0a5e1
ulj(x_pack,ε,σ,box_Ne,cl_Ne)
# ╔═╡ 339487cd-8ee8-4d1d-984b-b4c5ff00bae3
t_Ne = @elapsed trajectory_Ne = md((
x0 = x_pack,
v0 = [random_point(Vec3D{Float64},(-1,1)) for _ in 1:n_Ne ],
mass = [ 20.179 for _ in 1:n_Ne ],
dt = 0.01,
nsteps = 100,
isave = 10,
forces! = (f,x) -> flj!(f,x,ε,σ,box_Ne,cl_Ne)
)...)
# ╔═╡ 9cb29b01-7f49-4145-96d8-c8fd971fe1c8
build_plots && @gif for x in trajectory_Ne
scatter(
[ wrap.((p.x,p.y,p.z),box_side_Ne) for p in x ],
lims=(-1.1*box_side_Ne/2,1.1*box_side_Ne/2)
)
end
# ╔═╡ ac52a71b-1138-4f1b-99c3-c174d9f09187
md"""
A simulação demorou $t_Ne seconds.
Novamente, para entender exatamente o que isto significa, temos que fazer uma comparação apropriada. [Neste benchmark](https://github.com/m3g/2021_FortranCon/tree/main/celllistmap_vs_namd) fazemos duas simulações deste mesmo gás, com condições termodinâmicas apropriadas. O algoritmo implementado em Julia é similar ao que está descrito aqui, exceto que é feita uma termalização por reescalonamento de velocidades, e o algoritmo Velocity-Verlet de integração é usado (o que aumenta a estabilidade da simulação, mas não a performance relativamente ao método simples aqui usado). Os mesmo algoritmos são usados na simulação realizada com o NAMD. O resultado do benchmark foi obtido em um laptop com 4 processadores físicos (e 8 threads).
````
NAMD:
real 1m14,049s
user 8m59,065s
sys 0m1,130s
CellListMap:
real 1m21,054s
user 7m38,053s
sys 0m2,172s
````
Esta comparação claro que pode ser questionada: `NAMD` é um pacote de simulação de propósito geral, desenvolvido para ter eficiente em simulações massivamente paralelas. O `CellListMap.jl` é um pacote para computar qualquer propriedade dependente da distância, mas por enquanto otimizado apenas para computadores com memória compartilhada, e menos processadores.
No entanto, o benchmark mostra que é possível escrever códigos de alta peformance em Julia, e que `CellListMap.jl` é uma ferramenta poderosa para a simlação ou cálculo de propriedades e análises customizadas de simulações de partículas.
Uma das aplicações deste pacote consiste no cálculo de funções de distribuição de sistemas químicos de grande complexidade estruural, em [ComplexMixtures.jl](https://m3g.github.io/ComplexMixtures.jl/stable/).
"""
# ╔═╡ b5008faf-fd43-45dd-a5a1-7f51e0b4ede5
md"""
## Conteúdo
"""
# ╔═╡ 555d1f62-b95b-4377-a8e2-9e442ee7526d
# ╔═╡ f5510c1e-9b9f-49f0-bc7e-0fd8e79a5760
md"""
## Exemplo de empacotamento em 2D
"""
# ╔═╡ 5d9a40b5-4050-47d2-9855-e9b62d56e8df
side_test = 50
# ╔═╡ 7f556f7c-cdb0-4f91-a359-2f933bbc5b68
xtest = [ random_point(Vec2D{Float64},(-side_test,side_test)) for _ in 1:1000 ]
# ╔═╡ 0fc843d2-ac4f-4717-a298-92a476223112
tol_test = 2
# ╔═╡ fc7f665b-00d9-431b-a97e-d2ff7253221a
box_test = Box([side_test,side_test],tol_test)
# ╔═╡ aadf6e48-0cbf-4973-86a1-173b6648d1df
cl_test = CellList(xtest,box_test)
# ╔═╡ 452e1ea7-98be-4910-ba6b-c0881fb251b2
x_pack_test = gradient_descent!(
copy(xtest),
(x) -> u_pack(x,box_test,cl_test),
(g,x) -> -forces_cl!(g,x,box_test,cl_test,fpair_cl)
)
# ╔═╡ d9f254dc-ae4a-40b3-b682-f8a501e10a2d
build_plots && begin
plot(layout=(1,2))
scatter!([ wrap.(Tuple(p),side_test) for p in xtest ],subplot=1)
scatter!([ wrap.(Tuple(p),side_test) for p in x_pack_test ],subplot=2)
plot!(lims=(-1.1*side_test/2,1.1*side_test/2),aspect_ratio=1,size=(800,400))
end
# ╔═╡ 00000000-0000-0000-0000-000000000001
PLUTO_PROJECT_TOML_CONTENTS = """
[deps]
BenchmarkTools = "6e4b80f9-dd63-53aa-95a3-0cdb28fa8baf"
CellListMap = "69e1c6dd-3888-40e6-b3c8-31ac5f578864"
FastPow = "c0e83750-1142-43a8-81cf-6c956b72b4d1"
ForwardDiff = "f6369f11-7733-5829-9624-2563aa707210"
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
Measurements = "eff96d63-e80a-5855-80a2-b1b0885c5ab7"
Plots = "91a5bcdd-55d7-5caf-9e0b-520d859cae80"
PlutoUI = "7f904dfe-b85e-4ff6-b463-dae2292396a8"
Printf = "de0858da-6303-5e67-8744-51eddeeeb8d7"
StaticArrays = "90137ffa-7385-5640-81b9-e52037218182"
[compat]
BenchmarkTools = "~1.2.0"
CellListMap = "~0.5.20"
FastPow = "~0.1.0"
ForwardDiff = "~0.10.19"
Measurements = "~2.6.0"
Plots = "~1.22.2"
PlutoUI = "~0.7.11"
StaticArrays = "~1.2.12"
"""
# ╔═╡ 00000000-0000-0000-0000-000000000002
PLUTO_MANIFEST_TOML_CONTENTS = """
# This file is machine-generated - editing it directly is not advised
[[Adapt]]
deps = ["LinearAlgebra"]
git-tree-sha1 = "84918055d15b3114ede17ac6a7182f68870c16f7"
uuid = "79e6a3ab-5dfb-504d-930d-738a2a938a0e"
version = "3.3.1"
[[ArgTools]]
uuid = "0dad84c5-d112-42e6-8d28-ef12dabb789f"
[[Artifacts]]
uuid = "56f22d72-fd6d-98f1-02f0-08ddc0907c33"
[[Base64]]
uuid = "2a0f44e3-6c83-55bd-87e4-b1978d98bd5f"
[[BenchmarkTools]]
deps = ["JSON", "Logging", "Printf", "Profile", "Statistics", "UUIDs"]
git-tree-sha1 = "61adeb0823084487000600ef8b1c00cc2474cd47"
uuid = "6e4b80f9-dd63-53aa-95a3-0cdb28fa8baf"
version = "1.2.0"
[[Bzip2_jll]]
deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg"]
git-tree-sha1 = "19a35467a82e236ff51bc17a3a44b69ef35185a2"
uuid = "6e34b625-4abd-537c-b88f-471c36dfa7a0"
version = "1.0.8+0"
[[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"
[[Calculus]]
deps = ["LinearAlgebra"]
git-tree-sha1 = "f641eb0a4f00c343bbc32346e1217b86f3ce9dad"
uuid = "49dc2e85-a5d0-5ad3-a950-438e2897f1b9"
version = "0.5.1"
[[CellListMap]]
deps = ["DocStringExtensions", "LinearAlgebra", "Parameters", "ProgressMeter", "Random", "Setfield", "StaticArrays"]
git-tree-sha1 = "6307da1063024d02438f460b98a7539fc6270298"
uuid = "69e1c6dd-3888-40e6-b3c8-31ac5f578864"
version = "0.5.20"
[[ChainRulesCore]]
deps = ["Compat", "LinearAlgebra", "SparseArrays"]
git-tree-sha1 = "bd4afa1fdeec0c8b89dad3c6e92bc6e3b0fec9ce"
uuid = "d360d2e6-b24c-11e9-a2a3-2a2ae2dbcce4"
version = "1.6.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"
[[Colors]]
deps = ["ColorTypes", "FixedPointNumbers", "Reexport"]
git-tree-sha1 = "417b0ed7b8b838aa6ca0a87aadf1bb9eb111ce40"
uuid = "5ae59095-9a9b-59fe-a467-6f913c188581"
version = "0.12.8"
[[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 = "31d0151f5716b655421d9d75b7fa74cc4e744df2"
uuid = "34da2185-b29b-5c13-b0c7-acf172513d20"
version = "3.39.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"
[[DataAPI]]
git-tree-sha1 = "cc70b17275652eb47bc9e5f81635981f13cea5c8"
uuid = "9a962f9c-6df0-11e9-0e5d-c546b8b5ee8a"
version = "1.9.0"
[[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"
[[DiffResults]]
deps = ["StaticArrays"]
git-tree-sha1 = "c18e98cba888c6c25d1c3b048e4b3380ca956805"
uuid = "163ba53b-c6d8-5494-b064-1a9d43ac40c5"
version = "1.0.3"
[[DiffRules]]
deps = ["NaNMath", "Random", "SpecialFunctions"]
git-tree-sha1 = "7220bc21c33e990c14f4a9a319b1d242ebc5b269"
uuid = "b552c78f-8df3-52c6-915a-8e097449b14b"
version = "1.3.1"
[[Distributed]]
deps = ["Random", "Serialization", "Sockets"]
uuid = "8ba89e20-285c-5b6f-9357-94700520ee1b"
[[DocStringExtensions]]
deps = ["LibGit2"]
git-tree-sha1 = "a32185f5428d3986f47c2ab78b1f216d5e6cc96f"
uuid = "ffbed154-4ef7-542d-bbb7-c09d3a79fcae"
version = "0.8.5"
[[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"
[[Expat_jll]]
deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg"]
git-tree-sha1 = "b3bfd02e98aedfa5cf885665493c5598c350cd2f"
uuid = "2e619515-83b5-522b-bb60-26c02a35a201"
version = "2.2.10+0"
[[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"
[[FastPow]]
git-tree-sha1 = "7d961335144dad74de0e1b3a9b60e4d114a78dc2"
uuid = "c0e83750-1142-43a8-81cf-6c956b72b4d1"
version = "0.1.0"
[[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", "Printf", "Random", "SpecialFunctions", "StaticArrays"]
git-tree-sha1 = "b5e930ac60b613ef3406da6d4f42c35d8dc51419"
uuid = "f6369f11-7733-5829-9624-2563aa707210"
version = "0.10.19"
[[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"
[[FriBidi_jll]]
deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg"]
git-tree-sha1 = "aa31987c2ba8704e23c6c8ba8a4f769d5d7e4f91"
uuid = "559328eb-81f9-559d-9380-de523a88c83c"
version = "1.0.10+0"
[[Future]]
deps = ["Random"]
uuid = "9fa8497b-333b-5362-9e8d-4d0656e87820"
[[GLFW_jll]]
deps = ["Artifacts", "JLLWrappers", "Libdl", "Libglvnd_jll", "Pkg", "Xorg_libXcursor_jll", "Xorg_libXi_jll", "Xorg_libXinerama_jll", "Xorg_libXrandr_jll"]
git-tree-sha1 = "dba1e8614e98949abfa60480b13653813d8f0157"
uuid = "0656b61e-2033-5cc2-a64a-77c0f6c09b89"
version = "3.3.5+0"
[[GR]]
deps = ["Base64", "DelimitedFiles", "GR_jll", "HTTP", "JSON", "Libdl", "LinearAlgebra", "Pkg", "Printf", "Random", "Serialization", "Sockets", "Test", "UUIDs"]
git-tree-sha1 = "c2178cfbc0a5a552e16d097fae508f2024de61a3"
uuid = "28b8d3ca-fb5f-59d9-8090-bfdbd6d07a71"
version = "0.59.0"
[[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 = "ef49a187604f865f4708c90e3f431890724e9012"
uuid = "d2c73de3-f751-5644-a686-071e5b155ba9"
version = "0.59.0+0"
[[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"
[[Graphite2_jll]]
deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg"]
git-tree-sha1 = "344bf40dcab1073aca04aa0df4fb092f920e4011"
uuid = "3b182d85-2403-5c21-9c21-1e1f0cc25472"
version = "1.3.14+0"
[[Grisu]]
git-tree-sha1 = "53bb909d1151e57e2484c3d1b53e19552b887fb2"
uuid = "42e2da0e-8278-4e71-bc24-59509adca0fe"
version = "1.0.2"
[[HTTP]]
deps = ["Base64", "Dates", "IniFile", "Logging", "MbedTLS", "NetworkOptions", "Sockets", "URIs"]
git-tree-sha1 = "60ed5f1643927479f845b0135bb369b031b541fa"
uuid = "cd3eb016-35fb-5094-929b-558a96fad6f3"
version = "0.9.14"
[[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"
[[HypertextLiteral]]
git-tree-sha1 = "72053798e1be56026b81d4e2682dbe58922e5ec9"
uuid = "ac1192a8-f4b3-4bfe-ba22-af5b92cd3ab2"
version = "0.9.0"
[[IOCapture]]
deps = ["Logging", "Random"]
git-tree-sha1 = "f7be53659ab06ddc986428d3a9dcc95f6fa6705a"
uuid = "b5f81e59-6552-4d32-b1f0-c071b021bf89"
version = "0.2.2"
[[IniFile]]
deps = ["Test"]
git-tree-sha1 = "098e4d2c533924c921f9f9847274f2ad89e018b8"
uuid = "83e8ac13-25f8-5344-8a64-a9f2b223428f"
version = "0.5.0"
[[InteractiveUtils]]
deps = ["Markdown"]
uuid = "b77e0a4c-d291-57a0-90e8-8db25a27a240"
[[IrrationalConstants]]
git-tree-sha1 = "f76424439413893a832026ca355fe273e93bce94"
uuid = "92d709cd-6900-40b7-9082-c6be49f344b6"
version = "0.1.0"
[[IterTools]]
git-tree-sha1 = "05110a2ab1fc5f932622ffea2a003221f4782c18"
uuid = "c8e1da08-722c-5040-9ed9-7db0dc04731e"
version = "1.3.0"
[[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"
[[JpegTurbo_jll]]
deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg"]
git-tree-sha1 = "d735490ac75c5cb9f1b00d8b5509c11984dc6943"
uuid = "aacddb02-875f-59d6-b918-886e6ef4fbf8"
version = "2.1.0+0"
[[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 = "c7f1c695e06c01b95a67f0cd1d34994f3e7db104"
uuid = "b964fa9f-0449-5b57-a5c2-d3ea65f4040f"
version = "1.2.1"
[[Latexify]]
deps = ["Formatting", "InteractiveUtils", "LaTeXStrings", "MacroTools", "Markdown", "Printf", "Requires"]
git-tree-sha1 = "a4b12a1bd2ebade87891ab7e36fdbce582301a92"
uuid = "23fbe1c1-3f47-55db-b15f-69d7ec21a316"
version = "0.15.6"
[[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"
[[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"
[[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"
[[Libtiff_jll]]
deps = ["Artifacts", "JLLWrappers", "JpegTurbo_jll", "Libdl", "Pkg", "Zlib_jll", "Zstd_jll"]
git-tree-sha1 = "340e257aada13f95f98ee352d316c3bed37c8ab9"
uuid = "89763e89-9b03-5906-acba-b20f662cd828"
version = "4.3.0+0"
[[Libuuid_jll]]
deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg"]
git-tree-sha1 = "7f3efec06033682db852f8b3bc3c1d2b0a0ab066"
uuid = "38a345b3-de98-5d2b-a5d3-14cd9215e700"
version = "2.36.0+0"
[[LinearAlgebra]]
deps = ["Libdl"]
uuid = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
[[LogExpFunctions]]
deps = ["ChainRulesCore", "DocStringExtensions", "IrrationalConstants", "LinearAlgebra"]
git-tree-sha1 = "34dc30f868e368f8a17b728a1238f3fcda43931a"
uuid = "2ab3a3ac-af41-5b50-aa03-7779005ae688"
version = "0.3.3"
[[Logging]]
uuid = "56ddb016-857b-54e1-b83d-db4d58db5568"
[[MacroTools]]
deps = ["Markdown", "Random"]
git-tree-sha1 = "5a5bc6bf062f0f95e62d0fe0a2d99699fed82dd9"
uuid = "1914dd2f-81c6-5fcd-8719-6d5c9610ff09"
version = "0.5.8"
[[Markdown]]
deps = ["Base64"]
uuid = "d6f4376e-aef5-505a-96c1-9c027394607a"
[[MbedTLS]]
deps = ["Dates", "MbedTLS_jll", "Random", "Sockets"]
git-tree-sha1 = "1c38e51c3d08ef2278062ebceade0e46cefc96fe"
uuid = "739be429-bea8-5141-9913-cc70e7f3736d"
version = "1.0.3"
[[MbedTLS_jll]]
deps = ["Artifacts", "Libdl"]
uuid = "c8ffd9c3-330d-5841-b78e-0817d7145fa1"
[[Measurements]]
deps = ["Calculus", "LinearAlgebra", "Printf", "RecipesBase", "Requires"]
git-tree-sha1 = "31c8c0569b914111c94dd31149265ed47c238c5b"
uuid = "eff96d63-e80a-5855-80a2-b1b0885c5ab7"
version = "2.6.0"
[[Measures]]
git-tree-sha1 = "e498ddeee6f9fdb4551ce855a46f54dbd900245f"
uuid = "442fdcdd-2543-5da2-b0f3-8c86c306513e"
version = "0.3.1"
[[Missings]]
deps = ["DataAPI"]
git-tree-sha1 = "bf210ce90b6c9eed32d25dbcae1ebc565df2687f"
uuid = "e1d29d7a-bbdc-5cf2-9ac0-f12de2c33e28"
version = "1.0.2"
[[Mmap]]
uuid = "a63ad114-7e13-5084-954f-fe012c677804"
[[MozillaCACerts_jll]]
uuid = "14a3606d-f60d-562e-9121-12d972cd8159"
[[NaNMath]]
git-tree-sha1 = "bfe47e760d60b82b66b61d2d44128b62e3a369fb"
uuid = "77ba4419-2d1f-58cd-9bb1-8ffee604a2e3"
version = "0.3.5"
[[NetworkOptions]]
uuid = "ca575930-c2e3-43a9-ace4-1e988b2c1908"
[[Ogg_jll]]
deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg"]
git-tree-sha1 = "7937eda4681660b4d6aeeecc2f7e1c81c8ee4e2f"
uuid = "e7412a2a-1a6e-54c0-be00-318e2571c051"
version = "1.3.5+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"
[[PCRE_jll]]
deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg"]
git-tree-sha1 = "b2a7af664e098055a7529ad1a900ded962bca488"
uuid = "2f80f16e-611a-54ab-bc61-aa92de5b98fc"
version = "8.44.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 = "9d8c00ef7a8d110787ff6f170579846f776133a9"
uuid = "69de0a69-1ddd-5017-9359-2bf0b02dc9f0"
version = "2.0.4"
[[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"
[[PlotThemes]]
deps = ["PlotUtils", "Requires", "Statistics"]
git-tree-sha1 = "a3a964ce9dc7898193536002a6dd892b1b5a6f1d"
uuid = "ccf2f8ad-2431-5c83-bf29-c5338b663b6a"
version = "2.0.1"
[[PlotUtils]]
deps = ["ColorSchemes", "Colors", "Dates", "Printf", "Random", "Reexport", "Statistics"]
git-tree-sha1 = "2537ed3c0ed5e03896927187f5f2ee6a4ab342db"
uuid = "995b91a9-d308-5afd-9ec6-746e21dbc043"
version = "1.0.14"
[[Plots]]
deps = ["Base64", "Contour", "Dates", "Downloads", "FFMPEG", "FixedPointNumbers", "GR", "GeometryBasics", "JSON", "Latexify", "LinearAlgebra", "Measures", "NaNMath", "PlotThemes", "PlotUtils", "Printf", "REPL", "Random", "RecipesBase", "RecipesPipeline", "Reexport", "Requires", "Scratch", "Showoff", "SparseArrays", "Statistics", "StatsBase", "UUIDs"]
git-tree-sha1 = "457b13497a3ea4deb33d273a6a5ea15c25c0ebd9"
uuid = "91a5bcdd-55d7-5caf-9e0b-520d859cae80"
version = "1.22.2"
[[PlutoUI]]
deps = ["Base64", "Dates", "HypertextLiteral", "IOCapture", "InteractiveUtils", "JSON", "Logging", "Markdown", "Random", "Reexport", "UUIDs"]
git-tree-sha1 = "0c3e067931708fa5641247affc1a1aceb53fff06"
uuid = "7f904dfe-b85e-4ff6-b463-dae2292396a8"
version = "0.7.11"
[[Preferences]]
deps = ["TOML"]
git-tree-sha1 = "00cfd92944ca9c760982747e9a1d0d5d86ab1e5a"
uuid = "21216c6a-2e73-6563-6e65-726566657250"
version = "1.2.2"
[[Printf]]
deps = ["Unicode"]
uuid = "de0858da-6303-5e67-8744-51eddeeeb8d7"
[[Profile]]
deps = ["Printf"]
uuid = "9abbd945-dff8-562f-b5e8-e1ebf5ef1b79"
[[ProgressMeter]]
deps = ["Distributed", "Printf"]
git-tree-sha1 = "afadeba63d90ff223a6a48d2009434ecee2ec9e8"
uuid = "92933f4c-e287-5a05-a399-4b506db050ca"
version = "1.7.1"
[[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"
[[REPL]]
deps = ["InteractiveUtils", "Markdown", "Sockets", "Unicode"]
uuid = "3fa0cd96-eef1-5676-8a61-b3b8758bbffb"
[[Random]]
deps = ["Serialization"]
uuid = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
[[RecipesBase]]
git-tree-sha1 = "44a75aa7a527910ee3d1751d1f0e4148698add9e"
uuid = "3cdcf5f2-1ef4-517c-9805-6587b60abb01"
version = "1.1.2"
[[RecipesPipeline]]
deps = ["Dates", "NaNMath", "PlotUtils", "RecipesBase"]
git-tree-sha1 = "7ad0dfa8d03b7bcf8c597f59f5292801730c55b8"
uuid = "01d81517-befc-4cb6-b9ec-a95719d0359c"
version = "0.4.1"
[[Reexport]]
git-tree-sha1 = "45e428421666073eab6f2da5c9d310d99bb12f9b"
uuid = "189a3867-3050-52da-a836-e630ba90ab69"
version = "1.2.2"
[[Requires]]
deps = ["UUIDs"]
git-tree-sha1 = "4036a3bd08ac7e968e27c203d45f5fff15020621"
uuid = "ae029012-a4dd-5104-9daa-d747884805df"
version = "1.1.3"
[[SHA]]
uuid = "ea8e919c-243c-51af-8825-aaa63cd721ce"
[[Scratch]]
deps = ["Dates"]
git-tree-sha1 = "0b4b7f1393cff97c33891da2a0bf69c6ed241fda"
uuid = "6c6a2e73-6563-6170-7368-637461726353"
version = "1.1.0"
[[Serialization]]
uuid = "9e88b42a-f829-5b0c-bbe9-9e923198166b"
[[Setfield]]
deps = ["ConstructionBase", "Future", "MacroTools", "Requires"]
git-tree-sha1 = "fca29e68c5062722b5b4435594c3d1ba557072a3"
uuid = "efcf1570-3423-57d1-acb7-fd33fddbac46"
version = "0.7.1"
[[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"
[[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"
[[SpecialFunctions]]
deps = ["ChainRulesCore", "LogExpFunctions", "OpenLibm_jll", "OpenSpecFun_jll"]
git-tree-sha1 = "ad42c30a6204c74d264692e633133dcea0e8b14e"
uuid = "276daf66-3868-5448-9aa4-cd146d93841b"
version = "1.6.2"
[[StaticArrays]]
deps = ["LinearAlgebra", "Random", "Statistics"]
git-tree-sha1 = "3240808c6d463ac46f1c1cd7638375cd22abbccb"
uuid = "90137ffa-7385-5640-81b9-e52037218182"
version = "1.2.12"
[[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", "Missings", "Printf", "Random", "SortingAlgorithms", "SparseArrays", "Statistics", "StatsAPI"]
git-tree-sha1 = "8cbbc098554648c84f79a463c9ff0fd277144b6c"
uuid = "2913bbd2-ae8a-5f71-8c99-4fb6c76f3a91"
version = "0.33.10"
[[StructArrays]]
deps = ["Adapt", "DataAPI", "StaticArrays", "Tables"]
git-tree-sha1 = "2ce41e0d042c60ecd131e9fb7154a3bfadbf50d3"
uuid = "09ab397b-f2b6-538f-b94a-2f83cf4a842a"
version = "0.6.3"
[[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 = "1162ce4a6c4b7e31e0e6b14486a6986951c73be9"
uuid = "bd369af6-aec1-5ad0-b16a-f7cc5008161c"
version = "1.5.2"
[[Tar]]
deps = ["ArgTools", "SHA"]
uuid = "a4e569a6-e804-4fa4-b0f3-eef7a1d5b13e"
[[Test]]
deps = ["InteractiveUtils", "Logging", "Random", "Serialization"]
uuid = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
[[URIs]]
git-tree-sha1 = "97bbe755a53fe859669cd907f2d96aee8d2c1355"
uuid = "5c2747f8-b7ea-4ff2-ba2e-563bfd36b1d4"
version = "1.3.0"
[[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"
[[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"
[[Wayland_protocols_jll]]
deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg", "Wayland_jll"]
git-tree-sha1 = "2839f1c1296940218e35df0bbb220f2a79686670"
uuid = "2381bf8a-dfd0-557d-9999-79630e7b1b91"
version = "1.18.0+4"
[[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_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"
[[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_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"
[[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"
[[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"
[[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"
[[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_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"
[[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"
[[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"
[[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"
[[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"
[[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"
[[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"
[[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"
[[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"
[[Zstd_jll]]
deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg"]
git-tree-sha1 = "cc4bf3fdde8b7e3e9fa0351bdeedba1cf3b7f6e6"
uuid = "3161d3a3-bdf6-5164-811a-617609db77b4"
version = "1.5.0+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"
[[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:
# ╟─a87fad48-73c1-4a08-a6f1-aae759b3c6fc
# ╟─172227c2-b27a-40db-91f4-9566c2f6cf52
# ╟─4b484cf6-4888-4f04-b3fd-94862822b0c0
# ╠═a82f22e4-f35b-461a-b481-1dff43722e44
# ╠═8c444ee4-8c77-413a-bbeb-9e5ae2428876
# ╟─a0de01b5-779a-48c0-8d61-12b02a5f527e
# ╠═f87e4036-8f82-41c7-90c1-daa5f677488d
# ╟─532eb3bc-5522-4348-afa5-5336ec6752c7
# ╟─dc5f7484-3dc3-47a7-ad4a-30f97fc14d11
# ╟─ab3ff21b-bf82-4d8c-abd1-c27418956ed8
# ╠═7a1db355-bba9-4322-9fb4-a6d7b7bdd60d
# ╟─cc49ef04-08d8-42bb-9170-9db64e275a51
# ╠═df33b999-4a42-4133-bf59-5a65240790cf
# ╠═0f52365d-34f4-46ed-923e-3ea31c6db0ca
# ╟─d00e56f2-9d3a-4dd3-80eb-3201eff39b96
# ╠═b5c09cd3-6063-4a36-96cd-2d128aa11b82
# ╟─374f239b-6470-40ed-b068-a8ecaace4f09
# ╟─7719b317-e85b-4583-b401-a8614d4b2373
# ╠═f58769a6-a656-42a3-8bc6-c204d4cfd897
# ╟─144119ad-ab88-4165-883a-f2fc2464a838
# ╠═356ac5a4-c94e-42cb-a085-0198b29c7e52
# ╟─43e6b146-ee35-40f1-b540-3da22b9e1b1b
# ╟─dd9e4332-2908-40ef-b461-6b571df56cf4
# ╠═d23b4a92-055e-4ed7-bd46-8a3c59312993
# ╠═e6e29d1e-9a93-49db-a358-6b66f0bc3433
# ╟─017cd6a8-712d-4ec5-b31f-7f1f507764f2
# ╟─b5206dd5-1f46-4437-929b-efd68393b12b
# ╠═eb5dc224-1491-11ec-1cae-d51c93cd292c
# ╟─594ba1d6-2dae-4f20-9546-f52fac17c2f0
# ╟─66c7d960-7e05-4613-84e8-2a40fe40dc3d
# ╟─e717a8d9-ccfb-4f89-b2a2-f244f108b48d
# ╠═3755a4f3-1842-4de2-965e-d294c06c54c7
# ╟─505ef5ab-f131-4ab3-a723-795b5eb5dc0f
# ╟─eab7b195-64d5-4587-8687-48a673ab091b
# ╟─34dc72dc-4864-47c0-b730-183f67e7aea3
# ╠═beeb3335-5c49-47de-a1d3-3eef5f9479f1
# ╟─02d9bf3b-708c-4293-b198-9043b334ff7e
# ╠═0967b90d-ac88-476d-a57a-7c38dfa82204
# ╟─0a5282ee-c88a-4bcc-aca2-477f28e9e04d
# ╠═b2a4a505-47ff-40bb-9a6d-a08d91c53217
# ╟─fcff6973-012a-40fc-a618-f6262266287a
# ╠═985b4ffb-7964-4b50-8c2f-e5f45f352500
# ╟─14867ffd-cde5-43f8-8399-01169ee29b73
# ╟─c4798182-de75-4b59-8be7-f7cf1051364d
# ╠═efc586a2-0946-4dc5-ab3a-3902a811f3ad
# ╟─22fb0386-d4fa-47b9-ac31-decf2731cbc1
# ╟─8e23a3ea-3039-4a5f-b37f-c4710153938e
# ╠═d42f842d-6c2a-40db-b0c4-e936244a9e7c
# ╠═1ad401b5-20b2-489b-b2aa-92f729b1d725
# ╟─2a3e7257-63ad-4761-beda-cec18b91f99c
# ╟─49b1f040-929a-4238-acd9-6554757b592c
# ╠═26d5c6e9-a903-4792-a0e0-dec1a2e86a01
# ╟─2aef27bd-dea6-4a93-9d0f-b9249c9dd2cd
# ╠═0546ee2d-b62d-4c7a-8172-ba87b3c1aea4
# ╟─4a498c18-406f-4437-b378-aa9fdc75b919
# ╟─b6dcb9a3-59e3-4eae-9399-fb072c704f1a
# ╠═e4657169-1bb2-4d4a-ac9d-adc80499d07d
# ╟─5d395353-5681-4780-983e-902fdb89eaf2
# ╠═e9376a4b-3d60-42eb-8681-cd2bcec13fe8
# ╠═c5cdd71f-5ded-482f-9205-c13f01a14d0b
# ╟─a0993a1f-60a6-45b5-815e-676c49a9f049
# ╠═4e7f8db4-b5cc-4a3e-9fa7-e62d8f2a36ac
# ╟─36da3e92-000c-4d4b-9abf-4cd588b3a354
# ╠═70eb2e0a-a5c8-4975-8f6c-589035bea29c
# ╟─b4646a29-3efd-4bd1-bffc-3575559de937
# ╠═d32743c0-fc80-406f-83c5-4528e439589a
# ╟─98478246-5940-4828-a8f1-9c9fa990676d
# ╠═310f247e-3fe8-4621-ae0b-b5ee38d2ee89
# ╟─8267220a-f06e-4761-b310-00f8ba44e4b1
# ╟─ce916139-221a-462e-877f-88212663c05e
# ╠═99b5c818-a825-4939-849e-1cade802f63d
# ╟─8e2903be-4975-4e14-84ed-6e712f47fe47
# ╟─418f31bb-81d5-459b-b402-4fd4e3f4ab27
# ╠═05402cbd-78c6-4234-8680-c351c8c37778
# ╟─4e97f24c-c237-4117-bc57-e4e88c8fb8d2
# ╠═b31da90d-7165-42de-b18d-90584affea03
# ╟─5f37640b-ffd9-4877-a78c-a699b2671919
# ╠═d87c22d1-d595-4d43-ab1c-f28d282a3485
# ╟─1d6eedfd-d013-4557-9cf2-103f8fb7b72a
# ╟─bf0a5303-f5ce-4711-b9ee-a12ce2d8a397
# ╟─c003a61d-a434-4d7b-9214-5b52aa044248
# ╠═e24ce081-e367-4feb-8a79-66b8654a0b3a
# ╟─63eb391f-0238-434a-bc3a-2fa8ed41448e
# ╠═7b9bb0fd-34a5-42e1-bc35-7259447b73d0
# ╟─6a4e0e2e-75c5-4cab-987d-3d6b62f9bb06
# ╠═c91862dd-498a-4712-8e3d-b77e088cd470
# ╠═a08d6e6d-ddc4-40aa-b7c4-93ea03191415
# ╟─a356e2cc-1cb1-457a-986c-998cf1efe008
# ╠═57141f7c-9261-4dc5-98e4-b136a15f86fc
# ╟─055e32d7-073c-40db-a267-750636b9f786
# ╠═aaa97ce4-a5ff-4332-89a2-843cee2e5b6d
# ╟─1067527e-76b7-4331-b3ab-efd72fb99dfc
# ╟─93697e4d-369b-48e9-8b28-a0ff58604d02
# ╟─c4344e64-aa22-4328-a97a-71e44bcd289f
# ╟─827bda6f-87d4-4d36-8d89-f144f4595240
# ╟─1ff4077a-4742-4c5e-a8d6-c4699469a683
# ╠═4a75498d-8f4e-406f-8b01-f6a5f153919f
# ╟─3ae783ce-d06e-4cc2-b8a3-94512e8f1490
# ╠═13e7da81-8581-4f32-9fdb-2599dd36a12c
# ╟─4870b1f3-3134-4ddc-a59d-fa806b456a23
# ╠═fda6171c-9675-4f2e-b226-7ccf100529cd
# ╟─a862f8a3-0131-4644-bc90-246bf3120790
# ╠═d6564250-f646-40de-9463-a956af1a5b1d
# ╟─eee3ac4b-4ddb-4699-b6e6-f0ffcc562c07
# ╠═107aec28-ecb5-4007-95e5-25d0a7f0c465
# ╟─1394e4c6-c371-47c0-8ca8-f0830d63d8ec
# ╠═535716e6-9c1c-4324-a4cd-b1214df3c01d
# ╟─b8edfb4e-6780-4ce7-94c1-4073ff7fa832
# ╠═b8320f78-323c-49a9-a9f9-2748d19ecb35
# ╟─92737d73-676c-4c96-a321-831ecaf37690
# ╠═931a9c5f-8f91-4e88-956b-50c0efc9c58b
# ╟─b5b96082-efde-464f-bcd4-f2e0a84befcd
# ╠═7658a32c-d3da-4ec9-9d96-0d30bb18f08c
# ╟─e61981d5-5448-45e9-81dc-320ac87ba813
# ╠═31e1bb51-c531-4c4a-8634-5caafb7e9e51
# ╠═b0b81da4-6788-45c4-b618-188a02b5e09c
# ╟─47c205c3-ceae-4e12-9ade-753df1608deb
# ╟─4cef9cea-1e84-42b9-bff6-b9a8b3bfe8da
# ╟─826693ff-9a9b-46b1-aeb3-767a5e6f9441
# ╟─d231842d-9b7a-4711-b71b-5d54041ebc1f
# ╟─53cedd26-3742-4c23-a8b8-8a1f2bdfa135
# ╟─889f837d-2e26-4261-b276-5fd91efdda6a
# ╟─670a01e3-82f8-4c7f-8577-852081d91ed7
# ╠═fce1e3e0-cdf7-453f-b913-964c10fa85a6
# ╟─69a92ac6-833c-4605-b3d0-9400e4572886
# ╠═542a9ef5-d9ee-49bd-9d31-61e28b80b5cb
# ╟─8bada25c-b586-42b4-851d-232ccca8a456
# ╠═7600c6dc-769e-4c77-8526-281a1bcec079
# ╠═29dbc47b-3697-4fdf-8f34-890ab4d0cdae
# ╟─0ee7fc18-f41f-4179-a75e-1e1d56b2db29
# ╟─e5b557d7-0952-4409-ae4c-a0c8ce736e03
# ╟─0d0374ed-5150-40e6-b5a4-9a344b6ca47a
# ╠═d2f4d622-8e35-4be3-b421-39b28a748cab
# ╟─f7cf613e-be9d-4f62-a778-cc4375eb99df
# ╟─5be87c6f-5c31-4d14-a8cb-4e63ef39d538
# ╟─0c07edd3-c0a1-4f72-a16a-74badb7a6123
# ╠═4fc5ef4d-e072-41f7-aef9-b42730c8313c
# ╟─19c5cc9d-8304-4e36-a3ea-a1151f28f71d
# ╠═7dcadd85-2986-4e42-aa84-67128a8f666d
# ╟─0b5c6ede-bceb-499a-a9a8-3c6a75ed340a
# ╠═91b5eac1-4799-4a72-ac6a-e2b117b787d5
# ╟─0f86ab3c-29aa-472b-8194-228c736ee940
# ╠═0b8a2292-c0d6-44e4-b560-32d9d579a008
# ╟─d6585cca-78bf-41d1-aea3-01d9831d76cb
# ╠═1b7b7d48-79d2-4317-9045-5b7e7bd073e5
# ╟─3f9dad58-294c-405c-bfc4-67855bb1e825
# ╟─30d2f39e-5df2-4f38-8032-e5f8492ba335
# ╟─6d61b58f-b88f-48f4-8bdd-0bb1a8bc1c82
# ╟─76b8695e-64dc-44bc-8938-ce22c4a9e4d0
# ╟─372637ff-9305-4d45-bf6e-e6531dadbd14
# ╟─3b2c08a6-b27e-49be-a0b0-e5cb3d5546e0
# ╠═f049ab19-7ecf-4c65-bf6d-21352c1fe767
# ╟─7280e368-c68a-48a5-91fe-93c76607c144
# ╠═755fae26-6db9-45a0-a60d-d0e9c063f8aa
# ╟─9a8d8012-ba54-4d9b-8c4c-fe6358508f2a
# ╠═ffbeae5f-8aec-4473-a446-5b73bd911733
# ╟─3738e40f-9596-469d-aa58-a4b28d8a22f8
# ╠═5f1054b8-2337-43c1-a086-26233e95d42b
# ╠═bd719619-bdd4-4c3c-8d66-1df0f210c595
# ╟─f289955b-0239-4b8d-ba08-2edf0a7284c2
# ╠═878ab5f7-28c1-4832-9c58-cb36b360766f
# ╠═a0dcd888-059d-4abe-bb6b-958d2879101c
# ╟─2634feff-7442-4d8f-b8e5-c11113136980
# ╟─b1c5b7e5-cfbf-4d93-bd79-2924d957ae14
# ╠═cd1102ac-1500-4d79-be83-72ac9180c7ce
# ╠═f21604f4-e4f7-4d43-b3d9-32f429df443e
# ╠═10826a95-16f8-416d-b8c1-0ef3347c9b20
# ╟─c46a4f97-78e4-42fd-82b3-4dc6ce99abac
# ╠═7c433791-a653-4836-91e2-084355c01d90
# ╠═410b9da4-7848-4385-bffc-a3d9bd03cf19
# ╟─c08fff28-520e-40af-951c-fe3c324f67e0
# ╟─eb0f9080-2523-4633-be21-3a2281a1629e
# ╠═357c6621-b2b8-4f30-ba41-ffc1ae6f031b
# ╟─e3cc3c77-71ad-4006-8e27-fabaa1ae9cfb
# ╠═58eb5b4b-76ad-4f7a-b86b-0494a857dca1
# ╟─574047fa-6626-4cd0-8317-32118129711e
# ╟─739c9a8a-13a5-4a33-a441-f5bc6cb35e82
# ╟─4e059cb8-6dac-450d-9f46-b3e657d9c3cf
# ╟─5ff9c89a-d999-4af2-8e7e-fb99d4948c36
# ╠═0f2f55f6-060b-475e-bef7-eaa99da4d99f
# ╠═415ad590-247b-4a5d-b21e-7af4d0c17493
# ╟─53c2e16e-b7f5-4df2-96f4-08402b5f8979
# ╠═16cdbc18-e846-4d0a-b7e6-87f07c0c52d9
# ╟─79169f89-fedc-466b-8170-fff99b98e147
# ╠═224336e2-522c-44af-b9a1-307e2ffff0f9
# ╟─06526edf-911a-4ecc-a350-6d932ca56cd5
# ╟─b5e258cd-5542-4a4c-ae0f-91c2fee426db
# ╠═c48210e0-1a04-4f84-a4e2-f6b5d34a603d
# ╟─b0dc1c2b-82b7-488d-8074-1ef9f59a15e5
# ╠═0471b987-f987-4656-b961-285e32d0a5e1
# ╟─97b8b15b-75c7-4321-999d-b067ed2a04f9
# ╟─d9f254dc-ae4a-40b3-b682-f8a501e10a2d
# ╟─591e6a9c-444c-471f-a56b-4dfbc9111989
# ╟─1f265576-824a-4764-a738-685554068079
# ╠═339487cd-8ee8-4d1d-984b-b4c5ff00bae3
# ╟─9cb29b01-7f49-4145-96d8-c8fd971fe1c8
# ╟─ac52a71b-1138-4f1b-99c3-c174d9f09187
# ╟─1e099e1f-6494-419b-8517-5bded3e18aa6
# ╟─10c86547-d4f4-4c3f-8906-ac18ce93f3b6
# ╟─2871aca3-e6b4-4a2d-868a-36562e9a274c
# ╟─2a2e9155-1c77-46fd-8502-8431573f94d0
# ╠═7c792b6b-b6ee-4e30-88d5-d0b8064f2734
# ╟─b557a646-8c3c-4dc7-8788-bf98aec8c5c0
# ╠═febe8c06-b3aa-4db1-a3ea-fdc2a81bdebd
# ╟─260d5753-6cc2-4137-8a2c-8d8a47585ecf
# ╠═a9981931-4cc9-4d16-a6d2-34b4071a84d7
# ╟─b4154fb7-e0b0-4211-8490-8a8fe47cd2da
# ╠═8ac7b1bf-c958-4eb5-8376-f802b372e796
# ╟─b5008faf-fd43-45dd-a5a1-7f51e0b4ede5
# ╠═a756dd18-fac6-4527-944e-c16d8cc4bf95
# ╠═555d1f62-b95b-4377-a8e2-9e442ee7526d
# ╠═f5510c1e-9b9f-49f0-bc7e-0fd8e79a5760
# ╠═7f556f7c-cdb0-4f91-a359-2f933bbc5b68
# ╠═5d9a40b5-4050-47d2-9855-e9b62d56e8df
# ╠═0fc843d2-ac4f-4717-a298-92a476223112
# ╠═fc7f665b-00d9-431b-a97e-d2ff7253221a
# ╠═aadf6e48-0cbf-4973-86a1-173b6648d1df
# ╠═452e1ea7-98be-4910-ba6b-c0881fb251b2
# ╟─00000000-0000-0000-0000-000000000001
# ╟─00000000-0000-0000-0000-000000000002
| [
21017,
317,
32217,
13,
20362,
20922,
44386,
198,
2,
410,
15,
13,
1433,
13,
15,
198,
198,
3500,
2940,
2902,
198,
3500,
21365,
18274,
4487,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
257,
6469,
69,
1828,
68,
19,
12,
69,
2327,
65,
12,
40652,
64,
12,
65,
40271,
12,
16,
67,
487,
43284,
1828,
68,
2598,
198,
3500,
36125,
3163,
20477,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
288,
3682,
69,
23,
3682,
67,
12,
21,
66,
17,
64,
12,
1821,
9945,
12,
65,
15,
66,
19,
12,
68,
24,
2623,
25707,
64,
24,
68,
22,
66,
198,
3500,
25187,
4102,
33637,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
7388,
65,
20,
66,
23,
1507,
12,
64,
47338,
12,
2920,
2670,
12,
23,
2920,
68,
12,
16,
46395,
30863,
69,
5066,
67,
198,
3500,
24291,
902,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
288,
2996,
2414,
9031,
12,
69,
27720,
12,
1821,
2934,
12,
24,
38380,
12,
64,
50148,
1878,
16,
64,
20,
65,
16,
67,
198,
3500,
19530,
28813,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
288,
17,
69,
19,
67,
21,
1828,
12,
23,
68,
2327,
12,
19,
1350,
18,
12,
65,
46636,
12,
2670,
65,
2078,
64,
48246,
66,
397,
198,
3500,
12440,
8053,
13912,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
277,
15,
2920,
397,
1129,
12,
22,
721,
69,
12,
19,
66,
2996,
12,
19881,
21,
67,
12,
26427,
4309,
66,
16,
5036,
32059,
198,
3500,
12549,
47,
322,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
767,
66,
48156,
65,
21,
65,
12,
65,
21,
1453,
12,
19,
68,
1270,
12,
3459,
67,
20,
12,
67,
15,
65,
1795,
2414,
69,
1983,
2682,
198,
27471,
198,
220,
220,
220,
1262,
1345,
1747,
198,
220,
220,
220,
7110,
62,
10331,
796,
366,
34556,
12495,
1,
198,
220,
220,
220,
4277,
7,
198,
220,
220,
220,
220,
220,
220,
220,
10369,
17989,
28,
29487,
62,
10331,
11,
198,
220,
220,
220,
220,
220,
220,
220,
9493,
413,
5649,
28,
17,
11,
5346,
10992,
28,
25,
3524,
11,
6167,
28,
25,
23108,
11,
10706,
28,
9562,
11,
198,
220,
220,
220,
220,
220,
220,
220,
2546,
16193,
7029,
11,
7029,
8,
198,
220,
220,
220,
1267,
220,
220,
220,
220,
198,
437,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
730,
1350,
23,
66,
3312,
12,
65,
18,
7252,
12,
19,
9945,
16,
12,
64,
18,
18213,
12,
16344,
66,
17,
64,
6659,
65,
11275,
67,
198,
3500,
12578,
69,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
257,
38219,
1860,
1507,
12,
38942,
21,
12,
2231,
1983,
12,
24,
2598,
68,
12,
66,
1433,
67,
23,
535,
19,
19881,
3865,
198,
27471,
198,
220,
220,
220,
1262,
32217,
10080,
198,
220,
220,
220,
8655,
5189,
15842,
3419,
198,
437,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
257,
5774,
69,
324,
2780,
12,
4790,
66,
16,
12,
19,
64,
2919,
12,
64,
21,
69,
16,
12,
64,
3609,
38314,
65,
18,
66,
21,
16072,
198,
9132,
37811,
198,
2,
3184,
4712,
16175,
127,
113,
274,
390,
636,
8836,
3129,
292,
795,
22300,
198,
198,
3123,
28092,
3981,
8836,
710,
89,
198,
198,
6310,
270,
9390,
390,
2264,
8836,
76,
3970,
532,
26986,
312,
671,
390,
5425,
24252,
357,
4944,
2149,
23518,
8,
198,
198,
58,
4023,
1378,
76,
18,
70,
13,
25011,
76,
13,
46903,
696,
13,
1671,
16151,
4023,
1378,
76,
18,
70,
13,
25011,
76,
13,
46903,
696,
13,
1671,
8,
532,
220,
198,
58,
5450,
1378,
12567,
13,
785,
14,
76,
18,
70,
16151,
5450,
1378,
12567,
13,
785,
14,
76,
18,
70,
8,
198,
198,
37811,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
1596,
1828,
1983,
66,
17,
12,
65,
1983,
64,
12,
1821,
9945,
12,
6420,
69,
19,
12,
3865,
2791,
66,
17,
69,
21,
12993,
4309,
198,
9132,
37811,
198,
2,
1874,
43712,
198,
198,
12,
11703,
418,
390,
334,
2611,
985,
4712,
16175,
28749,
390,
636,
8836,
3129,
292,
198,
12,
15193,
3691,
13,
334,
2611,
20280,
363,
368,
552,
346,
4763,
7292,
66,
1538,
357,
21926,
2596,
8,
198,
12,
5905,
273,
25440,
267,
1097,
6557,
353,
2429,
2634,
1173,
78,
288,
292,
1257,
16175,
127,
113,
274,
198,
12,
3184,
4712,
16175,
127,
113,
274,
288,
361,
14226,
979,
6557,
303,
271,
304,
257,
3137,
68,
390,
1582,
22940,
4164,
4951,
198,
12,
8554,
2685,
8341,
198,
12,
471,
2611,
3494,
64,
16175,
28749,
374,
6557,
79,
3755,
304,
2429,
2634,
30997,
288,
292,
269,
2634,
75,
25283,
26106,
38768,
198,
12,
317,
1556,
10366,
2634,
70,
544,
466,
6400,
43132,
198,
12,
15193,
3691,
13,
399,
28075,
198,
12,
1892,
292,
198,
198,
37811,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
604,
65,
34137,
12993,
21,
12,
2780,
3459,
12,
19,
69,
3023,
12,
65,
18,
16344,
12,
24,
34251,
2078,
1828,
65,
15,
66,
15,
198,
9132,
37811,
198,
2,
29589,
521,
78,
267,
8171,
78,
390,
636,
8836,
3129,
64,
198,
198,
7469,
259,
557,
16785,
11,
795,
5144,
8836,
79,
952,
11,
23781,
985,
2374,
1569,
13165,
795,
23781,
1658,
8957,
16175,
78,
8406,
16198,
11,
401,
6349,
268,
38768,
4600,
87,
63,
304,
4600,
88,
44646,
220,
440,
279,
5957,
1055,
6557,
2730,
17305,
401,
257,
257,
10456,
64,
466,
23503,
1258,
4600,
45442,
3163,
20477,
47671,
8358,
329,
710,
344,
334,
2611,
7071,
11282,
68,
31215,
43577,
8171,
78,
390,
5553,
6557,
626,
11,
304,
424,
64,
610,
270,
76,
25125,
3970,
13,
317,
1556,
81,
315,
5330,
12385,
1066,
10205,
7496,
390,
20202,
2850,
2244,
274,
45443,
418,
38251,
4686,
25792,
429,
3970,
28141,
421,
10304,
390,
2603,
380,
12271,
4600,
45,
12906,
44,
47671,
319,
2934,
4600,
45,
63,
38251,
257,
5391,
641,
28749,
466,
1658,
8957,
16175,
78,
357,
36129,
72,
362,
35,
8,
304,
4600,
44,
63,
38251,
267,
299,
21356,
647,
78,
390,
45443,
418,
13,
22300,
38251,
366,
28665,
12,
22478,
1600,
920,
28749,
43577,
38251,
267,
1296,
5549,
285,
15152,
304,
69,
11373,
68,
31215,
43577,
8171,
78,
390,
269,
6557,
75,
3129,
78,
13,
220,
198,
37811,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
807,
66,
30272,
1453,
19,
12,
23,
66,
3324,
12,
44103,
64,
12,
65,
1350,
65,
12,
24,
68,
20,
3609,
1731,
25270,
4304,
198,
7249,
38692,
17,
35,
90,
51,
92,
1279,
25,
7663,
38469,
90,
17,
11,
51,
92,
198,
220,
220,
220,
2124,
3712,
51,
198,
220,
220,
220,
331,
3712,
51,
198,
437,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
257,
15,
2934,
486,
65,
20,
12,
40393,
64,
12,
2780,
66,
15,
12,
23,
67,
5333,
12,
1065,
65,
2999,
64,
20,
69,
20,
1983,
68,
198,
9132,
37811,
198,
47,
273,
7292,
72,
25792,
10782,
544,
11,
2730,
557,
16785,
334,
2611,
1257,
16175,
28749,
985,
2374,
8358,
1005,
1211,
64,
23781,
1569,
13165,
257,
1616,
10205,
27250,
11,
198,
67,
4533,
267,
16654,
78,
390,
6349,
268,
38768,
748,
68,
73,
4533,
25,
198,
37811,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
642,
2624,
1765,
18,
15630,
12,
2816,
1828,
12,
19,
28978,
12,
28485,
20,
12,
20,
29211,
721,
42444,
17,
66,
22,
198,
9132,
37811,
198,
32,
78,
2730,
343,
257,
1257,
16175,
28749,
936,
8083,
11,
16667,
321,
418,
267,
18912,
312,
4533,
390,
3671,
260,
332,
23781,
269,
10205,
12894,
78,
2429,
2634,
1173,
78,
31215,
267,
8171,
78,
390,
1401,
29690,
626,
304,
5391,
641,
28749,
11,
390,
1296,
64,
8358,
299,
28749,
3718,
271,
321,
418,
34087,
343,
1556,
64,
1257,
16175,
28749,
285,
15152,
256,
45093,
11,
627,
25440,
1103,
528,
1670,
418,
985,
4712,
16175,
127,
113,
274,
401,
288,
361,
9100,
274,
8171,
78,
390,
1556,
81,
315,
5330,
390,
9955,
418,
13,
220,
198,
37811,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
30736,
20,
69,
22,
34137,
12,
18,
17896,
18,
12,
2857,
64,
22,
12,
324,
19,
64,
12,
1270,
69,
5607,
16072,
1415,
67,
1157,
198,
9132,
37811,
198,
2235,
1114,
50041,
920,
260,
23781,
1582,
390,
636,
8836,
3129,
292,
198,
198,
818,
6652,
434,
68,
11,
257,
1257,
16175,
28749,
390,
19647,
544,
1055,
6557,
23781,
1787,
268,
2413,
424,
1015,
11,
8358,
38251,
6632,
795,
1233,
22940,
77,
979,
292,
285,
1872,
2850,
8358,
23781,
2179,
952,
390,
12794,
68,
11,
304,
269,
411,
344,
15094,
81,
1512,
3263,
68,
31215,
1233,
22940,
77,
979,
292,
1450,
2850,
8358,
43577,
2179,
952,
13,
198,
198,
4653,
720,
67,
796,
8614,
59,
35138,
90,
88,
92,
12,
59,
35138,
90,
87,
92,
15886,
3,
38251,
267,
285,
10205,
67,
43348,
12379,
12379,
1426,
72,
16175,
28749,
48993,
12151,
288,
292,
7043,
292,
636,
8836,
3129,
292,
11,
2169,
418,
267,
1787,
268,
2413,
25,
198,
198,
13702,
84,
38016,
35138,
90,
87,
5512,
59,
35138,
90,
88,
5512,
66,
47505,
198,
59,
27471,
90,
33964,
92,
198,
7,
67,
12,
66,
8,
61,
17,
1222,
59,
5239,
26224,
90,
325,
92,
1222,
288,
59,
293,
80,
269,
26867,
198,
15,
1222,
3467,
5239,
26224,
90,
325,
92,
1222,
288,
1875,
269,
26867,
198,
59,
437,
90,
33964,
92,
13702,
198,
198,
1845,
64,
267,
4140,
257,
329,
50041,
38251,
25,
198,
198,
13702,
59,
35138,
90,
69,
62,
87,
92,
38016,
35138,
90,
87,
5512,
59,
35138,
90,
88,
5512,
66,
47505,
198,
59,
27471,
90,
33964,
92,
198,
17,
7,
67,
12,
66,
19415,
31944,
90,
38016,
35138,
90,
88,
92,
12,
59,
35138,
90,
87,
30072,
18477,
67,
92,
1222,
59,
5239,
26224,
90,
325,
92,
1222,
288,
59,
293,
80,
269,
26867,
198,
59,
35138,
90,
15,
92,
1222,
3467,
5239,
26224,
90,
325,
92,
1222,
288,
1875,
269,
26867,
198,
59,
437,
90,
33964,
92,
13702,
198,
68,
198,
13702,
59,
35138,
90,
69,
62,
88,
92,
796,
532,
59,
35138,
90,
69,
62,
87,
92,
13702,
13,
628,
198,
37811,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
450,
18,
487,
2481,
65,
12,
19881,
6469,
12,
19,
67,
23,
66,
12,
397,
67,
16,
12,
66,
28857,
1507,
50148,
276,
23,
198,
9132,
37811,
198,
46,
23503,
1258,
14841,
81,
28749,
4600,
14993,
451,
2348,
469,
46784,
63,
390,
22300,
329,
710,
344,
334,
2611,
1257,
16175,
28749,
4600,
27237,
47671,
304,
299,
28749,
289,
6557,
374,
1031,
28749,
1582,
299,
28749,
514,
6557,
12,
5031,
357,
391,
6814,
8358,
334,
2611,
1646,
28749,
10107,
38251,
985,
2374,
390,
3671,
260,
332,
304,
1059,
29690,
2854,
2092,
2599,
198,
37811,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
767,
64,
16,
9945,
28567,
12,
65,
7012,
24,
12,
3559,
1828,
12,
24,
21855,
19,
12,
64,
21,
67,
22,
65,
22,
65,
1860,
1899,
67,
198,
11748,
44800,
2348,
29230,
25,
2593,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
36624,
2920,
891,
3023,
12,
2919,
67,
23,
12,
3682,
11848,
12,
24,
17279,
12,
24,
9945,
2414,
68,
23195,
64,
4349,
198,
9132,
37811,
198,
1722,
1257,
16175,
127,
113,
274,
390,
19647,
544,
304,
329,
50041,
264,
28749,
985,
2374,
390,
920,
2194,
25,
198,
37811,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
288,
405,
68,
3980,
69,
17,
12,
24,
67,
18,
64,
12,
19,
1860,
18,
12,
1795,
1765,
12,
18,
1264,
14822,
2670,
65,
4846,
198,
9132,
37811,
198,
36,
11,
31215,
267,
6124,
78,
555,
312,
16198,
11,
401,
23781,
2179,
952,
390,
12794,
68,
2730,
17305,
11,
1055,
6557,
25,
198,
37811,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
275,
20,
66,
2931,
10210,
18,
12,
1899,
5066,
12,
19,
64,
2623,
12,
4846,
10210,
12,
17,
67,
12762,
7252,
1157,
65,
6469,
198,
9979,
45616,
796,
642,
13,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
8541,
1129,
65,
34125,
12,
68,
5332,
65,
12,
2231,
5999,
12,
65,
21844,
12,
64,
4521,
1415,
67,
19,
65,
1954,
4790,
198,
9132,
37811,
198,
32,
1257,
16175,
28749,
8358,
5204,
64,
257,
329,
50041,
523,
4679,
267,
5166,
390,
636,
8836,
3129,
292,
1162,
11751,
6557,
390,
1296,
64,
5347,
25792,
77,
6413,
523,
4679,
284,
37427,
28686,
279,
3565,
390,
636,
8836,
3129,
292,
299,
28749,
12,
260,
6449,
312,
418,
13,
317,
1257,
16175,
28749,
4600,
27087,
0,
63,
410,
1872,
1407,
527,
28686,
1582,
22940,
4164,
4951,
2418,
6557,
380,
418,
11,
390,
1296,
64,
8358,
24573,
567,
16785,
953,
811,
283,
257,
1257,
16175,
28749,
285,
15152,
256,
45093,
13,
220,
198,
198,
35,
298,
305,
12379,
1257,
16175,
28749,
4600,
27087,
0,
47671,
257,
1257,
16175,
28749,
4600,
3174,
62,
24874,
63,
410,
1872,
1407,
527,
627,
47756,
1582,
22940,
4164,
4951,
25,
28686,
6184,
255,
358,
1063,
288,
292,
636,
8836,
3129,
292,
304,
424,
292,
1426,
72,
16175,
127,
113,
274,
13,
569,
321,
418,
514,
283,
28686,
6184,
255,
358,
1063,
285,
15152,
256,
45093,
13,
220,
198,
37811,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
1478,
3901,
1129,
324,
12,
397,
3459,
12,
19,
20986,
12,
49287,
64,
12,
69,
17,
16072,
1731,
2414,
64,
23,
2548,
198,
9132,
37811,
198,
53,
321,
418,
269,
380,
283,
435,
44265,
45443,
418,
31215,
1193,
291,
283,
401,
78,
257,
1257,
16175,
28749,
390,
303,
1055,
442,
321,
4763,
13,
198,
37811,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
49427,
24,
68,
19,
32148,
12,
1959,
2919,
12,
1821,
891,
12,
65,
40652,
12,
21,
65,
42875,
7568,
3980,
12993,
19,
198,
9132,
37811,
198,
32,
1257,
16175,
28749,
4600,
3174,
62,
24874,
63,
1055,
6557,
1208,
4763,
31215,
257,
1257,
16175,
28749,
8358,
5204,
64,
355,
329,
16175,
292,
12385,
1296,
64,
390,
334,
2611,
1635,
17966,
9,
357,
12543,
16175,
28749,
390,
730,
354,
3263,
78,
33924,
8358,
410,
1872,
3144,
333,
283,
267,
1188,
273,
466,
2179,
952,
390,
12794,
68,
13,
317,
1635,
17966,
9,
256,
4131,
2634,
76,
9943,
578,
8358,
8856,
16785,
28686,
6184,
255,
358,
1063,
288,
292,
636,
8836,
3129,
292,
11,
8358,
264,
28749,
1582,
22940,
4164,
4951,
1658,
525,
22484,
279,
10304,
3494,
64,
16175,
28749,
1788,
64,
12379,
1257,
16175,
28749,
18794,
305,
390,
4600,
27087,
0,
44646,
20139,
21433,
78,
25,
198,
37811,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
5534,
22,
10210,
21,
64,
23,
12,
49517,
67,
12,
19,
721,
20,
12,
65,
3132,
69,
12,
22,
69,
16,
69,
1120,
3324,
2414,
69,
17,
198,
9132,
37811,
198,
46,
1059,
344,
7058,
4578,
78,
390,
4600,
27087,
0,
63,
38251,
257,
1635,
17966,
25666,
8358,
279,
1098,
1055,
300,
3755,
401,
78,
25,
198,
18059,
38251,
334,
2611,
1257,
16175,
28749,
8358,
11,
9955,
418,
4600,
7,
72,
11,
73,
11,
87,
11,
88,
8,
63,
1005,
1211,
64,
267,
1188,
273,
390,
4600,
69,
158,
224,
241,
7,
87,
11,
88,
11,
8968,
2364,
8,
44646,
7232,
28749,
11,
1288,
64,
38251,
6414,
68,
401,
257,
442,
321,
4763,
1788,
64,
390,
4600,
69,
158,
224,
241,
63,
795,
4600,
27087,
0,
47671,
304,
366,
27144,
5330,
1,
20789,
565,
4629,
625,
28104,
267,
1582,
22940,
4164,
305,
512,
291,
1538,
4600,
8968,
2364,
63,
8358,
38251,
1038,
263,
17305,
16176,
78,
269,
6557,
75,
3129,
78,
13,
220,
198,
37811,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
275,
20,
22136,
1860,
20,
12,
16,
69,
3510,
12,
2598,
2718,
12,
24,
1959,
65,
12,
891,
67,
3104,
26007,
65,
1065,
65,
198,
9132,
37811,
198,
2,
6416,
528,
25440,
334,
2611,
985,
4712,
16175,
28749,
390,
636,
8836,
3129,
292,
198,
198,
10262,
5799,
11,
288,
4763,
257,
1257,
16175,
28749,
8358,
5204,
64,
355,
329,
16175,
292,
11,
24573,
368,
418,
1103,
528,
283,
334,
2611,
985,
4712,
16175,
28749,
390,
636,
8836,
3129,
292,
13,
569,
321,
418,
514,
283,
23781,
435,
7053,
270,
5908,
985,
2374,
390,
4132,
430,
16175,
28749,
390,
412,
18173,
25,
198,
198,
16,
13,
2199,
10440,
355,
329,
16175,
292,
645,
28691,
720,
83,
3,
9955,
292,
355,
1426,
72,
16175,
127,
113,
274,
720,
87,
3,
25,
198,
3,
69,
7,
83,
8,
796,
277,
7,
87,
8,
3,
198,
198,
17,
13,
1629,
723,
528,
283,
355,
1426,
72,
16175,
127,
113,
274,
357,
385,
25440,
720,
64,
796,
277,
14,
76,
3,
2599,
198,
3,
87,
7,
83,
1343,
288,
83,
8,
796,
2124,
7,
83,
8,
1343,
410,
7,
83,
8,
28664,
1343,
257,
7,
83,
8,
28664,
61,
17,
14,
17,
3,
198,
198,
18,
13,
1629,
723,
528,
283,
355,
11555,
420,
312,
2367,
25,
198,
3,
85,
7,
83,
10,
28664,
8,
796,
410,
7,
83,
8,
1343,
257,
7,
83,
8,
28664,
3,
198,
198,
19,
13,
4709,
18870,
257,
78,
1208,
78,
352,
13,
198,
198,
2235,
440,
269,
10205,
12894,
78,
8358,
1103,
23638,
1556,
64,
985,
4712,
16175,
28749,
38251,
985,
2374,
25,
198,
37811,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
36649,
20,
17896,
24137,
12,
1415,
6420,
12,
1157,
721,
12,
16,
66,
3609,
12,
67,
4349,
66,
6052,
10210,
32759,
66,
198,
8818,
45243,
7,
198,
220,
220,
220,
2124,
15,
3712,
38469,
90,
51,
5512,
198,
220,
220,
220,
410,
15,
3712,
38469,
90,
51,
5512,
198,
220,
220,
220,
2347,
11,
28664,
11,
77,
20214,
11,
271,
1015,
11,
27087,
0,
198,
8,
810,
309,
198,
220,
220,
220,
2124,
796,
4866,
7,
87,
15,
8,
198,
220,
220,
220,
410,
796,
4866,
7,
85,
15,
8,
198,
220,
220,
220,
257,
796,
2092,
7,
87,
15,
8,
198,
220,
220,
220,
277,
796,
2092,
7,
87,
15,
8,
198,
220,
220,
220,
22942,
796,
685,
4866,
7,
87,
15,
8,
2361,
1303,
481,
3650,
262,
22942,
198,
220,
220,
220,
329,
2239,
287,
352,
25,
77,
20214,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
3082,
1133,
3386,
198,
220,
220,
220,
220,
220,
220,
220,
3386,
0,
7,
69,
11,
87,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
29805,
602,
198,
220,
220,
220,
220,
220,
220,
220,
2488,
13,
257,
796,
277,
1220,
2347,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
10133,
6116,
198,
220,
220,
220,
220,
220,
220,
220,
2488,
13,
2124,
796,
2124,
1343,
410,
9,
28664,
1343,
257,
9,
28664,
61,
17,
14,
17,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
10133,
11555,
420,
871,
198,
220,
220,
220,
220,
220,
220,
220,
2488,
13,
410,
796,
410,
1343,
257,
9,
28664,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
12793,
611,
2672,
198,
220,
220,
220,
220,
220,
220,
220,
611,
953,
7,
9662,
11,
271,
1015,
8,
6624,
657,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
44872,
7203,
50,
9586,
22942,
379,
2239,
25,
33172,
9662,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4574,
0,
7,
9535,
752,
652,
11,
30073,
7,
87,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
886,
198,
220,
220,
220,
886,
198,
220,
220,
220,
1441,
22942,
198,
437,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
642,
5824,
7012,
16,
67,
21,
12,
17,
67,
3609,
12,
19,
69,
1238,
12,
3865,
3510,
12,
69,
4309,
38942,
1558,
66,
17,
69,
15,
198,
9132,
37811,
198,
32,
78,
514,
283,
23781,
8171,
78,
390,
5553,
6557,
626,
5772,
25125,
1173,
78,
357,
72,
13,
304,
13,
4600,
38469,
90,
51,
92,
63,
8,
308,
4741,
320,
418,
8358,
256,
567,
16785,
23781,
1931,
305,
384,
355,
1426,
72,
16175,
127,
113,
274,
304,
11555,
420,
312,
2367,
299,
28749,
1184,
84,
368,
267,
18842,
5908,
8171,
78,
390,
5002,
78,
13,
220,
198,
198,
32,
407,
64,
16175,
28749,
4600,
31,
13,
63,
38251,
285,
5013,
78,
401,
388,
795,
22300,
11,
304,
2216,
64,
8358,
1556,
321,
418,
277,
1031,
31110,
23781,
269,
6557,
75,
3129,
78,
5002,
78,
16964,
5002,
78,
11,
3758,
78,
2471,
268,
292,
334,
2611,
407,
64,
16175,
28749,
16001,
64,
31215,
23607,
13,
220,
198,
37811,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
7930,
66,
22,
67,
39277,
12,
22,
68,
2713,
12,
3510,
1485,
12,
5705,
68,
23,
12,
17,
64,
1821,
5036,
1821,
17896,
18,
67,
198,
9132,
37811,
198,
2235,
569,
321,
418,
15299,
283,
257,
985,
4712,
16175,
28749,
0,
198,
37811,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
304,
22,
1558,
64,
23,
67,
24,
12,
535,
21855,
12,
19,
69,
4531,
12,
65,
17,
64,
17,
12,
69,
25707,
69,
15711,
65,
2780,
67,
198,
9132,
37811,
198,
32,
421,
72,
27602,
321,
418,
23781,
11644,
403,
1462,
31341,
265,
10205,
27250,
390,
1426,
72,
16175,
127,
113,
274,
304,
11555,
420,
312,
2367,
11,
304,
410,
321,
418,
514,
283,
2347,
292,
45329,
6413,
271,
257,
4600,
16,
13,
15,
63,
31215,
284,
67,
292,
355,
636,
8836,
3129,
292,
13,
220,
198,
37811,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
304,
397,
22,
65,
22186,
12,
2414,
67,
20,
12,
2231,
5774,
12,
23,
39925,
12,
2780,
64,
45758,
397,
2931,
16,
65,
198,
9132,
37811,
198,
2235,
4021,
25440,
1779,
72,
16175,
127,
113,
274,
583,
72,
10205,
67,
44645,
390,
542,
46447,
198,
198,
45,
793,
292,
636,
8836,
3129,
292,
985,
2374,
434,
68,
1193,
375,
368,
11,
474,
6557,
8358,
355,
11555,
420,
312,
2367,
287,
33577,
271,
1931,
321,
31341,
265,
10205,
380,
292,
304,
355,
636,
8836,
3129,
292,
264,
10205,
987,
363,
368,
16964,
1787,
29634,
271,
1128,
5753,
452,
418,
13,
220,
198,
198,
41565,
368,
418,
909,
353,
334,
2611,
16278,
22940,
76,
3970,
285,
15152,
493,
68,
601,
12427,
384,
951,
420,
1670,
418,
1779,
72,
16175,
127,
113,
274,
583,
72,
10205,
67,
44645,
390,
542,
46447,
13,
2547,
64,
318,
568,
11,
410,
321,
418,
953,
811,
283,
257,
1296,
64,
390,
2386,
10440,
355,
329,
16175,
292,
13,
220,
198,
37811,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
4974,
17896,
4761,
17896,
12,
2780,
2414,
12,
2857,
66,
15,
12,
65,
43916,
12,
24839,
69,
3134,
68,
22,
44705,
18,
198,
9132,
37811,
198,
2235,
39440,
641,
285,
39588,
320,
292,
220,
198,
198,
32,
1257,
16175,
28749,
257,
384,
5162,
343,
8160,
401,
78,
257,
3590,
368,
285,
39588,
8083,
48993,
12151,
390,
7043,
292,
636,
8836,
3129,
292,
11,
390,
936,
585,
78,
401,
355,
1779,
72,
16175,
127,
113,
274,
583,
72,
10205,
67,
44645,
390,
542,
46447,
11,
279,
1098,
1055,
909,
83,
3755,
357,
64,
27296,
16175,
28749,
384,
442,
1689,
1635,
37150,
9,
795,
5347,
75,
25792,
82,
828,
31215,
334,
2611,
1275,
844,
64,
269,
21356,
65,
3970,
390,
300,
4533,
4600,
1589,
63,
25,
220,
198,
37811,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
7816,
67,
24,
19881,
18,
65,
12,
32583,
66,
12,
11785,
18,
12,
65,
22337,
12,
24,
48768,
65,
31380,
487,
22,
68,
198,
9132,
37811,
198,
40,
301,
78,
9943,
578,
8358,
2386,
23172,
16785,
257,
329,
50041,
514,
25440,
25,
198,
37811,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
657,
64,
20,
32568,
1453,
12,
66,
3459,
64,
12,
19,
65,
535,
12,
22260,
17,
12,
32883,
69,
2078,
68,
24,
68,
3023,
67,
198,
9132,
37811,
198,
45,
793,
1275,
844,
64,
1059,
6557,
300,
4533,
4600,
3064,
63,
25,
198,
37811,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
275,
17,
64,
19,
64,
31654,
12,
2857,
487,
12,
1821,
11848,
12,
24,
64,
21,
67,
12,
64,
2919,
67,
6420,
66,
20,
2624,
1558,
198,
9979,
1735,
796,
1802,
13,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
277,
66,
487,
3388,
4790,
12,
30206,
64,
12,
1821,
16072,
12,
64,
47448,
12,
69,
45191,
1828,
2791,
27800,
64,
198,
9132,
37811,
198,
47,
3301,
3121,
283,
257,
985,
4712,
16175,
28749,
401,
355,
645,
11017,
329,
16175,
292,
583,
72,
10205,
67,
44645,
11,
514,
533,
16785,
257,
18842,
2611,
1257,
16175,
28749,
4600,
9132,
47671,
2471,
268,
292,
3758,
78,
2418,
6557,
27250,
1208,
283,
257,
645,
6862,
1257,
16175,
28749,
4600,
69,
158,
224,
241,
63,
12385,
2730,
72,
16175,
28749,
390,
334,
2611,
1635,
17966,
47026,
220,
198,
37811,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
22613,
3134,
487,
67,
12,
66,
2934,
20,
12,
3559,
69,
23,
12,
5999,
2079,
12,
486,
22172,
1453,
1959,
65,
4790,
198,
9132,
37811,
198,
37280,
1062,
282,
258,
5981,
68,
38251,
8358,
257,
1257,
16175,
28749,
4600,
69,
158,
224,
241,
63,
2169,
267,
18842,
5908,
299,
462,
13,
955,
78,
1288,
64,
1407,
1350,
267,
1582,
22940,
4164,
305,
4600,
1589,
63,
8358,
299,
28749,
1556,
6557,
1944,
68,
12385,
6994,
8704,
2730,
72,
16175,
28749,
12379,
1257,
16175,
28749,
11,
267,
285,
21356,
18250,
489,
78,
12,
8906,
79,
43703,
390,
22300,
384,
2207,
283,
2301,
283,
6557,
390,
3671,
349,
372,
267,
285,
25125,
24313,
1162,
1186,
78,
13,
220,
198,
37811,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
269,
2857,
4089,
24294,
12,
2934,
2425,
12,
19,
65,
3270,
12,
23,
1350,
22,
12,
69,
22,
12993,
13348,
1485,
2414,
67,
198,
9132,
37811,
198,
32,
78,
277,
19178,
257,
2355,
64,
16175,
28749,
12379,
1291,
31173,
10205,
7496,
11,
1556,
321,
418,
551,
10396,
85,
31110,
355,
6349,
268,
38768,
25221,
1779,
72,
16175,
127,
113,
274,
583,
72,
10205,
67,
44645,
20789,
29988,
2105,
9,
2599,
220,
198,
37811,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
2534,
21855,
15,
21734,
12,
67,
19,
13331,
12,
2857,
65,
24,
12,
330,
3132,
12,
12501,
69,
1983,
3132,
66,
15630,
16,
198,
9132,
37811,
198,
2235,
15193,
198,
37811,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
807,
68,
1954,
64,
18,
18213,
12,
1270,
2670,
12,
19,
64,
20,
69,
12,
65,
2718,
69,
12,
66,
2857,
8784,
20,
2670,
2548,
68,
198,
9132,
37811,
198,
32,
583,
1640,
34684,
590,
795,
22300,
279,
1098,
1055,
1117,
3755,
401,
257,
15021,
4600,
31,
2435,
63,
267,
84,
401,
355,
34749,
466,
23503,
1258,
4600,
44199,
4102,
33637,
44646,
317,
552,
10102,
16175,
28749,
288,
292,
1257,
16175,
127,
113,
274,
267,
10215,
260,
627,
25440,
23781,
285,
25125,
24313,
38251,
442,
321,
4533,
279,
10304,
6994,
8704,
1569,
89,
11,
304,
4600,
44199,
4102,
33637,
63,
410,
1872,
11353,
3263,
68,
1715,
756,
283,
267,
28691,
390,
552,
10102,
16175,
28749,
304,
277,
19178,
334,
2611,
716,
455,
22562,
368,
1556,
265,
2569,
3263,
68,
285,
15152,
5981,
68,
13,
198,
37811,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
362,
64,
18,
68,
22,
28676,
12,
5066,
324,
12,
2857,
5333,
12,
3077,
64,
12,
344,
66,
1507,
65,
6420,
69,
2079,
66,
198,
9132,
37811,
198,
37280,
28691,
12379,
2760,
368,
390,
4600,
2167,
907,
63,
304,
435,
11216,
16175,
127,
113,
274,
390,
4600,
2167,
4106,
33,
63,
299,
28749,
279,
533,
344,
76,
20073,
11,
12422,
256,
4131,
2634,
76,
299,
28749,
2216,
321,
299,
4763,
7010,
324,
3263,
68,
13,
440,
493,
68,
601,
12427,
38251,
8358,
43577,
269,
10205,
12894,
78,
38251,
2092,
795,
2854,
257,
269,
10205,
12894,
418,
795,
20280,
363,
641,
552,
346,
38768,
7292,
66,
295,
15152,
11,
401,
78,
267,
6401,
2596,
11,
401,
78,
749,
430,
685,
29872,
18335,
16151,
5450,
1378,
12567,
13,
785,
14,
76,
18,
70,
14,
1238,
2481,
62,
21926,
2596,
3103,
14,
21048,
14,
12417,
14,
26968,
4102,
62,
14259,
62,
3319,
2596,
737,
220,
198,
198,
37811,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
5125,
65,
16,
69,
36676,
12,
24,
1959,
64,
12,
19,
23721,
12,
330,
67,
24,
12,
35916,
32576,
22,
65,
45839,
66,
198,
9132,
37811,
198,
2,
5905,
273,
25440,
3494,
64,
16175,
127,
113,
274,
2429,
2634,
1173,
292,
198,
198,
2235,
6882,
25440,
334,
2611,
985,
4712,
16175,
28749,
795,
513,
35,
198,
198,
45,
28749,
3718,
271,
321,
418,
277,
19178,
285,
5013,
78,
31215,
15299,
283,
257,
985,
4712,
16175,
28749,
795,
491,
25792,
82,
5391,
641,
127,
113,
274,
13,
311,
10205,
38251,
2418,
6557,
27250,
2730,
343,
299,
793,
418,
20202,
2850,
795,
513,
35,
25,
198,
37811,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
2608,
67,
20,
66,
21,
68,
24,
12,
64,
24,
3070,
12,
2857,
5892,
12,
64,
15,
68,
15,
12,
12501,
16,
64,
17,
68,
4521,
64,
486,
198,
7249,
38692,
18,
35,
90,
51,
92,
1279,
25,
7663,
38469,
90,
18,
11,
51,
92,
198,
220,
220,
220,
2124,
3712,
51,
198,
220,
220,
220,
331,
3712,
51,
198,
220,
220,
220,
1976,
3712,
51,
198,
437,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
362,
64,
891,
1983,
17457,
12,
2934,
64,
21,
12,
19,
64,
6052,
12,
24,
67,
15,
69,
12,
65,
24,
21626,
66,
24,
1860,
17,
10210,
198,
9132,
37811,
198,
5377,
318,
1462,
11,
24573,
368,
418,
15299,
283,
299,
793,
64,
985,
4712,
16175,
28749,
795,
513,
35,
25,
198,
37811,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
275,
21,
17896,
65,
24,
64,
18,
12,
3270,
68,
18,
12,
19,
68,
3609,
12,
6052,
2079,
12,
21855,
2998,
17,
66,
32869,
69,
16,
64,
198,
9132,
37811,
198,
2235,
8772,
8126,
16175,
28749,
3557,
6557,
83,
3970,
390,
1931,
4951,
220,
198,
198,
15633,
7509,
334,
2611,
985,
4712,
16175,
28749,
401,
5391,
641,
28749,
5553,
6557,
626,
299,
28749,
38251,
257,
257,
489,
3970,
16175,
28749,
285,
15152,
493,
68,
601,
12427,
36945,
257,
285,
15152,
6184,
118,
47163,
12379,
1430,
64,
16175,
28749,
2429,
2634,
30997,
13,
17437,
368,
418,
11,
16964,
21433,
78,
11,
8928,
283,
28686,
1931,
4951,
25221,
1426,
72,
16175,
127,
113,
274,
288,
292,
636,
8836,
3129,
292,
11,
2730,
521,
78,
23781,
8171,
78,
390,
636,
8836,
3129,
64,
8358,
1097,
2301,
64,
762,
14031,
256,
14723,
257,
1426,
72,
16175,
28749,
401,
78,
424,
64,
753,
263,
660,
4496,
936,
388,
377,
4763,
13,
220,
198,
198,
37280,
613,
421,
23397,
21433,
78,
390,
401,
78,
318,
1462,
279,
1098,
1055,
2730,
17305,
1055,
6557,
749,
81,
4533,
14839,
72,
13,
5537,
7058,
11,
269,
380,
321,
418,
23781,
8171,
78,
390,
5553,
6557,
626,
8358,
542,
2634,
76,
256,
14723,
257,
1426,
72,
16175,
28749,
401,
78,
424,
64,
753,
263,
660,
4496,
25,
198,
37811,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
304,
19,
37680,
22172,
12,
16,
11848,
17,
12,
19,
67,
19,
64,
12,
330,
24,
67,
12,
324,
66,
1795,
28324,
67,
2998,
67,
198,
7249,
2011,
47384,
434,
90,
51,
92,
198,
220,
220,
220,
2124,
3712,
51,
198,
220,
220,
220,
37455,
87,
3712,
51,
198,
437,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
642,
67,
31010,
33319,
12,
20,
48564,
12,
2857,
1795,
12,
4089,
18,
68,
12,
24,
2999,
69,
9945,
4531,
68,
1878,
17,
198,
9132,
37811,
198,
53,
321,
418,
2730,
343,
334,
2611,
1296,
64,
2183,
528,
4763,
390,
3671,
260,
332,
1556,
64,
5553,
6557,
626,
12385,
256,
10304,
11,
31215,
8358,
277,
2350,
285,
15152,
5351,
5350,
25,
198,
37811,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
304,
24,
32128,
64,
19,
65,
12,
18,
67,
1899,
12,
3682,
1765,
12,
23,
48564,
12,
10210,
17,
65,
344,
66,
1485,
5036,
23,
198,
14881,
13,
12860,
7,
952,
3712,
9399,
11,
76,
3712,
3666,
47384,
434,
8,
796,
44872,
7,
952,
553,
29568,
76,
13,
87,
8,
6354,
29568,
76,
13,
138,
242,
87,
8,
4943,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
269,
20,
66,
1860,
4869,
69,
12,
20,
9395,
12,
40149,
69,
12,
24,
21261,
12,
66,
1485,
69,
486,
64,
1415,
67,
15,
65,
198,
76,
796,
2011,
47384,
434,
7,
16,
13,
15,
11,
15,
13,
16,
8,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
257,
15,
44821,
64,
16,
69,
12,
1899,
64,
21,
12,
2231,
65,
20,
12,
49503,
68,
12,
42548,
66,
2920,
64,
24,
69,
15,
2920,
198,
9132,
37811,
198,
10262,
5799,
11,
2730,
320,
418,
257,
610,
270,
76,
25125,
3970,
2570,
4763,
257,
1556,
64,
5553,
6557,
626,
13,
20139,
21433,
78,
11,
257,
3870,
64,
390,
7043,
292,
5553,
6557,
303,
271,
466,
8171,
78,
4600,
3666,
5308,
292,
333,
434,
63,
3870,
64,
355,
753,
263,
660,
89,
292,
13,
11066,
257,
850,
9535,
16175,
28749,
1619,
292,
256,
4131,
2634,
76,
3870,
64,
355,
753,
263,
660,
89,
292,
13,
1081,
503,
8847,
753,
263,
660,
89,
292,
264,
28749,
8928,
38768,
14174,
434,
68,
11,
390,
936,
585,
78,
401,
257,
6994,
8704,
16124,
4763,
12379,
27296,
16175,
28749,
48993,
452,
3263,
68,
257,
418,
1188,
2850,
288,
292,
5553,
6557,
303,
271,
25,
198,
37811,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
604,
68,
22,
69,
23,
9945,
19,
12,
65,
20,
535,
12,
19,
64,
18,
68,
12,
24,
13331,
22,
12,
68,
5237,
67,
23,
69,
17,
64,
2623,
330,
198,
27471,
198,
220,
220,
220,
1330,
7308,
25,
532,
11,
1343,
11,
1635,
11,
1220,
11,
10563,
11,
19862,
17034,
198,
220,
220,
220,
1343,
7,
76,
16,
3712,
3666,
47384,
434,
11,
76,
17,
3712,
3666,
47384,
434,
8,
796,
2011,
47384,
434,
7,
76,
16,
13,
87,
10,
76,
17,
13,
87,
11,
76,
16,
13,
138,
242,
87,
10,
76,
17,
13,
138,
242,
87,
8,
198,
220,
220,
220,
532,
7,
76,
16,
3712,
3666,
47384,
434,
11,
76,
17,
3712,
3666,
47384,
434,
8,
796,
2011,
47384,
434,
7,
76,
16,
13,
87,
12,
76,
17,
13,
87,
11,
76,
16,
13,
138,
242,
87,
10,
76,
17,
13,
138,
242,
87,
8,
198,
220,
220,
220,
1635,
7,
17394,
11,
76,
3712,
3666,
47384,
434,
8,
796,
2011,
47384,
434,
7,
17394,
9,
76,
13,
87,
11,
12683,
7,
17394,
27493,
17394,
9,
76,
13,
138,
242,
87,
8,
198,
220,
220,
220,
1635,
7,
76,
3712,
3666,
47384,
434,
11,
17394,
8,
796,
26367,
9,
76,
198,
220,
220,
220,
1220,
7,
76,
3712,
3666,
47384,
434,
11,
17394,
8,
796,
800,
7,
17394,
27493,
76,
198,
220,
220,
220,
19862,
17034,
7,
76,
3712,
3666,
47384,
434,
90,
51,
30072,
810,
309,
796,
2011,
47384,
434,
7,
31166,
17034,
7,
76,
13,
87,
828,
16340,
7,
17,
9,
31166,
17034,
7,
76,
13,
87,
4008,
9,
76,
13,
138,
242,
87,
8,
198,
220,
220,
220,
10563,
7,
76,
3712,
3666,
47384,
434,
90,
51,
5512,
77,
8,
810,
309,
796,
2011,
47384,
434,
90,
51,
92,
7,
76,
13,
87,
61,
77,
11,
77,
9,
76,
13,
87,
61,
7,
77,
12,
16,
27493,
76,
13,
138,
242,
87,
8,
198,
437,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
277,
5774,
68,
1821,
2623,
12,
23,
69,
6469,
12,
3901,
66,
22,
12,
3829,
66,
16,
12,
6814,
64,
20,
69,
40179,
33646,
67,
198,
8818,
4738,
62,
4122,
7,
3712,
6030,
90,
12727,
6030,
5512,
9521,
8,
810,
6252,
6030,
220,
198,
220,
220,
220,
5391,
796,
4129,
7,
12727,
6030,
8,
198,
220,
220,
220,
309,
796,
1288,
4906,
7,
12727,
6030,
8,
198,
220,
220,
220,
279,
796,
6252,
6030,
7,
198,
220,
220,
220,
220,
220,
220,
220,
2837,
58,
27471,
60,
1343,
43720,
7,
51,
27493,
7,
9521,
58,
437,
45297,
9521,
58,
27471,
12962,
329,
4808,
287,
352,
25,
27740,
198,
220,
220,
220,
1267,
198,
220,
220,
220,
1441,
279,
198,
437,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
47764,
2091,
65,
17032,
12,
19,
64,
3682,
12,
19,
16945,
12,
19881,
3270,
12,
20,
64,
2996,
1731,
2998,
3829,
12993,
198,
8818,
2568,
7,
87,
3712,
51,
11,
88,
3712,
51,
11,
8968,
2364,
8,
810,
309,
198,
220,
220,
220,
37455,
85,
796,
331,
532,
2124,
198,
220,
220,
220,
288,
796,
2593,
7,
138,
242,
85,
8,
198,
220,
220,
220,
611,
288,
1875,
45616,
198,
220,
220,
220,
220,
220,
220,
220,
2568,
796,
6632,
7,
51,
8,
198,
220,
220,
220,
2073,
198,
220,
220,
220,
220,
220,
220,
220,
2568,
796,
357,
67,
532,
45616,
8,
61,
17,
198,
220,
220,
220,
886,
198,
220,
220,
220,
1441,
2568,
198,
437,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
657,
69,
49803,
2996,
67,
12,
2682,
69,
19,
12,
3510,
276,
12,
24,
1954,
68,
12,
18,
18213,
3132,
66,
21,
9945,
15,
6888,
198,
8818,
277,
158,
224,
241,
7,
87,
3712,
51,
11,
88,
3712,
51,
11,
8968,
2364,
8,
810,
309,
198,
220,
220,
220,
37455,
85,
796,
331,
532,
2124,
198,
220,
220,
220,
288,
796,
2593,
7,
138,
242,
85,
8,
198,
220,
220,
220,
611,
288,
1875,
45616,
198,
220,
220,
220,
220,
220,
220,
220,
277,
158,
224,
241,
796,
6632,
7,
51,
8,
198,
220,
220,
220,
2073,
198,
220,
220,
220,
220,
220,
220,
220,
277,
158,
224,
241,
796,
362,
9,
7,
67,
532,
45616,
27493,
7,
138,
242,
85,
14,
67,
8,
198,
220,
220,
220,
886,
198,
220,
220,
220,
1441,
277,
158,
224,
241,
198,
437,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
277,
44617,
3388,
64,
21,
12,
64,
37466,
12,
3682,
64,
18,
12,
23,
15630,
21,
12,
66,
18638,
67,
19,
12993,
67,
4531,
22,
198,
8818,
3386,
0,
7,
69,
3712,
38469,
90,
51,
5512,
87,
3712,
38469,
90,
51,
5512,
69,
158,
224,
241,
3712,
37,
8,
810,
1391,
51,
11,
37,
92,
198,
220,
220,
220,
6070,
0,
7,
69,
11,
22570,
7,
51,
4008,
198,
220,
220,
220,
299,
796,
4129,
7,
87,
8,
198,
220,
220,
220,
329,
1312,
287,
352,
25,
77,
12,
16,
198,
220,
220,
220,
220,
220,
220,
220,
329,
474,
287,
1312,
10,
16,
25,
77,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
277,
39611,
95,
796,
277,
158,
224,
241,
7,
72,
11,
73,
11,
87,
58,
72,
4357,
87,
58,
73,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
277,
58,
72,
60,
15853,
277,
39611,
95,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
277,
58,
73,
60,
48185,
277,
39611,
95,
198,
220,
220,
220,
220,
220,
220,
220,
886,
198,
220,
220,
220,
886,
198,
220,
220,
220,
1441,
277,
198,
437,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
307,
1765,
2091,
2327,
12,
20,
66,
2920,
12,
2857,
2934,
12,
64,
16,
67,
18,
12,
18,
68,
891,
20,
69,
24,
31714,
69,
16,
198,
8818,
14441,
7,
87,
11,
1589,
8,
198,
220,
220,
220,
2124,
796,
816,
7,
87,
11,
1589,
8,
198,
220,
220,
220,
611,
2124,
18189,
1735,
14,
17,
198,
220,
220,
220,
220,
220,
220,
220,
2124,
48185,
1735,
198,
220,
220,
220,
2073,
361,
2124,
1279,
532,
1589,
14,
17,
198,
220,
220,
220,
220,
220,
220,
220,
2124,
15853,
1735,
198,
220,
220,
220,
886,
198,
220,
220,
220,
1441,
2124,
198,
437,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
7769,
3134,
65,
3829,
67,
12,
330,
3459,
12,
35435,
67,
12,
64,
3553,
64,
12,
22,
66,
2548,
7568,
64,
6469,
18638,
198,
8818,
277,
158,
224,
241,
7,
87,
3712,
51,
11,
88,
3712,
51,
11,
8968,
2364,
11,
1589,
8,
810,
309,
198,
220,
220,
220,
37455,
85,
796,
14441,
12195,
88,
532,
2124,
11,
1735,
8,
198,
220,
220,
220,
288,
796,
2593,
7,
138,
242,
85,
8,
198,
220,
220,
220,
611,
288,
1875,
45616,
198,
220,
220,
220,
220,
220,
220,
220,
277,
158,
224,
241,
796,
6632,
7,
51,
8,
198,
220,
220,
220,
2073,
198,
220,
220,
220,
220,
220,
220,
220,
277,
158,
224,
241,
796,
362,
9,
7,
67,
532,
45616,
27493,
7,
138,
242,
85,
14,
67,
8,
198,
220,
220,
220,
886,
198,
220,
220,
220,
1441,
277,
158,
224,
241,
198,
437,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
4570,
6814,
18,
68,
5892,
12,
830,
66,
12,
19,
67,
19,
65,
12,
24,
397,
69,
12,
19,
10210,
39118,
65,
18,
64,
32182,
198,
9132,
37811,
198,
5377,
1556,
292,
2730,
72,
16175,
127,
113,
274,
11,
24573,
368,
418,
257,
519,
430,
1515,
283,
523,
4679,
1556,
292,
5553,
6557,
303,
271,
466,
8171,
78,
4600,
3666,
47384,
434,
63,
8928,
25440,
355,
753,
263,
660,
89,
292,
11353,
3263,
68,
25,
198,
37811,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
4317,
1765,
17,
68,
15,
64,
12,
64,
20,
66,
23,
12,
2920,
2425,
12,
23,
69,
21,
66,
12,
3365,
3829,
2327,
1350,
64,
1959,
66,
198,
31166,
17034,
19510,
17,
9,
7,
76,
1343,
604,
9,
76,
8,
61,
17,
14,
18,
4008,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
275,
19,
27720,
64,
1959,
12,
18,
891,
67,
12,
19,
17457,
16,
12,
65,
487,
66,
12,
2327,
2425,
38605,
2934,
24,
2718,
198,
9132,
37811,
198,
36,
24573,
368,
418,
256,
4131,
2634,
76,
2730,
343,
20202,
2850,
362,
35,
357,
280,
513,
35,
8,
401,
1188,
2850,
304,
753,
263,
660,
89,
292,
11,
5026,
1055,
2418,
6557,
27250,
953,
811,
283,
299,
793,
64,
2730,
72,
16175,
28749,
390,
20202,
2850,
25,
198,
37811,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
288,
34159,
3559,
66,
15,
12,
16072,
1795,
12,
29703,
69,
12,
5999,
66,
20,
12,
2231,
2078,
68,
47106,
44169,
64,
198,
87,
796,
38692,
17,
35,
7,
3666,
47384,
434,
7,
16,
13,
15,
11,
15,
13,
16,
828,
3666,
47384,
434,
7,
17,
13,
15,
11,
15,
13,
17,
4008,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
9661,
29059,
26912,
12,
3270,
1821,
12,
2780,
2078,
12,
64,
23,
69,
16,
12,
24,
66,
24,
13331,
34155,
42548,
67,
198,
9132,
37811,
198,
1722,
27296,
16175,
127,
113,
274,
523,
4679,
1556,
274,
20202,
2850,
11,
556,
5799,
11,
8928,
321,
355,
753,
263,
660,
89,
292,
256,
4131,
2634,
76,
25,
198,
37811,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
28947,
69,
23753,
68,
12,
18,
5036,
23,
12,
3510,
2481,
12,
3609,
15,
65,
12,
65,
20,
1453,
2548,
67,
17,
1453,
4531,
198,
17,
9,
87,
764,
10,
19862,
17034,
12195,
87,
8,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
807,
2075,
4761,
1238,
64,
12,
69,
3312,
68,
12,
2857,
5333,
12,
65,
26717,
12,
405,
69,
23,
7012,
2598,
68,
19,
65,
16,
198,
9132,
37811,
198,
6836,
79,
32452,
355,
753,
263,
660,
89,
292,
795,
269,
268,
6557,
380,
418,
285,
15152,
308,
8607,
271,
1038,
263,
257,
2730,
72,
16175,
28749,
390,
503,
8847,
842,
8847,
390,
1172,
430,
16175,
28749,
357,
2934,
4587,
12151,
16175,
28749,
737,
27378,
18842,
5908,
28691,
11,
627,
567,
16785,
2074,
283,
257,
10895,
64,
16175,
28749,
920,
260,
355,
5553,
6557,
303,
271,
11,
267,
8358,
277,
1031,
288,
292,
842,
8847,
2632,
8126,
16175,
28749,
285,
15152,
2299,
291,
38768,
304,
1097,
292,
2653,
330,
1538,
434,
68,
13,
220,
198,
198,
42493,
528,
434,
68,
11,
435,
44265,
23503,
6421,
329,
321,
269,
21244,
418,
31215,
277,
19178,
1556,
64,
2632,
8126,
16175,
28749,
390,
1931,
4951,
795,
6124,
418,
308,
8607,
271,
13,
11446,
72,
11,
514,
533,
16785,
267,
23503,
1258,
4600,
47384,
902,
63,
25,
220,
198,
37811,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
2906,
48894,
20219,
12,
26115,
64,
12,
39997,
68,
12,
42802,
69,
12,
3459,
21777,
45791,
66,
2713,
68,
198,
9132,
37811,
198,
21017,
8554,
4600,
47384,
902,
63,
198,
37811,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
807,
68,
1959,
3070,
1350,
12,
2920,
2425,
12,
19,
68,
1415,
12,
5705,
276,
12,
21,
68,
49517,
69,
2857,
5036,
2857,
198,
9132,
37811,
198,
5842,
25440,
4600,
47384,
902,
63,
299,
28749,
3718,
271,
321,
418,
953,
811,
283,
299,
4763,
43630,
299,
793,
418,
269,
10205,
12894,
418,
281,
353,
72,
2850,
13,
317,
3617,
292,
3718,
271,
321,
418,
34087,
259,
343,
267,
542,
68,
21356,
4598,
390,
299,
793,
292,
1426,
72,
16175,
127,
113,
274,
304,
11555,
420,
312,
2367,
11,
8358,
556,
273,
321,
1097,
2301,
283,
28749,
355,
753,
263,
660,
89,
292,
390,
269,
4763,
6349,
268,
4763,
25,
198,
37811,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
45959,
69,
3132,
11848,
12,
6659,
67,
20,
12,
33459,
65,
12,
65,
32531,
12,
19,
16344,
19,
68,
18,
69,
19,
397,
1983,
198,
9132,
37811,
198,
53,
321,
418,
34087,
259,
343,
2471,
268,
292,
267,
8358,
1051,
69,
3970,
27602,
283,
6349,
268,
38768,
287,
33577,
271,
31341,
265,
10205,
380,
292,
11,
556,
5799,
401,
753,
263,
660,
89,
292,
25,
198,
37811,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
8870,
32531,
66,
17457,
12,
3695,
66,
21,
12,
19,
24409,
12,
4521,
1795,
12,
66,
35273,
66,
23,
66,
2718,
39761,
198,
8818,
4738,
62,
4122,
7,
3712,
6030,
90,
53,
721,
17,
35,
90,
47384,
434,
90,
51,
11709,
5512,
9521,
11,
138,
242,
8,
810,
309,
220,
220,
220,
220,
198,
220,
220,
220,
279,
796,
38692,
17,
35,
7,
198,
220,
220,
220,
220,
220,
220,
220,
2837,
58,
27471,
60,
1343,
43720,
7,
51,
27493,
7,
9521,
58,
437,
45297,
9521,
58,
27471,
12962,
6354,
43720,
3419,
9,
138,
242,
11,
198,
220,
220,
220,
220,
220,
220,
220,
2837,
58,
27471,
60,
1343,
43720,
7,
51,
27493,
7,
9521,
58,
437,
45297,
9521,
58,
27471,
12962,
6354,
43720,
3419,
9,
138,
242,
198,
220,
220,
220,
1267,
198,
220,
220,
220,
1441,
279,
198,
437,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
44552,
330,
20,
64,
19,
12,
66,
5824,
68,
12,
3682,
21101,
12,
64,
2919,
20,
12,
486,
4089,
65,
1959,
66,
22,
68,
4309,
198,
87,
15,
796,
685,
4738,
62,
4122,
7,
53,
721,
17,
35,
90,
43879,
2414,
5512,
7,
15,
11,
3064,
4008,
329,
4808,
287,
352,
25,
3064,
60,
220,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
288,
1954,
65,
19,
64,
5892,
12,
47838,
68,
12,
19,
276,
22,
12,
17457,
3510,
12,
23,
64,
18,
66,
3270,
27970,
44821,
198,
69,
796,
2092,
7,
87,
15,
8,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
304,
21,
68,
1959,
67,
16,
68,
12,
24,
64,
6052,
12,
2920,
9945,
12,
64,
31128,
12,
21,
65,
2791,
69,
15,
15630,
2682,
2091,
198,
27087,
0,
7,
198,
220,
220,
220,
277,
11,
198,
220,
220,
220,
2124,
15,
11,
220,
198,
220,
220,
220,
357,
72,
11,
73,
11,
87,
11,
88,
8,
4613,
277,
158,
224,
241,
7,
87,
11,
88,
11,
8968,
2364,
8,
1303,
16512,
198,
8,
220,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
29414,
20,
64,
19,
69,
18,
12,
1507,
3682,
12,
19,
2934,
17,
12,
24,
2996,
68,
12,
67,
27696,
66,
3312,
66,
4051,
66,
22,
198,
9535,
752,
652,
796,
45243,
19510,
198,
220,
220,
220,
2124,
15,
796,
685,
25120,
62,
4122,
7,
53,
721,
17,
35,
90,
43879,
2414,
5512,
32590,
1120,
11,
1120,
4008,
329,
4808,
287,
352,
25,
3064,
16589,
220,
198,
220,
220,
220,
410,
15,
796,
685,
25120,
62,
4122,
7,
53,
721,
17,
35,
90,
43879,
2414,
5512,
32590,
16,
11,
16,
4008,
329,
4808,
287,
352,
25,
3064,
16589,
220,
198,
220,
220,
220,
2347,
796,
685,
352,
13,
15,
329,
4808,
287,
352,
25,
3064,
16589,
198,
220,
220,
220,
288,
83,
796,
657,
13,
16,
11,
198,
220,
220,
220,
299,
20214,
796,
8576,
11,
198,
220,
220,
220,
318,
1015,
796,
838,
11,
198,
220,
220,
220,
3386,
0,
796,
357,
69,
11,
87,
8,
4613,
3386,
0,
7,
69,
11,
87,
11,
357,
72,
11,
73,
11,
79,
16,
11,
79,
17,
8,
4613,
277,
158,
224,
241,
7,
79,
16,
11,
79,
17,
11,
8968,
2364,
4008,
198,
8,
23029,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
860,
5332,
65,
19,
487,
65,
12,
3720,
2414,
12,
19,
65,
1120,
12,
23,
66,
17,
69,
12,
68,
20,
69,
2231,
69,
2327,
44688,
198,
9535,
752,
652,
62,
41007,
291,
796,
45243,
19510,
198,
220,
220,
220,
2124,
15,
796,
685,
25120,
62,
4122,
7,
53,
721,
17,
35,
90,
43879,
2414,
5512,
32590,
1120,
11,
1120,
4008,
329,
4808,
287,
352,
25,
3064,
16589,
220,
198,
220,
220,
220,
410,
15,
796,
685,
25120,
62,
4122,
7,
53,
721,
17,
35,
90,
43879,
2414,
5512,
32590,
16,
11,
16,
4008,
329,
4808,
287,
352,
25,
3064,
16589,
220,
198,
220,
220,
220,
2347,
796,
685,
838,
13,
15,
329,
4808,
287,
352,
25,
3064,
16589,
198,
220,
220,
220,
288,
83,
796,
657,
13,
16,
11,
198,
220,
220,
220,
299,
20214,
796,
8576,
11,
198,
220,
220,
220,
318,
1015,
796,
838,
11,
198,
220,
220,
220,
3386,
0,
796,
357,
69,
11,
87,
8,
4613,
3386,
0,
7,
69,
11,
87,
11,
7,
72,
11,
73,
11,
79,
16,
11,
79,
17,
8,
4613,
277,
158,
224,
241,
7,
79,
16,
11,
79,
17,
11,
8968,
2364,
11,
1589,
4008,
198,
8,
23029,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
352,
324,
21844,
65,
20,
12,
1238,
65,
17,
12,
35890,
65,
12,
65,
17,
7252,
12,
5892,
69,
48555,
65,
16,
67,
45151,
198,
31,
26968,
4102,
45243,
16763,
7,
198,
220,
220,
220,
2124,
15,
796,
685,
25120,
62,
4122,
7,
53,
721,
17,
35,
90,
43879,
2414,
5512,
12,
1120,
25,
1120,
8,
329,
4808,
287,
352,
25,
3064,
16589,
220,
198,
220,
220,
220,
410,
15,
796,
685,
25120,
62,
4122,
7,
53,
721,
17,
35,
90,
43879,
2414,
5512,
12,
16,
25,
16,
8,
329,
4808,
287,
352,
25,
3064,
16589,
220,
198,
220,
220,
220,
2347,
796,
685,
352,
13,
15,
329,
4808,
287,
352,
25,
3064,
16589,
198,
220,
220,
220,
288,
83,
796,
657,
13,
16,
11,
198,
220,
220,
220,
299,
20214,
796,
8576,
11,
198,
220,
220,
220,
318,
1015,
796,
838,
11,
198,
220,
220,
220,
3386,
0,
796,
357,
69,
11,
87,
8,
4613,
3386,
0,
7,
69,
11,
87,
11,
357,
72,
11,
73,
11,
79,
16,
11,
79,
17,
8,
4613,
277,
158,
224,
241,
7,
79,
16,
11,
79,
17,
11,
8968,
2364,
11,
1589,
4008,
198,
8,
23029,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
8870,
3510,
1453,
17,
67,
12,
65,
5237,
67,
12,
19,
66,
22,
64,
12,
23,
23628,
12,
7012,
5774,
65,
18,
66,
16,
44705,
19,
198,
9535,
752,
652,
62,
41007,
291,
62,
18,
35,
796,
45243,
19510,
198,
220,
220,
220,
2124,
15,
796,
685,
25120,
62,
4122,
7,
53,
721,
18,
35,
90,
43879,
2414,
5512,
12,
1120,
25,
1120,
8,
329,
4808,
287,
352,
25,
3064,
16589,
220,
198,
220,
220,
220,
410,
15,
796,
685,
25120,
62,
4122,
7,
53,
721,
18,
35,
90,
43879,
2414,
5512,
12,
16,
25,
16,
8,
329,
4808,
287,
352,
25,
3064,
16589,
220,
198,
220,
220,
220,
2347,
796,
685,
352,
13,
15,
329,
4808,
287,
352,
25,
3064,
16589,
198,
220,
220,
220,
288,
83,
796,
657,
13,
16,
11,
198,
220,
220,
220,
299,
20214,
796,
8576,
11,
198,
220,
220,
220,
318,
1015,
796,
838,
11,
198,
220,
220,
220,
3386,
0,
796,
357,
69,
11,
87,
8,
4613,
3386,
0,
7,
69,
11,
87,
11,
7,
72,
11,
73,
11,
79,
16,
11,
79,
17,
8,
4613,
277,
158,
224,
241,
7,
79,
16,
11,
79,
17,
11,
8968,
2364,
11,
1589,
4008,
198,
8,
23029,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
604,
68,
5607,
69,
1731,
66,
12,
66,
24693,
12,
19,
17657,
12,
15630,
3553,
12,
68,
19,
68,
3459,
66,
23,
21855,
23,
67,
17,
198,
9132,
37811,
198,
13828,
18616,
4738,
2173,
6872,
281,
4238,
13479,
356,
5447,
25,
198,
37811,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
275,
3132,
6814,
3829,
67,
12,
22,
20986,
12,
3682,
2934,
12,
65,
1507,
67,
12,
44928,
5705,
2001,
18213,
3070,
198,
25120,
62,
4122,
7,
53,
721,
17,
35,
90,
47384,
434,
90,
43879,
2414,
92,
5512,
32590,
1120,
11,
1120,
828,
16,
68,
12,
20,
8,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
642,
69,
2718,
31102,
65,
12,
487,
67,
24,
12,
2780,
3324,
12,
64,
3695,
66,
12,
64,
47325,
65,
25674,
1129,
1129,
198,
9132,
37811,
198,
35,
38768,
1556,
292,
645,
11017,
6349,
268,
38768,
304,
11555,
420,
312,
2367,
11,
267,
18842,
5908,
269,
10205,
12894,
78,
390,
985,
4712,
16175,
28749,
24573,
1658,
263,
514,
4533,
11,
12422,
556,
5799,
8928,
25440,
355,
753,
263,
660,
89,
292,
11353,
3263,
68,
25,
220,
198,
37811,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
352,
67,
21,
2308,
16344,
12,
67,
30273,
12,
2231,
3553,
12,
24,
12993,
17,
12,
15197,
69,
23,
21855,
22,
65,
4761,
64,
198,
9132,
37811,
198,
32,
1291,
31173,
10205,
7496,
11,
10212,
78,
11,
38251,
257,
18842,
2611,
357,
41194,
27206,
8358,
5204,
321,
418,
1450,
418,
1208,
418,
11,
16964,
4188,
8928,
283,
28686,
1931,
4951,
38251,
1097,
78,
2653,
330,
1538,
434,
68,
2599,
198,
37811,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
269,
11245,
64,
5333,
67,
12,
64,
47101,
12,
19,
67,
22,
65,
12,
5892,
1415,
12,
20,
65,
4309,
7252,
43977,
23045,
198,
9132,
37811,
198,
38224,
2169,
418,
11,
556,
5799,
11,
334,
2611,
3959,
265,
12151,
466,
1931,
305,
390,
269,
4763,
1426,
72,
16175,
28749,
11,
8928,
4533,
257,
78,
890,
78,
466,
28691,
748,
2934,
257,
753,
263,
660,
4496,
287,
6652,
25221,
1117,
24496,
25,
198,
37811,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
8093,
1765,
37710,
69,
12,
15,
23721,
12,
47101,
64,
12,
15630,
18,
64,
12,
17,
13331,
23,
276,
37309,
2780,
68,
198,
9132,
37811,
198,
21017,
44795,
3681,
78,
5440,
6557,
27250,
198,
198,
22362,
64,
2632,
8126,
16175,
28749,
390,
753,
263,
660,
89,
292,
38251,
899,
64,
626,
434,
68,
285,
15152,
493,
68,
601,
12427,
390,
3326,
795,
23781,
1409,
3681,
78,
5440,
6557,
27250,
25,
198,
37811,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
767,
65,
24,
11848,
15,
16344,
12,
2682,
64,
20,
12,
3682,
68,
16,
12,
15630,
2327,
12,
22,
25191,
34825,
65,
4790,
67,
15,
198,
8818,
29973,
62,
3174,
7,
72,
11,
73,
11,
87,
11,
88,
11,
22208,
8,
198,
220,
220,
220,
402,
796,
657,
13,
830,
36260,
1954,
2548,
1495,
2078,
1303,
20553,
76,
126,
111,
1220,
357,
940,
31185,
46256,
112,
10025,
1528,
31185,
8,
198,
220,
220,
220,
1553,
796,
331,
532,
2124,
198,
220,
220,
220,
374,
796,
2593,
7,
7109,
8,
198,
220,
220,
220,
1441,
402,
9,
22208,
58,
72,
60,
9,
22208,
58,
73,
60,
9,
7109,
14,
81,
61,
18,
198,
437,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
718,
64,
19,
68,
15,
68,
17,
68,
12,
2425,
66,
20,
12,
19,
66,
397,
12,
44183,
67,
12,
18,
67,
21,
65,
5237,
69,
24,
11848,
3312,
198,
9132,
37811,
198,
6425,
8358,
556,
5799,
3718,
271,
321,
418,
23430,
6184,
255,
358,
1063,
288,
292,
636,
8836,
3129,
292,
12385,
1257,
16175,
28749,
11,
16964,
4188,
627,
567,
16785,
1208,
283,
256,
4131,
2634,
76,
257,
4175,
64,
16175,
28749,
523,
4679,
424,
292,
2347,
292,
11,
8358,
264,
28749,
288,
361,
9100,
274,
13,
220,
198,
198,
37280,
11644,
403,
1462,
287,
6652,
390,
1426,
72,
16175,
127,
113,
274,
304,
11555,
420,
312,
2367,
390,
5440,
292,
38251,
435,
2188,
8358,
3718,
271,
321,
418,
909,
353,
685,
23100,
9134,
434,
68,
16151,
5450,
1378,
77,
824,
17896,
13,
14542,
16072,
13,
77,
15462,
13,
9567,
14,
11578,
8527,
14,
22584,
21760,
14,
737,
11446,
72,
11,
257,
1233,
22940,
10782,
544,
1556,
6557,
16957,
324,
795,
720,
940,
61,
21,
3,
10571,
11,
304,
267,
28691,
1556,
6557,
1117,
17305,
795,
2566,
292,
13,
7232,
28749,
11,
257,
11555,
420,
312,
671,
1556,
6557,
1117,
3755,
795,
20553,
76,
16964,
288,
544,
13,
220,
198,
198,
32,
753,
263,
660,
4496,
287,
6652,
25221,
1426,
72,
16175,
127,
113,
274,
1055,
6557,
16667,
4763,
401,
78,
267,
2566,
22940,
4164,
305,
390,
269,
4763,
5440,
64,
13,
21420,
68,
21433,
78,
299,
28749,
3120,
89,
557,
16785,
753,
263,
660,
89,
292,
523,
4679,
355,
11555,
420,
312,
2367,
13,
220,
198,
37811,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
269,
24,
1507,
5237,
1860,
12,
36260,
64,
12,
2857,
1065,
12,
23,
68,
18,
67,
12,
65,
3324,
68,
46556,
10210,
27790,
198,
11578,
1039,
62,
87,
15,
796,
685,
198,
220,
220,
220,
38692,
17,
35,
7,
220,
657,
13,
15,
6354,
220,
352,
13,
2670,
220,
220,
220,
837,
657,
13,
6354,
220,
352,
13,
2670,
220,
220,
220,
10612,
1303,
366,
16012,
1,
198,
220,
220,
220,
38692,
17,
35,
7,
7632,
13,
24,
6354,
220,
604,
13,
23,
3720,
68,
12,
18,
11,
657,
13,
6354,
220,
604,
13,
23,
3720,
68,
12,
18,
828,
1303,
366,
42981,
1601,
1,
198,
220,
220,
220,
38692,
17,
35,
7,
15711,
13,
17,
6354,
1105,
13,
13464,
68,
12,
18,
11,
657,
13,
6354,
1105,
13,
13464,
68,
12,
18,
828,
1303,
366,
37522,
385,
1,
198,
220,
220,
220,
38692,
17,
35,
7,
19442,
13,
21,
6354,
1105,
13,
38219,
68,
12,
18,
11,
657,
13,
6354,
1105,
13,
38219,
68,
12,
18,
828,
1303,
366,
22840,
1,
198,
220,
220,
220,
38692,
17,
35,
7,
24403,
13,
24,
6354,
220,
718,
13,
48156,
68,
12,
18,
11,
657,
13,
6354,
220,
718,
13,
48156,
68,
12,
18,
828,
1303,
366,
43725,
1,
198,
60,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
257,
2919,
67,
21,
68,
21,
67,
12,
1860,
66,
19,
12,
1821,
7252,
12,
65,
22,
66,
19,
12,
6052,
18213,
3070,
1129,
1415,
1314,
198,
11578,
1039,
62,
85,
15,
796,
685,
198,
220,
220,
220,
38692,
17,
35,
7,
15,
13,
6354,
657,
1539,
220,
220,
657,
13,
15,
6354,
657,
12179,
1303,
366,
16012,
1,
198,
220,
220,
220,
38692,
17,
35,
7,
15,
13,
6354,
657,
1539,
220,
604,
13,
940,
6354,
657,
12179,
1303,
366,
42981,
1601,
1,
198,
220,
220,
220,
38692,
17,
35,
7,
15,
13,
6354,
657,
1539,
220,
513,
13,
2999,
6354,
657,
12179,
1303,
366,
37522,
385,
1,
198,
220,
220,
220,
38692,
17,
35,
7,
15,
13,
6354,
657,
1539,
220,
362,
13,
3553,
6354,
657,
12179,
1303,
366,
22840,
1,
198,
220,
220,
220,
38692,
17,
35,
7,
15,
13,
6354,
657,
1539,
220,
362,
13,
2919,
6354,
657,
2014,
220,
1303,
366,
43725,
1,
220,
220,
198,
60,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
257,
32066,
68,
17,
535,
12,
16,
21101,
16,
12,
33032,
64,
12,
49087,
66,
12,
34808,
12993,
16,
22521,
25257,
198,
9132,
37811,
198,
1722,
2347,
292,
1556,
28749,
1117,
24496,
795,
720,
940,
36796,
1731,
92,
3,
14211,
25,
198,
37811,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
7632,
23756,
69,
22,
66,
12,
24,
30057,
12,
19,
17896,
20,
12,
4089,
68,
19,
12,
65,
20809,
64,
1314,
69,
4521,
16072,
198,
9979,
14568,
796,
685,
352,
13,
2079,
68,
21,
11,
657,
13,
26073,
11,
604,
13,
5774,
11,
642,
13,
5607,
11,
657,
13,
41290,
2361,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
657,
2816,
68,
2624,
67,
22,
12,
2998,
18,
66,
12,
1821,
9945,
12,
64,
25674,
12,
15426,
21,
2623,
65,
24,
69,
46302,
198,
9132,
37811,
198,
53,
321,
418,
3326,
28686,
5440,
292,
13066,
25440,
267,
1540,
25,
198,
37811,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
257,
7252,
5607,
344,
19,
12,
64,
20,
487,
12,
19,
32148,
12,
4531,
64,
17,
12,
23,
3559,
344,
68,
17,
68,
20,
65,
21,
67,
198,
9535,
752,
652,
62,
11578,
1039,
796,
45243,
19510,
198,
220,
220,
220,
2124,
15,
796,
14705,
62,
87,
15,
11,
220,
198,
220,
220,
220,
410,
15,
796,
14705,
62,
85,
15,
11,
220,
198,
220,
220,
220,
2347,
796,
14568,
11,
198,
220,
220,
220,
288,
83,
796,
352,
11,
1303,
1528,
198,
220,
220,
220,
299,
20214,
796,
362,
9,
24760,
11,
1303,
734,
3668,
812,
198,
220,
220,
220,
318,
1015,
796,
352,
11,
1303,
3613,
790,
1110,
198,
220,
220,
220,
3386,
0,
796,
357,
69,
11,
87,
8,
4613,
3386,
0,
7,
198,
220,
220,
220,
220,
220,
220,
220,
277,
11,
87,
11,
357,
72,
11,
73,
11,
79,
16,
11,
79,
17,
8,
4613,
29973,
62,
3174,
7,
72,
11,
73,
11,
79,
16,
11,
79,
17,
11,
76,
13978,
8,
198,
220,
220,
220,
1267,
198,
8,
23029,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
860,
2623,
5607,
68,
19,
67,
12,
30803,
65,
12,
2780,
68,
24,
12,
23,
65,
2078,
12,
64,
15,
487,
3365,
31916,
67,
2999,
198,
9132,
37811,
198,
4653,
12776,
25792,
384,
583,
70,
2797,
280,
16964,
4188,
28686,
1931,
4951,
267,
1416,
346,
321,
11,
38251,
16964,
4188,
355,
1291,
31173,
10205,
380,
292,
264,
28749,
583,
72,
10205,
67,
44645,
13,
2264,
25440,
284,
67,
292,
355,
1291,
31173,
10205,
380,
292,
753,
72,
38768,
645,
16654,
78,
390,
1426,
72,
16175,
127,
113,
274,
2570,
4533,
28141,
82,
753,
263,
660,
89,
292,
384,
4630,
89,
321,
11,
257,
1426,
72,
16175,
28749,
38251,
4795,
68,
12379,
1426,
72,
16175,
28749,
287,
6652,
11,
2493,
14723,
257,
753,
263,
660,
4496,
38251,
299,
4712,
13,
2295,
503,
8847,
6340,
615,
8847,
11,
257,
16124,
4763,
12379,
1426,
72,
16175,
28749,
38251,
6632,
795,
1257,
16175,
28749,
12379,
1426,
72,
16175,
28749,
287,
6652,
11,
2493,
14723,
257,
753,
263,
660,
4496,
8928,
4763,
14174,
434,
68,
38251,
299,
4712,
13,
220,
220,
198,
37811,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
269,
3559,
2598,
68,
2414,
12,
7252,
1828,
12,
3559,
2078,
12,
64,
5607,
64,
12,
4869,
68,
2598,
65,
10210,
27693,
69,
198,
9132,
37811,
198,
52,
2611,
763,
9160,
8358,
299,
28749,
1556,
6557,
5351,
5350,
11,
645,
920,
14723,
11,
38251,
8358,
795,
466,
271,
281,
418,
257,
24118,
299,
28749,
1224,
83,
280,
7043,
292,
35891,
84,
16175,
127,
113,
274,
1224,
83,
292,
795,
12445,
78,
466,
4294,
13,
978,
70,
7487,
763,
9160,
1556,
6557,
11454,
4763,
401,
299,
793,
418,
9955,
418,
13,
17437,
368,
418,
7758,
17899,
283,
318,
568,
30,
198,
37811,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
807,
1983,
43444,
21,
69,
12,
5774,
67,
19,
12,
19,
67,
2623,
12,
23,
67,
4531,
12,
69,
18444,
69,
2231,
3865,
16102,
198,
9132,
37811,
198,
2235,
17437,
368,
418,
16124,
283,
256,
12003,
0,
198,
198,
38351,
424,
3866,
437,
21872,
357,
5488,
1450,
418,
31215,
17007,
8,
8358,
299,
793,
64,
985,
4712,
16175,
28749,
38251,
1224,
83,
3263,
68,
288,
361,
14226,
979,
6557,
626,
13,
314,
301,
78,
42517,
288,
7509,
8358,
24573,
368,
418,
257,
3137,
283,
28686,
1582,
22940,
4164,
4951,
12379,
985,
4712,
16175,
28749,
11,
304,
28686,
9955,
418,
11,
514,
25440,
435,
7053,
270,
16785,
390,
267,
16514,
23638,
16175,
28749,
8358,
1038,
567,
76,
16124,
38768,
2037,
8836,
13370,
292,
13,
220,
198,
198,
32,
421,
72,
11,
1658,
431,
3129,
321,
418,
8358,
267,
8358,
1556,
4170,
11454,
4533,
401,
299,
793,
418,
9955,
418,
6980,
257,
1426,
72,
16175,
28749,
287,
6652,
12379,
24118,
13,
1148,
568,
730,
89,
401,
8358,
257,
6184,
111,
81,
2545,
64,
277,
418,
325,
23781,
279,
280,
1073,
285,
15152,
26269,
64,
466,
8358,
390,
332,
544,
1055,
13,
220,
198,
198,
53,
321,
418,
2730,
343,
11,
920,
28749,
11,
334,
2611,
1257,
16175,
28749,
26181,
316,
23593,
8358,
1005,
1211,
64,
267,
748,
17946,
3263,
12379,
24118,
48993,
452,
3263,
68,
257,
424,
64,
1426,
72,
16175,
28749,
287,
6652,
357,
3919,
6994,
7058,
288,
544,
8,
1207,
10924,
390,
362,
281,
418,
13,
32798,
568,
26181,
316,
23593,
38251,
8358,
257,
24118,
2322,
660,
28141,
424,
64,
1426,
72,
16175,
28749,
287,
6652,
13,
220,
198,
37811,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
352,
487,
1821,
3324,
64,
12,
2857,
3682,
12,
19,
66,
20,
68,
12,
64,
23,
67,
21,
12,
66,
3510,
42691,
3388,
64,
47521,
198,
9132,
37811,
198,
26405,
7058,
11,
2730,
320,
418,
334,
2611,
1257,
16175,
28749,
8358,
409,
68,
29822,
334,
2611,
985,
4712,
16175,
28749,
390,
1635,
4598,
271,
281,
418,
9,
12379,
6184,
111,
81,
2545,
64,
12379,
24118,
13,
317,
985,
4712,
16175,
28749,
384,
287,
33577,
401,
334,
2611,
1426,
72,
16175,
28749,
4600,
87,
63,
31215,
257,
24118,
11,
8358,
38251,
23781,
1582,
22940,
4164,
305,
2244,
64,
1257,
16175,
28749,
13,
569,
321,
418,
1055,
18912,
312,
22484,
418,
795,
2730,
343,
284,
67,
292,
355,
6349,
268,
38768,
401,
267,
18842,
5908,
8171,
78,
390,
5553,
6557,
626,
8358,
257,
267,
1582,
22940,
4164,
305,
4600,
87,
63,
390,
24481,
4763,
11,
390,
1296,
64,
8358,
257,
1257,
16175,
28749,
6092,
68,
50041,
2429,
2634,
30997,
304,
28686,
8171,
418,
284,
37427,
6414,
274,
25,
220,
220,
198,
37811,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
604,
64,
2425,
36260,
67,
12,
23,
69,
19,
68,
12,
29703,
69,
12,
23,
65,
486,
12,
69,
21,
64,
20,
69,
1314,
2670,
1129,
69,
198,
8818,
4534,
62,
42594,
7,
87,
3712,
51,
28,
19442,
13,
21,
11,
77,
20214,
28,
17,
9,
2623,
1120,
11,
271,
1015,
28,
1238,
8,
810,
309,
198,
220,
220,
220,
2124,
15,
796,
685,
198,
220,
220,
220,
220,
220,
220,
220,
38692,
17,
35,
7,
6632,
7,
51,
828,
6632,
7,
51,
36911,
1303,
366,
16012,
1,
198,
220,
220,
220,
220,
220,
220,
220,
38692,
17,
35,
7,
220,
220,
220,
220,
220,
220,
2124,
11,
6632,
7,
51,
4008,
220,
1303,
366,
22840,
1,
198,
220,
220,
220,
2361,
198,
220,
220,
220,
410,
15,
796,
685,
220,
198,
220,
220,
220,
220,
220,
220,
220,
38692,
17,
35,
7,
6632,
7,
51,
828,
6632,
7,
51,
36911,
1303,
366,
16012,
1,
198,
220,
220,
220,
220,
220,
220,
220,
38692,
17,
35,
7,
6632,
7,
51,
828,
362,
13,
3553,
9,
505,
7,
51,
36911,
1303,
366,
22840,
1,
198,
220,
220,
220,
2361,
198,
220,
220,
220,
14568,
796,
685,
352,
13,
2079,
68,
21,
11,
642,
13,
5607,
2361,
198,
220,
220,
220,
22942,
796,
45243,
19510,
198,
220,
220,
220,
220,
220,
220,
220,
2124,
15,
796,
2124,
15,
11,
220,
198,
220,
220,
220,
220,
220,
220,
220,
410,
15,
796,
410,
15,
11,
220,
198,
220,
220,
220,
220,
220,
220,
220,
2347,
796,
14568,
11,
198,
220,
220,
220,
220,
220,
220,
220,
288,
83,
796,
657,
13,
16,
11,
1303,
1528,
198,
220,
220,
220,
220,
220,
220,
220,
299,
20214,
796,
299,
20214,
11,
1303,
530,
3668,
614,
198,
220,
220,
220,
220,
220,
220,
220,
318,
1015,
796,
318,
1015,
11,
220,
198,
220,
220,
220,
220,
220,
220,
220,
3386,
0,
796,
357,
69,
11,
87,
8,
4613,
3386,
0,
7,
69,
11,
87,
11,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
357,
72,
11,
73,
11,
79,
16,
11,
79,
17,
8,
4613,
29973,
62,
3174,
7,
72,
11,
73,
11,
79,
16,
11,
79,
17,
11,
76,
13978,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
1267,
23029,
198,
220,
220,
220,
1441,
22942,
198,
437,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
513,
3609,
50165,
344,
12,
67,
3312,
68,
12,
19,
535,
17,
12,
65,
23,
64,
18,
12,
24,
2231,
1065,
68,
23,
69,
1415,
3829,
198,
9132,
37811,
198,
10262,
5799,
11,
2730,
320,
418,
299,
793,
64,
1257,
16175,
28749,
26181,
316,
23593,
11,
8358,
38251,
267,
285,
10205,
67,
43348,
466,
1569,
13165,
288,
361,
14226,
50041,
920,
260,
257,
1426,
72,
16175,
28749,
287,
6652,
304,
257,
1426,
72,
16175,
28749,
2457,
12379,
24118,
357,
421,
567,
16785,
8358,
1288,
64,
2322,
660,
31215,
257,
1426,
72,
16175,
28749,
287,
6652,
2599,
198,
37811,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
1511,
68,
22,
6814,
6659,
12,
23,
48630,
12,
19,
69,
2624,
12,
24,
69,
9945,
12,
1495,
2079,
1860,
2623,
64,
1065,
66,
198,
8818,
4049,
62,
259,
62,
42594,
7,
87,
3712,
51,
28,
19442,
13,
21,
8,
810,
309,
198,
197,
77,
20214,
796,
362,
9,
2623,
1120,
198,
220,
220,
220,
1291,
73,
796,
4534,
62,
42594,
7,
87,
11,
77,
20214,
11,
77,
20214,
8,
1303,
12793,
938,
966,
691,
198,
220,
220,
220,
1441,
2593,
7,
9535,
73,
58,
437,
7131,
17,
45297,
58,
87,
11,
15,
8183,
8,
198,
437,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
4764,
2154,
65,
16,
69,
18,
12,
18,
19880,
12,
19,
1860,
66,
12,
64,
3270,
67,
12,
13331,
37988,
65,
29228,
64,
1954,
198,
9132,
37811,
198,
41565,
368,
418,
3326,
8358,
401,
28686,
299,
793,
418,
9955,
418,
379,
6413,
271,
267,
1255,
4533,
2169,
23781,
1931,
305,
2216,
265,
23593,
25,
198,
37811,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
277,
6814,
21,
27192,
66,
12,
4846,
2425,
12,
19,
69,
17,
68,
12,
65,
24909,
12,
22,
535,
69,
3064,
49721,
10210,
198,
18224,
62,
259,
62,
42594,
3419,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
257,
4521,
17,
69,
23,
64,
18,
12,
486,
3132,
12,
19,
29173,
12,
15630,
3829,
12,
26912,
19881,
27970,
2998,
3829,
198,
9132,
37811,
198,
15681,
2787,
418,
10356,
528,
283,
43577,
1931,
305,
11,
304,
1255,
64,
8358,
299,
793,
64,
985,
4712,
16175,
28749,
38251,
1224,
83,
3263,
68,
288,
361,
14226,
979,
6557,
626,
13,
569,
321,
418,
514,
283,
267,
23503,
1258,
4600,
1890,
5767,
28813,
63,
390,
288,
361,
567,
10782,
544,
16175,
28749,
3557,
6557,
83,
3970,
25,
198,
37811,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
304,
1453,
18,
330,
19,
65,
12,
19,
1860,
65,
12,
3510,
2079,
12,
65,
21,
68,
21,
12,
69,
15,
487,
535,
43918,
66,
2998,
198,
9132,
37811,
198,
36,
4169,
23503,
1258,
279,
1098,
1055,
514,
4533,
5026,
953,
811,
64,
16175,
127,
113,
274,
31215,
42302,
723,
81,
355,
16124,
38768,
466,
1931,
305,
12379,
6184,
111,
81,
2545,
64,
48993,
452,
3263,
68,
28141,
1426,
72,
16175,
28749,
287,
6652,
4600,
87,
63,
12379,
24118,
25,
198,
37811,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
16226,
64,
721,
2078,
12,
721,
65,
20,
12,
7029,
22,
12,
3865,
68,
20,
12,
1495,
67,
15,
64,
22,
69,
15,
66,
42018,
198,
39746,
28813,
13,
1082,
452,
876,
7,
18224,
62,
259,
62,
42594,
11,
19442,
13,
21,
8,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
1511,
5824,
68,
19,
66,
21,
12,
66,
38056,
12,
2857,
66,
15,
12,
23,
6888,
23,
12,
69,
2919,
1270,
67,
5066,
67,
23,
721,
198,
9132,
37811,
198,
47,
3301,
10356,
528,
283,
267,
1931,
305,
11,
3671,
36955,
2787,
418,
23781,
985,
2374,
435,
7053,
8836,
83,
5908,
390,
1715,
3755,
13,
337,
5013,
418,
23503,
6421,
329,
710,
344,
76,
435,
7053,
270,
16785,
285,
15152,
523,
69,
2569,
22484,
390,
267,
16514,
23638,
16175,
28749,
11,
12422,
14839,
72,
410,
321,
418,
582,
353,
267,
269,
10205,
12894,
78,
985,
2374,
256,
4131,
2634,
76,
31215,
4229,
436,
20040,
8358,
38251,
1184,
8836,
626,
3494,
283,
267,
435,
7053,
270,
5908,
795,
22300,
25,
198,
37811,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
642,
27277,
1433,
68,
21,
12,
24,
66,
16,
66,
12,
3559,
1731,
12,
64,
19,
10210,
12,
65,
1065,
1415,
7568,
18,
66,
486,
67,
198,
8818,
31312,
62,
8906,
1087,
7,
87,
11,
69,
11,
70,
11,
83,
349,
11,
2611,
742,
4454,
8,
198,
220,
220,
220,
340,
4454,
796,
657,
198,
220,
220,
220,
2239,
796,
352,
13,
15,
198,
220,
220,
220,
277,
87,
796,
277,
7,
87,
8,
198,
220,
220,
220,
308,
87,
796,
308,
7,
87,
8,
198,
220,
220,
220,
981,
357,
8937,
7,
70,
87,
8,
1875,
284,
75,
8,
11405,
357,
270,
4454,
1279,
17266,
742,
4454,
8,
11405,
357,
9662,
1875,
352,
68,
12,
940,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
742,
4454,
796,
2124,
532,
308,
87,
9,
9662,
198,
220,
220,
220,
220,
220,
220,
220,
10117,
4454,
796,
277,
7,
742,
4454,
8,
198,
220,
220,
220,
220,
220,
220,
220,
611,
10117,
4454,
1875,
277,
87,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2239,
796,
2239,
1220,
362,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2124,
796,
220,
742,
4454,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
277,
87,
796,
10117,
4454,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
308,
87,
796,
308,
7,
87,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2239,
796,
2239,
1635,
362,
198,
220,
220,
220,
220,
220,
220,
220,
886,
198,
220,
220,
220,
220,
220,
220,
220,
340,
4454,
15853,
352,
198,
220,
220,
220,
886,
220,
198,
220,
220,
220,
1441,
2124,
11,
308,
87,
11,
340,
4454,
198,
437,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
275,
23,
276,
21855,
19,
68,
12,
3134,
1795,
12,
19,
344,
22,
12,
5824,
66,
16,
12,
1821,
4790,
487,
22,
13331,
23,
2624,
198,
9132,
37811,
198,
32,
16124,
4763,
466,
1931,
305,
279,
1098,
1055,
5204,
4763,
514,
25440,
257,
1257,
16175,
28749,
4600,
18224,
62,
259,
62,
42594,
63,
12385,
1296,
64,
390,
334,
2611,
1635,
17966,
47026,
198,
37811,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
275,
5999,
1238,
69,
3695,
12,
32637,
66,
12,
2920,
64,
24,
12,
64,
24,
69,
24,
12,
1983,
2780,
67,
1129,
721,
65,
2327,
198,
18224,
62,
1082,
452,
876,
7,
87,
8,
796,
19530,
28813,
13,
1082,
452,
876,
7,
18224,
62,
259,
62,
42594,
11,
87,
8,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
860,
1983,
2718,
67,
4790,
12,
42548,
66,
12,
19,
66,
4846,
12,
64,
36453,
12,
23,
3132,
721,
1878,
2718,
35844,
198,
9132,
37811,
198,
10262,
5799,
24573,
368,
418,
442,
39236,
257,
1257,
16175,
28749,
4600,
49607,
62,
8906,
1087,
63,
19958,
83,
3263,
68,
25,
198,
37811,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
860,
3132,
64,
24,
66,
20,
69,
12,
23,
69,
6420,
12,
19,
68,
3459,
12,
50148,
65,
12,
1120,
66,
15,
891,
66,
24,
66,
3365,
65,
198,
13466,
62,
87,
15,
796,
31312,
62,
8906,
1087,
7,
19442,
13,
21,
11,
18224,
62,
259,
62,
42594,
11,
18224,
62,
1082,
452,
876,
11,
16,
68,
12,
19,
11,
12825,
8,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
275,
20,
65,
39277,
6469,
12,
891,
2934,
12,
44578,
69,
12,
65,
10210,
19,
12,
69,
17,
68,
15,
64,
5705,
65,
891,
10210,
198,
9132,
37811,
198,
46,
1255,
4533,
38251,
374,
44299,
6557,
626,
25,
267,
1931,
305,
12385,
6184,
111,
81,
2545,
64,
12110,
9019,
84,
2216,
265,
452,
3263,
68,
25,
220,
198,
37811,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
767,
38431,
64,
2624,
66,
12,
67,
18,
6814,
12,
19,
721,
24,
12,
24,
67,
4846,
12,
15,
67,
1270,
11848,
1507,
69,
2919,
66,
198,
18224,
62,
259,
62,
42594,
7,
13466,
62,
87,
15,
58,
16,
12962,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
304,
21,
35411,
67,
20,
12,
20,
31115,
12,
2231,
68,
24,
12,
6659,
17896,
12,
19504,
330,
5774,
7012,
23,
1485,
198,
9132,
37811,
198,
53,
321,
418,
401,
78,
17492,
280,
299,
793,
64,
1291,
31173,
10205,
7496,
401,
355,
645,
11017,
1779,
72,
16175,
127,
113,
274,
287,
33577,
271,
25,
198,
37811,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
3261,
68,
16,
11848,
4349,
12,
66,
20,
3132,
12,
19,
66,
19,
64,
12,
4521,
2682,
12,
20,
6888,
1878,
65,
22,
68,
24,
68,
4349,
198,
16442,
62,
9535,
73,
62,
15,
796,
4534,
62,
42594,
7,
19442,
13,
21,
8,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
275,
15,
65,
6659,
6814,
19,
12,
3134,
3459,
12,
2231,
66,
19,
12,
65,
47448,
12,
20356,
64,
2999,
65,
20,
68,
2931,
66,
198,
16442,
62,
9535,
73,
62,
13466,
796,
4534,
62,
42594,
7,
13466,
62,
87,
15,
58,
16,
12962,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
6298,
66,
21261,
66,
18,
12,
344,
3609,
12,
19,
68,
1065,
12,
24,
671,
12,
44550,
7568,
1433,
2919,
11275,
198,
9132,
37811,
198,
46,
279,
5957,
35560,
377,
3671,
1434,
38251,
257,
1291,
31173,
10205,
7496,
1162,
4359,
3755,
11,
304,
267,
35560,
377,
10212,
78,
6053,
68,
28141,
1291,
31173,
10205,
7496,
2656,
13,
376,
296,
418,
1451,
36096,
390,
267,
16514,
528,
283,
1635,
78,
279,
5957,
287,
6652,
9,
12379,
1291,
31173,
10205,
7496,
401,
23781,
285,
25125,
24313,
2779,
4533,
645,
31312,
68,
13,
412,
4169,
8571,
10094,
279,
1098,
1055,
514,
4533,
31215,
257,
3137,
283,
1582,
22940,
4164,
4951,
390,
985,
4712,
16175,
127,
113,
274,
390,
410,
6557,
380,
418,
8171,
418,
357,
14323,
4712,
16175,
127,
113,
274,
390,
636,
8836,
3129,
292,
267,
84,
1602,
64,
16175,
127,
113,
274,
288,
361,
567,
10782,
544,
271,
795,
308,
1691,
737,
198,
37811,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
807,
2075,
48528,
487,
12,
24,
64,
24,
65,
12,
3510,
65,
16,
12,
64,
1765,
18,
12,
32059,
64,
20,
68,
21,
69,
24,
39710,
198,
9132,
37811,
198,
2,
317,
7015,
25440,
401,
12440,
8053,
13912,
13,
20362,
198,
37811,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
288,
1954,
1507,
3682,
67,
12,
24,
65,
22,
64,
12,
2857,
1157,
12,
65,
4869,
65,
12,
20,
67,
35005,
3901,
1765,
66,
16,
69,
198,
9132,
37811,
198,
58,
63,
28780,
8053,
13912,
13,
20362,
63,
16151,
5450,
1378,
76,
18,
70,
13,
12567,
13,
952,
14,
28780,
8053,
13912,
13,
20362,
14,
31284,
34729,
38251,
23781,
23503,
1258,
8358,
848,
10671,
429,
64,
685,
32682,
75,
25283,
26106,
38768,
16151,
5450,
1378,
268,
13,
31266,
13,
2398,
14,
15466,
14,
28780,
62,
20713,
8,
390,
1296,
64,
304,
69,
11373,
68,
13,
327,
2634,
75,
25283,
26106,
38768,
264,
28749,
334,
2611,
1296,
64,
778,
6557,
83,
3970,
390,
2027,
89,
343,
267,
9378,
78,
466,
269,
6557,
75,
3129,
78,
390,
2632,
2228,
2367,
8358,
4745,
368,
390,
1233,
22940,
77,
979,
292,
920,
260,
636,
8836,
3129,
292,
18794,
305,
390,
23781,
2179,
952,
390,
12794,
68,
357,
3849,
64,
16175,
127,
113,
274,
390,
1090,
1462,
435,
66,
590,
267,
84,
1351,
292,
390,
48569,
259,
71,
418,
737,
440,
23503,
1258,
2169,
334,
2611,
7071,
8358,
4199,
578,
2386,
10440,
4140,
10819,
2632,
2228,
671,
10795,
68,
12379,
1233,
22940,
10782,
544,
11,
401,
78,
19647,
4448,
1787,
29634,
271,
11,
329,
16175,
292,
11,
1257,
16175,
127,
113,
274,
390,
1233,
822,
9019,
16175,
28749,
11,
3503,
13,
9724,
72,
16175,
127,
113,
274,
583,
72,
10205,
67,
44645,
390,
542,
46447,
491,
291,
2815,
44645,
357,
1362,
15152,
8,
24573,
368,
1055,
514,
38768,
11,
795,
7043,
292,
267,
84,
491,
25792,
82,
5391,
641,
127,
113,
274,
13,
220,
198,
198,
46,
435,
7053,
8836,
83,
5908,
390,
269,
2634,
75,
25283,
26106,
38768,
285,
15152,
985,
2374,
38251,
19918,
12427,
985,
2374,
13,
337,
5013,
292,
267,
16514,
23638,
16175,
127,
113,
274,
24573,
368,
1055,
730,
21416,
11,
645,
920,
14723,
11,
12385,
1500,
622,
16175,
28749,
288,
292,
1351,
292,
304,
645,
491,
5549,
288,
292,
1779,
72,
16175,
127,
113,
274,
583,
72,
10205,
67,
44645,
390,
542,
46447,
11,
10356,
528,
25440,
267,
299,
21356,
647,
78,
390,
1233,
22940,
77,
979,
292,
748,
10789,
6557,
380,
292,
5204,
38768,
13,
440,
269,
6557,
75,
3129,
78,
256,
4131,
2634,
76,
279,
1098,
1055,
1582,
282,
417,
528,
4533,
13,
198,
37811,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
7192,
771,
67,
2075,
12,
2718,
3682,
12,
19,
66,
1954,
12,
64,
23,
65,
23,
12,
23,
64,
16,
69,
17,
65,
7568,
64,
17059,
198,
9132,
37811,
198,
2235,
440,
435,
7053,
270,
5908,
5347,
25792,
77,
20895,
38251,
285,
5013,
78,
26269,
78,
440,
7,
77,
31185,
8,
198,
37811,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
807,
4531,
69,
23,
2718,
67,
12,
17,
68,
2075,
12,
19,
30057,
12,
65,
27988,
12,
20,
16344,
6420,
891,
1860,
64,
21,
64,
198,
9132,
37811,
198,
5377,
5299,
16,
74,
636,
8836,
3129,
292,
11,
267,
299,
21356,
647,
78,
390,
279,
3565,
390,
636,
8836,
3129,
292,
474,
6557,
38251,
12379,
2760,
368,
390,
1247,
268,
292,
390,
1465,
3099,
411,
13,
440,
435,
7053,
270,
5908,
5347,
25792,
77,
20895,
440,
7,
77,
31185,
8,
474,
6557,
26269,
78,
1357,
15152,
13,
3184,
4712,
16175,
127,
113,
274,
256,
8836,
16564,
292,
17365,
6442,
76,
390,
4801,
292,
267,
84,
1247,
268,
292,
390,
1465,
3099,
411,
390,
636,
8836,
3129,
292,
13,
220,
198,
37811,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
48136,
64,
486,
68,
18,
12,
6469,
69,
23,
12,
19,
66,
22,
69,
12,
5332,
3324,
12,
5332,
1238,
6659,
67,
6420,
276,
22,
198,
9132,
37811,
198,
47,
3301,
1282,
16175,
283,
11,
410,
321,
418,
985,
934,
8576,
636,
8836,
3129,
292,
25,
220,
198,
37811,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
277,
344,
16,
68,
18,
68,
15,
12,
66,
7568,
22,
12,
36625,
69,
12,
65,
24,
1485,
12,
24,
2414,
66,
940,
13331,
5332,
64,
21,
198,
9979,
299,
62,
11664,
796,
8576,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
8644,
64,
5892,
330,
21,
12,
48634,
66,
12,
19,
32417,
12,
65,
18,
67,
15,
12,
5824,
405,
68,
33032,
2078,
4521,
198,
9132,
37811,
198,
45,
418,
568,
264,
396,
19687,
32700,
19783,
3099,
1802,
636,
8836,
3129,
292,
795,
23781,
15094,
81,
4533,
390,
300,
4533,
1802,
13,
569,
321,
418,
582,
353,
257,
29509,
312,
671,
6937,
68,
25,
220,
198,
37811,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
642,
3682,
64,
24,
891,
20,
12,
67,
24,
1453,
12,
2920,
17457,
12,
24,
67,
3132,
12,
5333,
68,
2078,
65,
1795,
65,
20,
21101,
198,
9979,
3091,
62,
1589,
796,
19862,
17034,
7,
77,
62,
11664,
1220,
357,
3064,
14,
3064,
61,
17,
4008,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
807,
65,
4763,
1495,
66,
12,
65,
29796,
12,
3682,
65,
19,
12,
23,
4349,
67,
12,
24339,
535,
6888,
23,
64,
29228,
198,
9132,
37811,
198,
50,
10205,
3718,
271,
321,
418,
27602,
283,
645,
11017,
6349,
268,
38768,
304,
15299,
283,
257,
985,
4712,
16175,
28749,
25,
198,
37811,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
767,
8054,
66,
21,
17896,
12,
22,
3388,
68,
12,
19,
66,
3324,
12,
5332,
2075,
12,
30368,
64,
16,
65,
344,
66,
2998,
24,
198,
87,
15,
62,
11664,
796,
685,
38692,
17,
35,
7,
3524,
62,
1589,
9,
25192,
22784,
3524,
62,
1589,
9,
25192,
28955,
329,
4808,
287,
352,
25,
77,
62,
11664,
2361,
220,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
2808,
9945,
66,
2857,
65,
12,
2623,
5607,
12,
19,
69,
7568,
12,
23,
69,
2682,
12,
23,
3829,
397,
19,
67,
15,
10210,
3609,
198,
83,
62,
2616,
425,
796,
2488,
417,
28361,
22942,
62,
41007,
291,
62,
11664,
796,
45243,
19510,
198,
220,
220,
220,
2124,
15,
796,
2124,
15,
62,
11664,
11,
220,
198,
220,
220,
220,
410,
15,
796,
685,
25120,
62,
4122,
7,
53,
721,
17,
35,
90,
43879,
2414,
5512,
32590,
16,
11,
16,
4008,
329,
4808,
287,
352,
25,
77,
62,
11664,
16589,
220,
198,
220,
220,
220,
2347,
796,
685,
838,
13,
15,
329,
4808,
287,
352,
25,
77,
62,
11664,
16589,
198,
220,
220,
220,
288,
83,
796,
657,
13,
16,
11,
198,
220,
220,
220,
299,
20214,
796,
8576,
11,
198,
220,
220,
220,
318,
1015,
796,
838,
11,
198,
220,
220,
220,
3386,
0,
796,
357,
69,
11,
87,
8,
4613,
3386,
0,
7,
69,
11,
87,
11,
7,
72,
11,
73,
11,
79,
16,
11,
79,
17,
8,
4613,
277,
158,
224,
241,
7,
79,
16,
11,
79,
17,
11,
8968,
2364,
11,
3524,
62,
1589,
4008,
198,
8,
23029,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
657,
1453,
22,
16072,
1507,
12,
69,
3901,
69,
12,
19,
21738,
12,
64,
2425,
68,
12,
16,
68,
16,
67,
3980,
65,
17,
9945,
1959,
198,
9132,
37811,
220,
198,
12966,
7501,
390,
2452,
84,
16175,
28749,
466,
435,
7053,
270,
5908,
5347,
25792,
77,
20895,
25,
720,
83,
62,
2616,
425,
4201,
198,
37811,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
657,
67,
15,
31020,
276,
12,
4349,
1120,
12,
1821,
68,
21,
12,
65,
20,
64,
19,
12,
24,
64,
33535,
65,
21,
6888,
2857,
64,
198,
9132,
37811,
198,
2235,
4021,
25440,
269,
2634,
75,
25283,
26106,
38768,
198,
37811,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
277,
22,
12993,
47512,
68,
12,
1350,
24,
67,
12,
19,
69,
5237,
12,
64,
39761,
12,
535,
3559,
2425,
1765,
2079,
7568,
198,
9132,
37811,
198,
45,
292,
269,
2634,
75,
25283,
26106,
38768,
11,
355,
636,
8836,
3129,
292,
264,
28749,
1398,
811,
38768,
795,
269,
2634,
75,
25283,
1885,
274,
390,
4140,
10819,
269,
6557,
75,
3129,
78,
390,
1233,
22940,
77,
979,
292,
13,
1081,
1233,
22940,
77,
979,
292,
264,
28749,
5204,
38768,
2471,
268,
292,
31215,
636,
8836,
3129,
292,
390,
269,
2634,
75,
25283,
48569,
259,
10134,
13,
1001,
267,
256,
10546,
8873,
288,
292,
269,
2634,
75,
25283,
38251,
285,
5013,
78,
1450,
273,
8358,
267,
256,
10546,
8873,
2472,
466,
264,
396,
19687,
11,
267,
299,
21356,
647,
78,
390,
1233,
22940,
77,
979,
292,
5204,
4533,
38251,
27069,
3263,
68,
2027,
89,
17305,
13,
220,
198,
37811,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
642,
1350,
5774,
66,
21,
69,
12,
20,
66,
3132,
12,
19,
67,
1415,
12,
64,
23,
21101,
12,
19,
68,
5066,
891,
2670,
67,
49561,
198,
27471,
198,
220,
220,
220,
220,
198,
8818,
2685,
62,
4868,
62,
34053,
3419,
198,
220,
220,
220,
220,
198,
220,
220,
220,
2163,
6616,
7,
66,
11,
1589,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2124,
796,
685,
269,
58,
16,
45297,
1589,
14,
17,
11,
269,
58,
16,
48688,
1589,
14,
17,
11,
269,
58,
16,
48688,
1589,
14,
17,
11,
269,
58,
16,
45297,
1589,
14,
17,
11,
269,
58,
16,
45297,
1589,
14,
17,
60,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
331,
796,
685,
269,
58,
17,
45297,
1589,
14,
17,
11,
269,
58,
17,
45297,
1589,
14,
17,
11,
269,
58,
17,
48688,
1589,
14,
17,
11,
269,
58,
17,
48688,
1589,
14,
17,
11,
269,
58,
17,
45297,
1589,
14,
17,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
2124,
11,
331,
198,
220,
220,
220,
886,
198,
220,
220,
220,
220,
198,
220,
220,
220,
458,
83,
796,
7110,
3419,
198,
220,
220,
220,
220,
198,
220,
220,
220,
2124,
11,
88,
28,
23415,
26933,
20,
11,
20,
4357,
17,
8,
198,
220,
220,
220,
7110,
0,
7,
198,
220,
220,
220,
220,
220,
220,
220,
458,
83,
11,
87,
11,
88,
11,
2655,
6386,
2981,
41888,
25,
43358,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
9493,
413,
5649,
28,
17,
11,
20797,
26591,
28,
15,
13,
2713,
11,
8043,
2625,
14809,
1600,
18242,
33151,
198,
220,
220,
220,
1267,
198,
220,
220,
220,
220,
198,
220,
220,
220,
2124,
11,
88,
28,
23415,
26933,
20,
11,
20,
4357,
21,
8,
198,
220,
220,
220,
7110,
0,
7,
198,
220,
220,
220,
220,
220,
220,
220,
458,
83,
11,
87,
11,
88,
11,
2655,
6386,
2981,
41888,
25,
43358,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
9493,
413,
5649,
28,
17,
11,
20797,
26591,
28,
15,
13,
2713,
11,
8043,
2625,
43745,
1600,
18242,
33151,
198,
220,
220,
220,
1267,
198,
220,
220,
220,
220,
198,
220,
220,
220,
3951,
796,
2824,
7,
17,
25,
17,
25,
23,
8,
198,
220,
220,
220,
410,
1370,
0,
7,
489,
83,
11,
6615,
11,
8043,
2625,
44605,
1600,
18242,
2625,
1600,
7635,
28,
25,
42460,
8,
198,
220,
220,
220,
289,
1370,
0,
7,
489,
83,
11,
6615,
11,
8043,
2625,
44605,
1600,
18242,
2625,
1600,
7635,
28,
25,
42460,
8,
198,
220,
220,
220,
220,
198,
220,
220,
220,
279,
87,
796,
685,
657,
13,
16,
1343,
860,
13,
23,
9,
25192,
3419,
329,
1312,
287,
352,
25,
3064,
2361,
198,
220,
220,
220,
12972,
796,
685,
657,
13,
16,
1343,
860,
13,
23,
9,
25192,
3419,
329,
1312,
287,
352,
25,
3064,
2361,
198,
220,
220,
220,
41058,
0,
7,
489,
83,
11,
8416,
11,
9078,
11,
18242,
2625,
1600,
26591,
28,
15,
13,
1238,
11,
8043,
2625,
17585,
4943,
198,
220,
220,
220,
220,
198,
220,
220,
220,
10369,
7857,
28,
23,
198,
220,
220,
220,
24708,
378,
0,
7,
489,
83,
11,
18,
11,
18,
11,
5239,
7203,
7,
72,
12,
16,
11,
73,
12,
16,
42501,
10331,
7857,
11,
25,
34,
280,
5277,
4008,
198,
220,
220,
220,
24708,
378,
0,
7,
489,
83,
11,
20,
11,
18,
11,
5239,
7203,
7,
72,
12,
16,
11,
73,
42501,
10331,
7857,
11,
25,
34,
280,
5277,
4008,
198,
220,
220,
220,
24708,
378,
0,
7,
489,
83,
11,
22,
11,
18,
11,
5239,
7203,
7,
72,
12,
16,
11,
73,
10,
16,
42501,
10331,
7857,
11,
25,
34,
280,
5277,
4008,
198,
220,
220,
220,
220,
198,
220,
220,
220,
24708,
378,
0,
7,
489,
83,
11,
18,
11,
20,
11,
5239,
7203,
7,
72,
11,
73,
12,
16,
42501,
10331,
7857,
11,
25,
34,
280,
5277,
4008,
198,
220,
220,
220,
24708,
378,
0,
7,
489,
83,
11,
20,
11,
20,
11,
5239,
7203,
7,
72,
11,
73,
42501,
10331,
7857,
11,
25,
34,
280,
5277,
4008,
198,
220,
220,
220,
24708,
378,
0,
7,
489,
83,
11,
22,
11,
20,
11,
5239,
7203,
7,
72,
11,
73,
10,
16,
42501,
10331,
7857,
11,
25,
34,
280,
5277,
4008,
198,
220,
220,
220,
220,
198,
220,
220,
220,
24708,
378,
0,
7,
489,
83,
11,
18,
11,
22,
11,
5239,
7203,
7,
72,
10,
16,
11,
73,
12,
16,
42501,
10331,
7857,
11,
25,
34,
280,
5277,
4008,
198,
220,
220,
220,
24708,
378,
0,
7,
489,
83,
11,
20,
11,
22,
11,
5239,
7203,
7,
72,
10,
16,
11,
73,
42501,
10331,
7857,
11,
25,
34,
280,
5277,
4008,
198,
220,
220,
220,
24708,
378,
0,
7,
489,
83,
11,
22,
11,
22,
11,
5239,
7203,
7,
72,
10,
16,
11,
73,
10,
16,
42501,
10331,
7857,
11,
25,
34,
280,
5277,
4008,
198,
220,
220,
220,
220,
198,
220,
220,
220,
7110,
0,
7,
198,
220,
220,
220,
220,
220,
220,
220,
458,
83,
11,
7857,
16193,
7029,
11,
7029,
828,
220,
198,
220,
220,
220,
220,
220,
220,
220,
2124,
2475,
16193,
16,
13,
18,
11,
23,
13,
22,
828,
742,
3378,
28,
25,
23108,
11,
198,
220,
220,
220,
220,
220,
220,
220,
331,
2475,
16193,
16,
13,
18,
11,
23,
13,
22,
828,
20760,
3378,
28,
25,
23108,
11,
198,
220,
220,
220,
220,
220,
220,
220,
5346,
10992,
28,
25,
3524,
11,
198,
220,
220,
220,
220,
220,
220,
220,
2124,
18242,
2625,
87,
1600,
2645,
9608,
2625,
88,
1600,
25928,
28,
9562,
198,
220,
220,
220,
1267,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1441,
458,
83,
198,
437,
198,
198,
3846,
62,
4868,
62,
34053,
3419,
198,
437,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
657,
66,
2998,
6048,
18,
12,
66,
15,
64,
16,
12,
19,
69,
4761,
12,
64,
1433,
64,
12,
4524,
14774,
65,
22,
64,
21,
10163,
198,
9132,
37811,
198,
47,
3301,
514,
283,
267,
4600,
28780,
8053,
13912,
13,
20362,
47671,
3718,
271,
321,
418,
2730,
343,
267,
264,
396,
19687,
11,
329,
710,
15695,
78,
28686,
9955,
418,
466,
256,
10546,
8873,
12379,
1275,
844,
64,
304,
267,
2179,
952,
390,
12794,
68,
25,
198,
37811,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
604,
16072,
20,
891,
19,
67,
12,
68,
2998,
17,
12,
3901,
69,
22,
12,
64,
891,
24,
12,
65,
42363,
1270,
66,
5999,
1485,
66,
198,
3524,
796,
8315,
26933,
3524,
62,
1589,
11,
3524,
62,
1589,
4357,
8968,
2364,
8,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
678,
66,
20,
535,
24,
67,
12,
23,
21288,
12,
19,
68,
2623,
12,
64,
18,
18213,
12,
64,
1157,
4349,
69,
2078,
69,
4869,
67,
198,
9132,
37811,
198,
1722,
636,
8836,
3129,
292,
264,
28749,
920,
28749,
1398,
811,
38768,
25221,
269,
2634,
75,
25283,
13,
2142,
8836,
3129,
292,
4118,
6413,
271,
264,
28749,
269,
21244,
292,
25221,
1216,
38599,
343,
292,
31215,
19789,
283,
401,
355,
1779,
72,
16175,
127,
113,
274,
583,
72,
10205,
67,
44645,
390,
542,
46447,
304,
819,
7940,
1059,
8358,
2386,
10440,
3590,
641,
285,
39588,
320,
292,
22365,
12427,
267,
269,
6557,
75,
3129,
78,
288,
292,
987,
64,
16175,
127,
113,
274,
16964,
279,
3565,
25,
220,
198,
37811,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
767,
17896,
2860,
5332,
12,
1959,
4521,
12,
19,
68,
3682,
12,
7252,
5705,
12,
3134,
12762,
64,
23,
69,
27310,
67,
198,
565,
796,
12440,
8053,
7,
87,
15,
62,
11664,
11,
3524,
8,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
657,
65,
20,
66,
21,
18654,
12,
65,
344,
65,
12,
28324,
64,
12,
64,
24,
64,
23,
12,
18,
66,
21,
64,
2425,
276,
23601,
64,
198,
9132,
37811,
198,
50,
10205,
3718,
271,
321,
418,
3494,
283,
257,
1257,
16175,
28749,
8358,
38251,
1196,
7344,
4763,
1635,
325,
9,
267,
1582,
390,
636,
8836,
3129,
292,
1556,
6557,
18794,
305,
466,
2179,
952,
390,
12794,
68,
13,
10062,
64,
1257,
16175,
28749,
264,
10205,
1055,
6557,
442,
321,
4763,
16343,
64,
1779,
72,
16175,
28749,
13,
11446,
72,
11,
257,
1257,
16175,
28749,
410,
1872,
379,
723,
528,
283,
267,
1569,
13165,
390,
329,
16175,
292,
25,
198,
37811,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
10495,
65,
20,
68,
330,
16,
12,
2857,
2079,
12,
19,
64,
4761,
12,
330,
21,
64,
12,
68,
17,
65,
17657,
65,
41019,
67,
20,
198,
8818,
277,
24874,
62,
565,
7,
87,
11,
88,
11,
72,
11,
73,
11,
67,
17,
11,
69,
11,
3524,
3712,
14253,
8,
198,
220,
220,
220,
37455,
85,
796,
331,
532,
2124,
198,
220,
220,
220,
288,
796,
19862,
17034,
7,
67,
17,
8,
198,
220,
220,
220,
277,
158,
224,
241,
796,
362,
9,
7,
67,
532,
3091,
13,
8968,
2364,
27493,
7,
138,
242,
85,
14,
67,
8,
198,
220,
220,
220,
277,
58,
72,
60,
15853,
277,
158,
224,
241,
198,
220,
220,
220,
277,
58,
73,
60,
48185,
277,
158,
224,
241,
198,
220,
220,
220,
1441,
277,
198,
437,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
657,
69,
4521,
397,
18,
66,
12,
1959,
7252,
12,
37856,
65,
12,
23,
22913,
12,
23815,
66,
49150,
1453,
46899,
198,
9132,
37811,
198,
32,
1257,
16175,
28749,
8358,
5204,
64,
355,
329,
16175,
292,
12385,
299,
793,
64,
985,
4712,
16175,
28749,
410,
1872,
11,
920,
28749,
11,
3473,
343,
12385,
379,
723,
23638,
16175,
28749,
288,
292,
1351,
292,
390,
269,
2634,
75,
25283,
11,
384,
5162,
3755,
12379,
442,
321,
4763,
12379,
1257,
16175,
28749,
4600,
8899,
62,
24874,
3083,
0,
63,
390,
4600,
28780,
8053,
13912,
13,
20362,
47671,
8358,
1407,
1350,
401,
78,
4578,
78,
257,
1257,
16175,
28749,
8358,
379,
723,
23638,
257,
329,
50041,
920,
260,
23781,
1582,
390,
636,
8836,
3129,
292,
357,
63,
69,
24874,
62,
565,
47671,
14839,
72,
828,
435,
2634,
76,
466,
1569,
13165,
390,
329,
16175,
292,
8358,
390,
303,
1055,
379,
723,
528,
4533,
11,
4600,
69,
47671,
304,
355,
2632,
2228,
2367,
466,
264,
396,
19687,
13,
11446,
72,
410,
321,
418,
3121,
283,
3870,
21872,
257,
1646,
28749,
11389,
25,
198,
37811,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
657,
65,
23,
64,
1828,
5892,
12,
66,
15,
67,
21,
12,
2598,
68,
19,
12,
65,
34135,
12,
2624,
67,
24,
67,
41734,
64,
25257,
198,
8818,
3386,
62,
565,
0,
7,
69,
3712,
38469,
90,
51,
5512,
87,
11,
3524,
3712,
14253,
11,
565,
3712,
28780,
8053,
11,
69,
24874,
3712,
37,
8,
810,
1391,
51,
11,
37,
92,
198,
220,
220,
220,
6070,
0,
7,
69,
11,
22570,
7,
51,
4008,
198,
220,
220,
220,
537,
796,
10133,
28780,
8053,
0,
7,
87,
11,
3524,
11,
565,
11,
1845,
29363,
28,
9562,
8,
198,
220,
220,
220,
3975,
62,
24874,
3083,
0,
7,
198,
220,
220,
220,
220,
220,
220,
220,
357,
87,
11,
88,
11,
72,
11,
73,
11,
67,
17,
11,
69,
8,
4613,
277,
24874,
7,
87,
11,
88,
11,
72,
11,
73,
11,
67,
17,
11,
69,
11,
3524,
828,
198,
220,
220,
220,
220,
220,
220,
220,
277,
11,
3091,
11,
537,
11,
10730,
28,
9562,
198,
220,
220,
220,
1267,
198,
220,
220,
220,
1441,
277,
198,
437,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
288,
2996,
5332,
13227,
12,
3695,
19881,
12,
3901,
67,
16,
12,
44705,
18,
12,
486,
67,
4089,
3132,
67,
4304,
21101,
198,
9132,
37811,
198,
10262,
5799,
8358,
2169,
418,
334,
2611,
2730,
72,
16175,
28749,
257,
1676,
3448,
4763,
12379,
1257,
16175,
28749,
8358,
5204,
64,
355,
329,
16175,
292,
11,
24573,
368,
418,
15299,
283,
257,
985,
4712,
16175,
28749,
645,
85,
3263,
68,
25,
198,
37811,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
352,
65,
22,
65,
22,
67,
2780,
12,
3720,
67,
17,
12,
3559,
1558,
12,
3829,
2231,
12,
20,
65,
22,
68,
22,
17457,
2998,
18,
68,
20,
198,
83,
62,
3846,
62,
20713,
796,
2488,
417,
28361,
22942,
62,
3846,
62,
20713,
796,
45243,
19510,
198,
220,
220,
220,
2124,
15,
796,
2124,
15,
62,
11664,
11,
220,
198,
220,
220,
220,
410,
15,
796,
685,
25120,
62,
4122,
7,
53,
721,
17,
35,
90,
43879,
2414,
5512,
32590,
16,
11,
16,
4008,
329,
4808,
287,
352,
25,
77,
62,
11664,
16589,
220,
198,
220,
220,
220,
2347,
796,
685,
838,
13,
15,
329,
4808,
287,
352,
25,
77,
62,
11664,
16589,
198,
220,
220,
220,
288,
83,
796,
657,
13,
16,
11,
198,
220,
220,
220,
299,
20214,
796,
8576,
11,
198,
220,
220,
220,
318,
1015,
796,
838,
11,
198,
220,
220,
220,
3386,
0,
796,
357,
69,
11,
87,
8,
4613,
3386,
62,
565,
0,
7,
69,
11,
87,
11,
3524,
11,
565,
11,
69,
24874,
62,
565,
8,
198,
8,
23029,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
513,
69,
24,
47984,
3365,
12,
27696,
66,
12,
26598,
66,
12,
65,
16072,
19,
12,
30924,
2816,
11848,
16,
68,
47338,
198,
9132,
37811,
220,
198,
12966,
7501,
390,
2452,
84,
16175,
28749,
514,
25440,
4600,
28780,
8053,
13912,
13,
20362,
63,
25,
720,
83,
62,
3846,
62,
20713,
384,
70,
917,
418,
357,
2616,
384,
70,
46535,
2452,
84,
16175,
28749,
11,
257,
552,
10102,
16175,
28749,
1357,
5799,
269,
2798,
64,
390,
362,
384,
70,
917,
418,
737,
198,
37811,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
718,
67,
5333,
65,
3365,
69,
12,
65,
3459,
69,
12,
2780,
69,
19,
12,
23,
65,
1860,
12,
15,
11848,
16,
64,
23,
15630,
16,
66,
6469,
198,
9132,
37811,
198,
44,
274,
5908,
31215,
23781,
264,
396,
19687,
613,
421,
23397,
401,
78,
43577,
11,
257,
985,
4712,
16175,
28749,
11511,
72,
257,
7015,
4763,
2216,
265,
452,
3263,
68,
357,
368,
1059,
3919,
390,
29568,
744,
7,
5317,
11,
83,
62,
2616,
425,
14,
83,
62,
3846,
62,
20713,
4008,
1569,
12271,
737,
220,
198,
37811,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
8684,
65,
23,
37381,
68,
12,
2414,
17896,
12,
2598,
15630,
12,
4531,
2548,
12,
344,
1828,
66,
19,
64,
24,
68,
19,
67,
15,
198,
9132,
37811,
198,
2235,
1855,
320,
23638,
16175,
28749,
12379,
19647,
544,
25,
317,
1556,
10366,
2634,
70,
544,
466,
6400,
43132,
198,
37811,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
5214,
2075,
2718,
487,
12,
24,
22515,
12,
19,
67,
2231,
12,
19881,
21,
68,
12,
68,
2996,
3132,
47984,
17457,
1415,
198,
9132,
37811,
198,
21017,
440,
1787,
268,
2413,
390,
28423,
446,
12,
25784,
198,
198,
8890,
4712,
16175,
127,
113,
274,
390,
16278,
22940,
76,
3970,
6941,
417,
10440,
308,
1691,
434,
68,
17365,
709,
10671,
267,
269,
6557,
75,
3129,
78,
11,
31215,
269,
4763,
1582,
390,
6184,
94,
39532,
418,
11,
390,
23781,
279,
38599,
2413,
390,
28423,
446,
12,
25784,
11,
8358,
2169,
257,
1296,
64,
25,
198,
198,
13702,
84,
7,
81,
8,
796,
3467,
85,
533,
862,
33576,
59,
9464,
38016,
31944,
31478,
82,
13495,
36796,
1065,
11709,
90,
81,
36796,
1065,
11709,
532,
362,
59,
31944,
31478,
82,
13495,
61,
21,
18477,
81,
61,
21,
32239,
3506,
8,
13702,
198,
198,
1722,
1787,
25792,
77,
979,
292,
5988,
292,
551,
10396,
16921,
292,
277,
1031,
368,
267,
269,
6557,
75,
3129,
78,
2244,
64,
1257,
16175,
28749,
35575,
3263,
68,
916,
6557,
626,
13,
569,
321,
418,
11105,
283,
10356,
528,
283,
257,
19647,
544,
390,
23781,
11644,
403,
1462,
390,
45443,
418,
27602,
4533,
31341,
1352,
1789,
21872,
13,
198,
198,
53,
321,
418,
2730,
343,
334,
2611,
1257,
16175,
28749,
8358,
3870,
64,
257,
19647,
544,
390,
284,
67,
292,
355,
542,
822,
9019,
16175,
127,
113,
274,
390,
279,
3565,
390,
636,
8836,
3129,
292,
11,
304,
514,
283,
257,
1257,
16175,
28749,
4600,
8899,
62,
24874,
3083,
0,
63,
466,
4600,
28780,
8053,
13912,
13,
20362,
63,
31215,
2386,
10440,
257,
542,
822,
9019,
16175,
28749,
390,
284,
37427,
28686,
279,
3565,
390,
636,
8836,
3129,
292,
285,
15152,
778,
10205,
87,
320,
292,
8358,
23781,
288,
4533,
2179,
952,
390,
12794,
68,
13,
220,
220,
198,
37811,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
513,
65,
17,
66,
2919,
64,
21,
12,
65,
1983,
68,
12,
2920,
1350,
12,
64,
15,
65,
15,
12,
68,
20,
21101,
18,
67,
2816,
3510,
68,
15,
198,
9132,
37811,
198,
46,
23503,
1258,
4600,
22968,
47,
322,
63,
4292,
68,
355,
1787,
25792,
77,
979,
292,
5988,
292,
795,
40426,
315,
418,
390,
1787,
29634,
271,
1450,
2850,
11,
8358,
264,
28749,
285,
15152,
374,
6557,
79,
24496,
390,
2386,
10440,
357,
785,
435,
70,
7487,
583,
6814,
390,
3718,
271,
28749,
11,
8358,
299,
28749,
38251,
1593,
68,
14839,
72,
737,
10062,
64,
20628,
28749,
24573,
5142,
1055,
730,
5350,
28141,
285,
28749,
11,
12422,
31215,
8358,
267,
269,
10205,
12894,
78,
277,
2350,
285,
15152,
10212,
78,
11,
304,
16964,
7292,
72,
25792,
10782,
544,
11,
514,
533,
16785,
257,
15021,
4600,
31,
7217,
79,
322,
44646,
198,
37811,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
7724,
1795,
68,
27412,
12,
66,
3104,
64,
12,
2780,
64,
20,
12,
6420,
5036,
12,
6052,
66,
4304,
31980,
66,
18444,
198,
9132,
37811,
198,
32,
1257,
16175,
28749,
8358,
5204,
64,
257,
19647,
544,
2570,
4763,
257,
23781,
1582,
390,
636,
8836,
3129,
292,
38251,
25,
198,
37811,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
767,
2816,
69,
3609,
2075,
12,
21,
9945,
24,
12,
2231,
64,
15,
12,
64,
1899,
67,
12,
67,
15,
68,
24,
66,
3312,
18,
69,
23,
7252,
198,
8818,
14856,
73,
62,
24874,
7,
81,
17,
11,
84,
11,
30950,
11,
38392,
8,
198,
220,
220,
220,
2488,
7217,
79,
322,
334,
15853,
7377,
113,
9,
7,
38392,
61,
1065,
14,
81,
17,
61,
21,
532,
362,
9,
38392,
61,
21,
14,
81,
17,
61,
18,
8,
198,
220,
220,
220,
1441,
334,
198,
437,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
860,
64,
23,
67,
23,
30206,
12,
7012,
4051,
12,
19,
67,
24,
65,
12,
23,
66,
19,
66,
12,
5036,
48250,
25764,
23,
69,
17,
64,
198,
9132,
37811,
198,
36,
257,
1257,
16175,
28749,
8358,
5204,
64,
257,
19647,
544,
2472,
11,
285,
1758,
25440,
1556,
64,
1257,
16175,
28749,
390,
279,
3565,
31215,
284,
37427,
28686,
279,
3565,
390,
636,
8836,
3129,
292,
285,
15152,
778,
10205,
87,
320,
418,
8358,
267,
2179,
952,
390,
12794,
68,
38251,
11,
920,
28749,
25,
198,
37811,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
31246,
1350,
3609,
20,
69,
12,
23,
64,
721,
12,
2598,
4790,
12,
64,
27260,
12,
20,
65,
4790,
17457,
24,
17657,
2091,
198,
8818,
14856,
73,
7,
87,
11,
30950,
11,
38392,
11,
3524,
3712,
14253,
11,
565,
3712,
28780,
8053,
8,
198,
220,
220,
220,
537,
796,
10133,
28780,
8053,
0,
7,
87,
11,
3524,
11,
565,
11,
1845,
29363,
28,
9562,
8,
198,
220,
220,
220,
334,
796,
3975,
62,
24874,
3083,
0,
7,
198,
220,
220,
220,
220,
220,
220,
220,
357,
87,
11,
88,
11,
72,
11,
73,
11,
67,
17,
11,
84,
8,
4613,
14856,
73,
62,
24874,
7,
67,
17,
11,
84,
11,
30950,
11,
38392,
828,
198,
220,
220,
220,
220,
220,
220,
220,
6632,
7,
417,
4906,
7,
38392,
36911,
3091,
11,
537,
11,
198,
220,
220,
220,
220,
220,
220,
220,
10730,
28,
9562,
198,
220,
220,
220,
1267,
198,
220,
220,
220,
1441,
334,
198,
437,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
5214,
2548,
68,
1821,
69,
12,
24,
45734,
12,
42947,
67,
12,
7252,
3365,
12,
64,
19,
65,
2078,
67,
23,
64,
1828,
69,
23,
198,
9132,
37811,
198,
1722,
1257,
16175,
127,
113,
274,
21076,
274,
31215,
2386,
10440,
355,
329,
16175,
292,
264,
28749,
25,
198,
37811,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
642,
69,
940,
4051,
65,
23,
12,
1954,
2718,
12,
3559,
66,
16,
12,
64,
2919,
21,
12,
2075,
25429,
68,
3865,
67,
3682,
65,
198,
8818,
781,
73,
62,
24874,
0,
7,
87,
11,
88,
11,
72,
11,
73,
11,
81,
17,
11,
69,
11,
30950,
11,
38392,
8,
198,
220,
220,
220,
2488,
7217,
79,
322,
18872,
224,
84,
24861,
224,
87,
796,
1105,
9,
30950,
9,
7,
38392,
61,
1065,
14,
81,
17,
61,
22,
532,
18074,
225,
61,
21,
14,
81,
17,
61,
19,
27493,
7,
88,
12,
87,
8,
198,
220,
220,
220,
277,
58,
72,
60,
48185,
18872,
224,
84,
24861,
224,
87,
198,
220,
220,
220,
277,
58,
73,
60,
15853,
18872,
224,
84,
24861,
224,
87,
198,
220,
220,
220,
1441,
277,
198,
437,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
275,
67,
22,
25272,
1129,
12,
65,
1860,
19,
12,
19,
66,
18,
66,
12,
23,
67,
2791,
12,
16,
7568,
15,
69,
21536,
66,
35124,
198,
8818,
781,
73,
0,
7,
69,
3712,
38469,
90,
51,
5512,
87,
11,
30950,
11,
38392,
11,
3524,
11,
565,
8,
810,
309,
198,
220,
220,
220,
537,
796,
10133,
28780,
8053,
0,
7,
87,
11,
3524,
11,
565,
11,
1845,
29363,
28,
9562,
8,
198,
220,
220,
220,
6070,
0,
7,
69,
11,
22570,
7,
51,
4008,
198,
220,
220,
220,
3975,
62,
24874,
3083,
0,
7,
198,
220,
220,
220,
220,
220,
220,
220,
357,
87,
11,
88,
11,
72,
11,
73,
11,
67,
17,
11,
69,
8,
4613,
781,
73,
62,
24874,
0,
7,
87,
11,
88,
11,
72,
11,
73,
11,
67,
17,
11,
69,
11,
30950,
11,
38392,
828,
198,
220,
220,
220,
220,
220,
220,
220,
277,
11,
3091,
11,
537,
11,
220,
198,
220,
220,
220,
220,
220,
220,
220,
10730,
28,
9562,
198,
220,
220,
220,
1267,
198,
220,
220,
220,
1441,
277,
198,
437,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
277,
2078,
2079,
2816,
65,
12,
15,
23516,
12,
19,
65,
23,
67,
12,
7012,
2919,
12,
17,
276,
69,
15,
64,
22,
30336,
66,
17,
198,
9132,
37811,
198,
21017,
21039,
264,
396,
19687,
277,
41200,
3713,
25,
21039,
308,
40138,
390,
3169,
27083,
77,
952,
198,
198,
53,
321,
418,
985,
934,
23781,
264,
396,
19687,
401,
435,
70,
388,
2216,
4533,
277,
41200,
3713,
11,
8358,
38251,
285,
15152,
493,
68,
601,
12427,
8358,
2471,
268,
292,
23781,
11644,
403,
1462,
390,
45443,
418,
627,
15152,
10819,
13,
198,
198,
53,
321,
418,
2386,
10440,
257,
19647,
544,
390,
23781,
308,
40138,
390,
3169,
27083,
77,
952,
401,
838,
1465,
636,
8836,
3129,
292,
11,
401,
29509,
312,
671,
39280,
14323,
352,
3,
636,
8836,
3129,
292,
14,
127,
227,
126,
111,
11,
8358,
38251,
257,
1676,
87,
320,
324,
3263,
68,
257,
29509,
312,
671,
379,
27083,
76,
3970,
12385,
6184,
94,
5162,
64,
300,
8836,
421,
3755,
13,
220,
198,
198,
16748,
1582,
22940,
4164,
4951,
390,
28423,
446,
12,
25784,
31215,
267,
3169,
27083,
77,
952,
264,
28749,
25,
198,
37811,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
807,
3695,
397,
20,
69,
22,
12,
2078,
66,
16,
12,
2780,
2624,
12,
24,
66,
3365,
12,
21101,
2623,
65,
15277,
22,
2791,
69,
198,
9979,
7377,
113,
796,
657,
13,
43977,
1558,
3865,
1303,
49504,
14,
43132,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
257,
15,
67,
10210,
28011,
12,
46712,
67,
12,
19,
11231,
12,
11848,
21,
65,
12,
24,
3365,
67,
2078,
3720,
8784,
66,
198,
9979,
18074,
225,
796,
362,
9,
16,
13,
2414,
28694,
1303,
2343,
226,
104,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
275,
16,
66,
20,
65,
22,
68,
20,
12,
12993,
19881,
12,
19,
67,
6052,
12,
17457,
3720,
12,
1959,
1731,
67,
24,
3553,
3609,
1415,
198,
9132,
37811,
198,
7469,
259,
521,
78,
334,
2611,
29509,
312,
671,
9939,
4763,
31215,
1556,
292,
390,
89,
1465,
636,
8836,
3129,
292,
11,
220,
198,
78,
299,
21356,
647,
78,
390,
279,
3565,
390,
636,
8836,
3129,
292,
18794,
305,
466,
2179,
952,
390,
12794,
68,
38251,
12379,
2760,
368,
466,
299,
21356,
647,
78,
256,
8836,
79,
3713,
390,
334,
2611,
985,
4712,
16175,
28749,
390,
16278,
22940,
76,
3970,
18955,
7292,
66,
1538,
357,
395,
321,
418,
12385,
3326,
67,
671,
39698,
25440,
23781,
308,
40138,
390,
3169,
27083,
77,
952,
795,
5988,
64,
1803,
28749,
737,
198,
37811,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
22927,
11442,
17,
330,
12,
33698,
12,
19,
67,
3720,
12,
1350,
5999,
12,
4761,
330,
24,
15259,
66,
22,
344,
198,
9979,
299,
62,
8199,
796,
838,
62,
830,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
277,
20666,
3023,
69,
19,
12,
68,
19,
69,
22,
12,
19,
67,
3559,
12,
65,
18,
67,
24,
12,
2624,
69,
11785,
7568,
34938,
68,
198,
9979,
3091,
62,
1589,
62,
8199,
796,
357,
940,
62,
830,
14,
15,
13,
16,
8,
61,
7,
16,
14,
18,
8,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
15495,
2075,
64,
3865,
12,
1433,
69,
23,
12,
35218,
67,
12,
65,
23,
66,
16,
12,
15,
891,
2091,
2857,
66,
24,
65,
1238,
198,
87,
15,
62,
8199,
796,
685,
25120,
62,
4122,
7,
53,
721,
18,
35,
90,
43879,
2414,
5512,
7,
15,
11,
3524,
62,
1589,
62,
8199,
4008,
329,
4808,
287,
352,
25,
77,
62,
8199,
2361,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
269,
3510,
64,
19,
69,
5607,
12,
3695,
68,
19,
12,
3682,
16344,
12,
6469,
65,
18,
12,
19,
17896,
21,
344,
2079,
397,
330,
198,
9132,
37811,
198,
35,
38768,
355,
1426,
72,
16175,
127,
113,
274,
287,
33577,
271,
11,
267,
256,
10546,
8873,
12379,
1275,
844,
64,
304,
267,
2179,
952,
390,
12794,
68,
256,
8836,
79,
3713,
390,
1105,
127,
227,
11,
24573,
368,
418,
287,
6652,
528,
283,
355,
269,
2634,
75,
25283,
26106,
38768,
25,
220,
198,
37811,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
767,
66,
42117,
3720,
16,
12,
64,
46435,
12,
2780,
2623,
12,
6420,
68,
17,
12,
2919,
19,
28567,
66,
486,
67,
3829,
198,
9979,
3091,
62,
8199,
796,
8315,
26933,
3524,
62,
1589,
62,
8199,
329,
4808,
287,
352,
25,
18,
4357,
1065,
2014,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
32921,
65,
24,
6814,
19,
12,
3695,
2780,
12,
19,
27203,
12,
65,
487,
66,
12,
64,
18,
67,
24,
17457,
3070,
12993,
1129,
198,
9979,
537,
62,
8199,
796,
12440,
8053,
7,
87,
15,
62,
8199,
11,
3524,
62,
8199,
8,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
269,
2919,
20972,
2078,
12,
31211,
68,
12,
1821,
1878,
12,
50119,
66,
12,
5036,
18,
66,
33916,
69,
3134,
68,
15,
198,
9132,
37811,
198,
21017,
5537,
7058,
11,
410,
321,
418,
11105,
283,
10356,
528,
283,
257,
19647,
544,
220,
198,
37811,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
36649,
15,
69,
3829,
1795,
12,
1495,
1954,
12,
3510,
2091,
12,
1350,
2481,
12,
18,
64,
1828,
6659,
64,
1433,
1959,
68,
198,
9132,
37811,
198,
32,
6994,
8704,
763,
9160,
8358,
277,
1031,
368,
418,
795,
334,
2611,
985,
4712,
16175,
28749,
390,
16278,
22940,
76,
3970,
18955,
38251,
10356,
528,
283,
257,
19647,
544,
466,
264,
396,
19687,
31215,
5687,
22050,
285,
8717,
542,
35492,
357,
1878,
459,
283,
636,
8836,
3129,
292,
8358,
1556,
28749,
285,
5013,
78,
778,
10205,
87,
320,
292,
737,
198,
37811,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
304,
18,
535,
18,
66,
3324,
12,
4869,
324,
12,
7029,
21,
12,
23,
68,
1983,
12,
36434,
7252,
16,
3609,
24,
12993,
65,
198,
9132,
37811,
198,
32,
19647,
544,
909,
83,
3755,
357,
499,
10205,
82,
5323,
1208,
418,
466,
285,
25125,
24313,
466,
31312,
68,
828,
38251,
25,
198,
37811,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
767,
2670,
66,
24,
64,
23,
64,
12,
1485,
64,
20,
12,
19,
64,
2091,
12,
64,
39710,
12,
69,
20,
15630,
21,
21101,
2327,
68,
6469,
198,
9132,
37811,
198,
21017,
2295,
33587,
313,
25440,
28686,
6184,
94,
39532,
418,
198,
37811,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
604,
68,
46712,
21101,
23,
12,
21,
67,
330,
12,
17885,
67,
12,
24,
69,
3510,
12,
65,
18,
68,
37680,
67,
24,
66,
18,
12993,
198,
9132,
37811,
198,
47,
3301,
795,
33587,
313,
283,
28686,
6184,
94,
39532,
418,
11,
267,
2179,
952,
390,
12794,
68,
3718,
9160,
1055,
12379,
2760,
368,
23430,
384,
385,
374,
1872,
418,
11,
198,
368,
300,
35652,
466,
2179,
952,
390,
12794,
68,
288,
292,
987,
64,
16175,
127,
113,
274,
390,
28423,
446,
12,
25784,
13,
7232,
28749,
11,
34087,
259,
320,
418,
355,
1351,
292,
390,
269,
2634,
75,
25283,
401,
23781,
2179,
952,
390,
12794,
68,
390,
18074,
225,
14,
17,
13,
955,
78,
2471,
268,
292,
987,
64,
16175,
127,
113,
274,
390,
285,
5013,
78,
1090,
1462,
435,
66,
590,
1055,
28749,
5204,
38768,
11,
304,
257,
1257,
16175,
28749,
38251,
307,
76,
552,
419,
4763,
11,
257,
267,
16514,
23638,
16175,
28749,
38251,
285,
5013,
78,
374,
6557,
79,
3755,
25,
198,
37811,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
642,
487,
24,
66,
4531,
64,
12,
67,
17032,
12,
19,
1878,
17,
12,
23,
68,
22,
68,
12,
21855,
2079,
67,
2920,
2780,
66,
2623,
198,
9132,
37811,
198,
53,
321,
418,
34087,
259,
343,
257,
1275,
844,
64,
11,
401,
267,
2179,
952,
390,
12794,
68,
1450,
273,
25,
198,
37811,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
657,
69,
17,
69,
2816,
69,
21,
12,
41322,
65,
12,
32576,
68,
12,
65,
891,
22,
12,
68,
7252,
2079,
6814,
19,
67,
2079,
69,
198,
3524,
62,
8002,
796,
8315,
26933,
3524,
62,
1589,
62,
8199,
329,
4808,
287,
352,
25,
18,
4357,
38392,
14,
17,
8,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
40643,
324,
36993,
12,
23753,
65,
12,
19,
64,
20,
67,
12,
65,
2481,
68,
12,
22,
1878,
19,
67,
15,
66,
1558,
43134,
198,
565,
62,
8002,
796,
12440,
8053,
7,
87,
15,
62,
8199,
11,
3524,
62,
8002,
8,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
7192,
66,
17,
68,
1433,
68,
12,
65,
22,
69,
20,
12,
19,
7568,
17,
12,
4846,
69,
19,
12,
2919,
32531,
65,
20,
69,
4531,
3720,
198,
9132,
37811,
198,
41,
6557,
387,
85,
8836,
321,
418,
2730,
17305,
334,
2611,
1257,
16175,
28749,
31215,
2386,
10440,
355,
329,
16175,
292,
390,
1090,
1462,
435,
66,
590,
357,
63,
27087,
62,
565,
63,
828,
12422,
3718,
271,
321,
418,
14839,
72,
257,
1257,
16175,
28749,
390,
366,
877,
70,
544,
1,
2570,
4763,
25,
198,
37811,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
1467,
66,
9945,
66,
1507,
12,
68,
23,
3510,
12,
19,
67,
15,
64,
12,
65,
22,
68,
21,
12,
5774,
69,
2998,
66,
15,
66,
4309,
67,
24,
198,
8818,
334,
62,
8002,
7,
87,
11,
3524,
3712,
14253,
11,
565,
3712,
28780,
8053,
8,
198,
220,
220,
220,
537,
796,
10133,
28780,
8053,
0,
7,
87,
11,
3524,
11,
565,
11,
1845,
29363,
28,
9562,
8,
198,
220,
220,
220,
334,
796,
3975,
62,
24874,
3083,
0,
7,
198,
220,
220,
220,
220,
220,
220,
220,
357,
87,
11,
88,
11,
72,
11,
73,
11,
67,
17,
11,
84,
8,
4613,
2221,
198,
197,
197,
197,
84,
15853,
357,
31166,
17034,
7,
67,
17,
8,
532,
3091,
13,
8968,
2364,
8,
61,
17,
1303,
9432,
2163,
198,
197,
197,
197,
7783,
334,
198,
197,
197,
437,
11,
198,
220,
220,
220,
220,
220,
220,
220,
657,
1539,
3091,
11,
537,
11,
198,
220,
220,
220,
220,
220,
220,
220,
10730,
28,
9562,
198,
220,
220,
220,
1267,
198,
220,
220,
220,
1441,
334,
198,
437,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
9225,
22172,
69,
4531,
12,
19082,
66,
12,
42199,
65,
12,
23,
17279,
12,
20972,
2079,
65,
4089,
68,
20198,
198,
9132,
37811,
198,
35,
38768,
355,
1257,
16175,
127,
113,
274,
390,
19647,
544,
267,
31312,
68,
288,
292,
1257,
16175,
127,
113,
274,
390,
795,
33587,
313,
3263,
68,
11,
24573,
368,
418,
581,
14375,
267,
1917,
64,
25,
198,
37811,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
275,
20,
68,
25600,
10210,
12,
2816,
3682,
12,
19,
64,
19,
66,
12,
3609,
15,
69,
12,
6420,
66,
17,
39071,
42780,
9945,
198,
9132,
37811,
198,
38351,
1593,
68,
407,
283,
8358,
257,
267,
16514,
23638,
16175,
28749,
466,
795,
33587,
313,
3263,
78,
6718,
12397,
84,
31215,
23781,
10356,
528,
7079,
3298,
357,
64,
1188,
273,
12379,
1257,
16175,
28749,
38251,
6632,
2599,
198,
37811,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
275,
15,
17896,
16,
66,
17,
65,
12,
6469,
65,
22,
12,
33646,
67,
12,
1795,
4524,
12,
16,
891,
24,
69,
3270,
64,
1314,
68,
20,
198,
9132,
37811,
198,
32,
19647,
544,
11,
16964,
503,
305,
300,
4533,
11,
299,
28749,
38251,
2418,
283,
1789,
21872,
26605,
844,
64,
25,
198,
37811,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
10111,
65,
23,
65,
1314,
65,
12,
2425,
66,
22,
12,
3559,
2481,
12,
17032,
67,
12,
65,
15,
3134,
276,
17,
64,
3023,
69,
24,
198,
9132,
37811,
198,
10161,
7043,
292,
5391,
641,
127,
113,
274,
11,
1556,
64,
38251,
257,
288,
361,
14226,
50041,
920,
260,
23781,
11644,
403,
1462,
390,
45443,
418,
27602,
4533,
31341,
1352,
1789,
21872,
11,
304,
23781,
11644,
403,
1462,
390,
45443,
418,
909,
83,
17305,
2471,
10205,
82,
257,
1540,
84,
16175,
28749,
466,
1917,
64,
390,
795,
33587,
313,
3263,
78,
25,
198,
37811,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
642,
6420,
68,
21,
64,
24,
66,
12,
30272,
66,
12,
38339,
69,
12,
64,
3980,
65,
12,
19,
7568,
15630,
35549,
25475,
198,
9132,
37811,
198,
44,
274,
5908,
257,
19647,
544,
2472,
3758,
78,
5988,
64,
11,
2169,
418,
257,
308,
4741,
544,
390,
8358,
299,
16550,
388,
1582,
390,
6184,
94,
39532,
418,
1556,
6557,
285,
15152,
778,
10205,
87,
25147,
8358,
267,
2179,
952,
390,
12794,
68,
285,
39588,
25147,
8214,
6557,
626,
31215,
355,
987,
64,
16175,
127,
113,
274,
1128,
5753,
38630,
390,
1090,
1462,
435,
66,
590,
13,
2195,
320,
11,
1556,
64,
4566,
5330,
16175,
28749,
38251,
9939,
4763,
31215,
287,
291,
12571,
334,
2611,
985,
4712,
16175,
28749,
13,
198,
198,
63,
11869,
43132,
63,
10568,
43577,
1917,
64,
390,
795,
33587,
313,
3263,
78,
390,
31215,
18605,
2634,
3129,
292,
390,
4903,
908,
7496,
3716,
64,
11,
304,
257,
78,
18842,
5908,
28691,
9943,
578,
257,
78,
514,
84,
6557,
27250,
257,
1658,
431,
7790,
64,
16175,
28749,
390,
288,
361,
9100,
274,
1334,
380,
16175,
127,
113,
274,
4903,
296,
25125,
1173,
292,
8358,
24573,
368,
1055,
514,
38768,
31215,
2730,
343,
267,
610,
2596,
7639,
288,
292,
15024,
2634,
3171,
645,
1658,
8957,
16175,
78,
13,
220,
198,
37811,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
352,
69,
2075,
2816,
4304,
12,
23,
1731,
64,
12,
2857,
2414,
12,
64,
22,
2548,
12,
3104,
31046,
29703,
1795,
3720,
198,
9132,
37811,
198,
2235,
2264,
28749,
374,
6557,
79,
17305,
38251,
4600,
28780,
8053,
13912,
13,
20362,
63,
30,
198,
198,
52,
2611,
1405,
544,
12379,
304,
69,
44070,
25792,
10782,
544,
12379,
3494,
64,
16175,
28749,
288,
292,
269,
2634,
75,
25283,
26106,
38768,
795,
4600,
28780,
8053,
13912,
13,
20362,
63,
279,
1098,
1055,
909,
83,
3755,
4616,
25440,
267,
28691,
390,
334,
2611,
985,
4712,
16175,
28749,
466,
308,
40138,
390,
3169,
27083,
77,
952,
11,
401,
257,
18842,
2611,
985,
4712,
16175,
28749,
730,
5350,
16964,
23781,
23503,
1258,
2803,
11129,
66,
17305,
390,
16278,
22940,
76,
3970,
18955,
11,
401,
78,
267,
685,
45,
28075,
16151,
5450,
1378,
2503,
13,
591,
13,
9019,
1229,
13,
15532,
14,
25104,
14,
7402,
67,
14,
737,
220,
198,
198,
41565,
368,
418,
3121,
283,
257,
985,
4712,
16175,
28749,
514,
25440,
257,
18842,
2611,
1257,
16175,
28749,
4600,
9132,
63,
390,
1885,
274,
11,
12422,
401,
257,
1257,
16175,
28749,
390,
19647,
544,
1787,
268,
2413,
390,
28423,
446,
12,
25784,
1162,
1186,
64,
25,
198,
37811,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
352,
68,
15,
2079,
68,
16,
69,
12,
2414,
5824,
12,
45068,
65,
12,
5332,
1558,
12,
20,
65,
9395,
18,
68,
1507,
7252,
21,
198,
9132,
37811,
198,
2,
1892,
292,
198,
198,
16,
13,
337,
5013,
418,
8171,
418,
390,
1233,
822,
9019,
16175,
127,
113,
274,
24573,
368,
1055,
909,
83,
24496,
514,
25440,
267,
23503,
1258,
4600,
20344,
2455,
507,
13,
20362,
44646,
440,
1097,
6557,
353,
308,
1691,
288,
292,
1257,
16175,
127,
113,
274,
795,
22300,
9943,
578,
8358,
23781,
23503,
1258,
401,
78,
43577,
384,
6592,
514,
4533,
31215,
27602,
283,
1233,
822,
9019,
16175,
127,
113,
274,
390,
8171,
418,
778,
10205,
3448,
418,
11,
401,
78,
267,
4600,
53,
721,
17,
35,
63,
3494,
4533,
14839,
72,
13,
220,
198,
198,
17,
13,
317,
4132,
430,
16175,
28749,
466,
43630,
568,
269,
10205,
12894,
78,
4600,
9132,
63,
38251,
257,
285,
15152,
985,
2374,
390,
284,
67,
292,
13,
440,
435,
7053,
270,
5908,
14841,
81,
28749,
31215,
4132,
430,
16175,
28749,
390,
1602,
64,
16175,
127,
113,
274,
390,
1409,
3681,
78,
795,
16278,
22940,
76,
3970,
18955,
38251,
267,
4600,
46261,
11683,
12,
13414,
1616,
47671,
304,
38251,
43577,
8358,
1556,
6557,
3494,
4533,
645,
269,
10205,
12894,
78,
8358,
552,
3301,
257,
304,
69,
44070,
25792,
10782,
544,
23430,
4600,
28780,
8053,
13912,
13,
20362,
63,
795,
823,
64,
16175,
28749,
257,
78,
399,
28075,
13,
337,
5013,
292,
503,
8847,
3983,
265,
38630,
1556,
28749,
4596,
261,
8836,
303,
271,
645,
23503,
1258,
4600,
40341,
498,
23588,
602,
13,
20362,
44646,
198,
198,
18,
13,
317,
2632,
8126,
16175,
28749,
390,
753,
263,
660,
89,
292,
304,
257,
288,
361,
14226,
979,
14991,
312,
671,
12379,
985,
4712,
16175,
28749,
390,
636,
8836,
3129,
292,
3718,
9160,
1055,
410,
12523,
401,
23781,
279,
280,
1073,
390,
17258,
10304,
13,
10062,
274,
264,
396,
368,
292,
264,
28749,
8171,
291,
3263,
68,
1275,
10205,
13370,
418,
11,
2493,
14723,
355,
753,
316,
8471,
292,
257,
1713,
321,
390,
1296,
64,
1033,
34481,
2413,
11,
304,
355,
16124,
38768,
264,
28749,
285,
5013,
78,
916,
6557,
303,
271,
13,
21039,
4130,
1281,
493,
68,
601,
12427,
523,
4679,
257,
3054,
571,
346,
312,
671,
2244,
274,
269,
6557,
75,
3129,
418,
279,
1098,
1556,
6557,
4596,
261,
8836,
626,
685,
36129,
72,
16151,
5450,
1378,
8310,
2283,
354,
3609,
13,
12567,
13,
952,
14,
7353,
14,
19106,
278,
14,
737,
5267,
3263,
68,
11,
267,
23503,
1258,
4600,
40341,
498,
23588,
602,
13,
20362,
63,
1184,
9019,
11354,
15141,
292,
285,
15152,
9939,
38768,
31215,
19789,
283,
401,
257,
267,
16514,
23638,
16175,
28749,
390,
1582,
22940,
4164,
4951,
288,
292,
985,
4712,
16175,
127,
113,
274,
299,
408,
292,
2498,
403,
301,
22940,
77,
979,
292,
13,
220,
198,
198,
37811,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
838,
66,
23,
2996,
2857,
12,
67,
19,
69,
19,
12,
19,
66,
18,
69,
12,
4531,
3312,
12,
330,
1507,
344,
6052,
69,
18,
65,
21,
198,
9132,
37811,
198,
2,
317,
9526,
66,
3681,
418,
198,
198,
32,
9526,
16175,
78,
257,
685,
32668,
14064,
8118,
585,
5733,
16151,
5450,
1378,
12397,
585,
5733,
13,
12567,
13,
952,
34729,
16964,
1188,
4267,
292,
2112,
127,
113,
274,
257,
581,
431,
10094,
466,
25439,
295,
3263,
78,
23503,
1258,
4600,
47384,
902,
47671,
304,
257,
685,
15645,
18489,
16151,
5450,
1378,
12567,
13,
785,
14,
66,
3682,
69,
8,
16964,
2112,
127,
113,
274,
257,
581,
431,
10094,
12379,
2632,
8126,
16175,
28749,
390,
1931,
4951,
25221,
1291,
31173,
10205,
380,
292,
304,
503,
8847,
424,
3495,
127,
113,
274,
31215,
267,
20922,
13,
309,
4131,
2634,
76,
556,
27585,
16175,
78,
257,
410,
6557,
380,
418,
503,
4951,
1066,
65,
4951,
23430,
277,
10205,
45241,
1635,
15410,
9047,
9,
390,
22300,
304,
6401,
2596,
8358,
542,
822,
84,
343,
321,
19958,
8326,
267,
84,
773,
557,
83,
3263,
68,
401,
43577,
491,
44349,
8873,
13,
317,
9526,
16175,
78,
2457,
434,
68,
257,
78,
401,
270,
25792,
1618,
528,
7079,
12379,
6401,
272,
3103,
1238,
2481,
16176,
78,
3063,
578,
11,
795,
1948,
257,
685,
24857,
272,
4424,
66,
291,
16151,
5450,
1378,
25433,
1192,
333,
66,
291,
13,
785,
8,
304,
257,
685,
46,
358,
129,
247,
68,
73,
34754,
234,
861,
8836,
74,
16151,
5450,
1378,
12567,
13,
785,
14,
22583,
1134,
828,
304,
257,
78,
4415,
13,
685,
44,
437,
43733,
569,
391,
5714,
16151,
4023,
1378,
2503,
13,
361,
13,
3046,
81,
14542,
13,
1671,
14,
1930,
69,
271,
12,
415,
14031,
14,
9630,
13,
10121,
14,
1671,
14,
525,
44172,
274,
14,
50080,
12,
76,
437,
43733,
12,
85,
391,
5714,
13,
6494,
8,
16176,
78,
3063,
578,
31215,
2471,
2028,
283,
267,
36870,
6557,
27250,
12385,
471,
10913,
14313,
13,
220,
198,
37811,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
2579,
4869,
22260,
18,
12,
68,
21,
65,
19,
12,
19,
64,
17,
67,
12,
23,
3104,
64,
12,
2623,
43918,
68,
24,
64,
28857,
66,
198,
9132,
37811,
198,
2,
17056,
5330,
16175,
127,
113,
274,
466,
20922,
198,
37811,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
362,
64,
17,
68,
24,
18742,
12,
16,
66,
3324,
12,
3510,
16344,
12,
25764,
17,
12,
23,
3559,
1314,
4790,
69,
5824,
67,
15,
198,
9132,
37811,
198,
2235,
17056,
5330,
16175,
127,
113,
274,
14841,
81,
28749,
31215,
28686,
1036,
6557,
69,
291,
418,
198,
37811,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
275,
41948,
64,
27720,
12,
23,
66,
18,
66,
12,
19,
17896,
22,
12,
5774,
3459,
12,
19881,
4089,
64,
721,
23,
66,
20,
66,
15,
198,
9132,
37811,
198,
5842,
321,
418,
4600,
18557,
69,
63,
31215,
5794,
283,
435,
44265,
9955,
418,
13,
198,
37811,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
21148,
67,
36189,
18,
12,
21,
535,
17,
12,
19,
19708,
12,
23,
64,
17,
66,
12,
23,
67,
23,
64,
32576,
5332,
721,
69,
198,
9132,
37811,
198,
41565,
368,
418,
2730,
343,
1556,
64,
5553,
6557,
626,
401,
78,
4600,
9562,
63,
304,
299,
28749,
277,
19178,
299,
16550,
388,
1036,
6557,
69,
3713,
13,
198,
37811,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
257,
34808,
1129,
3132,
12,
19,
535,
24,
12,
19,
67,
1433,
12,
64,
21,
67,
17,
12,
2682,
65,
1821,
4869,
64,
5705,
67,
22,
198,
9979,
1382,
62,
489,
1747,
796,
2081,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
49020,
69,
23516,
65,
12,
2414,
2154,
12,
1821,
276,
12,
65,
15,
3104,
12,
64,
23,
31047,
558,
19,
69,
2931,
198,
11249,
62,
489,
1747,
11405,
2221,
198,
220,
220,
220,
374,
796,
657,
25,
15,
13,
16,
25,
16,
13,
17,
9,
8968,
2364,
198,
220,
220,
220,
7110,
7,
39786,
16193,
16,
11,
17,
828,
7857,
16193,
8054,
11,
6200,
4008,
198,
220,
220,
220,
7110,
0,
7,
81,
11,
22554,
12195,
15,
1539,
81,
11,
8968,
2364,
828,
87,
18242,
2625,
45767,
1600,
2645,
9608,
2625,
28925,
1600,
7266,
29487,
28,
16,
8,
198,
220,
220,
220,
7110,
0,
7,
81,
11,
69,
158,
224,
241,
12195,
15,
1539,
81,
11,
8968,
2364,
828,
87,
18242,
2625,
45767,
1600,
2645,
9608,
2625,
10292,
1600,
7266,
29487,
28,
17,
8,
198,
437,
220,
220,
220,
220,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
5946,
68,
21,
65,
20964,
12,
1453,
2327,
12,
1821,
69,
16,
12,
65,
35005,
12,
18,
6814,
1828,
65,
24,
68,
16,
65,
16,
65,
198,
11249,
62,
489,
1747,
11405,
41058,
26933,
7,
87,
13,
87,
11,
2124,
13,
88,
8,
329,
2124,
287,
2124,
15,
12962,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
43367,
891,
20,
397,
12,
69,
22042,
12,
19,
397,
18,
12,
64,
22,
1954,
12,
41544,
65,
20,
1765,
20,
17896,
15,
69,
198,
11249,
62,
489,
1747,
11405,
2488,
27908,
329,
357,
9662,
11,
87,
8,
287,
14729,
7,
9535,
752,
652,
8,
198,
220,
220,
220,
41058,
26933,
357,
79,
13,
87,
11,
79,
13,
88,
8,
329,
279,
287,
2124,
16589,
1761,
82,
16193,
12,
9031,
11,
9031,
4008,
198,
220,
220,
220,
24708,
378,
0,
7,
12952,
12095,
21536,
11,
5239,
7203,
9662,
25,
720,
9662,
1600,
29487,
62,
10331,
11,
1065,
11,
25,
9464,
4008,
198,
437,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
304,
16072,
29796,
64,
17,
12,
2931,
3510,
12,
19,
17896,
20,
12,
397,
18,
64,
12,
2670,
2999,
64,
23,
1157,
69,
18,
324,
198,
11249,
62,
489,
1747,
11405,
2488,
27908,
329,
357,
9662,
11,
87,
8,
287,
14729,
7,
9535,
752,
652,
62,
41007,
291,
8,
198,
220,
220,
220,
41058,
26933,
14441,
12195,
7,
79,
13,
87,
11,
79,
13,
88,
828,
3064,
8,
329,
279,
287,
2124,
16589,
1761,
82,
16193,
12,
1899,
11,
1899,
4008,
198,
220,
220,
220,
24708,
378,
0,
7,
1495,
12095,
1120,
11,
5239,
7203,
9662,
25,
720,
9662,
1600,
29487,
62,
10331,
11,
1065,
11,
25,
9464,
4008,
198,
437,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
604,
64,
36260,
66,
1507,
12,
29703,
69,
12,
2598,
2718,
12,
65,
30695,
12,
7252,
24,
16344,
66,
2425,
65,
24,
1129,
198,
11249,
62,
489,
1747,
11405,
2488,
27908,
329,
2124,
287,
22942,
62,
41007,
291,
62,
18,
35,
198,
220,
220,
220,
41058,
26933,
14441,
12195,
7,
79,
13,
87,
11,
79,
13,
88,
11,
79,
13,
89,
828,
3064,
8,
329,
279,
287,
2124,
16589,
1761,
82,
16193,
12,
1899,
11,
1899,
4008,
198,
437,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
288,
5774,
66,
1828,
67,
16,
12,
67,
35124,
12,
19,
67,
3559,
12,
397,
16,
66,
12,
69,
2078,
67,
32568,
64,
2682,
5332,
198,
11249,
62,
489,
1747,
11405,
357,
22942,
62,
17,
35,
62,
18224,
796,
45243,
19510,
198,
220,
220,
220,
2124,
15,
796,
685,
25120,
62,
4122,
7,
53,
721,
17,
35,
90,
47384,
434,
90,
43879,
2414,
92,
5512,
32590,
1120,
11,
1120,
828,
16,
68,
12,
20,
8,
329,
4808,
287,
352,
25,
3064,
16589,
220,
198,
220,
220,
220,
410,
15,
796,
685,
25120,
62,
4122,
7,
53,
721,
17,
35,
90,
47384,
434,
90,
43879,
2414,
92,
5512,
32590,
16,
11,
16,
828,
16,
68,
12,
20,
8,
329,
4808,
287,
352,
25,
3064,
16589,
198,
220,
220,
220,
2347,
796,
685,
352,
13,
15,
329,
4808,
287,
352,
25,
3064,
16589,
198,
220,
220,
220,
288,
83,
796,
657,
13,
16,
11,
198,
220,
220,
220,
299,
20214,
796,
1802,
11,
198,
220,
220,
220,
318,
1015,
796,
352,
11,
198,
220,
220,
220,
3386,
0,
796,
357,
69,
11,
87,
8,
4613,
3386,
0,
7,
69,
11,
87,
11,
357,
72,
11,
73,
11,
79,
16,
11,
79,
17,
8,
4613,
277,
158,
224,
241,
7,
79,
16,
11,
79,
17,
11,
8968,
2364,
11,
1589,
4008,
198,
8,
23029,
1267,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
275,
69,
15,
64,
20,
22572,
12,
69,
20,
344,
12,
2857,
1157,
12,
65,
24,
1453,
12,
64,
1065,
344,
17,
67,
23,
64,
33372,
198,
11249,
62,
489,
1747,
11405,
2488,
27908,
329,
2124,
287,
22942,
62,
17,
35,
62,
18224,
198,
220,
220,
220,
6116,
796,
685,
14441,
12195,
7,
79,
13,
87,
13,
2100,
11,
79,
13,
88,
13,
2100,
828,
3064,
8,
329,
279,
287,
2124,
2361,
198,
220,
220,
220,
41058,
7,
1930,
1756,
11,
1761,
82,
16193,
12,
1899,
11,
1899,
4008,
198,
437,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
304,
1731,
344,
2919,
16,
12,
68,
27824,
12,
19,
69,
1765,
12,
23,
64,
3720,
12,
2791,
65,
23,
39111,
64,
15,
65,
18,
64,
198,
11249,
62,
489,
1747,
11405,
2488,
27908,
329,
2124,
287,
22942,
62,
17,
35,
62,
18224,
198,
220,
220,
220,
1554,
21857,
7,
198,
220,
220,
220,
220,
220,
220,
220,
685,
279,
13,
87,
13,
8056,
329,
279,
287,
2124,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
2124,
18242,
2625,
3118,
39239,
774,
287,
2124,
1600,
2645,
9608,
2625,
15057,
286,
2173,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
41701,
28,
15,
25,
16,
68,
12,
19,
25,
1238,
68,
12,
19,
11,
88,
2475,
82,
41888,
15,
11,
1120,
60,
198,
220,
220,
220,
1267,
198,
437,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
15696,
2425,
1983,
68,
12,
4304,
65,
22,
12,
19,
31697,
12,
65,
18,
397,
12,
891,
67,
4761,
21855,
2079,
7568,
66,
198,
11249,
62,
489,
1747,
11405,
2488,
27908,
329,
357,
9662,
11,
87,
8,
287,
14729,
7,
9535,
752,
652,
62,
11578,
1039,
8,
198,
220,
220,
220,
7577,
796,
685,
1058,
36022,
11,
1058,
49502,
11,
1058,
33282,
11,
1058,
17585,
11,
1058,
445,
2361,
198,
220,
220,
220,
6116,
796,
685,
357,
79,
13,
87,
13,
2100,
11,
79,
13,
88,
13,
2100,
8,
329,
279,
287,
2124,
2361,
198,
220,
220,
220,
2124,
8056,
796,
685,
279,
13,
87,
13,
8056,
329,
279,
287,
2124,
2361,
198,
220,
220,
220,
331,
8056,
796,
685,
279,
13,
88,
13,
8056,
329,
279,
287,
2124,
2361,
220,
198,
220,
220,
220,
41058,
7,
1930,
1756,
11,
2475,
82,
41888,
12,
9031,
11,
9031,
4357,
1317,
2798,
45621,
28,
4033,
669,
11,
2124,
18224,
28,
87,
8056,
11,
331,
18224,
28,
88,
8056,
8,
198,
220,
220,
220,
24708,
378,
0,
7,
8628,
12095,
21536,
11,
5239,
7,
31,
82,
37435,
7203,
4,
20,
72,
1528,
1600,
9662,
828,
29487,
62,
10331,
11,
1065,
4008,
198,
437,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
604,
344,
69,
24,
344,
64,
12,
16,
68,
5705,
12,
3682,
65,
24,
12,
65,
487,
21,
12,
65,
24,
64,
23,
65,
18,
65,
5036,
23,
6814,
198,
11249,
62,
489,
1747,
11405,
2488,
27908,
329,
2239,
287,
1123,
9630,
7,
16442,
62,
9535,
73,
62,
13466,
8,
198,
220,
220,
220,
7577,
796,
685,
1058,
36022,
11,
1058,
17585,
2361,
198,
220,
220,
220,
6116,
15,
796,
685,
357,
79,
13,
87,
11,
79,
13,
88,
8,
329,
279,
287,
4534,
62,
9535,
73,
62,
15,
58,
9662,
60,
2361,
220,
198,
220,
220,
220,
6116,
62,
13466,
796,
685,
357,
79,
13,
87,
11,
79,
13,
88,
8,
329,
279,
287,
4534,
62,
9535,
73,
62,
13466,
58,
9662,
60,
2361,
198,
220,
220,
220,
41058,
7,
1930,
1756,
15,
11,
2475,
82,
41888,
12,
9031,
11,
9031,
4357,
1317,
2798,
45621,
28,
4033,
669,
11,
17130,
28,
15,
13,
20,
8,
198,
220,
220,
220,
41058,
0,
7,
1930,
1756,
62,
13466,
11,
2475,
82,
41888,
12,
9031,
11,
9031,
4357,
1317,
2798,
45621,
28,
4033,
669,
8,
198,
220,
220,
220,
41058,
0,
7,
198,
220,
220,
220,
220,
220,
220,
220,
357,
16442,
62,
9535,
73,
62,
13466,
58,
16,
7131,
17,
4083,
87,
11,
16442,
62,
9535,
73,
62,
13466,
58,
16,
7131,
17,
4083,
88,
828,
198,
220,
220,
220,
220,
220,
220,
220,
1317,
2798,
45621,
28,
25,
11186,
11,
26591,
28,
15,
13,
20,
11,
198,
220,
220,
220,
220,
220,
220,
220,
19736,
1096,
28,
940,
198,
220,
220,
220,
1267,
198,
220,
220,
220,
24708,
378,
0,
7,
8628,
12095,
21536,
11,
5239,
7,
31,
82,
37435,
7203,
4,
20,
72,
1528,
1600,
17,
9,
9662,
828,
29487,
62,
10331,
11,
1065,
4008,
198,
437,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
304,
20,
65,
41948,
67,
22,
12,
2931,
4309,
12,
25644,
24,
12,
3609,
19,
66,
12,
64,
15,
66,
23,
344,
49150,
68,
3070,
198,
11249,
62,
489,
1747,
11405,
2488,
27908,
329,
357,
9662,
11,
87,
8,
287,
14729,
7,
9535,
752,
652,
62,
41007,
291,
62,
11664,
8,
198,
220,
220,
220,
41058,
7,
198,
220,
220,
220,
220,
220,
220,
220,
685,
14441,
12195,
7,
79,
13,
87,
11,
79,
13,
88,
828,
3524,
62,
1589,
8,
329,
279,
287,
2124,
16589,
220,
198,
220,
220,
220,
220,
220,
220,
220,
1761,
82,
16193,
12,
16,
13,
16,
9,
3524,
62,
1589,
14,
17,
11,
16,
13,
16,
9,
3524,
62,
1589,
14,
17,
8,
198,
220,
220,
220,
1267,
198,
437,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
1542,
67,
17,
69,
2670,
68,
12,
20,
7568,
17,
12,
19,
69,
2548,
12,
1795,
2624,
12,
68,
20,
69,
23,
40256,
7012,
27326,
198,
11249,
62,
489,
1747,
11405,
2488,
27908,
329,
357,
9662,
11,
87,
8,
287,
14729,
7,
9535,
752,
652,
62,
3846,
62,
20713,
8,
198,
220,
220,
220,
41058,
7,
198,
220,
220,
220,
220,
220,
220,
220,
685,
14441,
12195,
7,
79,
13,
87,
11,
79,
13,
88,
828,
3524,
62,
1589,
8,
329,
279,
287,
2124,
16589,
220,
198,
220,
220,
220,
220,
220,
220,
220,
1761,
82,
16193,
12,
16,
13,
16,
9,
3524,
62,
1589,
14,
17,
11,
16,
13,
16,
9,
3524,
62,
1589,
14,
17,
8,
198,
220,
220,
220,
1267,
198,
437,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
2608,
2682,
5036,
487,
12,
22,
39506,
12,
19,
67,
23,
69,
12,
65,
23,
68,
20,
12,
66,
1157,
16616,
1485,
3388,
1795,
198,
11249,
62,
489,
1747,
11405,
2221,
198,
197,
81,
62,
75,
73,
796,
362,
13,
23,
25,
15,
13,
2713,
25,
23,
198,
197,
29487,
7,
198,
197,
197,
81,
62,
75,
73,
11,
377,
73,
62,
24874,
12195,
81,
62,
75,
73,
13,
61,
17,
11,
15,
1539,
30950,
11,
38392,
828,
198,
197,
197,
87,
18242,
2625,
45767,
1220,
6184,
227,
1600,
331,
18242,
2625,
25396,
1843,
2568,
1220,
49504,
14,
43132,
1,
198,
197,
8,
198,
437,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
275,
19,
21526,
21855,
22,
12,
68,
15,
65,
15,
12,
3682,
1157,
12,
23,
31503,
12,
23,
64,
23,
5036,
2857,
10210,
17,
6814,
198,
9132,
37811,
198,
2235,
337,
25125,
24313,
466,
31312,
68,
31215,
20202,
2850,
198,
37811,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
807,
330,
22,
65,
16,
19881,
12,
66,
24,
3365,
12,
19,
1765,
20,
12,
23,
32128,
12,
69,
30863,
65,
36720,
68,
41060,
198,
8818,
31312,
62,
8906,
1087,
0,
7,
87,
3712,
38469,
90,
51,
5512,
69,
11,
70,
0,
26,
83,
349,
28,
16,
68,
12,
18,
11,
2611,
742,
4454,
28,
4059,
8,
810,
309,
198,
220,
220,
220,
19967,
579,
7,
87,
8,
796,
5415,
7,
27237,
7,
85,
8,
329,
410,
287,
2124,
8,
198,
220,
220,
220,
340,
4454,
796,
657,
198,
220,
220,
220,
2239,
796,
352,
13,
15,
198,
220,
220,
220,
220,
742,
4454,
796,
2092,
7,
87,
8,
198,
220,
220,
220,
308,
796,
6070,
0,
7,
38610,
7,
87,
828,
22570,
7,
51,
4008,
198,
220,
220,
220,
277,
87,
796,
277,
7,
87,
8,
198,
220,
220,
220,
308,
796,
308,
0,
7,
70,
11,
87,
8,
198,
220,
220,
220,
981,
357,
4593,
579,
7,
70,
8,
1875,
284,
75,
8,
11405,
357,
270,
4454,
1279,
17266,
742,
4454,
8,
220,
198,
220,
220,
220,
220,
220,
220,
220,
2488,
13,
220,
742,
4454,
796,
2124,
532,
2239,
9,
70,
198,
220,
220,
220,
220,
220,
220,
220,
10117,
4454,
796,
277,
7,
742,
4454,
8,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
611,
10117,
4454,
18189,
277,
87,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2239,
796,
2239,
1220,
362,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2124,
764,
28,
220,
742,
4454,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
277,
87,
796,
10117,
4454,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
308,
796,
308,
0,
7,
70,
11,
87,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2239,
796,
2239,
1635,
362,
198,
220,
220,
220,
220,
220,
220,
220,
886,
198,
220,
220,
220,
220,
220,
220,
220,
2488,
12860,
340,
4454,
11,
2239,
11,
277,
87,
11,
10117,
4454,
11,
19967,
579,
7,
70,
8,
198,
197,
197,
270,
4454,
15853,
352,
198,
220,
220,
220,
886,
220,
198,
220,
220,
220,
1441,
2124,
198,
437,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
45210,
66,
2791,
2481,
12,
65,
17,
65,
23,
12,
19,
69,
1270,
12,
7012,
3901,
12,
487,
66,
16,
3609,
21,
69,
43637,
65,
198,
83,
62,
1084,
796,
2488,
417,
28361,
2124,
62,
1084,
796,
31312,
62,
8906,
1087,
0,
7,
198,
220,
220,
220,
4866,
7,
87,
15,
62,
8199,
828,
198,
220,
220,
220,
357,
87,
8,
4613,
14856,
73,
7,
87,
11,
30950,
11,
38392,
11,
3524,
62,
8199,
11,
565,
62,
8199,
828,
198,
220,
220,
220,
357,
70,
11,
87,
8,
4613,
532,
2704,
73,
0,
7,
70,
11,
87,
11,
30950,
11,
38392,
11,
3524,
62,
8199,
11,
565,
62,
8199,
8,
198,
8,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
7618,
1765,
20,
65,
19,
65,
12,
4304,
324,
12,
19,
69,
22,
64,
12,
65,
4521,
65,
12,
15,
39449,
64,
23,
3553,
67,
6888,
16,
198,
377,
73,
7,
87,
62,
1084,
11,
30950,
11,
38392,
11,
3524,
62,
8199,
11,
565,
62,
8199,
8,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
7632,
1821,
2857,
13331,
12,
2791,
2075,
12,
19,
10210,
15,
12,
5999,
1558,
12,
2624,
16817,
1065,
5607,
1157,
68,
198,
9132,
37811,
198,
46,
21433,
78,
14839,
72,
38251,
3870,
21872,
4229,
436,
10366,
23593,
11,
12422,
749,
430,
23781,
552,
419,
3263,
78,
401,
388,
25,
257,
19647,
544,
1207,
10924,
12379,
10356,
23638,
16175,
28749,
38251,
257,
22261,
285,
5013,
78,
5988,
64,
13,
440,
9378,
78,
2653,
330,
1538,
304,
257,
916,
14991,
312,
671,
997,
2634,
30997,
466,
1787,
268,
2413,
3326,
67,
671,
7058,
11,
795,
1090,
83,
292,
1233,
22940,
77,
979,
292,
11,
277,
1031,
12379,
19647,
544,
334,
2611,
1257,
16175,
28749,
288,
361,
8836,
2856,
390,
10356,
528,
283,
13,
220,
198,
198,
1174,
12966,
7501,
514,
4533,
12385,
949,
259,
320,
4496,
16175,
28749,
12379,
19647,
544,
25,
720,
83,
62,
1084,
4201,
1174,
198,
198,
47,
273,
1275,
22064,
1233,
78,
685,
63,
11869,
43132,
63,
16151,
4023,
1378,
76,
18,
70,
13,
25011,
76,
13,
46903,
696,
13,
1671,
14,
8002,
43132,
8,
11511,
72,
748,
268,
10396,
16921,
78,
13,
5537,
7058,
11,
10568,
16785,
267,
1917,
64,
390,
795,
33587,
313,
283,
28686,
6184,
94,
39532,
418,
645,
1658,
8957,
16175,
78,
11,
308,
4741,
521,
78,
8358,
257,
1450,
273,
1233,
22940,
10782,
544,
920,
260,
304,
829,
384,
6592,
17266,
1504,
8358,
334,
2611,
8214,
22940,
10782,
544,
285,
39588,
8083,
13,
11446,
72,
11,
318,
1462,
3473,
68,
12385,
10356,
23638,
16175,
28749,
466,
43630,
568,
1787,
268,
2413,
424,
1015,
2656,
25,
198,
37811,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
26063,
29211,
68,
17,
12,
49542,
66,
12,
2598,
1878,
12,
65,
24,
64,
16,
12,
22996,
68,
17,
12927,
15,
69,
24,
198,
83,
62,
8002,
796,
2488,
417,
28361,
2124,
62,
8002,
796,
31312,
62,
8906,
1087,
0,
7,
198,
220,
220,
220,
4866,
7,
87,
15,
62,
8199,
828,
198,
220,
220,
220,
357,
87,
8,
4613,
334,
62,
8002,
7,
87,
11,
3524,
62,
8002,
11,
565,
62,
8002,
828,
198,
220,
220,
220,
357,
70,
11,
87,
8,
4613,
532,
27087,
62,
565,
0,
7,
70,
11,
87,
11,
3524,
62,
8002,
11,
565,
62,
8002,
11,
69,
24874,
62,
565,
8,
198,
8,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
657,
2996,
2075,
276,
69,
12,
35549,
64,
12,
19,
68,
535,
12,
64,
14877,
12,
21,
67,
24,
2624,
6888,
3980,
10210,
20,
198,
9132,
37811,
198,
1174,
12966,
7501,
2418,
6557,
27250,
31215,
267,
795,
33587,
313,
3263,
78,
25,
720,
83,
62,
8002,
4201,
1174,
198,
37811,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
269,
2780,
21536,
68,
15,
12,
16,
64,
3023,
12,
19,
69,
5705,
12,
64,
19,
68,
17,
12,
69,
21,
65,
20,
67,
2682,
64,
35642,
67,
198,
84,
62,
8002,
7,
87,
62,
8002,
11,
3524,
62,
8002,
11,
565,
62,
8002,
8,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
657,
38339,
65,
44183,
12,
69,
44183,
12,
19,
37466,
12,
65,
4846,
16,
12,
26279,
68,
2624,
67,
15,
64,
20,
68,
16,
198,
377,
73,
7,
87,
62,
8002,
11,
30950,
11,
38392,
11,
3524,
62,
8199,
11,
565,
62,
8199,
8,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
42489,
35133,
10210,
12,
23,
1453,
23,
12,
19,
67,
16,
67,
12,
4089,
19,
65,
12,
65,
19,
66,
20,
487,
405,
65,
3609,
18,
198,
83,
62,
8199,
796,
2488,
417,
28361,
22942,
62,
8199,
796,
45243,
19510,
198,
220,
220,
220,
2124,
15,
796,
2124,
62,
8002,
11,
220,
198,
220,
220,
220,
410,
15,
796,
685,
25120,
62,
4122,
7,
53,
721,
18,
35,
90,
43879,
2414,
5512,
32590,
16,
11,
16,
4008,
329,
4808,
287,
352,
25,
77,
62,
8199,
16589,
220,
198,
220,
220,
220,
2347,
796,
685,
1160,
13,
21738,
329,
4808,
287,
352,
25,
77,
62,
8199,
16589,
198,
220,
220,
220,
288,
83,
796,
657,
13,
486,
11,
198,
220,
220,
220,
299,
20214,
796,
1802,
11,
198,
220,
220,
220,
318,
1015,
796,
838,
11,
198,
220,
220,
220,
3386,
0,
796,
357,
69,
11,
87,
8,
4613,
781,
73,
0,
7,
69,
11,
87,
11,
30950,
11,
38392,
11,
3524,
62,
8199,
11,
565,
62,
8199,
8,
198,
8,
23029,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
860,
21101,
1959,
65,
486,
12,
22,
69,
2920,
12,
19,
18781,
12,
4846,
67,
23,
12,
66,
23,
16344,
24,
4869,
5036,
16,
66,
23,
198,
11249,
62,
489,
1747,
11405,
2488,
27908,
329,
2124,
287,
22942,
62,
8199,
198,
220,
220,
220,
41058,
7,
198,
220,
220,
220,
220,
220,
685,
14441,
12195,
7,
79,
13,
87,
11,
79,
13,
88,
11,
79,
13,
89,
828,
3524,
62,
1589,
62,
8199,
8,
329,
279,
287,
2124,
16589,
220,
198,
220,
220,
220,
220,
220,
1761,
82,
16193,
12,
16,
13,
16,
9,
3524,
62,
1589,
62,
8199,
14,
17,
11,
16,
13,
16,
9,
3524,
62,
1589,
62,
8199,
14,
17,
8,
198,
220,
220,
220,
1267,
198,
437,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
936,
4309,
64,
4869,
65,
12,
1157,
2548,
12,
19,
69,
16,
65,
12,
2079,
66,
18,
12,
66,
22985,
67,
24,
69,
2931,
23451,
198,
9132,
37811,
198,
32,
985,
4712,
16175,
28749,
1357,
273,
280,
720,
83,
62,
8199,
4201,
13,
220,
198,
198,
20795,
3263,
68,
11,
31215,
920,
2194,
409,
265,
3263,
68,
267,
8358,
318,
1462,
2216,
64,
11,
2169,
418,
8358,
277,
19178,
334,
2611,
552,
3301,
16175,
28749,
257,
1676,
3448,
4763,
13,
685,
45,
29872,
18335,
16151,
5450,
1378,
12567,
13,
785,
14,
76,
18,
70,
14,
1238,
2481,
62,
21926,
2596,
3103,
14,
21048,
14,
12417,
14,
3846,
4868,
8899,
62,
14259,
62,
7402,
67,
8,
277,
1031,
368,
418,
7043,
292,
985,
4712,
16175,
127,
113,
274,
2244,
68,
18842,
5908,
308,
40138,
11,
401,
1779,
72,
16175,
127,
113,
274,
3381,
375,
259,
22940,
9383,
292,
257,
1676,
3448,
38768,
13,
440,
435,
7053,
270,
5908,
3494,
4533,
795,
22300,
38251,
2092,
257,
78,
8358,
1556,
6557,
1715,
39834,
14839,
72,
11,
2859,
27206,
8358,
38251,
730,
5350,
334,
2611,
3381,
282,
23638,
16175,
28749,
16964,
302,
3798,
40755,
3263,
78,
390,
11555,
420,
312,
2367,
11,
304,
267,
435,
7053,
270,
5908,
43137,
12,
13414,
1616,
390,
4132,
430,
16175,
28749,
38251,
514,
4533,
357,
78,
8358,
257,
1713,
64,
257,
2803,
346,
312,
671,
12379,
985,
4712,
16175,
28749,
11,
12422,
299,
28749,
257,
2854,
48993,
452,
3263,
68,
257,
78,
285,
25125,
24313,
985,
2374,
14839,
72,
514,
4533,
737,
8834,
18842,
5908,
435,
7053,
270,
16785,
264,
28749,
514,
22484,
12385,
985,
4712,
16175,
28749,
1103,
528,
4763,
401,
267,
399,
28075,
13,
440,
1255,
4533,
466,
18335,
11511,
72,
909,
83,
17305,
795,
23781,
13224,
401,
604,
1429,
324,
2850,
277,
8836,
21383,
418,
357,
68,
807,
14390,
737,
198,
198,
33153,
198,
45,
28075,
25,
198,
198,
5305,
220,
220,
220,
352,
76,
1415,
11,
15,
2920,
82,
198,
7220,
220,
220,
220,
807,
76,
3270,
11,
15,
2996,
82,
198,
17597,
220,
220,
220,
220,
657,
76,
16,
11,
12952,
82,
198,
198,
28780,
8053,
13912,
25,
198,
198,
5305,
220,
220,
220,
352,
76,
2481,
11,
2713,
19,
82,
198,
7220,
220,
220,
220,
767,
76,
2548,
11,
2713,
18,
82,
198,
17597,
220,
220,
220,
220,
657,
76,
17,
11,
23628,
82,
198,
33153,
198,
198,
22362,
64,
552,
3301,
16175,
28749,
10212,
78,
8358,
279,
1098,
1055,
1808,
4763,
25,
4600,
45,
28075,
63,
38251,
23781,
23503,
1258,
390,
985,
4712,
16175,
28749,
390,
2632,
10205,
82,
10094,
308,
1691,
11,
748,
268,
10396,
16921,
78,
31215,
1059,
304,
69,
11373,
68,
795,
985,
4712,
16175,
127,
113,
274,
2347,
452,
3263,
68,
1582,
282,
417,
292,
13,
440,
4600,
28780,
8053,
13912,
13,
20362,
63,
38251,
23781,
23503,
1258,
31215,
2653,
283,
4140,
10819,
2632,
2228,
671,
10795,
68,
12379,
1233,
22940,
10782,
544,
11,
12422,
16964,
34593,
14723,
267,
16514,
528,
4533,
2471,
268,
292,
31215,
2653,
324,
2850,
401,
1066,
10205,
7496,
552,
433,
346,
71,
4763,
11,
304,
1450,
418,
1429,
324,
2850,
13,
220,
220,
198,
198,
2949,
920,
14723,
11,
267,
18335,
749,
430,
8358,
38251,
1184,
8836,
626,
3671,
260,
332,
269,
10205,
12894,
418,
390,
5988,
64,
613,
10367,
795,
22300,
11,
304,
8358,
4600,
28780,
8053,
13912,
13,
20362,
63,
38251,
334,
2611,
11354,
15141,
64,
279,
12342,
8546,
31215,
257,
985,
5031,
16175,
28749,
267,
84,
269,
6557,
75,
3129,
78,
390,
2632,
2228,
2367,
304,
281,
6557,
75,
2696,
2183,
528,
38768,
390,
985,
4712,
16175,
127,
113,
274,
390,
636,
8836,
3129,
292,
13,
220,
198,
198,
52,
2611,
288,
292,
257,
489,
3970,
16175,
127,
113,
274,
2244,
68,
23503,
1258,
3473,
68,
645,
269,
6557,
75,
3129,
78,
390,
1257,
16175,
127,
113,
274,
390,
1233,
822,
9019,
16175,
28749,
390,
264,
396,
368,
292,
627,
8836,
9383,
418,
390,
4490,
68,
3716,
312,
671,
1556,
622,
1523,
11,
795,
685,
5377,
11141,
44,
25506,
13,
20362,
16151,
5450,
1378,
76,
18,
70,
13,
12567,
13,
952,
14,
5377,
11141,
44,
25506,
13,
20362,
14,
31284,
14,
737,
198,
198,
37811,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
275,
4059,
23,
69,
1878,
12,
16344,
3559,
12,
2231,
1860,
12,
64,
20,
64,
16,
12,
22,
69,
4349,
68,
15,
65,
19,
18654,
20,
198,
9132,
37811,
198,
2235,
1482,
660,
21356,
4598,
198,
37811,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
44717,
67,
16,
69,
5237,
12,
65,
3865,
65,
12,
19,
26514,
12,
64,
23,
68,
17,
12,
24,
68,
39506,
1453,
2425,
2075,
67,
628,
198,
2,
2343,
243,
242,
28670,
22880,
94,
277,
2816,
940,
66,
16,
68,
12,
24,
65,
24,
69,
12,
2920,
69,
15,
12,
15630,
22,
68,
12,
15,
16344,
23,
68,
3720,
64,
3553,
1899,
198,
9132,
37811,
198,
2235,
1475,
18856,
78,
390,
795,
33587,
313,
3263,
78,
795,
362,
35,
198,
37811,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
642,
67,
24,
64,
1821,
65,
20,
12,
1821,
1120,
12,
2857,
67,
17,
12,
4089,
2816,
12,
68,
24,
65,
5237,
67,
3980,
68,
23,
7568,
198,
1589,
62,
9288,
796,
2026,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
767,
69,
37864,
69,
22,
66,
12,
66,
9945,
15,
12,
19,
69,
6420,
12,
64,
30743,
12,
17,
69,
24,
2091,
11848,
66,
20,
65,
3104,
198,
742,
395,
796,
685,
4738,
62,
4122,
7,
53,
721,
17,
35,
90,
43879,
2414,
5512,
32590,
1589,
62,
9288,
11,
1589,
62,
9288,
4008,
329,
4808,
287,
352,
25,
12825,
2361,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
657,
16072,
23,
3559,
67,
17,
12,
330,
19,
69,
12,
2857,
1558,
12,
64,
27728,
12,
5892,
64,
35435,
1828,
3132,
1065,
198,
83,
349,
62,
9288,
796,
362,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
277,
66,
22,
69,
36879,
65,
12,
405,
67,
24,
12,
50080,
65,
12,
64,
5607,
68,
12,
67,
17,
487,
22,
28592,
26115,
64,
198,
3524,
62,
9288,
796,
8315,
26933,
1589,
62,
9288,
11,
1589,
62,
9288,
4357,
83,
349,
62,
9288,
8,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
257,
324,
69,
21,
68,
2780,
12,
15,
66,
19881,
12,
2920,
4790,
12,
4521,
64,
16,
12,
25399,
65,
21,
34287,
67,
16,
7568,
198,
565,
62,
9288,
796,
12440,
8053,
7,
742,
395,
11,
3524,
62,
9288,
8,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
4153,
17,
68,
16,
18213,
22,
12,
4089,
1350,
12,
2920,
940,
12,
7012,
21,
65,
12,
66,
2919,
6659,
21855,
28072,
65,
17,
198,
87,
62,
8002,
62,
9288,
796,
31312,
62,
8906,
1087,
0,
7,
198,
220,
220,
220,
4866,
7,
742,
395,
828,
198,
220,
220,
220,
357,
87,
8,
4613,
334,
62,
8002,
7,
87,
11,
3524,
62,
9288,
11,
565,
62,
9288,
828,
198,
220,
220,
220,
357,
70,
11,
87,
8,
4613,
532,
27087,
62,
565,
0,
7,
70,
11,
87,
11,
3524,
62,
9288,
11,
565,
62,
9288,
11,
69,
24874,
62,
565,
8,
198,
8,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
288,
24,
69,
24970,
17896,
12,
3609,
19,
64,
12,
1821,
65,
18,
12,
65,
43950,
12,
69,
23,
64,
33548,
68,
940,
64,
17,
67,
198,
11249,
62,
489,
1747,
11405,
2221,
198,
197,
29487,
7,
39786,
16193,
16,
11,
17,
4008,
198,
197,
1416,
1436,
0,
26933,
14441,
12195,
51,
29291,
7,
79,
828,
1589,
62,
9288,
8,
329,
279,
287,
220,
742,
395,
16589,
7266,
29487,
28,
16,
8,
198,
197,
1416,
1436,
0,
26933,
14441,
12195,
51,
29291,
7,
79,
828,
1589,
62,
9288,
8,
329,
279,
287,
2124,
62,
8002,
62,
9288,
16589,
7266,
29487,
28,
17,
8,
198,
197,
29487,
0,
7,
2475,
82,
16193,
12,
16,
13,
16,
9,
1589,
62,
9288,
14,
17,
11,
16,
13,
16,
9,
1589,
62,
9288,
14,
17,
828,
292,
806,
62,
10366,
952,
28,
16,
11,
7857,
16193,
7410,
11,
7029,
4008,
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,
44199,
4102,
33637,
796,
366,
21,
68,
19,
65,
1795,
69,
24,
12,
1860,
5066,
12,
4310,
7252,
12,
3865,
64,
18,
12,
15,
66,
9945,
2078,
13331,
23,
65,
1878,
1,
198,
28780,
8053,
13912,
796,
366,
3388,
68,
16,
66,
21,
1860,
12,
2548,
3459,
12,
1821,
68,
21,
12,
65,
18,
66,
23,
12,
3132,
330,
20,
69,
3553,
3459,
2414,
1,
198,
22968,
47,
322,
796,
366,
66,
15,
68,
23,
2718,
1120,
12,
1157,
3682,
12,
3559,
64,
23,
12,
6659,
12993,
12,
21,
66,
50148,
65,
4761,
65,
19,
67,
16,
1,
198,
39746,
28813,
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,
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,
47384,
902,
796,
366,
14822,
4846,
67,
5066,
12,
68,
1795,
64,
12,
3365,
2816,
12,
1795,
64,
17,
12,
65,
16,
65,
2919,
5332,
66,
20,
397,
22,
1,
198,
3646,
1747,
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,
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,
18557,
69,
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,
45442,
3163,
20477,
796,
366,
46815,
2718,
487,
64,
12,
22,
27203,
12,
3980,
1821,
12,
6659,
65,
24,
12,
68,
31211,
2718,
28727,
24294,
1,
198,
198,
58,
5589,
265,
60,
198,
44199,
4102,
33637,
796,
366,
93,
16,
13,
17,
13,
15,
1,
198,
28780,
8053,
13912,
796,
366,
93,
15,
13,
20,
13,
1238,
1,
198,
22968,
47,
322,
796,
366,
93,
15,
13,
16,
13,
15,
1,
198,
39746,
28813,
796,
366,
93,
15,
13,
940,
13,
1129,
1,
198,
47384,
902,
796,
366,
93,
17,
13,
21,
13,
15,
1,
198,
3646,
1747,
796,
366,
93,
16,
13,
1828,
13,
17,
1,
198,
3646,
9390,
10080,
796,
366,
93,
15,
13,
22,
13,
1157,
1,
198,
45442,
3163,
20477,
796,
366,
93,
16,
13,
17,
13,
1065,
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,
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,
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,
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,
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,
44199,
4102,
33637,
11907,
198,
10378,
82,
796,
14631,
40386,
1600,
366,
11187,
2667,
1600,
366,
18557,
69,
1600,
366,
37046,
1600,
366,
48346,
1600,
366,
52,
27586,
82,
8973,
198,
18300,
12,
21048,
12,
26270,
16,
796,
366,
5333,
671,
65,
2919,
19214,
23,
2598,
5774,
830,
8054,
891,
23,
65,
16,
66,
405,
535,
1731,
4524,
10210,
2857,
1,
198,
12303,
312,
796,
366,
21,
68,
19,
65,
1795,
69,
24,
12,
1860,
5066,
12,
4310,
7252,
12,
3865,
64,
18,
12,
15,
66,
9945,
2078,
13331,
23,
65,
1878,
1,
198,
9641,
796,
366,
16,
13,
17,
13,
15,
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,
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,
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,
28780,
8053,
13912,
11907,
198,
10378,
82,
796,
14631,
23579,
10100,
11627,
5736,
1600,
366,
14993,
451,
2348,
29230,
1600,
366,
48944,
1600,
366,
32577,
44,
2357,
1600,
366,
29531,
1600,
366,
7248,
3245,
1600,
366,
45442,
3163,
20477,
8973,
198,
18300,
12,
21048,
12,
26270,
16,
796,
366,
21,
22996,
6814,
15801,
1270,
1731,
67,
40839,
2548,
69,
34716,
65,
4089,
64,
2425,
2670,
16072,
21,
20233,
27728,
1,
198,
12303,
312,
796,
366,
3388,
68,
16,
66,
21,
1860,
12,
2548,
3459,
12,
1821,
68,
21,
12,
65,
18,
66,
23,
12,
3132,
330,
20,
69,
3553,
3459,
2414,
1,
198,
9641,
796,
366,
15,
13,
20,
13,
1238,
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,
17457,
19,
28485,
16,
69,
2934,
721,
15,
66,
23,
65,
4531,
47984,
18,
66,
21,
68,
5892,
15630,
21,
68,
18,
65,
15,
69,
721,
24,
344,
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,
21,
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,
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,
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,
3132,
67,
486,
4349,
69,
3553,
1433,
65,
35916,
46636,
67,
24,
67,
2425,
65,
22,
13331,
4524,
535,
19,
68,
22,
2598,
7568,
17,
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,
2670,
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,
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,
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,
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,
26705,
32755,
776,
1600,
366,
29531,
1600,
366,
13409,
24629,
2733,
8973,
198,
18300,
12,
21048,
12,
26270,
16,
796,
366,
4761,
1238,
15630,
2481,
66,
2091,
68,
34155,
66,
1415,
69,
19,
64,
24,
64,
35175,
65,
16,
67,
27877,
1765,
66,
20,
65,
26276,
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,
18,
13,
16,
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,
23579,
10100,
11627,
5736,
11907,
198,
10378,
82,
796,
14631,
25835,
38,
270,
17,
8973,
198,
18300,
12,
21048,
12,
26270,
16,
796,
366,
64,
2624,
21652,
69,
4051,
2078,
67,
2670,
4521,
69,
2857,
66,
17,
397,
3695,
65,
16,
69,
20666,
67,
20,
68,
21,
535,
4846,
69,
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,
20,
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,
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,
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,
22968,
47,
322,
11907,
198,
18300,
12,
21048,
12,
26270,
16,
796,
366,
22,
67,
4846,
1485,
2327,
18444,
47984,
4524,
2934,
15,
68,
16,
65,
18,
64,
24,
65,
1899,
68,
19,
67,
16562,
64,
3695,
17896,
17,
1,
198,
12303,
312,
796,
366,
66,
15,
68,
23,
2718,
1120,
12,
1157,
3682,
12,
3559,
64,
23,
12,
6659,
12993,
12,
21,
66,
50148,
65,
4761,
65,
19,
67,
16,
1,
198,
9641,
796,
366,
15,
13,
16,
13,
15,
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,
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,
65,
20,
68,
45418,
330,
1899,
65,
47512,
891,
23601,
21,
6814,
21,
67,
19,
69,
3682,
66,
2327,
67,
23,
17896,
47396,
1129,
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,
1129,
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,
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,
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,
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,
67,
7012,
16,
68,
4521,
1415,
68,
42520,
2920,
397,
13331,
1899,
22148,
65,
1485,
2996,
2548,
1485,
67,
23,
69,
486,
3553,
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,
20,
10,
15,
1,
198,
198,
30109,
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,
32634,
1634,
1600,
366,
50,
11603,
1600,
366,
14402,
1600,
366,
52,
27586,
82,
8973,
198,
18300,
12,
21048,
12,
26270,
16,
796,
366,
66,
17,
23188,
12993,
15630,
15,
64,
20,
64,
40427,
68,
1433,
67,
2931,
22,
69,
3609,
33042,
69,
1238,
1731,
2934,
5333,
64,
18,
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,
3270,
13,
15,
1,
198,
198,
30109,
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,
891,
2920,
64,
23451,
31916,
69,
23,
2996,
69,
27790,
23,
66,
3829,
68,
18,
69,
3559,
23362,
2998,
1731,
68,
24,
30206,
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,
3270,
13,
15,
10,
15,
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,
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,
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,
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,
1899,
276,
20,
69,
23237,
2670,
1983,
31714,
69,
23,
2231,
65,
486,
2327,
11848,
30803,
65,
43637,
65,
20,
3901,
13331,
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,
1415,
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,
38197,
5239,
43,
270,
1691,
11907,
198,
18300,
12,
21048,
12,
26270,
16,
796,
366,
22,
21261,
2718,
4089,
68,
16,
1350,
34135,
2075,
65,
6659,
67,
19,
68,
2075,
6469,
67,
1350,
44169,
1828,
68,
20,
721,
24,
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,
15,
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,
818,
72,
8979,
11907,
198,
10378,
82,
796,
14631,
14402,
8973,
198,
18300,
12,
21048,
12,
26270,
16,
796,
366,
2931,
23,
68,
19,
67,
17,
66,
20,
29626,
1731,
66,
24,
2481,
69,
24,
69,
4089,
2857,
28857,
69,
17,
324,
4531,
68,
29159,
65,
23,
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,
15,
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,
23820,
20310,
34184,
1187,
11907,
198,
18300,
12,
21048,
12,
26270,
16,
796,
366,
69,
22,
2414,
25707,
34626,
1485,
49682,
64,
5999,
1238,
2075,
6888,
28567,
5036,
27367,
68,
6052,
65,
344,
5824,
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,
15,
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,
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,
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,
67,
22,
2327,
31503,
330,
2425,
66,
20,
21101,
24,
69,
16,
65,
405,
67,
23,
65,
22730,
24,
66,
16315,
5705,
17896,
3388,
3559,
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,
15,
10,
15,
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,
66,
22,
69,
16,
66,
37381,
68,
3312,
66,
486,
65,
3865,
64,
3134,
69,
15,
10210,
16,
67,
2682,
42691,
69,
18,
68,
22,
9945,
13464,
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,
17,
13,
16,
1,
198,
198,
30109,
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,
64,
19,
65,
1065,
64,
16,
17457,
17,
1765,
671,
23,
3695,
6420,
397,
22,
68,
2623,
69,
9945,
344,
3365,
1954,
486,
64,
5892,
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,
21,
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,
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,
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,
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,
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,
23601,
68,
28676,
64,
4763,
1485,
69,
3865,
69,
4089,
1453,
33394,
67,
33400,
66,
18,
3077,
2718,
66,
23,
397,
24,
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,
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,
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,
23579,
10100,
11627,
5736,
1600,
366,
23820,
20310,
34184,
1187,
1600,
366,
14993,
451,
2348,
29230,
8973,
198,
18300,
12,
21048,
12,
26270,
16,
796,
366,
2682,
17896,
1270,
69,
23,
3104,
68,
27412,
69,
23,
64,
1558,
65,
48524,
64,
1065,
2548,
69,
18,
16072,
6814,
47106,
3132,
64,
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,
18,
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,
14155,
305,
33637,
11907,
198,
10378,
82,
796,
14631,
9704,
2902,
1600,
366,
29531,
8973,
198,
18300,
12,
21048,
12,
26270,
16,
796,
366,
20,
64,
20,
15630,
21,
19881,
3312,
17,
69,
15,
69,
3865,
68,
5237,
67,
15,
5036,
15,
64,
17,
67,
38565,
2079,
19082,
6469,
1860,
24,
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,
23,
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,
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,
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,
47384,
902,
11907,
198,
10378,
82,
796,
14631,
9771,
17576,
1600,
366,
14993,
451,
2348,
29230,
1600,
366,
18557,
69,
1600,
366,
6690,
18636,
14881,
1600,
366,
39618,
8973,
198,
18300,
12,
21048,
12,
26270,
16,
796,
366,
3132,
66,
23,
66,
2713,
3388,
65,
24,
1415,
16243,
66,
5824,
1860,
36244,
2920,
22980,
276,
2857,
66,
23721,
66,
20,
65,
1,
198,
12303,
312,
796,
366,
14822,
4846,
67,
5066,
12,
68,
1795,
64,
12,
3365,
2816,
12,
1795,
64,
17,
12,
65,
16,
65,
2919,
5332,
66,
20,
397,
22,
1,
198,
9641,
796,
366,
17,
13,
21,
13,
15,
1,
198,
198,
30109,
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,
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,
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,
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,
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,
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,
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,
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,
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,
24,
67,
23,
66,
405,
891,
22,
64,
23,
67,
11442,
41019,
487,
21,
69,
1558,
2713,
43240,
3510,
69,
39509,
16945,
64,
24,
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,
15,
13,
19,
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,
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,
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,
1495,
2718,
276,
18,
66,
15,
276,
20,
68,
15,
29769,
3388,
1983,
23451,
69,
20,
69,
17,
1453,
21,
64,
19,
397,
31575,
9945,
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,
1415,
1,
198,
198,
30109,
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,
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,
8973,
198,
18300,
12,
21048,
12,
26270,
16,
796,
366,
33032,
65,
1485,
38073,
64,
18,
18213,
19,
11275,
2091,
67,
27367,
64,
21,
64,
20,
18213,
1314,
66,
1495,
66,
15,
1765,
67,
24,
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,
1828,
13,
17,
1,
198,
198,
30109,
3646,
9390,
10080,
11907,
198,
10378,
82,
796,
14631,
14881,
2414,
1600,
366,
35,
689,
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,
15,
66,
18,
68,
15,
3134,
6052,
1558,
2919,
13331,
20,
2414,
1065,
2857,
2001,
66,
16,
64,
16,
558,
65,
4310,
20972,
3312,
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,
1157,
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,
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,
37046,
11907,
198,
10378,
82,
796,
14631,
18557,
69,
8973,
198,
12303,
312,
796,
366,
24,
6485,
67,
24,
2231,
12,
67,
487,
23,
12,
43918,
69,
12,
65,
20,
68,
23,
12,
68,
16,
1765,
69,
20,
891,
16,
65,
3720,
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,
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,
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,
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,
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,
22,
324,
15,
7568,
64,
23,
67,
3070,
65,
22,
65,
12993,
23,
66,
43239,
69,
3270,
69,
49721,
2078,
29326,
1270,
66,
2816,
65,
23,
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,
19,
13,
16,
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,
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,
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,
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,
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,
69,
6888,
1959,
68,
3104,
66,
35638,
1983,
1828,
65,
20,
65,
2598,
2327,
46438,
66,
18,
67,
16,
7012,
2816,
2154,
4761,
64,
18,
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,
22,
13,
16,
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,
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,
13409,
24629,
2733,
11907,
198,
10378,
82,
796,
14631,
35491,
37766,
14055,
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,
324,
3682,
66,
1270,
64,
21,
18638,
66,
4524,
67,
18897,
46589,
68,
21,
2091,
16945,
67,
344,
64,
15,
68,
23,
65,
1415,
68,
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,
21,
13,
17,
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,
16102,
28362,
66,
21,
67,
38380,
330,
3510,
69,
16,
66,
16,
10210,
4304,
2548,
22318,
10210,
1828,
6485,
535,
65,
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,
1065,
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,
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,
23,
66,
11848,
66,
2931,
23,
44218,
34287,
66,
5705,
69,
3720,
64,
38380,
66,
24,
487,
15,
16344,
27019,
18444,
65,
21,
66,
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,
940,
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,
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,
1157,
5237,
344,
19,
64,
21,
66,
19,
65,
22,
68,
3132,
68,
15,
68,
21,
65,
1415,
34251,
64,
39357,
3388,
4349,
66,
4790,
1350,
24,
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,
20,
13,
17,
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,
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,
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,
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,
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,
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,
1600,
366,
25309,
1044,
62,
73,
297,
8973,
198,
18300,
12,
21048,
12,
26270,
16,
796,
366,
2078,
2670,
69,
16,
66,
18741,
3388,
1821,
28727,
68,
2327,
7568,
15,
11848,
65,
17572,
69,
17,
64,
3720,
3104,
2791,
2154,
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,
1507,
13,
15,
10,
19,
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,
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,
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,
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,
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,
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,
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,
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,
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,
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,
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,
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,
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,
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,
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,
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,
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,
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,
535,
19,
19881,
18,
69,
1860,
68,
23,
65,
22,
68,
18,
68,
24,
13331,
15,
35273,
17457,
2308,
7012,
16,
12993,
18,
65,
22,
69,
21,
68,
21,
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,
15,
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,
198,
30109,
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,
64,
5774,
69,
324,
2780,
12,
4790,
66,
16,
12,
19,
64,
2919,
12,
64,
21,
69,
16,
12,
64,
3609,
38314,
65,
18,
66,
21,
16072,
198,
2,
2343,
243,
253,
7280,
1558,
1828,
1983,
66,
17,
12,
65,
1983,
64,
12,
1821,
9945,
12,
6420,
69,
19,
12,
3865,
2791,
66,
17,
69,
21,
12993,
4309,
198,
2,
2343,
243,
253,
7280,
19,
65,
34137,
12993,
21,
12,
2780,
3459,
12,
19,
69,
3023,
12,
65,
18,
16344,
12,
24,
34251,
2078,
1828,
65,
15,
66,
15,
198,
2,
2343,
243,
254,
28670,
64,
6469,
69,
1828,
68,
19,
12,
69,
2327,
65,
12,
40652,
64,
12,
65,
40271,
12,
16,
67,
487,
43284,
1828,
68,
2598,
198,
2,
2343,
243,
254,
28670,
23,
66,
30272,
1453,
19,
12,
23,
66,
3324,
12,
44103,
64,
12,
65,
1350,
65,
12,
24,
68,
20,
3609,
1731,
25270,
4304,
198,
2,
2343,
243,
253,
7280,
64,
15,
2934,
486,
65,
20,
12,
40393,
64,
12,
2780,
66,
15,
12,
23,
67,
5333,
12,
1065,
65,
2999,
64,
20,
69,
20,
1983,
68,
198,
2,
2343,
243,
254,
28670,
69,
5774,
68,
1821,
2623,
12,
23,
69,
6469,
12,
3901,
66,
22,
12,
3829,
66,
16,
12,
6814,
64,
20,
69,
40179,
33646,
67,
198,
2,
2343,
243,
253,
7280,
20,
2624,
1765,
18,
15630,
12,
2816,
1828,
12,
19,
28978,
12,
28485,
20,
12,
20,
29211,
721,
42444,
17,
66,
22,
198,
2,
2343,
243,
253,
7280,
17896,
20,
69,
22,
34137,
12,
18,
17896,
18,
12,
2857,
64,
22,
12,
324,
19,
64,
12,
1270,
69,
5607,
16072,
1415,
67,
1157,
198,
2,
2343,
243,
253,
7280,
397,
18,
487,
2481,
65,
12,
19881,
6469,
12,
19,
67,
23,
66,
12,
397,
67,
16,
12,
66,
28857,
1507,
50148,
276,
23,
198,
2,
2343,
243,
254,
28670,
22,
64,
16,
9945,
28567,
12,
65,
7012,
24,
12,
3559,
1828,
12,
24,
21855,
19,
12,
64,
21,
67,
22,
65,
22,
65,
1860,
1899,
67,
198,
2,
2343,
243,
253,
7280,
535,
2920,
891,
3023,
12,
2919,
67,
23,
12,
3682,
11848,
12,
24,
17279,
12,
24,
9945,
2414,
68,
23195,
64,
4349,
198,
2,
2343,
243,
254,
28670,
7568,
2091,
65,
17032,
12,
19,
64,
3682,
12,
19,
16945,
12,
19881,
3270,
12,
20,
64,
2996,
1731,
2998,
3829,
12993,
198,
2,
2343,
243,
254,
28670,
15,
69,
49803,
2996,
67,
12,
2682,
69,
19,
12,
3510,
276,
12,
24,
1954,
68,
12,
18,
18213,
3132,
66,
21,
9945,
15,
6888,
198,
2,
2343,
243,
253,
7280,
67,
405,
68,
3980,
69,
17,
12,
24,
67,
18,
64,
12,
19,
1860,
18,
12,
1795,
1765,
12,
18,
1264,
14822,
2670,
65,
4846,
198,
2,
2343,
243,
254,
28670,
65,
20,
66,
2931,
10210,
18,
12,
1899,
5066,
12,
19,
64,
2623,
12,
4846,
10210,
12,
17,
67,
12762,
7252,
1157,
65,
6469,
198,
2,
2343,
243,
253,
7280,
31020,
69,
23516,
65,
12,
2414,
2154,
12,
1821,
276,
12,
65,
15,
3104,
12,
64,
23,
31047,
558,
19,
69,
2931,
198,
2,
2343,
243,
253,
7280,
3324,
1129,
65,
34125,
12,
68,
5332,
65,
12,
2231,
5999,
12,
65,
21844,
12,
64,
4521,
1415,
67,
19,
65,
1954,
4790,
198,
2,
2343,
243,
254,
28670,
69,
44617,
3388,
64,
21,
12,
64,
37466,
12,
3682,
64,
18,
12,
23,
15630,
21,
12,
66,
18638,
67,
19,
12993,
67,
4531,
22,
198,
2,
2343,
243,
253,
7280,
1415,
3901,
1129,
324,
12,
397,
3459,
12,
19,
20986,
12,
49287,
64,
12,
69,
17,
16072,
1731,
2414,
64,
23,
2548,
198,
2,
2343,
243,
254,
28670,
32066,
330,
20,
64,
19,
12,
66,
5824,
68,
12,
3682,
21101,
12,
64,
2919,
20,
12,
486,
4089,
65,
1959,
66,
22,
68,
4309,
198,
2,
2343,
243,
253,
7280,
3559,
68,
21,
65,
20964,
12,
1453,
2327,
12,
1821,
69,
16,
12,
65,
35005,
12,
18,
6814,
1828,
65,
24,
68,
16,
65,
16,
65,
198,
2,
2343,
243,
253,
7280,
1860,
24,
68,
19,
32148,
12,
1959,
2919,
12,
1821,
891,
12,
65,
40652,
12,
21,
65,
42875,
7568,
3980,
12993,
19,
198,
2,
2343,
243,
254,
28670,
67,
1954,
65,
19,
64,
5892,
12,
47838,
68,
12,
19,
276,
22,
12,
17457,
3510,
12,
23,
64,
18,
66,
3270,
27970,
44821,
198,
2,
2343,
243,
254,
28670,
68,
21,
68,
1959,
67,
16,
68,
12,
24,
64,
6052,
12,
2920,
9945,
12,
64,
31128,
12,
21,
65,
2791,
69,
15,
15630,
2682,
2091,
198,
2,
2343,
243,
253,
7280,
29326,
10210,
21,
64,
23,
12,
49517,
67,
12,
19,
721,
20,
12,
65,
3132,
69,
12,
22,
69,
16,
69,
1120,
3324,
2414,
69,
17,
198,
2,
2343,
243,
253,
7280,
65,
20,
22136,
1860,
20,
12,
16,
69,
3510,
12,
2598,
2718,
12,
24,
1959,
65,
12,
891,
67,
3104,
26007,
65,
1065,
65,
198,
2,
2343,
243,
254,
28670,
1765,
20,
17896,
24137,
12,
1415,
6420,
12,
1157,
721,
12,
16,
66,
3609,
12,
67,
4349,
66,
6052,
10210,
32759,
66,
198,
2,
2343,
243,
253,
7280,
46438,
7012,
16,
67,
21,
12,
17,
67,
3609,
12,
19,
69,
1238,
12,
3865,
3510,
12,
69,
4309,
38942,
1558,
66,
17,
69,
15,
198,
2,
2343,
243,
253,
7280,
2791,
66,
22,
67,
39277,
12,
22,
68,
2713,
12,
3510,
1485,
12,
5705,
68,
23,
12,
17,
64,
1821,
5036,
1821,
17896,
18,
67,
198,
2,
2343,
243,
253,
7280,
68,
22,
1558,
64,
23,
67,
24,
12,
535,
21855,
12,
19,
69,
4531,
12,
65,
17,
64,
17,
12,
69,
25707,
69,
15711,
65,
2780,
67,
198,
2,
2343,
243,
254,
28670,
22318,
20,
64,
19,
69,
18,
12,
1507,
3682,
12,
19,
2934,
17,
12,
24,
2996,
68,
12,
67,
27696,
66,
3312,
66,
4051,
66,
22,
198,
2,
2343,
243,
253,
7280,
31654,
891,
20,
397,
12,
69,
22042,
12,
19,
397,
18,
12,
64,
22,
1954,
12,
41544,
65,
20,
1765,
20,
17896,
15,
69,
198,
2,
2343,
243,
253,
7280,
68,
397,
22,
65,
22186,
12,
2414,
67,
20,
12,
2231,
5774,
12,
23,
39925,
12,
2780,
64,
45758,
397,
2931,
16,
65,
198,
2,
2343,
243,
253,
7280,
2682,
17896,
4761,
17896,
12,
2780,
2414,
12,
2857,
66,
15,
12,
65,
43916,
12,
24839,
69,
3134,
68,
22,
44705,
18,
198,
2,
2343,
243,
254,
28670,
1350,
1765,
2091,
2327,
12,
20,
66,
2920,
12,
2857,
2934,
12,
64,
16,
67,
18,
12,
18,
68,
891,
20,
69,
24,
31714,
69,
16,
198,
2,
2343,
243,
253,
7280,
2999,
67,
24,
19881,
18,
65,
12,
32583,
66,
12,
11785,
18,
12,
65,
22337,
12,
24,
48768,
65,
31380,
487,
22,
68,
198,
2,
2343,
243,
254,
28670,
2931,
3134,
65,
3829,
67,
12,
330,
3459,
12,
35435,
67,
12,
64,
3553,
64,
12,
22,
66,
2548,
7568,
64,
6469,
18638,
198,
2,
2343,
243,
253,
7280,
15,
64,
20,
32568,
1453,
12,
66,
3459,
64,
12,
19,
65,
535,
12,
22260,
17,
12,
32883,
69,
2078,
68,
24,
68,
3023,
67,
198,
2,
2343,
243,
254,
28670,
65,
17,
64,
19,
64,
31654,
12,
2857,
487,
12,
1821,
11848,
12,
24,
64,
21,
67,
12,
64,
2919,
67,
6420,
66,
20,
2624,
1558,
198,
2,
2343,
243,
253,
7280,
16072,
487,
3388,
4790,
12,
30206,
64,
12,
1821,
16072,
12,
64,
47448,
12,
69,
45191,
1828,
2791,
27800,
64,
198,
2,
2343,
243,
254,
28670,
42250,
65,
19,
487,
65,
12,
3720,
2414,
12,
19,
65,
1120,
12,
23,
66,
17,
69,
12,
68,
20,
69,
2231,
69,
2327,
44688,
198,
2,
2343,
243,
253,
7280,
18294,
3134,
487,
67,
12,
66,
2934,
20,
12,
3559,
69,
23,
12,
5999,
2079,
12,
486,
22172,
1453,
1959,
65,
4790,
198,
2,
2343,
243,
253,
7280,
66,
2857,
4089,
24294,
12,
2934,
2425,
12,
19,
65,
3270,
12,
23,
1350,
22,
12,
69,
22,
12993,
13348,
1485,
2414,
67,
198,
2,
2343,
243,
254,
28670,
891,
66,
29796,
64,
17,
12,
2931,
3510,
12,
19,
17896,
20,
12,
397,
18,
64,
12,
2670,
2999,
64,
23,
1157,
69,
18,
324,
198,
2,
2343,
243,
253,
7280,
1828,
21855,
15,
21734,
12,
67,
19,
13331,
12,
2857,
65,
24,
12,
330,
3132,
12,
12501,
69,
1983,
3132,
66,
15630,
16,
198,
2,
2343,
243,
253,
7280,
23,
68,
1954,
64,
18,
18213,
12,
1270,
2670,
12,
19,
64,
20,
69,
12,
65,
2718,
69,
12,
66,
2857,
8784,
20,
2670,
2548,
68,
198,
2,
2343,
243,
254,
28670,
67,
3682,
69,
23,
3682,
67,
12,
21,
66,
17,
64,
12,
1821,
9945,
12,
65,
15,
66,
19,
12,
68,
24,
2623,
25707,
64,
24,
68,
22,
66,
198,
2,
2343,
243,
254,
28670,
16,
324,
21844,
65,
20,
12,
1238,
65,
17,
12,
35890,
65,
12,
65,
17,
7252,
12,
5892,
69,
48555,
65,
16,
67,
45151,
198,
2,
2343,
243,
253,
7280,
17,
64,
18,
68,
22,
28676,
12,
5066,
324,
12,
2857,
5333,
12,
3077,
64,
12,
344,
66,
1507,
65,
6420,
69,
2079,
66,
198,
2,
2343,
243,
253,
7280,
2920,
65,
16,
69,
36676,
12,
24,
1959,
64,
12,
19,
23721,
12,
330,
67,
24,
12,
35916,
32576,
22,
65,
45839,
66,
198,
2,
2343,
243,
254,
28670,
2075,
67,
20,
66,
21,
68,
24,
12,
64,
24,
3070,
12,
2857,
5892,
12,
64,
15,
68,
15,
12,
12501,
16,
64,
17,
68,
4521,
64,
486,
198,
2,
2343,
243,
253,
7280,
17,
64,
891,
1983,
17457,
12,
2934,
64,
21,
12,
19,
64,
6052,
12,
24,
67,
15,
69,
12,
65,
24,
21626,
66,
24,
1860,
17,
10210,
198,
2,
2343,
243,
254,
28670,
2713,
3510,
1453,
17,
67,
12,
65,
5237,
67,
12,
19,
66,
22,
64,
12,
23,
23628,
12,
7012,
5774,
65,
18,
66,
16,
44705,
19,
198,
2,
2343,
243,
253,
7280,
19,
64,
36260,
66,
1507,
12,
29703,
69,
12,
2598,
2718,
12,
65,
30695,
12,
7252,
24,
16344,
66,
2425,
65,
24,
1129,
198,
2,
2343,
243,
253,
7280,
65,
21,
17896,
65,
24,
64,
18,
12,
3270,
68,
18,
12,
19,
68,
3609,
12,
6052,
2079,
12,
21855,
2998,
17,
66,
32869,
69,
16,
64,
198,
2,
2343,
243,
254,
28670,
68,
19,
37680,
22172,
12,
16,
11848,
17,
12,
19,
67,
19,
64,
12,
330,
24,
67,
12,
324,
66,
1795,
28324,
67,
2998,
67,
198,
2,
2343,
243,
253,
7280,
20,
67,
31010,
33319,
12,
20,
48564,
12,
2857,
1795,
12,
4089,
18,
68,
12,
24,
2999,
69,
9945,
4531,
68,
1878,
17,
198,
2,
2343,
243,
254,
28670,
68,
24,
32128,
64,
19,
65,
12,
18,
67,
1899,
12,
3682,
1765,
12,
23,
48564,
12,
10210,
17,
65,
344,
66,
1485,
5036,
23,
198,
2,
2343,
243,
254,
28670,
66,
20,
66,
1860,
4869,
69,
12,
20,
9395,
12,
40149,
69,
12,
24,
21261,
12,
66,
1485,
69,
486,
64,
1415,
67,
15,
65,
198,
2,
2343,
243,
253,
7280,
64,
15,
44821,
64,
16,
69,
12,
1899,
64,
21,
12,
2231,
65,
20,
12,
49503,
68,
12,
42548,
66,
2920,
64,
24,
69,
15,
2920,
198,
2,
2343,
243,
254,
28670,
19,
68,
22,
69,
23,
9945,
19,
12,
65,
20,
535,
12,
19,
64,
18,
68,
12,
24,
13331,
22,
12,
68,
5237,
67,
23,
69,
17,
64,
2623,
330,
198,
2,
2343,
243,
253,
7280,
2623,
6814,
18,
68,
5892,
12,
830,
66,
12,
19,
67,
19,
65,
12,
24,
397,
69,
12,
19,
10210,
39118,
65,
18,
64,
32182,
198,
2,
2343,
243,
254,
28670,
2154,
1765,
17,
68,
15,
64,
12,
64,
20,
66,
23,
12,
2920,
2425,
12,
23,
69,
21,
66,
12,
3365,
3829,
2327,
1350,
64,
1959,
66,
198,
2,
2343,
243,
253,
7280,
65,
19,
27720,
64,
1959,
12,
18,
891,
67,
12,
19,
17457,
16,
12,
65,
487,
66,
12,
2327,
2425,
38605,
2934,
24,
2718,
198,
2,
2343,
243,
254,
28670,
67,
34159,
3559,
66,
15,
12,
16072,
1795,
12,
29703,
69,
12,
5999,
66,
20,
12,
2231,
2078,
68,
47106,
44169,
64,
198,
2,
2343,
243,
253,
7280,
4089,
29059,
26912,
12,
3270,
1821,
12,
2780,
2078,
12,
64,
23,
69,
16,
12,
24,
66,
24,
13331,
34155,
42548,
67,
198,
2,
2343,
243,
254,
28670,
26717,
69,
23753,
68,
12,
18,
5036,
23,
12,
3510,
2481,
12,
3609,
15,
65,
12,
65,
20,
1453,
2548,
67,
17,
1453,
4531,
198,
2,
2343,
243,
253,
7280,
23,
2075,
4761,
1238,
64,
12,
69,
3312,
68,
12,
2857,
5333,
12,
65,
26717,
12,
405,
69,
23,
7012,
2598,
68,
19,
65,
16,
198,
2,
2343,
243,
253,
7280,
344,
48894,
20219,
12,
26115,
64,
12,
39997,
68,
12,
42802,
69,
12,
3459,
21777,
45791,
66,
2713,
68,
198,
2,
2343,
243,
254,
28670,
2079,
65,
20,
66,
23,
1507,
12,
64,
47338,
12,
2920,
2670,
12,
23,
2920,
68,
12,
16,
46395,
30863,
69,
5066,
67,
198,
2,
2343,
243,
253,
7280,
23,
68,
1959,
3070,
1350,
12,
2920,
2425,
12,
19,
68,
1415,
12,
5705,
276,
12,
21,
68,
49517,
69,
2857,
5036,
2857,
198,
2,
2343,
243,
253,
7280,
39667,
69,
3132,
11848,
12,
6659,
67,
20,
12,
33459,
65,
12,
65,
32531,
12,
19,
16344,
19,
68,
18,
69,
19,
397,
1983,
198,
2,
2343,
243,
254,
28670,
2713,
32531,
66,
17457,
12,
3695,
66,
21,
12,
19,
24409,
12,
4521,
1795,
12,
66,
35273,
66,
23,
66,
2718,
39761,
198,
2,
2343,
243,
253,
7280,
19,
68,
5607,
69,
1731,
66,
12,
66,
24693,
12,
19,
17657,
12,
15630,
3553,
12,
68,
19,
68,
3459,
66,
23,
21855,
23,
67,
17,
198,
2,
2343,
243,
254,
28670,
65,
3132,
6814,
3829,
67,
12,
22,
20986,
12,
3682,
2934,
12,
65,
1507,
67,
12,
44928,
5705,
2001,
18213,
3070,
198,
2,
2343,
243,
253,
7280,
20,
69,
2718,
31102,
65,
12,
487,
67,
24,
12,
2780,
3324,
12,
64,
3695,
66,
12,
64,
47325,
65,
25674,
1129,
1129,
198,
2,
2343,
243,
254,
28670,
67,
5774,
66,
1828,
67,
16,
12,
67,
35124,
12,
19,
67,
3559,
12,
397,
16,
66,
12,
69,
2078,
67,
32568,
64,
2682,
5332,
198,
2,
2343,
243,
253,
7280,
16,
67,
21,
2308,
16344,
12,
67,
30273,
12,
2231,
3553,
12,
24,
12993,
17,
12,
15197,
69,
23,
21855,
22,
65,
4761,
64,
198,
2,
2343,
243,
253,
7280,
19881,
15,
64,
20,
22572,
12,
69,
20,
344,
12,
2857,
1157,
12,
65,
24,
1453,
12,
64,
1065,
344,
17,
67,
23,
64,
33372,
198,
2,
2343,
243,
253,
7280,
66,
11245,
64,
5333,
67,
12,
64,
47101,
12,
19,
67,
22,
65,
12,
5892,
1415,
12,
20,
65,
4309,
7252,
43977,
23045,
198,
2,
2343,
243,
254,
28670,
68,
1731,
344,
2919,
16,
12,
68,
27824,
12,
19,
69,
1765,
12,
23,
64,
3720,
12,
2791,
65,
23,
39111,
64,
15,
65,
18,
64,
198,
2,
2343,
243,
253,
7280,
5066,
1765,
37710,
69,
12,
15,
23721,
12,
47101,
64,
12,
15630,
18,
64,
12,
17,
13331,
23,
276,
37309,
2780,
68,
198,
2,
2343,
243,
254,
28670,
22,
65,
24,
11848,
15,
16344,
12,
2682,
64,
20,
12,
3682,
68,
16,
12,
15630,
2327,
12,
22,
25191,
34825,
65,
4790,
67,
15,
198,
2,
2343,
243,
253,
7280,
21,
64,
19,
68,
15,
68,
17,
68,
12,
2425,
66,
20,
12,
19,
66,
397,
12,
44183,
67,
12,
18,
67,
21,
65,
5237,
69,
24,
11848,
3312,
198,
2,
2343,
243,
254,
28670,
66,
24,
1507,
5237,
1860,
12,
36260,
64,
12,
2857,
1065,
12,
23,
68,
18,
67,
12,
65,
3324,
68,
46556,
10210,
27790,
198,
2,
2343,
243,
254,
28670,
64,
2919,
67,
21,
68,
21,
67,
12,
1860,
66,
19,
12,
1821,
7252,
12,
65,
22,
66,
19,
12,
6052,
18213,
3070,
1129,
1415,
1314,
198,
2,
2343,
243,
253,
7280,
64,
32066,
68,
17,
535,
12,
16,
21101,
16,
12,
33032,
64,
12,
49087,
66,
12,
34808,
12993,
16,
22521,
25257,
198,
2,
2343,
243,
254,
28670,
3553,
23756,
69,
22,
66,
12,
24,
30057,
12,
19,
17896,
20,
12,
4089,
68,
19,
12,
65,
20809,
64,
1314,
69,
4521,
16072,
198,
2,
2343,
243,
253,
7280,
47838,
68,
2624,
67,
22,
12,
2998,
18,
66,
12,
1821,
9945,
12,
64,
25674,
12,
15426,
21,
2623,
65,
24,
69,
46302,
198,
2,
2343,
243,
254,
28670,
46071,
5607,
344,
19,
12,
64,
20,
487,
12,
19,
32148,
12,
4531,
64,
17,
12,
23,
3559,
344,
68,
17,
68,
20,
65,
21,
67,
198,
2,
2343,
243,
253,
7280,
15801,
2425,
1983,
68,
12,
4304,
65,
22,
12,
19,
31697,
12,
65,
18,
397,
12,
891,
67,
4761,
21855,
2079,
7568,
66,
198,
2,
2343,
243,
253,
7280,
24,
2623,
5607,
68,
19,
67,
12,
30803,
65,
12,
2780,
68,
24,
12,
23,
65,
2078,
12,
64,
15,
487,
3365,
31916,
67,
2999,
198,
2,
2343,
243,
253,
7280,
66,
3559,
2598,
68,
2414,
12,
7252,
1828,
12,
3559,
2078,
12,
64,
5607,
64,
12,
4869,
68,
2598,
65,
10210,
27693,
69,
198,
2,
2343,
243,
253,
7280,
23,
1983,
43444,
21,
69,
12,
5774,
67,
19,
12,
19,
67,
2623,
12,
23,
67,
4531,
12,
69,
18444,
69,
2231,
3865,
16102,
198,
2,
2343,
243,
253,
7280,
16,
487,
1821,
3324,
64,
12,
2857,
3682,
12,
19,
66,
20,
68,
12,
64,
23,
67,
21,
12,
66,
3510,
42691,
3388,
64,
47521,
198,
2,
2343,
243,
254,
28670,
19,
64,
2425,
36260,
67,
12,
23,
69,
19,
68,
12,
29703,
69,
12,
23,
65,
486,
12,
69,
21,
64,
20,
69,
1314,
2670,
1129,
69,
198,
2,
2343,
243,
253,
7280,
18,
3609,
50165,
344,
12,
67,
3312,
68,
12,
19,
535,
17,
12,
65,
23,
64,
18,
12,
24,
2231,
1065,
68,
23,
69,
1415,
3829,
198,
2,
2343,
243,
254,
28670,
1485,
68,
22,
6814,
6659,
12,
23,
48630,
12,
19,
69,
2624,
12,
24,
69,
9945,
12,
1495,
2079,
1860,
2623,
64,
1065,
66,
198,
2,
2343,
243,
253,
7280,
2780,
2154,
65,
16,
69,
18,
12,
18,
19880,
12,
19,
1860,
66,
12,
64,
3270,
67,
12,
13331,
37988,
65,
29228,
64,
1954,
198,
2,
2343,
243,
254,
28670,
69,
6814,
21,
27192,
66,
12,
4846,
2425,
12,
19,
69,
17,
68,
12,
65,
24909,
12,
22,
535,
69,
3064,
49721,
10210,
198,
2,
2343,
243,
253,
7280,
64,
4521,
17,
69,
23,
64,
18,
12,
486,
3132,
12,
19,
29173,
12,
15630,
3829,
12,
26912,
19881,
27970,
2998,
3829,
198,
2,
2343,
243,
254,
28670,
67,
2996,
2414,
9031,
12,
69,
27720,
12,
1821,
2934,
12,
24,
38380,
12,
64,
50148,
1878,
16,
64,
20,
65,
16,
67,
198,
2,
2343,
243,
253,
7280,
1453,
68,
18,
330,
19,
65,
12,
19,
1860,
65,
12,
3510,
2079,
12,
65,
21,
68,
21,
12,
69,
15,
487,
535,
43918,
66,
2998,
198,
2,
2343,
243,
254,
28670,
15982,
64,
721,
2078,
12,
721,
65,
20,
12,
7029,
22,
12,
3865,
68,
20,
12,
1495,
67,
15,
64,
22,
69,
15,
66,
42018,
198,
2,
2343,
243,
253,
7280,
1485,
5824,
68,
19,
66,
21,
12,
66,
38056,
12,
2857,
66,
15,
12,
23,
6888,
23,
12,
69,
2919,
1270,
67,
5066,
67,
23,
721,
198,
2,
2343,
243,
254,
28670,
20,
27277,
1433,
68,
21,
12,
24,
66,
16,
66,
12,
3559,
1731,
12,
64,
19,
10210,
12,
65,
1065,
1415,
7568,
18,
66,
486,
67,
198,
2,
2343,
243,
253,
7280,
65,
23,
276,
21855,
19,
68,
12,
3134,
1795,
12,
19,
344,
22,
12,
5824,
66,
16,
12,
1821,
4790,
487,
22,
13331,
23,
2624,
198,
2,
2343,
243,
254,
28670,
65,
5999,
1238,
69,
3695,
12,
32637,
66,
12,
2920,
64,
24,
12,
64,
24,
69,
24,
12,
1983,
2780,
67,
1129,
721,
65,
2327,
198,
2,
2343,
243,
253,
7280,
24,
1983,
2718,
67,
4790,
12,
42548,
66,
12,
19,
66,
4846,
12,
64,
36453,
12,
23,
3132,
721,
1878,
2718,
35844,
198,
2,
2343,
243,
254,
28670,
24,
3132,
64,
24,
66,
20,
69,
12,
23,
69,
6420,
12,
19,
68,
3459,
12,
50148,
65,
12,
1120,
66,
15,
891,
66,
24,
66,
3365,
65,
198,
2,
2343,
243,
253,
7280,
65,
20,
65,
39277,
6469,
12,
891,
2934,
12,
44578,
69,
12,
65,
10210,
19,
12,
69,
17,
68,
15,
64,
5705,
65,
891,
10210,
198,
2,
2343,
243,
254,
28670,
29143,
23,
64,
2624,
66,
12,
67,
18,
6814,
12,
19,
721,
24,
12,
24,
67,
4846,
12,
15,
67,
1270,
11848,
1507,
69,
2919,
66,
198,
2,
2343,
243,
253,
7280,
68,
21,
35411,
67,
20,
12,
20,
31115,
12,
2231,
68,
24,
12,
6659,
17896,
12,
19504,
330,
5774,
7012,
23,
1485,
198,
2,
2343,
243,
254,
28670,
3132,
68,
16,
11848,
4349,
12,
66,
20,
3132,
12,
19,
66,
19,
64,
12,
4521,
2682,
12,
20,
6888,
1878,
65,
22,
68,
24,
68,
4349,
198,
2,
2343,
243,
254,
28670,
65,
15,
65,
6659,
6814,
19,
12,
3134,
3459,
12,
2231,
66,
19,
12,
65,
47448,
12,
20356,
64,
2999,
65,
20,
68,
2931,
66,
198,
2,
2343,
243,
253,
7280,
2857,
66,
21261,
66,
18,
12,
344,
3609,
12,
19,
68,
1065,
12,
24,
671,
12,
44550,
7568,
1433,
2919,
11275,
198,
2,
2343,
243,
253,
7280,
19,
344,
69,
24,
344,
64,
12,
16,
68,
5705,
12,
3682,
65,
24,
12,
65,
487,
21,
12,
65,
24,
64,
23,
65,
18,
65,
5036,
23,
6814,
198,
2,
2343,
243,
253,
7280,
23,
2075,
48528,
487,
12,
24,
64,
24,
65,
12,
3510,
65,
16,
12,
64,
1765,
18,
12,
32059,
64,
20,
68,
21,
69,
24,
39710,
198,
2,
2343,
243,
253,
7280,
67,
1954,
1507,
3682,
67,
12,
24,
65,
22,
64,
12,
2857,
1157,
12,
65,
4869,
65,
12,
20,
67,
35005,
3901,
1765,
66,
16,
69,
198,
2,
2343,
243,
253,
7280,
4310,
771,
67,
2075,
12,
2718,
3682,
12,
19,
66,
1954,
12,
64,
23,
65,
23,
12,
23,
64,
16,
69,
17,
65,
7568,
64,
17059,
198,
2,
2343,
243,
253,
7280,
39121,
69,
23,
2718,
67,
12,
17,
68,
2075,
12,
19,
30057,
12,
65,
27988,
12,
20,
16344,
6420,
891,
1860,
64,
21,
64,
198,
2,
2343,
243,
253,
7280,
43798,
64,
486,
68,
18,
12,
6469,
69,
23,
12,
19,
66,
22,
69,
12,
5332,
3324,
12,
5332,
1238,
6659,
67,
6420,
276,
22,
198,
2,
2343,
243,
254,
28670,
69,
344,
16,
68,
18,
68,
15,
12,
66,
7568,
22,
12,
36625,
69,
12,
65,
24,
1485,
12,
24,
2414,
66,
940,
13331,
5332,
64,
21,
198,
2,
2343,
243,
253,
7280,
3388,
64,
5892,
330,
21,
12,
48634,
66,
12,
19,
32417,
12,
65,
18,
67,
15,
12,
5824,
405,
68,
33032,
2078,
4521,
198,
2,
2343,
243,
254,
28670,
20,
3682,
64,
24,
891,
20,
12,
67,
24,
1453,
12,
2920,
17457,
12,
24,
67,
3132,
12,
5333,
68,
2078,
65,
1795,
65,
20,
21101,
198,
2,
2343,
243,
253,
7280,
23,
65,
4763,
1495,
66,
12,
65,
29796,
12,
3682,
65,
19,
12,
23,
4349,
67,
12,
24339,
535,
6888,
23,
64,
29228,
198,
2,
2343,
243,
254,
28670,
4304,
405,
66,
21,
17896,
12,
22,
3388,
68,
12,
19,
66,
3324,
12,
5332,
2075,
12,
30368,
64,
16,
65,
344,
66,
2998,
24,
198,
2,
2343,
243,
254,
28670,
1959,
9945,
66,
2857,
65,
12,
2623,
5607,
12,
19,
69,
7568,
12,
23,
69,
2682,
12,
23,
3829,
397,
19,
67,
15,
10210,
3609,
198,
2,
2343,
243,
253,
7280,
15,
1453,
22,
16072,
1507,
12,
69,
3901,
69,
12,
19,
21738,
12,
64,
2425,
68,
12,
16,
68,
16,
67,
3980,
65,
17,
9945,
1959,
198,
2,
2343,
243,
253,
7280,
68,
20,
65,
41948,
67,
22,
12,
2931,
4309,
12,
25644,
24,
12,
3609,
19,
66,
12,
64,
15,
66,
23,
344,
49150,
68,
3070,
198,
2,
2343,
243,
253,
7280,
15,
67,
15,
31020,
276,
12,
4349,
1120,
12,
1821,
68,
21,
12,
65,
20,
64,
19,
12,
24,
64,
33535,
65,
21,
6888,
2857,
64,
198,
2,
2343,
243,
254,
28670,
67,
17,
69,
19,
67,
21,
1828,
12,
23,
68,
2327,
12,
19,
1350,
18,
12,
65,
46636,
12,
2670,
65,
2078,
64,
48246,
66,
397,
198,
2,
2343,
243,
253,
7280,
69,
22,
12993,
47512,
68,
12,
1350,
24,
67,
12,
19,
69,
5237,
12,
64,
39761,
12,
535,
3559,
2425,
1765,
2079,
7568,
198,
2,
2343,
243,
253,
7280,
20,
1350,
5774,
66,
21,
69,
12,
20,
66,
3132,
12,
19,
67,
1415,
12,
64,
23,
21101,
12,
19,
68,
5066,
891,
2670,
67,
49561,
198,
2,
2343,
243,
253,
7280,
15,
66,
2998,
6048,
18,
12,
66,
15,
64,
16,
12,
19,
69,
4761,
12,
64,
1433,
64,
12,
4524,
14774,
65,
22,
64,
21,
10163,
198,
2,
2343,
243,
254,
28670,
19,
16072,
20,
891,
19,
67,
12,
68,
2998,
17,
12,
3901,
69,
22,
12,
64,
891,
24,
12,
65,
42363,
1270,
66,
5999,
1485,
66,
198,
2,
2343,
243,
253,
7280,
1129,
66,
20,
535,
24,
67,
12,
23,
21288,
12,
19,
68,
2623,
12,
64,
18,
18213,
12,
64,
1157,
4349,
69,
2078,
69,
4869,
67,
198,
2,
2343,
243,
254,
28670,
22,
17896,
2860,
5332,
12,
1959,
4521,
12,
19,
68,
3682,
12,
7252,
5705,
12,
3134,
12762,
64,
23,
69,
27310,
67,
198,
2,
2343,
243,
253,
7280,
15,
65,
20,
66,
21,
18654,
12,
65,
344,
65,
12,
28324,
64,
12,
64,
24,
64,
23,
12,
18,
66,
21,
64,
2425,
276,
23601,
64,
198,
2,
2343,
243,
254,
28670,
6420,
65,
20,
68,
330,
16,
12,
2857,
2079,
12,
19,
64,
4761,
12,
330,
21,
64,
12,
68,
17,
65,
17657,
65,
41019,
67,
20,
198,
2,
2343,
243,
253,
7280,
15,
69,
4521,
397,
18,
66,
12,
1959,
7252,
12,
37856,
65,
12,
23,
22913,
12,
23815,
66,
49150,
1453,
46899,
198,
2,
2343,
243,
254,
28670,
15,
65,
23,
64,
1828,
5892,
12,
66,
15,
67,
21,
12,
2598,
68,
19,
12,
65,
34135,
12,
2624,
67,
24,
67,
41734,
64,
25257,
198,
2,
2343,
243,
253,
7280,
67,
2996,
5332,
13227,
12,
3695,
19881,
12,
3901,
67,
16,
12,
44705,
18,
12,
486,
67,
4089,
3132,
67,
4304,
21101,
198,
2,
2343,
243,
254,
28670,
16,
65,
22,
65,
22,
67,
2780,
12,
3720,
67,
17,
12,
3559,
1558,
12,
3829,
2231,
12,
20,
65,
22,
68,
22,
17457,
2998,
18,
68,
20,
198,
2,
2343,
243,
253,
7280,
18,
69,
24,
47984,
3365,
12,
27696,
66,
12,
26598,
66,
12,
65,
16072,
19,
12,
30924,
2816,
11848,
16,
68,
47338,
198,
2,
2343,
243,
253,
7280,
1270,
67,
17,
69,
2670,
68,
12,
20,
7568,
17,
12,
19,
69,
2548,
12,
1795,
2624,
12,
68,
20,
69,
23,
40256,
7012,
27326,
198,
2,
2343,
243,
253,
7280,
21,
67,
5333,
65,
3365,
69,
12,
65,
3459,
69,
12,
2780,
69,
19,
12,
23,
65,
1860,
12,
15,
11848,
16,
64,
23,
15630,
16,
66,
6469,
198,
2,
2343,
243,
253,
7280,
4304,
65,
23,
37381,
68,
12,
2414,
17896,
12,
2598,
15630,
12,
4531,
2548,
12,
344,
1828,
66,
19,
64,
24,
68,
19,
67,
15,
198,
2,
2343,
243,
253,
7280,
2718,
2075,
2718,
487,
12,
24,
22515,
12,
19,
67,
2231,
12,
19881,
21,
68,
12,
68,
2996,
3132,
47984,
17457,
1415,
198,
2,
2343,
243,
253,
7280,
18,
65,
17,
66,
2919,
64,
21,
12,
65,
1983,
68,
12,
2920,
1350,
12,
64,
15,
65,
15,
12,
68,
20,
21101,
18,
67,
2816,
3510,
68,
15,
198,
2,
2343,
243,
254,
28670,
69,
15,
2920,
397,
1129,
12,
22,
721,
69,
12,
19,
66,
2996,
12,
19881,
21,
67,
12,
26427,
4309,
66,
16,
5036,
32059,
198,
2,
2343,
243,
253,
7280,
4761,
1795,
68,
27412,
12,
66,
3104,
64,
12,
2780,
64,
20,
12,
6420,
5036,
12,
6052,
66,
4304,
31980,
66,
18444,
198,
2,
2343,
243,
254,
28670,
38172,
69,
3609,
2075,
12,
21,
9945,
24,
12,
2231,
64,
15,
12,
64,
1899,
67,
12,
67,
15,
68,
24,
66,
3312,
18,
69,
23,
7252,
198,
2,
2343,
243,
253,
7280,
24,
64,
23,
67,
23,
30206,
12,
7012,
4051,
12,
19,
67,
24,
65,
12,
23,
66,
19,
66,
12,
5036,
48250,
25764,
23,
69,
17,
64,
198,
2,
2343,
243,
254,
28670,
487,
1350,
3609,
20,
69,
12,
23,
64,
721,
12,
2598,
4790,
12,
64,
27260,
12,
20,
65,
4790,
17457,
24,
17657,
2091,
198,
2,
2343,
243,
253,
7280,
2718,
2548,
68,
1821,
69,
12,
24,
45734,
12,
42947,
67,
12,
7252,
3365,
12,
64,
19,
65,
2078,
67,
23,
64,
1828,
69,
23,
198,
2,
2343,
243,
254,
28670,
20,
69,
940,
4051,
65,
23,
12,
1954,
2718,
12,
3559,
66,
16,
12,
64,
2919,
21,
12,
2075,
25429,
68,
3865,
67,
3682,
65,
198,
2,
2343,
243,
254,
28670,
17457,
22,
25272,
1129,
12,
65,
1860,
19,
12,
19,
66,
18,
66,
12,
23,
67,
2791,
12,
16,
7568,
15,
69,
21536,
66,
35124,
198,
2,
2343,
243,
253,
7280,
69,
2078,
2079,
2816,
65,
12,
15,
23516,
12,
19,
65,
23,
67,
12,
7012,
2919,
12,
17,
276,
69,
15,
64,
22,
30336,
66,
17,
198,
2,
2343,
243,
254,
28670,
23,
3695,
397,
20,
69,
22,
12,
2078,
66,
16,
12,
2780,
2624,
12,
24,
66,
3365,
12,
21101,
2623,
65,
15277,
22,
2791,
69,
198,
2,
2343,
243,
254,
28670,
64,
15,
67,
10210,
28011,
12,
46712,
67,
12,
19,
11231,
12,
11848,
21,
65,
12,
24,
3365,
67,
2078,
3720,
8784,
66,
198,
2,
2343,
243,
253,
7280,
2075,
2682,
5036,
487,
12,
22,
39506,
12,
19,
67,
23,
69,
12,
65,
23,
68,
20,
12,
66,
1157,
16616,
1485,
3388,
1795,
198,
2,
2343,
243,
253,
7280,
65,
16,
66,
20,
65,
22,
68,
20,
12,
12993,
19881,
12,
19,
67,
6052,
12,
17457,
3720,
12,
1959,
1731,
67,
24,
3553,
3609,
1415,
198,
2,
2343,
243,
254,
28670,
10210,
11442,
17,
330,
12,
33698,
12,
19,
67,
3720,
12,
1350,
5999,
12,
4761,
330,
24,
15259,
66,
22,
344,
198,
2,
2343,
243,
254,
28670,
69,
20666,
3023,
69,
19,
12,
68,
19,
69,
22,
12,
19,
67,
3559,
12,
65,
18,
67,
24,
12,
2624,
69,
11785,
7568,
34938,
68,
198,
2,
2343,
243,
254,
28670,
15711,
2075,
64,
3865,
12,
1433,
69,
23,
12,
35218,
67,
12,
65,
23,
66,
16,
12,
15,
891,
2091,
2857,
66,
24,
65,
1238,
198,
2,
2343,
243,
253,
7280,
66,
3510,
64,
19,
69,
5607,
12,
3695,
68,
19,
12,
3682,
16344,
12,
6469,
65,
18,
12,
19,
17896,
21,
344,
2079,
397,
330,
198,
2,
2343,
243,
254,
28670,
22,
66,
42117,
3720,
16,
12,
64,
46435,
12,
2780,
2623,
12,
6420,
68,
17,
12,
2919,
19,
28567,
66,
486,
67,
3829,
198,
2,
2343,
243,
254,
28670,
33289,
65,
24,
6814,
19,
12,
3695,
2780,
12,
19,
27203,
12,
65,
487,
66,
12,
64,
18,
67,
24,
17457,
3070,
12993,
1129,
198,
2,
2343,
243,
253,
7280,
66,
2919,
20972,
2078,
12,
31211,
68,
12,
1821,
1878,
12,
50119,
66,
12,
5036,
18,
66,
33916,
69,
3134,
68,
15,
198,
2,
2343,
243,
253,
7280,
1765,
15,
69,
3829,
1795,
12,
1495,
1954,
12,
3510,
2091,
12,
1350,
2481,
12,
18,
64,
1828,
6659,
64,
1433,
1959,
68,
198,
2,
2343,
243,
254,
28670,
27277,
66,
2791,
2481,
12,
65,
17,
65,
23,
12,
19,
69,
1270,
12,
7012,
3901,
12,
487,
66,
16,
3609,
21,
69,
43637,
65,
198,
2,
2343,
243,
253,
7280,
68,
18,
535,
18,
66,
3324,
12,
4869,
324,
12,
7029,
21,
12,
23,
68,
1983,
12,
36434,
7252,
16,
3609,
24,
12993,
65,
198,
2,
2343,
243,
254,
28670,
3365,
1765,
20,
65,
19,
65,
12,
4304,
324,
12,
19,
69,
22,
64,
12,
65,
4521,
65,
12,
15,
39449,
64,
23,
3553,
67,
6888,
16,
198,
2,
2343,
243,
253,
7280,
3553,
1821,
2857,
13331,
12,
2791,
2075,
12,
19,
10210,
15,
12,
5999,
1558,
12,
2624,
16817,
1065,
5607,
1157,
68,
198,
2,
2343,
243,
253,
7280,
22,
2670,
66,
24,
64,
23,
64,
12,
1485,
64,
20,
12,
19,
64,
2091,
12,
64,
39710,
12,
69,
20,
15630,
21,
21101,
2327,
68,
6469,
198,
2,
2343,
243,
253,
7280,
19,
68,
46712,
21101,
23,
12,
21,
67,
330,
12,
17885,
67,
12,
24,
69,
3510,
12,
65,
18,
68,
37680,
67,
24,
66,
18,
12993,
198,
2,
2343,
243,
253,
7280,
20,
487,
24,
66,
4531,
64,
12,
67,
17032,
12,
19,
1878,
17,
12,
23,
68,
22,
68,
12,
21855,
2079,
67,
2920,
2780,
66,
2623,
198,
2,
2343,
243,
254,
28670,
15,
69,
17,
69,
2816,
69,
21,
12,
41322,
65,
12,
32576,
68,
12,
65,
891,
22,
12,
68,
7252,
2079,
6814,
19,
67,
2079,
69,
198,
2,
2343,
243,
254,
28670,
35038,
324,
36993,
12,
23753,
65,
12,
19,
64,
20,
67,
12,
65,
2481,
68,
12,
22,
1878,
19,
67,
15,
66,
1558,
43134,
198,
2,
2343,
243,
253,
7280,
4310,
66,
17,
68,
1433,
68,
12,
65,
22,
69,
20,
12,
19,
7568,
17,
12,
4846,
69,
19,
12,
2919,
32531,
65,
20,
69,
4531,
3720,
198,
2,
2343,
243,
254,
28670,
1433,
66,
9945,
66,
1507,
12,
68,
23,
3510,
12,
19,
67,
15,
64,
12,
65,
22,
68,
21,
12,
5774,
69,
2998,
66,
15,
66,
4309,
67,
24,
198,
2,
2343,
243,
253,
7280,
3720,
22172,
69,
4531,
12,
19082,
66,
12,
42199,
65,
12,
23,
17279,
12,
20972,
2079,
65,
4089,
68,
20198,
198,
2,
2343,
243,
254,
28670,
24137,
29211,
68,
17,
12,
49542,
66,
12,
2598,
1878,
12,
65,
24,
64,
16,
12,
22996,
68,
17,
12927,
15,
69,
24,
198,
2,
2343,
243,
253,
7280,
15,
2996,
2075,
276,
69,
12,
35549,
64,
12,
19,
68,
535,
12,
64,
14877,
12,
21,
67,
24,
2624,
6888,
3980,
10210,
20,
198,
2,
2343,
243,
253,
7280,
65,
20,
68,
25600,
10210,
12,
2816,
3682,
12,
19,
64,
19,
66,
12,
3609,
15,
69,
12,
6420,
66,
17,
39071,
42780,
9945,
198,
2,
2343,
243,
254,
28670,
66,
2780,
21536,
68,
15,
12,
16,
64,
3023,
12,
19,
69,
5705,
12,
64,
19,
68,
17,
12,
69,
21,
65,
20,
67,
2682,
64,
35642,
67,
198,
2,
2343,
243,
253,
7280,
65,
15,
17896,
16,
66,
17,
65,
12,
6469,
65,
22,
12,
33646,
67,
12,
1795,
4524,
12,
16,
891,
24,
69,
3270,
64,
1314,
68,
20,
198,
2,
2343,
243,
254,
28670,
15,
38339,
65,
44183,
12,
69,
44183,
12,
19,
37466,
12,
65,
4846,
16,
12,
26279,
68,
2624,
67,
15,
64,
20,
68,
16,
198,
2,
2343,
243,
253,
7280,
5607,
65,
23,
65,
1314,
65,
12,
2425,
66,
22,
12,
3559,
2481,
12,
17032,
67,
12,
65,
15,
3134,
276,
17,
64,
3023,
69,
24,
198,
2,
2343,
243,
253,
7280,
67,
24,
69,
24970,
17896,
12,
3609,
19,
64,
12,
1821,
65,
18,
12,
65,
43950,
12,
69,
23,
64,
33548,
68,
940,
64,
17,
67,
198,
2,
2343,
243,
253,
7280,
48952,
68,
21,
64,
24,
66,
12,
30272,
66,
12,
38339,
69,
12,
64,
3980,
65,
12,
19,
7568,
15630,
35549,
25475,
198,
2,
2343,
243,
253,
7280,
16,
69,
2075,
2816,
4304,
12,
23,
1731,
64,
12,
2857,
2414,
12,
64,
22,
2548,
12,
3104,
31046,
29703,
1795,
3720,
198,
2,
2343,
243,
254,
28670,
29626,
35133,
10210,
12,
23,
1453,
23,
12,
19,
67,
16,
67,
12,
4089,
19,
65,
12,
65,
19,
66,
20,
487,
405,
65,
3609,
18,
198,
2,
2343,
243,
253,
7280,
24,
21101,
1959,
65,
486,
12,
22,
69,
2920,
12,
19,
18781,
12,
4846,
67,
23,
12,
66,
23,
16344,
24,
4869,
5036,
16,
66,
23,
198,
2,
2343,
243,
253,
7280,
330,
4309,
64,
4869,
65,
12,
1157,
2548,
12,
19,
69,
16,
65,
12,
2079,
66,
18,
12,
66,
22985,
67,
24,
69,
2931,
23451,
198,
2,
2343,
243,
253,
7280,
16,
68,
15,
2079,
68,
16,
69,
12,
2414,
5824,
12,
45068,
65,
12,
5332,
1558,
12,
20,
65,
9395,
18,
68,
1507,
7252,
21,
198,
2,
2343,
243,
253,
7280,
940,
66,
23,
2996,
2857,
12,
67,
19,
69,
19,
12,
19,
66,
18,
69,
12,
4531,
3312,
12,
330,
1507,
344,
6052,
69,
18,
65,
21,
198,
2,
2343,
243,
253,
7280,
2078,
4869,
22260,
18,
12,
68,
21,
65,
19,
12,
19,
64,
17,
67,
12,
23,
3104,
64,
12,
2623,
43918,
68,
24,
64,
28857,
66,
198,
2,
2343,
243,
253,
7280,
17,
64,
17,
68,
24,
18742,
12,
16,
66,
3324,
12,
3510,
16344,
12,
25764,
17,
12,
23,
3559,
1314,
4790,
69,
5824,
67,
15,
198,
2,
2343,
243,
254,
28670,
22,
66,
48156,
65,
21,
65,
12,
65,
21,
1453,
12,
19,
68,
1270,
12,
3459,
67,
20,
12,
67,
15,
65,
1795,
2414,
69,
1983,
2682,
198,
2,
2343,
243,
253,
7280,
65,
41948,
64,
27720,
12,
23,
66,
18,
66,
12,
19,
17896,
22,
12,
5774,
3459,
12,
19881,
4089,
64,
721,
23,
66,
20,
66,
15,
198,
2,
2343,
243,
254,
28670,
5036,
1350,
23,
66,
3312,
12,
65,
18,
7252,
12,
19,
9945,
16,
12,
64,
18,
18213,
12,
16344,
66,
17,
64,
6659,
65,
11275,
67,
198,
2,
2343,
243,
253,
7280,
21719,
67,
36189,
18,
12,
21,
535,
17,
12,
19,
19708,
12,
23,
64,
17,
66,
12,
23,
67,
23,
64,
32576,
5332,
721,
69,
198,
2,
2343,
243,
254,
28670,
64,
34808,
1129,
3132,
12,
19,
535,
24,
12,
19,
67,
1433,
12,
64,
21,
67,
17,
12,
2682,
65,
1821,
4869,
64,
5705,
67,
22,
198,
2,
2343,
243,
253,
7280,
65,
19,
21526,
21855,
22,
12,
68,
15,
65,
15,
12,
3682,
1157,
12,
23,
31503,
12,
23,
64,
23,
5036,
2857,
10210,
17,
6814,
198,
2,
2343,
243,
254,
28670,
23,
330,
22,
65,
16,
19881,
12,
66,
24,
3365,
12,
19,
1765,
20,
12,
23,
32128,
12,
69,
30863,
65,
36720,
68,
41060,
198,
2,
2343,
243,
253,
7280,
65,
4059,
23,
69,
1878,
12,
16344,
3559,
12,
2231,
1860,
12,
64,
20,
64,
16,
12,
22,
69,
4349,
68,
15,
65,
19,
18654,
20,
198,
2,
2343,
243,
254,
28670,
64,
38219,
1860,
1507,
12,
38942,
21,
12,
2231,
1983,
12,
24,
2598,
68,
12,
66,
1433,
67,
23,
535,
19,
19881,
3865,
198,
2,
2343,
243,
254,
28670,
31046,
67,
16,
69,
5237,
12,
65,
3865,
65,
12,
19,
26514,
12,
64,
23,
68,
17,
12,
24,
68,
39506,
1453,
2425,
2075,
67,
198,
2,
2343,
243,
254,
28670,
69,
2816,
940,
66,
16,
68,
12,
24,
65,
24,
69,
12,
2920,
69,
15,
12,
15630,
22,
68,
12,
15,
16344,
23,
68,
3720,
64,
3553,
1899,
198,
2,
2343,
243,
254,
28670,
22,
69,
37864,
69,
22,
66,
12,
66,
9945,
15,
12,
19,
69,
6420,
12,
64,
30743,
12,
17,
69,
24,
2091,
11848,
66,
20,
65,
3104,
198,
2,
2343,
243,
254,
28670,
20,
67,
24,
64,
1821,
65,
20,
12,
1821,
1120,
12,
2857,
67,
17,
12,
4089,
2816,
12,
68,
24,
65,
5237,
67,
3980,
68,
23,
7568,
198,
2,
2343,
243,
254,
28670,
15,
16072,
23,
3559,
67,
17,
12,
330,
19,
69,
12,
2857,
1558,
12,
64,
27728,
12,
5892,
64,
35435,
1828,
3132,
1065,
198,
2,
2343,
243,
254,
28670,
16072,
22,
69,
36879,
65,
12,
405,
67,
24,
12,
50080,
65,
12,
64,
5607,
68,
12,
67,
17,
487,
22,
28592,
26115,
64,
198,
2,
2343,
243,
254,
28670,
64,
324,
69,
21,
68,
2780,
12,
15,
66,
19881,
12,
2920,
4790,
12,
4521,
64,
16,
12,
25399,
65,
21,
34287,
67,
16,
7568,
198,
2,
2343,
243,
254,
28670,
37730,
68,
16,
18213,
22,
12,
4089,
1350,
12,
2920,
940,
12,
7012,
21,
65,
12,
66,
2919,
6659,
21855,
28072,
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.841113 | 51,225 |
"""
Area scaling factor for a function f with partial derivatives fx, fy
* fx::Function
* fy::Function
Returns:
* [Function] : Area scaling factor at x.
"""
function af(fx, fy)
return x -> norm(fx(x)×fy(x))
end
function af(f)
# Find partial derivatives
fx(x) = ForwardDiff.derivative(z -> f([z, x[2]]), x[1])
fy(x) = ForwardDiff.derivative(z -> f([x[1], z]), x[2])
# Compute area scaling factor
return x -> norm(fx(x)×fy(x))
end
"""
Derivative of area scaling factor for a function f with derivatives
* fx::Function
* fy::Function
* fxx::Function
* fxy::Function
* fyy::Function
Returns:
* [Function] : Derivative of area scaling factor at x.
"""
function Daf(af, fx, fy, fxx, fxy, fyy)
return x -> [
(fxx(x) × fy(x) - fxy(x) × fx(x)) ⋅ (fx(x) × fy(x)) / af(x)
(fxy(x) × fy(x) - fyy(x) × fx(x)) ⋅ (fx(x) × fy(x)) / af(x)
]
end
"""
Get q-map and derivative of a given function
* f::Function
Returns:
* q::Function, Dq::Function
"""
function Qmap(f)
# Find partial derivatives
fx(x) = ForwardDiff.derivative(z -> f([z, x[2]]), x[1])
fy(x) = ForwardDiff.derivative(z -> f([x[1], z]), x[2])
# Compute area scaling factor
a = af(fx, fy)
# Return q-map and derivative
q(x) = √a(x) * f(x)
Dq(x) = ForwardDiff.jacobian(q, x)
return q, Dq
end
"""
Get q-map and derivative of a given function with derivatives
* f::Function
* fx::Function
* fy::Function
Returns:
* q::Function, Dq::Function
"""
function Qmap(f, fx, fy)
a = af(fx, fy)
q(x) = √a(x) * f(x)
Dq(x) = ForwardDiff.jacobian(q, x)
return q, Dq
end
"""
Get q-map and derivative of a given function with derivatives
* f::Function
* fx::Function
* fy::Function
* fxx::Function
* fxy::Function
* fyy::Function
Returns:
* q::Function, Dq::Function
"""
function Qmap(f, fx, fy, fxx, fxy, fyy)
a = af(fx, fy)
Da = Daf(a, fx, fy, fxx, fxy, fyy)
Df(x) = [fx(x) fy(x)]
q(x) = √a(x) * f(x)
Dq(x) = 1. / (2. * √a(x)) * f(x) * Da(x)' + √a(x) * Df(x)
return q, Dq
end
"""
Compute the centroid of the parametric surface.
* f::Function
* af:: Function
Returns:
* [Array{Float}] : Vector value of surface centre
"""
function surface_centroid(f, af)
return hcubature(x -> f(x)*af(x), [0, 0], [1, 1])[1] / hcubature(af, [0, 0], [1, 1])[1]
end
"""
Translate function so that centroid coincides with the origin.
* f::Function
* af:: Function
Returns:
* [Function] : Translated Surface
"""
function centered(f, af)
c = surface_centroid(f, af)
return x -> f(x) - c
end
"""
Compute the parametric surface area.
* f::Function
* af:: Function
Returns:
* [Float] : Surface Area
"""
function surface_area(f, af)
return hcubature(af, [0, 0], [1, 1])[1]
end
"""
Scale surface to unit area.
* f::Function
* af:: Function
Returns:
* [Function] : Scaled Surface
"""
function scale_surface(f, af)
s = surface_area(f, af)
return x -> f(x) / s
end
"""
Translate and scale surface
* f::Function
Returns:
* [Function] : Scaled Surface
"""
function normalize_surface(f)
# Find partial derivatives
fx(x) = ForwardDiff.derivative(z -> f([z, x[2]]), x[1])
fy(x) = ForwardDiff.derivative(z -> f([x[1], z]), x[2])
# Compute area scaling factor
a = af(fx, fy)
c = surface_centroid(f, a)
s = surface_area(f, a)
return x -> (f(x) - c) / s
end
"""
Translate and scale surface
* f::Function
* af:: Function
Returns:
* [Function] : Scaled Surface
"""
function normalize_surface(f, af)
c = surface_centroid(f, af)
s = surface_area(f, af)
return x -> (f(x) - c) / s
end | [
37811,
198,
30547,
20796,
5766,
329,
257,
2163,
277,
351,
13027,
28486,
277,
87,
11,
277,
88,
198,
220,
220,
220,
1635,
277,
87,
3712,
22203,
198,
220,
220,
220,
1635,
277,
88,
3712,
22203,
198,
198,
35561,
25,
198,
220,
220,
220,
1635,
685,
22203,
60,
1058,
9498,
20796,
5766,
379,
2124,
13,
198,
37811,
198,
8818,
6580,
7,
21373,
11,
277,
88,
8,
198,
220,
220,
220,
1441,
2124,
4613,
2593,
7,
21373,
7,
87,
8,
12906,
24928,
7,
87,
4008,
198,
437,
628,
198,
8818,
6580,
7,
69,
8,
198,
220,
220,
220,
1303,
9938,
13027,
28486,
198,
220,
220,
220,
277,
87,
7,
87,
8,
796,
19530,
28813,
13,
1082,
452,
876,
7,
89,
4613,
277,
26933,
89,
11,
2124,
58,
17,
11907,
828,
2124,
58,
16,
12962,
198,
220,
220,
220,
277,
88,
7,
87,
8,
796,
19530,
28813,
13,
1082,
452,
876,
7,
89,
4613,
277,
26933,
87,
58,
16,
4357,
1976,
46570,
2124,
58,
17,
12962,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
3082,
1133,
1989,
20796,
5766,
198,
220,
220,
220,
1441,
2124,
4613,
2593,
7,
21373,
7,
87,
8,
12906,
24928,
7,
87,
4008,
198,
437,
198,
198,
37811,
198,
28532,
452,
876,
286,
1989,
20796,
5766,
329,
257,
2163,
277,
351,
28486,
220,
198,
220,
220,
220,
1635,
277,
87,
3712,
22203,
198,
220,
220,
220,
1635,
277,
88,
3712,
22203,
198,
220,
220,
220,
1635,
277,
5324,
3712,
22203,
198,
220,
220,
220,
1635,
277,
5431,
3712,
22203,
198,
220,
220,
220,
1635,
277,
22556,
3712,
22203,
198,
198,
35561,
25,
198,
220,
220,
220,
1635,
685,
22203,
60,
1058,
9626,
452,
876,
286,
1989,
20796,
5766,
379,
2124,
13,
198,
37811,
198,
8818,
360,
1878,
7,
1878,
11,
277,
87,
11,
277,
88,
11,
277,
5324,
11,
277,
5431,
11,
277,
22556,
8,
198,
220,
220,
220,
1441,
2124,
4613,
685,
198,
220,
220,
220,
220,
220,
220,
220,
357,
69,
5324,
7,
87,
8,
13958,
277,
88,
7,
87,
8,
532,
277,
5431,
7,
87,
8,
13958,
277,
87,
7,
87,
4008,
2343,
233,
227,
357,
21373,
7,
87,
8,
13958,
277,
88,
7,
87,
4008,
1220,
6580,
7,
87,
8,
198,
220,
220,
220,
220,
220,
220,
220,
357,
69,
5431,
7,
87,
8,
13958,
277,
88,
7,
87,
8,
532,
277,
22556,
7,
87,
8,
13958,
277,
87,
7,
87,
4008,
2343,
233,
227,
357,
21373,
7,
87,
8,
13958,
277,
88,
7,
87,
4008,
1220,
6580,
7,
87,
8,
198,
220,
220,
220,
2361,
198,
437,
628,
198,
37811,
198,
3855,
10662,
12,
8899,
290,
27255,
286,
257,
1813,
2163,
198,
220,
220,
220,
1635,
277,
3712,
22203,
198,
198,
35561,
25,
198,
220,
220,
220,
1635,
10662,
3712,
22203,
11,
360,
80,
3712,
22203,
198,
37811,
198,
8818,
1195,
8899,
7,
69,
8,
198,
220,
220,
220,
1303,
9938,
13027,
28486,
198,
220,
220,
220,
277,
87,
7,
87,
8,
796,
19530,
28813,
13,
1082,
452,
876,
7,
89,
4613,
277,
26933,
89,
11,
2124,
58,
17,
11907,
828,
2124,
58,
16,
12962,
198,
220,
220,
220,
277,
88,
7,
87,
8,
796,
19530,
28813,
13,
1082,
452,
876,
7,
89,
4613,
277,
26933,
87,
58,
16,
4357,
1976,
46570,
2124,
58,
17,
12962,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
3082,
1133,
1989,
20796,
5766,
198,
220,
220,
220,
257,
796,
6580,
7,
21373,
11,
277,
88,
8,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
8229,
10662,
12,
8899,
290,
27255,
220,
198,
220,
220,
220,
10662,
7,
87,
8,
796,
18872,
248,
64,
7,
87,
8,
1635,
277,
7,
87,
8,
198,
220,
220,
220,
360,
80,
7,
87,
8,
796,
19530,
28813,
13,
30482,
672,
666,
7,
80,
11,
2124,
8,
198,
220,
220,
220,
1441,
10662,
11,
360,
80,
198,
437,
628,
198,
37811,
198,
3855,
10662,
12,
8899,
290,
27255,
286,
257,
1813,
2163,
351,
28486,
198,
220,
220,
220,
1635,
277,
3712,
22203,
198,
220,
220,
220,
1635,
277,
87,
3712,
22203,
198,
220,
220,
220,
1635,
277,
88,
3712,
22203,
198,
198,
35561,
25,
198,
220,
220,
220,
1635,
10662,
3712,
22203,
11,
360,
80,
3712,
22203,
198,
37811,
198,
8818,
1195,
8899,
7,
69,
11,
277,
87,
11,
277,
88,
8,
198,
220,
220,
220,
257,
796,
6580,
7,
21373,
11,
277,
88,
8,
198,
220,
220,
220,
220,
198,
220,
220,
220,
10662,
7,
87,
8,
796,
18872,
248,
64,
7,
87,
8,
1635,
277,
7,
87,
8,
198,
220,
220,
220,
360,
80,
7,
87,
8,
796,
19530,
28813,
13,
30482,
672,
666,
7,
80,
11,
2124,
8,
198,
220,
220,
220,
1441,
10662,
11,
360,
80,
198,
437,
628,
198,
37811,
198,
3855,
10662,
12,
8899,
290,
27255,
286,
257,
1813,
2163,
351,
28486,
198,
220,
220,
220,
1635,
277,
3712,
22203,
198,
220,
220,
220,
1635,
277,
87,
3712,
22203,
198,
220,
220,
220,
1635,
277,
88,
3712,
22203,
198,
220,
220,
220,
1635,
277,
5324,
3712,
22203,
198,
220,
220,
220,
1635,
277,
5431,
3712,
22203,
198,
220,
220,
220,
1635,
277,
22556,
3712,
22203,
198,
198,
35561,
25,
198,
220,
220,
220,
1635,
10662,
3712,
22203,
11,
360,
80,
3712,
22203,
198,
37811,
198,
8818,
1195,
8899,
7,
69,
11,
277,
87,
11,
277,
88,
11,
277,
5324,
11,
277,
5431,
11,
277,
22556,
8,
198,
220,
220,
220,
257,
796,
6580,
7,
21373,
11,
277,
88,
8,
198,
220,
220,
220,
9637,
796,
360,
1878,
7,
64,
11,
277,
87,
11,
277,
88,
11,
277,
5324,
11,
277,
5431,
11,
277,
22556,
8,
198,
220,
220,
220,
220,
198,
220,
220,
220,
360,
69,
7,
87,
8,
796,
685,
21373,
7,
87,
8,
277,
88,
7,
87,
15437,
198,
220,
220,
220,
10662,
7,
87,
8,
796,
18872,
248,
64,
7,
87,
8,
1635,
277,
7,
87,
8,
198,
220,
220,
220,
360,
80,
7,
87,
8,
796,
352,
13,
1220,
357,
17,
13,
1635,
18872,
248,
64,
7,
87,
4008,
1635,
277,
7,
87,
8,
1635,
9637,
7,
87,
33047,
1343,
18872,
248,
64,
7,
87,
8,
1635,
360,
69,
7,
87,
8,
198,
220,
220,
220,
1441,
10662,
11,
360,
80,
198,
437,
198,
198,
37811,
198,
7293,
1133,
262,
1247,
3882,
286,
262,
5772,
19482,
4417,
13,
198,
220,
220,
220,
1635,
277,
3712,
22203,
198,
220,
220,
220,
1635,
6580,
3712,
15553,
198,
198,
35561,
25,
220,
198,
220,
220,
220,
1635,
685,
19182,
90,
43879,
92,
60,
1058,
20650,
1988,
286,
4417,
7372,
198,
37811,
198,
8818,
4417,
62,
1087,
3882,
7,
69,
11,
6580,
8,
198,
220,
220,
220,
1441,
289,
66,
549,
1300,
7,
87,
4613,
277,
7,
87,
27493,
1878,
7,
87,
828,
685,
15,
11,
657,
4357,
685,
16,
11,
352,
12962,
58,
16,
60,
1220,
289,
66,
549,
1300,
7,
1878,
11,
685,
15,
11,
657,
4357,
685,
16,
11,
352,
12962,
58,
16,
60,
198,
437,
628,
198,
37811,
198,
8291,
17660,
2163,
523,
326,
1247,
3882,
47387,
351,
262,
8159,
13,
198,
220,
220,
220,
1635,
277,
3712,
22203,
198,
220,
220,
220,
1635,
6580,
3712,
15553,
198,
198,
35561,
25,
220,
198,
220,
220,
220,
1635,
685,
22203,
60,
1058,
3602,
17249,
20321,
198,
37811,
198,
8818,
19254,
7,
69,
11,
6580,
8,
198,
220,
220,
220,
269,
796,
4417,
62,
1087,
3882,
7,
69,
11,
6580,
8,
198,
220,
220,
220,
1441,
2124,
4613,
277,
7,
87,
8,
532,
269,
198,
437,
628,
198,
37811,
198,
7293,
1133,
262,
5772,
19482,
4417,
1989,
13,
198,
220,
220,
220,
1635,
277,
3712,
22203,
198,
220,
220,
220,
1635,
6580,
3712,
15553,
198,
198,
35561,
25,
220,
198,
220,
220,
220,
1635,
685,
43879,
60,
1058,
20321,
9498,
198,
37811,
198,
8818,
4417,
62,
20337,
7,
69,
11,
6580,
8,
198,
220,
220,
220,
1441,
289,
66,
549,
1300,
7,
1878,
11,
685,
15,
11,
657,
4357,
685,
16,
11,
352,
12962,
58,
16,
60,
198,
437,
628,
198,
37811,
198,
29990,
4417,
284,
4326,
1989,
13,
198,
220,
220,
220,
1635,
277,
3712,
22203,
198,
220,
220,
220,
1635,
6580,
3712,
15553,
198,
198,
35561,
25,
220,
198,
220,
220,
220,
1635,
685,
22203,
60,
1058,
1446,
3021,
20321,
198,
37811,
198,
8818,
5046,
62,
42029,
7,
69,
11,
6580,
8,
198,
220,
220,
220,
264,
796,
4417,
62,
20337,
7,
69,
11,
6580,
8,
198,
220,
220,
220,
1441,
2124,
4613,
277,
7,
87,
8,
1220,
264,
198,
437,
628,
198,
37811,
198,
8291,
17660,
290,
5046,
4417,
220,
198,
220,
220,
220,
1635,
277,
3712,
22203,
198,
198,
35561,
25,
220,
198,
220,
220,
220,
1635,
685,
22203,
60,
1058,
1446,
3021,
20321,
198,
37811,
198,
8818,
3487,
1096,
62,
42029,
7,
69,
8,
198,
220,
220,
220,
1303,
9938,
13027,
28486,
198,
220,
220,
220,
277,
87,
7,
87,
8,
796,
19530,
28813,
13,
1082,
452,
876,
7,
89,
4613,
277,
26933,
89,
11,
2124,
58,
17,
11907,
828,
2124,
58,
16,
12962,
198,
220,
220,
220,
277,
88,
7,
87,
8,
796,
19530,
28813,
13,
1082,
452,
876,
7,
89,
4613,
277,
26933,
87,
58,
16,
4357,
1976,
46570,
2124,
58,
17,
12962,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
3082,
1133,
1989,
20796,
5766,
198,
220,
220,
220,
257,
796,
6580,
7,
21373,
11,
277,
88,
8,
198,
220,
220,
220,
220,
198,
220,
220,
220,
269,
796,
4417,
62,
1087,
3882,
7,
69,
11,
257,
8,
198,
220,
220,
220,
264,
796,
4417,
62,
20337,
7,
69,
11,
257,
8,
198,
220,
220,
220,
1441,
2124,
4613,
357,
69,
7,
87,
8,
532,
269,
8,
1220,
264,
198,
437,
628,
198,
37811,
198,
8291,
17660,
290,
5046,
4417,
220,
198,
220,
220,
220,
1635,
277,
3712,
22203,
198,
220,
220,
220,
1635,
6580,
3712,
15553,
198,
198,
35561,
25,
220,
198,
220,
220,
220,
1635,
685,
22203,
60,
1058,
1446,
3021,
20321,
198,
37811,
198,
8818,
3487,
1096,
62,
42029,
7,
69,
11,
6580,
8,
198,
220,
220,
220,
269,
796,
4417,
62,
1087,
3882,
7,
69,
11,
6580,
8,
198,
220,
220,
220,
264,
796,
4417,
62,
20337,
7,
69,
11,
6580,
8,
198,
220,
220,
220,
1441,
2124,
4613,
357,
69,
7,
87,
8,
532,
269,
8,
1220,
264,
198,
437
] | 2.208625 | 1,716 |
using PGFPlots
using Test
@assert success(`lualatex -v`)
using NBInclude
@nbinclude(joinpath(dirname(@__FILE__), "..", "doc", "PGFPlots.ipynb"))
| [
3500,
350,
21713,
3646,
1747,
198,
3500,
6208,
198,
198,
31,
30493,
1943,
7,
63,
75,
723,
378,
87,
532,
85,
63,
8,
198,
3500,
41354,
818,
9152,
198,
31,
77,
8800,
9152,
7,
22179,
6978,
7,
15908,
3672,
7,
31,
834,
25664,
834,
828,
366,
492,
1600,
366,
15390,
1600,
366,
6968,
37,
3646,
1747,
13,
541,
2047,
65,
48774,
198
] | 2.354839 | 62 |
using Test
using MiniCheetahRobot
using RigidBodyDynamics
@testset "MiniCheetahRobot" begin
mechanism = MiniCheetahRobot.mechanism()
@test num_velocities(mechanism) == 21
meshdir = joinpath(MiniCheetahRobot.packagepath(), "cheetah_description", "meshes")
@test isdir(meshdir)
@test count(x -> endswith(x, ".obj"), readdir(meshdir)) == 4
end
| [
3500,
6208,
198,
3500,
12558,
7376,
316,
993,
14350,
313,
198,
3500,
24666,
312,
25842,
35,
4989,
873,
198,
198,
31,
9288,
2617,
366,
39234,
7376,
316,
993,
14350,
313,
1,
2221,
198,
220,
220,
220,
9030,
796,
12558,
7376,
316,
993,
14350,
313,
13,
1326,
3147,
1042,
3419,
198,
220,
220,
220,
2488,
9288,
997,
62,
626,
420,
871,
7,
1326,
3147,
1042,
8,
6624,
2310,
198,
220,
220,
220,
19609,
15908,
796,
4654,
6978,
7,
39234,
7376,
316,
993,
14350,
313,
13,
26495,
6978,
22784,
366,
2395,
316,
993,
62,
11213,
1600,
366,
6880,
956,
4943,
198,
220,
220,
220,
2488,
9288,
318,
15908,
7,
76,
5069,
15908,
8,
198,
220,
220,
220,
2488,
9288,
954,
7,
87,
4613,
886,
2032,
342,
7,
87,
11,
27071,
26801,
12340,
1100,
15908,
7,
76,
5069,
15908,
4008,
6624,
604,
198,
437,
198
] | 2.549296 | 142 |
@with_kw struct rtgM2{A,B,C} <: RTGmodel
model::A = rtgM2_model()
protein_lookup = get_protein_lookup(model)
p::C = init_p(model; idx_hill_coefs=[])
u::B = init_u(model, protein_lookup)
end
"""
This model is modified version of rtgM1.
Major changes:
1. Change input to be michaelis menten
2. Change the translocation to be Michaelis menten
3. Rtg1p and Rtg3p enter nucleus separately
"""
function rtgM2_model()
rtgM2 = @reaction_network begin
#=
This model is modified version of rtgM1.
Major changes:
1. Change input to be michaelis menten
2. Change the translocation to be Michaelis menten
3. Rtg1p and Rtg3p enter nucleus separately
=#
#=
Input
=#
(1), s→s
#=
Modulation Layer
=#
(k1md*s*(k1mk+s), kn1md), Rtg2_ina_c ↔ Rtg2_act_c #[1]
(k2md, kn2md), Rtg2_act_c + Mks ↔ Rtg2Mks_c
(k3md, kn3md), Bmh + Mks ↔ BmhMks
#=
Activation Model:
=#
# NLSact: Nuclear Localization Signal (NLS) activation
(k2n + mm(BmhMks, k1, k1m)), Rtg13_a_c → Rtg13_i_c
(k2, k2n), Rtg3_i_c ↔ Rtg3_a_c
# Rtg1Binding: Rtg13 formation
(k3, kn3), Rtg1_c + Rtg3_a_c ↔ Rtg13_a_c
(k3, kn3), Rtg1_c + Rtg3_i_c ↔ Rtg13_i_c
(k3nu, kn3nu), Rtg1_n + Rtg3_a_n ↔ Rtg13_a_n #[3]
# Translocation
( mm(Rtg1_c, kt1, ktd1) , mm(Rtg1_c, kt1nu, ktd1nu)), Rtg1_c ↔ Rtg1_n #[2]
( mm(Rtg3_a_c, kt2, ktd2) , mm(Rtg3_a_n, kt2nu, ktd2nu)), Rtg3_a_c ↔ Rtg3_a_n #[2]
#(k4, kn4), Rtg13_a_c ↔ Rtg13_a_n # Deleted [2]
end k1mk k1md k1mk kn1md k2md kn2md k3md kn3md k1 k1m k2 k2n k3 kn3 k4 kn4 kt1 ktd1 kt1nu ktd1nu kt2 ktd2 kt2nu ktd2nu k3nu kn3nu
return rtgM2
end | [
31,
4480,
62,
46265,
2878,
374,
25297,
44,
17,
90,
32,
11,
33,
11,
34,
92,
1279,
25,
11923,
38,
19849,
198,
220,
220,
220,
2746,
3712,
32,
796,
374,
25297,
44,
17,
62,
19849,
3419,
198,
220,
220,
220,
7532,
62,
5460,
929,
796,
651,
62,
48693,
62,
5460,
929,
7,
19849,
8,
198,
220,
220,
220,
279,
3712,
34,
796,
2315,
62,
79,
7,
19849,
26,
4686,
87,
62,
12639,
62,
1073,
891,
82,
41888,
12962,
198,
220,
220,
220,
334,
3712,
33,
796,
2315,
62,
84,
7,
19849,
11,
7532,
62,
5460,
929,
8,
198,
437,
628,
198,
37811,
198,
1212,
2746,
318,
9518,
2196,
286,
374,
25297,
44,
16,
13,
198,
24206,
2458,
25,
198,
16,
13,
9794,
5128,
284,
307,
285,
40302,
271,
6229,
268,
198,
17,
13,
9794,
262,
4779,
5040,
284,
307,
3899,
271,
6229,
268,
198,
18,
13,
371,
25297,
16,
79,
290,
371,
25297,
18,
79,
3802,
29984,
13869,
198,
37811,
198,
8818,
374,
25297,
44,
17,
62,
19849,
3419,
198,
220,
220,
220,
374,
25297,
44,
17,
796,
2488,
260,
2673,
62,
27349,
220,
2221,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
28,
198,
220,
220,
220,
220,
220,
220,
220,
770,
2746,
318,
9518,
2196,
286,
374,
25297,
44,
16,
13,
198,
220,
220,
220,
220,
220,
220,
220,
8386,
2458,
25,
198,
220,
220,
220,
220,
220,
220,
220,
352,
13,
9794,
5128,
284,
307,
285,
40302,
271,
6229,
268,
198,
220,
220,
220,
220,
220,
220,
220,
362,
13,
9794,
262,
4779,
5040,
284,
307,
3899,
271,
6229,
268,
198,
220,
220,
220,
220,
220,
220,
220,
513,
13,
371,
25297,
16,
79,
290,
371,
25297,
18,
79,
3802,
29984,
13869,
198,
220,
220,
220,
220,
220,
220,
220,
796,
2,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
28,
198,
220,
220,
220,
220,
220,
220,
220,
23412,
198,
220,
220,
220,
220,
220,
220,
220,
796,
2,
198,
220,
220,
220,
220,
220,
220,
220,
357,
16,
828,
264,
39310,
82,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
28,
198,
220,
220,
220,
220,
220,
220,
220,
3401,
1741,
34398,
198,
220,
220,
220,
220,
220,
220,
220,
796,
2,
198,
220,
220,
220,
220,
220,
220,
220,
357,
74,
16,
9132,
9,
82,
9,
7,
74,
16,
28015,
10,
82,
828,
638,
16,
9132,
828,
371,
25297,
17,
62,
1437,
62,
66,
17804,
242,
371,
25297,
17,
62,
529,
62,
66,
1303,
58,
16,
60,
198,
220,
220,
220,
220,
220,
220,
220,
357,
74,
17,
9132,
11,
638,
17,
9132,
828,
371,
25297,
17,
62,
529,
62,
66,
1343,
337,
591,
17804,
242,
371,
25297,
17,
44,
591,
62,
66,
198,
220,
220,
220,
220,
220,
220,
220,
357,
74,
18,
9132,
11,
638,
18,
9132,
828,
347,
76,
71,
1343,
337,
591,
17804,
242,
347,
76,
71,
44,
591,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
28,
198,
220,
220,
220,
220,
220,
220,
220,
13144,
341,
9104,
25,
198,
220,
220,
220,
220,
220,
220,
220,
796,
2,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
399,
6561,
529,
25,
19229,
10714,
1634,
26484,
357,
45,
6561,
8,
14916,
198,
220,
220,
220,
220,
220,
220,
220,
357,
74,
17,
77,
1343,
8085,
7,
33,
76,
71,
44,
591,
11,
479,
16,
11,
479,
16,
76,
36911,
371,
25297,
1485,
62,
64,
62,
66,
15168,
371,
25297,
1485,
62,
72,
62,
66,
198,
220,
220,
220,
220,
220,
220,
220,
357,
74,
17,
11,
479,
17,
77,
828,
371,
25297,
18,
62,
72,
62,
66,
17804,
242,
371,
25297,
18,
62,
64,
62,
66,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
371,
25297,
16,
33,
6020,
25,
371,
25297,
1485,
9978,
198,
220,
220,
220,
220,
220,
220,
220,
357,
74,
18,
11,
638,
18,
828,
371,
25297,
16,
62,
66,
1343,
371,
25297,
18,
62,
64,
62,
66,
17804,
242,
371,
25297,
1485,
62,
64,
62,
66,
198,
220,
220,
220,
220,
220,
220,
220,
357,
74,
18,
11,
638,
18,
828,
371,
25297,
16,
62,
66,
1343,
371,
25297,
18,
62,
72,
62,
66,
17804,
242,
371,
25297,
1485,
62,
72,
62,
66,
628,
220,
220,
220,
220,
220,
220,
220,
357,
74,
18,
28803,
11,
638,
18,
28803,
828,
371,
25297,
16,
62,
77,
1343,
371,
25297,
18,
62,
64,
62,
77,
17804,
242,
371,
25297,
1485,
62,
64,
62,
77,
1303,
58,
18,
60,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
3602,
24886,
198,
220,
220,
220,
220,
220,
220,
220,
357,
8085,
7,
49,
25297,
16,
62,
66,
11,
479,
83,
16,
11,
479,
8671,
16,
8,
220,
837,
8085,
7,
49,
25297,
16,
62,
66,
11,
479,
83,
16,
28803,
11,
479,
8671,
16,
28803,
36911,
371,
25297,
16,
62,
66,
17804,
242,
371,
25297,
16,
62,
77,
1303,
58,
17,
60,
198,
220,
220,
220,
220,
220,
220,
220,
357,
8085,
7,
49,
25297,
18,
62,
64,
62,
66,
11,
479,
83,
17,
11,
479,
8671,
17,
8,
837,
8085,
7,
49,
25297,
18,
62,
64,
62,
77,
11,
479,
83,
17,
28803,
11,
479,
8671,
17,
28803,
36911,
371,
25297,
18,
62,
64,
62,
66,
17804,
242,
371,
25297,
18,
62,
64,
62,
77,
1303,
58,
17,
60,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
7,
74,
19,
11,
638,
19,
828,
371,
25297,
1485,
62,
64,
62,
66,
17804,
242,
371,
25297,
1485,
62,
64,
62,
77,
1303,
1024,
33342,
685,
17,
60,
198,
220,
220,
220,
886,
479,
16,
28015,
479,
16,
9132,
479,
16,
28015,
638,
16,
9132,
479,
17,
9132,
638,
17,
9132,
479,
18,
9132,
638,
18,
9132,
479,
16,
479,
16,
76,
479,
17,
479,
17,
77,
479,
18,
638,
18,
479,
19,
638,
19,
479,
83,
16,
479,
8671,
16,
479,
83,
16,
28803,
479,
8671,
16,
28803,
479,
83,
17,
479,
8671,
17,
479,
83,
17,
28803,
479,
8671,
17,
28803,
479,
18,
28803,
638,
18,
28803,
628,
220,
220,
220,
1441,
374,
25297,
44,
17,
198,
437
] | 1.763029 | 1,017 |
using Documenter, Akagera
makedocs(
modules = [Akagera],
clean = false,
format = :html,
sitename = "Akagera.jl",
authors = "Colaholic",
pages = [
"Home" => "index.md",
"Manual" => "manual/tutorial.md",
"Library" => Any[
"lib/animator.md",
"lib/animecontainer.md"
]
],
html_canonical = "https://lcolaholicl.github.io/Akagera.j/stable"
)
deploydocs(
julia = "nightly",
repo = "github.com/lcolaholicl/Akagera.jl.git",
target = "build",
deps = nothing,
make = nothing,
)
| [
3500,
16854,
263,
11,
9084,
3536,
64,
198,
198,
76,
4335,
420,
82,
7,
198,
220,
220,
220,
13103,
796,
685,
33901,
3536,
64,
4357,
198,
220,
220,
220,
3424,
796,
3991,
11,
198,
220,
220,
220,
5794,
796,
1058,
6494,
11,
198,
220,
220,
220,
1650,
12453,
796,
366,
33901,
3536,
64,
13,
20362,
1600,
198,
220,
220,
220,
7035,
796,
366,
5216,
993,
4160,
1600,
198,
220,
220,
220,
5468,
796,
685,
198,
220,
220,
220,
220,
220,
220,
220,
366,
16060,
1,
5218,
366,
9630,
13,
9132,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
5124,
723,
1,
5218,
366,
805,
723,
14,
83,
44917,
13,
9132,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
23377,
1,
5218,
4377,
58,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
8019,
14,
11227,
1352,
13,
9132,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
8019,
14,
272,
524,
34924,
13,
9132,
1,
198,
220,
220,
220,
220,
220,
220,
220,
2361,
198,
220,
220,
220,
16589,
198,
220,
220,
220,
27711,
62,
49883,
605,
796,
366,
5450,
1378,
75,
4033,
993,
4160,
75,
13,
12567,
13,
952,
14,
33901,
3536,
64,
13,
73,
14,
31284,
1,
198,
8,
198,
198,
2934,
1420,
31628,
7,
198,
220,
220,
220,
474,
43640,
796,
366,
3847,
306,
1600,
198,
220,
220,
220,
29924,
796,
366,
12567,
13,
785,
14,
75,
4033,
993,
4160,
75,
14,
33901,
3536,
64,
13,
20362,
13,
18300,
1600,
198,
220,
220,
220,
2496,
796,
366,
11249,
1600,
198,
220,
220,
220,
390,
862,
796,
2147,
11,
198,
220,
220,
220,
787,
796,
2147,
11,
198,
8,
198
] | 2.024561 | 285 |
module stuff
using GaussianProcesses
end
| [
21412,
3404,
198,
220,
1262,
12822,
31562,
18709,
274,
198,
437,
198
] | 3.583333 | 12 |
using DiffEqDevTools, Test
@test stability_region(constructDormandPrince6(), initial_guess=-3.5) ≈ -3.95413 rtol=1e-3
@test stability_region(constructTsitourasPapakostas6(), initial_guess=-3.5) ≈ -3.95413 rtol=1e-3
@test stability_region(constructRadauIIA5(), initial_guess=12.) ≈ 11.84 rtol=1e-2
| [
3500,
10631,
36,
80,
13603,
33637,
11,
6208,
198,
198,
31,
9288,
10159,
62,
36996,
7,
41571,
35,
579,
392,
35784,
21,
22784,
4238,
62,
5162,
408,
10779,
18,
13,
20,
8,
15139,
230,
532,
18,
13,
3865,
44103,
374,
83,
349,
28,
16,
68,
12,
18,
198,
31,
9288,
10159,
62,
36996,
7,
41571,
33758,
270,
454,
292,
47,
499,
461,
455,
292,
21,
22784,
4238,
62,
5162,
408,
10779,
18,
13,
20,
8,
15139,
230,
532,
18,
13,
3865,
44103,
374,
83,
349,
28,
16,
68,
12,
18,
198,
31,
9288,
10159,
62,
36996,
7,
41571,
15546,
559,
40,
3539,
20,
22784,
4238,
62,
5162,
408,
28,
1065,
2014,
15139,
230,
1367,
13,
5705,
374,
83,
349,
28,
16,
68,
12,
17,
198
] | 2.384 | 125 |
#=
Direct estimation of the probability of for a diffusion with X(0) = x₀ satisfying
X(T) ∈ B for the Muller potential.
=#
using Statistics
using HypothesisTests
using Printf
include("muller_setup.jl");
opts = MDOptions(n_iters=nΔt)
Random.seed!(100);
n_trials = 10^4;
n_in_set = 0;
for j in 1:n_trials
X = copy(x₀);
sample_trajectory!(X, sampler, options=opts);
global n_in_set+= f(X);
end
CI = confint(BinomialTest(n_in_set, n_trials));
@printf("95%% CI = (%g,%g)\n", CI[1], CI[2])
| [
2,
28,
198,
13470,
31850,
286,
262,
12867,
286,
329,
257,
44258,
351,
1395,
7,
15,
8,
796,
2124,
158,
224,
222,
19201,
198,
55,
7,
51,
8,
18872,
230,
347,
329,
262,
47508,
2785,
13,
198,
46249,
198,
198,
3500,
14370,
198,
3500,
21209,
313,
8497,
51,
3558,
198,
3500,
12578,
69,
198,
198,
17256,
7203,
76,
724,
263,
62,
40406,
13,
20362,
15341,
198,
404,
912,
796,
10670,
29046,
7,
77,
62,
270,
364,
28,
77,
138,
242,
83,
8,
198,
198,
29531,
13,
28826,
0,
7,
3064,
1776,
198,
77,
62,
28461,
874,
796,
838,
61,
19,
26,
198,
77,
62,
259,
62,
2617,
796,
657,
26,
198,
1640,
474,
287,
352,
25,
77,
62,
28461,
874,
198,
220,
220,
220,
1395,
796,
4866,
7,
87,
158,
224,
222,
1776,
198,
220,
220,
220,
6291,
62,
9535,
752,
652,
0,
7,
55,
11,
6072,
20053,
11,
3689,
28,
404,
912,
1776,
198,
220,
220,
220,
3298,
299,
62,
259,
62,
2617,
47932,
277,
7,
55,
1776,
198,
437,
198,
25690,
796,
1013,
600,
7,
33,
259,
49070,
14402,
7,
77,
62,
259,
62,
2617,
11,
299,
62,
28461,
874,
18125,
198,
31,
37435,
7203,
3865,
16626,
14514,
796,
37633,
70,
11,
4,
70,
19415,
77,
1600,
14514,
58,
16,
4357,
14514,
58,
17,
12962,
198
] | 2.288991 | 218 |
# Copyright 2022 RelationalAI, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import JSON3
import Tables
using RAI
using Test
@testset "api.jl" begin
include("api.jl")
end
# def output =
# 1, "foo", 3.4, :foo;
# 2, "bar", 5.6, :foo
const body = """{
"output": [{
"rel_key": {
"name": "output",
"values": [],
"keys": ["Int64", "String", "Float64", ":foo"],
"type": "RelKey"
},
"type": "Relation",
"columns": [[1, 2], ["foo", "bar"], [3.4, 5.6]]
}],
"problems": [],
"actions": [{
"name": "action1",
"type": "LabeledActionResult",
"result": {
"output": [],
"type": "QueryActionResult"}
}],
"debug_level": 0,
"aborted": false,
"type": "TransactionResult"
}
"""
@testset "JSON Response" begin
rsp = JSON3.read(body)
@test rsp.type == "TransactionResult"
@test rsp.aborted == false
@test length(rsp.problems) == 0
@test length(rsp.output) == 1
@test rsp.output[1].type == "Relation"
@test rsp.output[1].rel_key.type == "RelKey"
@test length(rsp.output[1].columns) == 3
@test length(rsp.output[1].columns[1]) == 2
@test rsp.output[1].columns[1] == [1, 2]
@test rsp.output[1].columns[2] == ["foo", "bar"]
@test rsp.output[1].columns[3] == [3.4, 5.6]
end
@testset "TransactionResult" begin
rsp = JSON3.read(body)
result = TransactionResult(rsp)
@test result.type == "TransactionResult"
@test result.aborted == false
@test length(result.problems) == 0
@test length(result.output) == 1
@test rsp.output[1].type == "Relation"
@test rsp.output[1].rel_key.type == "RelKey"
@test length(result.output[1].columns) == 3
@test length(result.output[1].columns[1]) == 2
@test result.output[1].columns[1] == [1, 2]
@test result.output[1].columns[2] == ["foo", "bar"]
@test result.output[1].columns[3] == [3.4, 5.6]
end
@testset "TransactionResult.relations" begin
rsp = JSON3.read(body)
result = TransactionResult(rsp)
@test length(result.relations) == 1
@test length(result.relations[1]) == 2
@test schema(result.relations[1]) == [Int64, String, Float64, Symbol]
@test getrow(result.relations[1], 1) == (1, "foo", 3.4, :foo)
@test getrow(result.relations[1], 2) == (2, "bar", 5.6, :foo)
@test result.relations[1][1] == (1, "foo", 3.4, :foo)
@test result.relations[1][2] == (2, "bar", 5.6, :foo)
end
# Instantiate `Relation` on the selected output.
@testset "Relation" begin
rsp = JSON3.read(body)
rel = Relation(rsp.output[1])
@test length(rel) == 2 # two rows
@test schema(rel) == [Int64, String, Float64, Symbol]
@test getrow(rel, 1) == (1, "foo", 3.4, :foo)
@test getrow(rel, 2) == (2, "bar", 5.6, :foo)
@test rel[1] == (1, "foo", 3.4, :foo)
@test rel[2] == (2, "bar", 5.6, :foo)
end
@testset "Tables.AbstractRow" begin
rsp = JSON3.read(body)
rel = Relation(rsp.output[1])
@test Tables.istable(typeof(rel))
@test Tables.rowaccess(typeof(rel))
@test Tables.rows(rel) === rel
row = first(rel)
@test eltype(rel) == typeof(row)
@test Tables.getcolumn(row, :Column1) == 1
@test Tables.getcolumn(row, 1) == 1
@test row.values == (1, "foo", 3.4, :foo)
@test row.Column1 == 1
@test row.Column2 == "foo"
@test row.Column3 == 3.4
@test row.Column4 == :foo
@test row[1] == 1
@test row[2] == "foo"
@test row[3] == 3.4
@test row[4] == :foo
@test Tables.columnnames(rel) == [:Column1, :Column2, :Column3, :Column4]
@test Tables.columnnames(row) == [:Column1, :Column2, :Column3, :Column4]
end
@testset "Tables.dictrowtable" begin
rsp = JSON3.read(body)
rel = Relation(rsp.output[1])
table = Tables.dictrowtable(rel)
row = first(table)
@test row.Column1 == 1
@test row.Column2 == "foo"
@test row.Column3 == 3.4
@test row.Column4 == :foo
end
| [
2,
15069,
33160,
4718,
864,
20185,
11,
3457,
13,
198,
2,
198,
2,
49962,
739,
262,
24843,
13789,
11,
10628,
362,
13,
15,
357,
1169,
366,
34156,
15341,
198,
2,
345,
743,
407,
779,
428,
2393,
2845,
287,
11846,
351,
262,
13789,
13,
198,
2,
921,
743,
7330,
257,
4866,
286,
262,
13789,
379,
198,
2,
198,
2,
220,
220,
220,
220,
2638,
1378,
2503,
13,
43073,
13,
2398,
14,
677,
4541,
14,
43,
2149,
24290,
12,
17,
13,
15,
198,
2,
198,
2,
17486,
2672,
416,
9723,
1099,
393,
4987,
284,
287,
3597,
11,
3788,
198,
2,
9387,
739,
262,
13789,
318,
9387,
319,
281,
366,
1921,
3180,
1,
29809,
1797,
11,
198,
2,
42881,
34764,
11015,
6375,
7102,
49828,
11053,
3963,
15529,
509,
12115,
11,
2035,
4911,
393,
17142,
13,
198,
2,
4091,
262,
13789,
329,
262,
2176,
3303,
15030,
21627,
290,
198,
2,
11247,
739,
262,
13789,
13,
198,
198,
11748,
19449,
18,
198,
11748,
33220,
198,
198,
3500,
17926,
40,
198,
3500,
6208,
198,
198,
31,
9288,
2617,
366,
15042,
13,
20362,
1,
2221,
198,
220,
220,
220,
2291,
7203,
15042,
13,
20362,
4943,
198,
437,
198,
198,
2,
825,
5072,
796,
198,
2,
220,
220,
220,
220,
352,
11,
366,
21943,
1600,
513,
13,
19,
11,
1058,
21943,
26,
198,
2,
220,
220,
220,
220,
362,
11,
366,
5657,
1600,
642,
13,
21,
11,
1058,
21943,
198,
9979,
1767,
796,
37227,
90,
198,
220,
220,
220,
366,
22915,
1298,
685,
90,
198,
220,
220,
220,
220,
220,
220,
220,
366,
2411,
62,
2539,
1298,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
3672,
1298,
366,
22915,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27160,
1298,
685,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
13083,
1298,
14631,
5317,
2414,
1600,
366,
10100,
1600,
366,
43879,
2414,
1600,
366,
25,
21943,
33116,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
4906,
1298,
366,
6892,
9218,
1,
198,
220,
220,
220,
220,
220,
220,
220,
8964,
198,
220,
220,
220,
220,
220,
220,
220,
366,
4906,
1298,
366,
6892,
341,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
28665,
82,
1298,
16410,
16,
11,
362,
4357,
14631,
21943,
1600,
366,
5657,
33116,
685,
18,
13,
19,
11,
642,
13,
21,
11907,
198,
220,
220,
220,
1782,
4357,
198,
220,
220,
220,
366,
1676,
22143,
1298,
685,
4357,
198,
220,
220,
220,
366,
4658,
1298,
685,
90,
198,
220,
220,
220,
220,
220,
220,
220,
366,
3672,
1298,
366,
2673,
16,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
4906,
1298,
366,
33986,
276,
12502,
23004,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
20274,
1298,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
22915,
1298,
685,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
4906,
1298,
366,
20746,
12502,
23004,
20662,
198,
220,
220,
220,
1782,
4357,
198,
220,
220,
220,
366,
24442,
62,
5715,
1298,
657,
11,
198,
220,
220,
220,
366,
397,
9741,
1298,
3991,
11,
198,
220,
220,
220,
366,
4906,
1298,
366,
48720,
23004,
1,
198,
92,
198,
37811,
198,
198,
31,
9288,
2617,
366,
40386,
18261,
1,
2221,
198,
220,
220,
220,
374,
2777,
796,
19449,
18,
13,
961,
7,
2618,
8,
198,
220,
220,
220,
2488,
9288,
374,
2777,
13,
4906,
6624,
366,
48720,
23004,
1,
198,
220,
220,
220,
2488,
9288,
374,
2777,
13,
397,
9741,
6624,
3991,
198,
220,
220,
220,
2488,
9288,
4129,
7,
81,
2777,
13,
1676,
22143,
8,
6624,
657,
198,
220,
220,
220,
2488,
9288,
4129,
7,
81,
2777,
13,
22915,
8,
6624,
352,
198,
220,
220,
220,
2488,
9288,
374,
2777,
13,
22915,
58,
16,
4083,
4906,
6624,
366,
6892,
341,
1,
198,
220,
220,
220,
2488,
9288,
374,
2777,
13,
22915,
58,
16,
4083,
2411,
62,
2539,
13,
4906,
6624,
366,
6892,
9218,
1,
198,
220,
220,
220,
2488,
9288,
4129,
7,
81,
2777,
13,
22915,
58,
16,
4083,
28665,
82,
8,
6624,
513,
198,
220,
220,
220,
2488,
9288,
4129,
7,
81,
2777,
13,
22915,
58,
16,
4083,
28665,
82,
58,
16,
12962,
6624,
362,
198,
220,
220,
220,
2488,
9288,
374,
2777,
13,
22915,
58,
16,
4083,
28665,
82,
58,
16,
60,
6624,
685,
16,
11,
362,
60,
198,
220,
220,
220,
2488,
9288,
374,
2777,
13,
22915,
58,
16,
4083,
28665,
82,
58,
17,
60,
6624,
14631,
21943,
1600,
366,
5657,
8973,
198,
220,
220,
220,
2488,
9288,
374,
2777,
13,
22915,
58,
16,
4083,
28665,
82,
58,
18,
60,
6624,
685,
18,
13,
19,
11,
642,
13,
21,
60,
198,
437,
198,
198,
31,
9288,
2617,
366,
48720,
23004,
1,
2221,
198,
220,
220,
220,
374,
2777,
796,
19449,
18,
13,
961,
7,
2618,
8,
198,
220,
220,
220,
1255,
796,
45389,
23004,
7,
81,
2777,
8,
198,
220,
220,
220,
2488,
9288,
1255,
13,
4906,
6624,
366,
48720,
23004,
1,
198,
220,
220,
220,
2488,
9288,
1255,
13,
397,
9741,
6624,
3991,
198,
220,
220,
220,
2488,
9288,
4129,
7,
20274,
13,
1676,
22143,
8,
6624,
657,
198,
220,
220,
220,
2488,
9288,
4129,
7,
20274,
13,
22915,
8,
6624,
352,
198,
220,
220,
220,
2488,
9288,
374,
2777,
13,
22915,
58,
16,
4083,
4906,
6624,
366,
6892,
341,
1,
198,
220,
220,
220,
2488,
9288,
374,
2777,
13,
22915,
58,
16,
4083,
2411,
62,
2539,
13,
4906,
6624,
366,
6892,
9218,
1,
198,
220,
220,
220,
2488,
9288,
4129,
7,
20274,
13,
22915,
58,
16,
4083,
28665,
82,
8,
6624,
513,
198,
220,
220,
220,
2488,
9288,
4129,
7,
20274,
13,
22915,
58,
16,
4083,
28665,
82,
58,
16,
12962,
6624,
362,
198,
220,
220,
220,
2488,
9288,
1255,
13,
22915,
58,
16,
4083,
28665,
82,
58,
16,
60,
6624,
685,
16,
11,
362,
60,
198,
220,
220,
220,
2488,
9288,
1255,
13,
22915,
58,
16,
4083,
28665,
82,
58,
17,
60,
6624,
14631,
21943,
1600,
366,
5657,
8973,
198,
220,
220,
220,
2488,
9288,
1255,
13,
22915,
58,
16,
4083,
28665,
82,
58,
18,
60,
6624,
685,
18,
13,
19,
11,
642,
13,
21,
60,
198,
437,
198,
198,
31,
9288,
2617,
366,
48720,
23004,
13,
39468,
1,
2221,
198,
220,
220,
220,
374,
2777,
796,
19449,
18,
13,
961,
7,
2618,
8,
198,
220,
220,
220,
1255,
796,
45389,
23004,
7,
81,
2777,
8,
198,
220,
220,
220,
2488,
9288,
4129,
7,
20274,
13,
39468,
8,
6624,
352,
198,
220,
220,
220,
2488,
9288,
4129,
7,
20274,
13,
39468,
58,
16,
12962,
6624,
362,
198,
220,
220,
220,
2488,
9288,
32815,
7,
20274,
13,
39468,
58,
16,
12962,
6624,
685,
5317,
2414,
11,
10903,
11,
48436,
2414,
11,
38357,
60,
198,
220,
220,
220,
2488,
9288,
651,
808,
7,
20274,
13,
39468,
58,
16,
4357,
352,
8,
6624,
357,
16,
11,
366,
21943,
1600,
513,
13,
19,
11,
1058,
21943,
8,
198,
220,
220,
220,
2488,
9288,
651,
808,
7,
20274,
13,
39468,
58,
16,
4357,
362,
8,
6624,
357,
17,
11,
366,
5657,
1600,
642,
13,
21,
11,
1058,
21943,
8,
198,
220,
220,
220,
2488,
9288,
1255,
13,
39468,
58,
16,
7131,
16,
60,
6624,
357,
16,
11,
366,
21943,
1600,
513,
13,
19,
11,
1058,
21943,
8,
198,
220,
220,
220,
2488,
9288,
1255,
13,
39468,
58,
16,
7131,
17,
60,
6624,
357,
17,
11,
366,
5657,
1600,
642,
13,
21,
11,
1058,
21943,
8,
198,
437,
198,
198,
2,
24470,
9386,
4600,
6892,
341,
63,
319,
262,
6163,
5072,
13,
198,
31,
9288,
2617,
366,
6892,
341,
1,
2221,
198,
220,
220,
220,
374,
2777,
796,
19449,
18,
13,
961,
7,
2618,
8,
198,
220,
220,
220,
823,
796,
4718,
341,
7,
81,
2777,
13,
22915,
58,
16,
12962,
198,
220,
220,
220,
2488,
9288,
4129,
7,
2411,
8,
6624,
362,
220,
1303,
734,
15274,
198,
220,
220,
220,
2488,
9288,
32815,
7,
2411,
8,
6624,
685,
5317,
2414,
11,
10903,
11,
48436,
2414,
11,
38357,
60,
198,
220,
220,
220,
2488,
9288,
651,
808,
7,
2411,
11,
352,
8,
6624,
357,
16,
11,
366,
21943,
1600,
513,
13,
19,
11,
1058,
21943,
8,
198,
220,
220,
220,
2488,
9288,
651,
808,
7,
2411,
11,
362,
8,
6624,
357,
17,
11,
366,
5657,
1600,
642,
13,
21,
11,
1058,
21943,
8,
198,
220,
220,
220,
2488,
9288,
823,
58,
16,
60,
6624,
357,
16,
11,
366,
21943,
1600,
513,
13,
19,
11,
1058,
21943,
8,
198,
220,
220,
220,
2488,
9288,
823,
58,
17,
60,
6624,
357,
17,
11,
366,
5657,
1600,
642,
13,
21,
11,
1058,
21943,
8,
198,
437,
198,
198,
31,
9288,
2617,
366,
51,
2977,
13,
23839,
25166,
1,
2221,
198,
220,
220,
220,
374,
2777,
796,
19449,
18,
13,
961,
7,
2618,
8,
198,
220,
220,
220,
823,
796,
4718,
341,
7,
81,
2777,
13,
22915,
58,
16,
12962,
198,
220,
220,
220,
2488,
9288,
33220,
13,
396,
540,
7,
4906,
1659,
7,
2411,
4008,
198,
220,
220,
220,
2488,
9288,
33220,
13,
808,
15526,
7,
4906,
1659,
7,
2411,
4008,
198,
220,
220,
220,
2488,
9288,
33220,
13,
8516,
7,
2411,
8,
24844,
823,
198,
220,
220,
220,
5752,
796,
717,
7,
2411,
8,
198,
220,
220,
220,
2488,
9288,
1288,
4906,
7,
2411,
8,
6624,
2099,
1659,
7,
808,
8,
198,
220,
220,
220,
2488,
9288,
33220,
13,
1136,
28665,
7,
808,
11,
1058,
39470,
16,
8,
6624,
352,
198,
220,
220,
220,
2488,
9288,
33220,
13,
1136,
28665,
7,
808,
11,
352,
8,
6624,
352,
198,
220,
220,
220,
2488,
9288,
5752,
13,
27160,
6624,
357,
16,
11,
366,
21943,
1600,
513,
13,
19,
11,
1058,
21943,
8,
198,
220,
220,
220,
2488,
9288,
5752,
13,
39470,
16,
6624,
352,
198,
220,
220,
220,
2488,
9288,
5752,
13,
39470,
17,
6624,
366,
21943,
1,
198,
220,
220,
220,
2488,
9288,
5752,
13,
39470,
18,
6624,
513,
13,
19,
198,
220,
220,
220,
2488,
9288,
5752,
13,
39470,
19,
6624,
1058,
21943,
198,
220,
220,
220,
2488,
9288,
5752,
58,
16,
60,
6624,
352,
198,
220,
220,
220,
2488,
9288,
5752,
58,
17,
60,
6624,
366,
21943,
1,
198,
220,
220,
220,
2488,
9288,
5752,
58,
18,
60,
6624,
513,
13,
19,
198,
220,
220,
220,
2488,
9288,
5752,
58,
19,
60,
6624,
1058,
21943,
198,
220,
220,
220,
2488,
9288,
33220,
13,
28665,
14933,
7,
2411,
8,
6624,
685,
25,
39470,
16,
11,
1058,
39470,
17,
11,
1058,
39470,
18,
11,
1058,
39470,
19,
60,
198,
220,
220,
220,
2488,
9288,
33220,
13,
28665,
14933,
7,
808,
8,
6624,
685,
25,
39470,
16,
11,
1058,
39470,
17,
11,
1058,
39470,
18,
11,
1058,
39470,
19,
60,
198,
437,
198,
198,
31,
9288,
2617,
366,
51,
2977,
13,
11600,
808,
11487,
1,
2221,
198,
220,
220,
220,
374,
2777,
796,
19449,
18,
13,
961,
7,
2618,
8,
198,
220,
220,
220,
823,
796,
4718,
341,
7,
81,
2777,
13,
22915,
58,
16,
12962,
198,
220,
220,
220,
3084,
796,
33220,
13,
11600,
808,
11487,
7,
2411,
8,
198,
220,
220,
220,
5752,
796,
717,
7,
11487,
8,
198,
220,
220,
220,
2488,
9288,
5752,
13,
39470,
16,
6624,
352,
198,
220,
220,
220,
2488,
9288,
5752,
13,
39470,
17,
6624,
366,
21943,
1,
198,
220,
220,
220,
2488,
9288,
5752,
13,
39470,
18,
6624,
513,
13,
19,
198,
220,
220,
220,
2488,
9288,
5752,
13,
39470,
19,
6624,
1058,
21943,
198,
437,
198
] | 2.330036 | 1,921 |
###### Periodic domains
abstract type PeriodicDomain{T} <: Domain{T} end
isperiodic(::PeriodicDomain) = true
canonicaldomain(::PeriodicDomain) = PeriodicSegment()
points(d::PeriodicDomain{T},n::Integer) where {T} =
fromcanonical.(Ref(d), fourierpoints(real(eltype(T)),n))
fourierpoints(n::Integer) = fourierpoints(Float64,n)
fourierpoints(::Type{T},n::Integer) where {T<:Number} = convert(T,π)*collect(0:2:2n-2)/n
function indomain(x, d::PeriodicDomain{T}) where T
y=tocanonical(d,x)
if !isapprox(fromcanonical(d,y),x)
return false
end
l=arclength(d)
if isinf(l)
abs(imag(y))<20eps(T)
else
abs(imag(y))/l<20eps(T)
end
end
first(d::PeriodicDomain) = fromcanonical(d,0)
last(d::PeriodicDomain) = fromcanonical(d,2π)
rand(d::PeriodicDomain,k...) = fromcanonical.(Ref(d),2π*rand(k...)-π)
checkpoints(d::PeriodicDomain) = fromcanonical.(Ref(d),[1.223972,3.14,5.83273484])
boundary(d::PeriodicDomain) = EmptyDomain()
for op in (:rdirichlet,:ldirichlet,:lneumann,:rneumann,:ivp,:bvp)
@eval $op(::PeriodicDomain) = error("Periodic domains do not have boundaries")
end
struct AnyPeriodicDomain <: PeriodicDomain{UnsetNumber} end
isambiguous(::AnyPeriodicDomain)=true
convert(::Type{D},::AnyDomain) where {D<:PeriodicDomain} = AnyPeriodicDomain()
include("PeriodicSegment.jl")
include("Circle.jl")
include("PeriodicLine.jl")
include("PeriodicCurve.jl")
include("Disk.jl")
| [
198,
4242,
2235,
18581,
291,
18209,
198,
198,
397,
8709,
2099,
18581,
291,
43961,
90,
51,
92,
1279,
25,
20021,
90,
51,
92,
886,
198,
198,
271,
41007,
291,
7,
3712,
5990,
2101,
291,
43961,
8,
796,
2081,
198,
198,
49883,
605,
27830,
7,
3712,
5990,
2101,
291,
43961,
8,
796,
18581,
291,
41030,
434,
3419,
628,
198,
13033,
7,
67,
3712,
5990,
2101,
291,
43961,
90,
51,
5512,
77,
3712,
46541,
8,
810,
1391,
51,
92,
796,
198,
220,
220,
220,
422,
49883,
605,
12195,
8134,
7,
67,
828,
46287,
5277,
13033,
7,
5305,
7,
417,
4906,
7,
51,
36911,
77,
4008,
198,
198,
69,
280,
5277,
13033,
7,
77,
3712,
46541,
8,
796,
46287,
5277,
13033,
7,
43879,
2414,
11,
77,
8,
198,
69,
280,
5277,
13033,
7,
3712,
6030,
90,
51,
5512,
77,
3712,
46541,
8,
810,
1391,
51,
27,
25,
15057,
92,
796,
10385,
7,
51,
11,
46582,
27493,
33327,
7,
15,
25,
17,
25,
17,
77,
12,
17,
20679,
77,
198,
198,
8818,
773,
296,
391,
7,
87,
11,
288,
3712,
5990,
2101,
291,
43961,
90,
51,
30072,
810,
309,
198,
220,
220,
220,
331,
28,
40301,
36902,
605,
7,
67,
11,
87,
8,
198,
220,
220,
220,
611,
5145,
271,
1324,
13907,
7,
6738,
49883,
605,
7,
67,
11,
88,
828,
87,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
3991,
198,
220,
220,
220,
886,
628,
220,
220,
220,
300,
28,
283,
565,
3286,
7,
67,
8,
198,
220,
220,
220,
611,
318,
10745,
7,
75,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2352,
7,
48466,
7,
88,
4008,
27,
1238,
25386,
7,
51,
8,
198,
220,
220,
220,
2073,
198,
220,
220,
220,
220,
220,
220,
220,
2352,
7,
48466,
7,
88,
4008,
14,
75,
27,
1238,
25386,
7,
51,
8,
198,
220,
220,
220,
886,
198,
437,
628,
628,
198,
11085,
7,
67,
3712,
5990,
2101,
291,
43961,
8,
796,
422,
49883,
605,
7,
67,
11,
15,
8,
198,
12957,
7,
67,
3712,
5990,
2101,
291,
43961,
8,
796,
422,
49883,
605,
7,
67,
11,
17,
46582,
8,
628,
198,
25192,
7,
67,
3712,
5990,
2101,
291,
43961,
11,
74,
23029,
796,
422,
49883,
605,
12195,
8134,
7,
67,
828,
17,
46582,
9,
25192,
7,
74,
986,
13219,
46582,
8,
198,
9122,
13033,
7,
67,
3712,
5990,
2101,
291,
43961,
8,
796,
422,
49883,
605,
12195,
8134,
7,
67,
828,
58,
16,
13,
1828,
2670,
4761,
11,
18,
13,
1415,
11,
20,
13,
5999,
1983,
2682,
5705,
12962,
198,
7784,
560,
7,
67,
3712,
5990,
2101,
291,
43961,
8,
796,
33523,
43961,
3419,
198,
198,
1640,
1034,
287,
357,
25,
4372,
343,
488,
1616,
11,
25,
335,
343,
488,
1616,
11,
25,
75,
25668,
1236,
11,
25,
81,
25668,
1236,
11,
25,
452,
79,
11,
25,
65,
36133,
8,
198,
220,
220,
220,
2488,
18206,
720,
404,
7,
3712,
5990,
2101,
291,
43961,
8,
796,
4049,
7203,
5990,
2101,
291,
18209,
466,
407,
423,
13215,
4943,
198,
437,
628,
198,
7249,
4377,
5990,
2101,
291,
43961,
1279,
25,
18581,
291,
43961,
90,
3118,
2617,
15057,
92,
886,
198,
271,
4131,
29709,
7,
3712,
7149,
5990,
2101,
291,
43961,
47505,
7942,
198,
198,
1102,
1851,
7,
3712,
6030,
90,
35,
5512,
3712,
7149,
43961,
8,
810,
1391,
35,
27,
25,
5990,
2101,
291,
43961,
92,
796,
4377,
5990,
2101,
291,
43961,
3419,
628,
198,
17256,
7203,
5990,
2101,
291,
41030,
434,
13,
20362,
4943,
198,
17256,
7203,
31560,
293,
13,
20362,
4943,
198,
17256,
7203,
5990,
2101,
291,
13949,
13,
20362,
4943,
198,
17256,
7203,
5990,
2101,
291,
26628,
303,
13,
20362,
4943,
198,
17256,
7203,
40961,
13,
20362,
4943,
198
] | 2.353997 | 613 |
# This file contains functions that are related to the AMR capabilities of the DG solver
# Refine elements in the DG solver based on a list of cell_ids that should be refined
function refine!(dg::Dg1D{Eqn, MeshType, NVARS, POLYDEG}, mesh::TreeMesh,
cells_to_refine::AbstractArray{Int}) where {Eqn, MeshType, NVARS, POLYDEG}
# Return early if there is nothing to do
if isempty(cells_to_refine)
return
end
# Determine for each existing element whether it needs to be refined
needs_refinement = falses(nelements(dg.elements))
tree = mesh.tree
# The "Ref(...)" is such that we can vectorize the search but not the array that is searched
elements_to_refine = searchsortedfirst.(Ref(dg.elements.cell_ids[1:nelements(dg.elements)]),
cells_to_refine)
needs_refinement[elements_to_refine] .= true
# Retain current solution data
old_n_elements = nelements(dg.elements)
old_u = dg.elements.u
# Get new list of leaf cells
leaf_cell_ids = leaf_cells(tree)
# Initialize new elements container
elements = init_elements(leaf_cell_ids, mesh, Val(NVARS), Val(POLYDEG))
n_elements = nelements(elements)
# Loop over all elements in old container and either copy them or refine them
element_id = 1
for old_element_id in 1:old_n_elements
if needs_refinement[old_element_id]
# Refine element and store solution directly in new data structure
refine_element!(elements.u, element_id, old_u, old_element_id,
dg.amr_refine_right, dg.amr_refine_left, dg)
element_id += 2^ndims(dg)
else
# Copy old element data to new element container
@views elements.u[:, :, element_id] .= old_u[:, :, old_element_id]
element_id += 1
end
end
# Initialize new interfaces container
interfaces = init_interfaces(leaf_cell_ids, mesh, Val(NVARS), Val(POLYDEG), elements)
n_interfaces = ninterfaces(interfaces)
# Initialize boundaries
boundaries, n_boundaries_per_direction = init_boundaries(leaf_cell_ids, mesh, Val(NVARS), Val(POLYDEG), elements)
n_boundaries = nboundaries(boundaries)
# Sanity check
if isperiodic(mesh.tree)
@assert n_interfaces == 1*n_elements ("For 1D and periodic domains, n_surf must be the same as 1*n_elem")
end
# Update DG instance with new data
dg.elements = elements
dg.n_elements = n_elements
dg.n_elements_global = n_elements
dg.interfaces = interfaces
dg.n_interfaces = n_interfaces
dg.boundaries = boundaries
dg.n_boundaries = n_boundaries
dg.n_boundaries_per_direction = n_boundaries_per_direction
end
# Refine solution data u for an element, using L2 projection (interpolation)
function refine_element!(u, element_id, old_u, old_element_id,
refine_right, refine_left, dg::Dg1D)
# Store new element ids
left_id = element_id
right_id = element_id + 1
# Interpolate to left element
for i in 1:nnodes(dg)
acc = zero(get_node_vars(u, dg, i, element_id))
for k in 1:nnodes(dg)
acc += get_node_vars(old_u, dg, k, old_element_id) * refine_left[i, k]
end
set_node_vars!(u, acc, dg, i, left_id)
end
# Interpolate to right element
for i in 1:nnodes(dg)
acc = zero(get_node_vars(u, dg, i, element_id))
for k in 1:nnodes(dg)
acc += get_node_vars(old_u, dg, k, old_element_id) * refine_right[i, k]
end
set_node_vars!(u, acc, dg, i, right_id)
end
end
# Coarsen elements in the DG solver based on a list of cell_ids that should be removed
function coarsen!(dg::Dg1D{Eqn, MeshType, NVARS, POLYDEG}, mesh::TreeMesh,
child_cells_to_coarsen::AbstractArray{Int}) where {Eqn, MeshType, NVARS, POLYDEG}
# Return early if there is nothing to do
if isempty(child_cells_to_coarsen)
return
end
# Determine for each old element whether it needs to be removed
to_be_removed = falses(nelements(dg.elements))
# The "Ref(...)" is such that we can vectorize the search but not the array that is searched
elements_to_remove = searchsortedfirst.(Ref(dg.elements.cell_ids[1:nelements(dg.elements)]),
child_cells_to_coarsen)
to_be_removed[elements_to_remove] .= true
# Retain current solution data
old_n_elements = nelements(dg.elements)
old_u = dg.elements.u
# Get new list of leaf cells
leaf_cell_ids = leaf_cells(mesh.tree)
# Initialize new elements container
elements = init_elements(leaf_cell_ids, mesh, Val(NVARS), Val(POLYDEG))
n_elements = nelements(elements)
# Loop over all elements in old container and either copy them or coarsen them
skip = 0
element_id = 1
for old_element_id in 1:old_n_elements
# If skip is non-zero, we just coarsened 2^ndims elements and need to omit the following elements
if skip > 0
skip -= 1
continue
end
if to_be_removed[old_element_id]
# If an element is to be removed, sanity check if the following elements
# are also marked - otherwise there would be an error in the way the
# cells/elements are sorted
@assert all(to_be_removed[old_element_id:(old_element_id+2^ndims(dg)-1)]) "bad cell/element order"
# Coarsen elements and store solution directly in new data structure
coarsen_elements!(elements.u, element_id, old_u, old_element_id,
dg.amr_coarsen_right, dg.amr_coarsen_left, dg)
element_id += 1
skip = 2^ndims(dg) - 1
else
# Copy old element data to new element container
@views elements.u[:, :, element_id] .= old_u[:, :, old_element_id]
element_id += 1
end
end
# Initialize new interfaces container
interfaces = init_interfaces(leaf_cell_ids, mesh, Val(NVARS), Val(POLYDEG), elements)
n_interfaces = ninterfaces(interfaces)
# Initialize boundaries
boundaries, n_boundaries_per_direction = init_boundaries(leaf_cell_ids, mesh, Val(NVARS), Val(POLYDEG), elements)
n_boundaries = nboundaries(boundaries)
# Sanity check
if isperiodic(mesh.tree)
@assert n_interfaces == 1*n_elements ("For 1D and periodic domains, n_surf must be the same as 1*n_elem")
end
# Update DG instance with new data
dg.elements = elements
dg.n_elements = n_elements
dg.n_elements_global = n_elements
dg.interfaces = interfaces
dg.n_interfaces = n_interfaces
dg.boundaries = boundaries
dg.n_boundaries = n_boundaries
dg.n_boundaries_per_direction = n_boundaries_per_direction
end
# Coarsen solution data u for four elements, using L2 projection
function coarsen_elements!(u, element_id, old_u, old_element_id,
coarsen_right, coarsen_left, dg::Dg1D)
# Store old element ids
left_id = old_element_id
right_id = old_element_id + 1
for i in 1:nnodes(dg)
acc = zero(get_node_vars(u, dg, i, element_id))
# Project from left element
for k in 1:nnodes(dg)
acc += get_node_vars(old_u, dg, k, left_id) * coarsen_left[i, k]
end
# Project from right element
for k in 1:nnodes(dg)
acc += get_node_vars(old_u, dg, k, right_id) * coarsen_right[i, k]
end
# Update value
set_node_vars!(u, acc, dg, i, element_id)
end
end
# Calculate an AMR indicator value for each element/leaf cell
#
# The indicator value λ ∈ [-1,1] is ≈ -1 for cells that should be coarsened, ≈
# 0 for cells that should remain as-is, and ≈ 1 for cells that should be
# refined.
#
# Note: The implementation here implicitly assumes that we have an element for
# each leaf cell and that they are in the same order.
#
# FIXME: This is currently implemented for each test case - we need something
# appropriate that is both equation and test case independent
function calc_amr_indicator(dg::Dg1D, mesh::TreeMesh, time)
lambda = zeros(dg.n_elements)
if dg.amr_indicator === :gauss
base_level = 4
max_level = 6
threshold_high = 0.6
threshold_low = 0.1
# Iterate over all elements
for element_id in 1:dg.n_elements
# Determine target level from peak value
peak = maximum(dg.elements.u[:, :, element_id])
if peak > threshold_high
target_level = max_level
elseif peak > threshold_low
target_level = max_level - 1
else
target_level = base_level
end
# Compare target level with actual level to set indicator
cell_id = dg.elements.cell_ids[element_id]
actual_level = mesh.tree.levels[cell_id]
if actual_level < target_level
lambda[element_id] = 1.0
elseif actual_level > target_level
lambda[element_id] = -1.0
else
lambda[element_id] = 0.0
end
end
elseif dg.amr_indicator === :blast_wave
base_level = 4
max_level = 6
blending_factor_threshold = 0.01
# (Re-)initialize element variable storage for blending factor
if (!haskey(dg.element_variables, :amr_indicator_values) ||
length(dg.element_variables[:amr_indicator_values]) != dg.n_elements)
dg.element_variables[:amr_indicator_values] = Vector{Float64}(undef, dg.n_elements)
end
if (!haskey(dg.element_variables, :amr_indicator_values_tmp) ||
length(dg.element_variables[:amr_indicator_values_tmp]) != dg.n_elements)
dg.element_variables[:amr_indicator_values_tmp] = Vector{Float64}(undef, dg.n_elements)
end
alpha = dg.element_variables[:amr_indicator_values]
alpha_tmp = dg.element_variables[:amr_indicator_values_tmp]
calc_blending_factors!(alpha, alpha_tmp, dg.elements.u, dg.amr_alpha_max, dg.amr_alpha_min, dg.amr_alpha_smooth,
density_pressure, dg.thread_cache, dg)
# Iterate over all elements
for element_id in 1:dg.n_elements
if alpha[element_id] > blending_factor_threshold
target_level = max_level
else
target_level = base_level
end
# Compare target level with actual level to set indicator
cell_id = dg.elements.cell_ids[element_id]
actual_level = mesh.tree.levels[cell_id]
if actual_level < target_level
lambda[element_id] = 1.0
elseif actual_level > target_level
lambda[element_id] = -1.0
else
lambda[element_id] = 0.0
end
end
else
error("unknown AMR indicator '$(dg.amr_indicator)'")
end
return lambda
end
| [
2,
770,
2393,
4909,
5499,
326,
389,
3519,
284,
262,
3001,
49,
9889,
286,
262,
46133,
1540,
332,
198,
198,
2,
6524,
500,
4847,
287,
262,
46133,
1540,
332,
1912,
319,
257,
1351,
286,
2685,
62,
2340,
326,
815,
307,
20449,
198,
8818,
35139,
0,
7,
67,
70,
3712,
35,
70,
16,
35,
90,
36,
80,
77,
11,
47529,
6030,
11,
23973,
27415,
11,
20634,
35755,
7156,
5512,
19609,
3712,
27660,
37031,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4778,
62,
1462,
62,
5420,
500,
3712,
23839,
19182,
90,
5317,
30072,
810,
1391,
36,
80,
77,
11,
47529,
6030,
11,
23973,
27415,
11,
20634,
35755,
7156,
92,
198,
220,
1303,
8229,
1903,
611,
612,
318,
2147,
284,
466,
198,
220,
611,
318,
28920,
7,
46342,
62,
1462,
62,
5420,
500,
8,
198,
220,
220,
220,
1441,
198,
220,
886,
628,
220,
1303,
45559,
3810,
329,
1123,
4683,
5002,
1771,
340,
2476,
284,
307,
20449,
198,
220,
2476,
62,
5420,
21828,
796,
27807,
274,
7,
710,
3639,
7,
67,
70,
13,
68,
3639,
4008,
198,
220,
5509,
796,
19609,
13,
21048,
198,
220,
1303,
383,
366,
8134,
7,
986,
16725,
318,
884,
326,
356,
460,
15879,
1096,
262,
2989,
475,
407,
262,
7177,
326,
318,
16499,
198,
220,
4847,
62,
1462,
62,
5420,
500,
796,
2989,
82,
9741,
11085,
12195,
8134,
7,
67,
70,
13,
68,
3639,
13,
3846,
62,
2340,
58,
16,
25,
710,
3639,
7,
67,
70,
13,
68,
3639,
15437,
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,
220,
220,
220,
220,
220,
220,
220,
220,
4778,
62,
1462,
62,
5420,
500,
8,
198,
220,
2476,
62,
5420,
21828,
58,
68,
3639,
62,
1462,
62,
5420,
500,
60,
764,
28,
2081,
628,
220,
1303,
4990,
391,
1459,
4610,
1366,
198,
220,
1468,
62,
77,
62,
68,
3639,
796,
497,
3639,
7,
67,
70,
13,
68,
3639,
8,
198,
220,
1468,
62,
84,
796,
288,
70,
13,
68,
3639,
13,
84,
628,
220,
1303,
3497,
649,
1351,
286,
12835,
4778,
198,
220,
12835,
62,
3846,
62,
2340,
796,
12835,
62,
46342,
7,
21048,
8,
628,
220,
1303,
20768,
1096,
649,
4847,
9290,
198,
220,
4847,
796,
2315,
62,
68,
3639,
7,
33201,
62,
3846,
62,
2340,
11,
19609,
11,
3254,
7,
27159,
27415,
828,
3254,
7,
45472,
35755,
7156,
4008,
198,
220,
299,
62,
68,
3639,
796,
497,
3639,
7,
68,
3639,
8,
628,
220,
1303,
26304,
625,
477,
4847,
287,
1468,
9290,
290,
2035,
4866,
606,
393,
35139,
606,
198,
220,
5002,
62,
312,
796,
352,
198,
220,
329,
1468,
62,
30854,
62,
312,
287,
352,
25,
727,
62,
77,
62,
68,
3639,
198,
220,
220,
220,
611,
2476,
62,
5420,
21828,
58,
727,
62,
30854,
62,
312,
60,
198,
220,
220,
220,
220,
220,
1303,
6524,
500,
5002,
290,
3650,
4610,
3264,
287,
649,
1366,
4645,
198,
220,
220,
220,
220,
220,
35139,
62,
30854,
0,
7,
68,
3639,
13,
84,
11,
5002,
62,
312,
11,
1468,
62,
84,
11,
1468,
62,
30854,
62,
312,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
288,
70,
13,
321,
81,
62,
5420,
500,
62,
3506,
11,
288,
70,
13,
321,
81,
62,
5420,
500,
62,
9464,
11,
288,
70,
8,
198,
220,
220,
220,
220,
220,
5002,
62,
312,
15853,
362,
61,
358,
12078,
7,
67,
70,
8,
198,
220,
220,
220,
2073,
198,
220,
220,
220,
220,
220,
1303,
17393,
1468,
5002,
1366,
284,
649,
5002,
9290,
198,
220,
220,
220,
220,
220,
2488,
33571,
4847,
13,
84,
58,
45299,
1058,
11,
5002,
62,
312,
60,
764,
28,
1468,
62,
84,
58,
45299,
1058,
11,
1468,
62,
30854,
62,
312,
60,
198,
220,
220,
220,
220,
220,
5002,
62,
312,
15853,
352,
198,
220,
220,
220,
886,
198,
220,
886,
628,
220,
1303,
20768,
1096,
649,
20314,
9290,
198,
220,
20314,
796,
2315,
62,
3849,
32186,
7,
33201,
62,
3846,
62,
2340,
11,
19609,
11,
3254,
7,
27159,
27415,
828,
3254,
7,
45472,
35755,
7156,
828,
4847,
8,
198,
220,
299,
62,
3849,
32186,
796,
299,
3849,
32186,
7,
3849,
32186,
8,
628,
220,
1303,
20768,
1096,
13215,
198,
220,
13215,
11,
299,
62,
7784,
3166,
62,
525,
62,
37295,
796,
2315,
62,
7784,
3166,
7,
33201,
62,
3846,
62,
2340,
11,
19609,
11,
3254,
7,
27159,
27415,
828,
3254,
7,
45472,
35755,
7156,
828,
4847,
8,
198,
220,
299,
62,
7784,
3166,
796,
299,
7784,
3166,
7,
7784,
3166,
8,
628,
628,
220,
1303,
2986,
414,
2198,
198,
220,
611,
318,
41007,
291,
7,
76,
5069,
13,
21048,
8,
198,
220,
220,
220,
2488,
30493,
299,
62,
3849,
32186,
6624,
352,
9,
77,
62,
68,
3639,
5855,
1890,
352,
35,
290,
27458,
18209,
11,
299,
62,
11793,
69,
1276,
307,
262,
976,
355,
352,
9,
77,
62,
68,
10671,
4943,
198,
220,
886,
628,
220,
1303,
10133,
46133,
4554,
351,
649,
1366,
198,
220,
288,
70,
13,
68,
3639,
796,
4847,
198,
220,
288,
70,
13,
77,
62,
68,
3639,
796,
299,
62,
68,
3639,
198,
220,
288,
70,
13,
77,
62,
68,
3639,
62,
20541,
796,
299,
62,
68,
3639,
198,
220,
288,
70,
13,
3849,
32186,
796,
20314,
198,
220,
288,
70,
13,
77,
62,
3849,
32186,
796,
299,
62,
3849,
32186,
198,
220,
288,
70,
13,
7784,
3166,
796,
13215,
198,
220,
288,
70,
13,
77,
62,
7784,
3166,
796,
299,
62,
7784,
3166,
198,
220,
288,
70,
13,
77,
62,
7784,
3166,
62,
525,
62,
37295,
796,
299,
62,
7784,
3166,
62,
525,
62,
37295,
198,
437,
628,
198,
2,
6524,
500,
4610,
1366,
334,
329,
281,
5002,
11,
1262,
406,
17,
20128,
357,
3849,
16104,
341,
8,
198,
8818,
35139,
62,
30854,
0,
7,
84,
11,
5002,
62,
312,
11,
1468,
62,
84,
11,
1468,
62,
30854,
62,
312,
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,
35139,
62,
3506,
11,
35139,
62,
9464,
11,
288,
70,
3712,
35,
70,
16,
35,
8,
198,
220,
1303,
9363,
649,
5002,
220,
2340,
198,
220,
1364,
62,
312,
220,
796,
5002,
62,
312,
198,
220,
826,
62,
312,
796,
5002,
62,
312,
1343,
352,
628,
220,
1303,
4225,
16104,
378,
284,
1364,
5002,
198,
220,
329,
1312,
287,
352,
25,
20471,
4147,
7,
67,
70,
8,
198,
220,
220,
220,
697,
796,
6632,
7,
1136,
62,
17440,
62,
85,
945,
7,
84,
11,
288,
70,
11,
1312,
11,
5002,
62,
312,
4008,
198,
220,
220,
220,
329,
479,
287,
352,
25,
20471,
4147,
7,
67,
70,
8,
198,
220,
220,
220,
220,
220,
697,
15853,
651,
62,
17440,
62,
85,
945,
7,
727,
62,
84,
11,
288,
70,
11,
479,
11,
1468,
62,
30854,
62,
312,
8,
1635,
35139,
62,
9464,
58,
72,
11,
479,
60,
198,
220,
220,
220,
886,
198,
220,
220,
220,
900,
62,
17440,
62,
85,
945,
0,
7,
84,
11,
697,
11,
288,
70,
11,
1312,
11,
1364,
62,
312,
8,
198,
220,
886,
628,
220,
1303,
4225,
16104,
378,
284,
826,
5002,
198,
220,
329,
1312,
287,
352,
25,
20471,
4147,
7,
67,
70,
8,
198,
220,
220,
220,
697,
796,
6632,
7,
1136,
62,
17440,
62,
85,
945,
7,
84,
11,
288,
70,
11,
1312,
11,
5002,
62,
312,
4008,
198,
220,
220,
220,
329,
479,
287,
352,
25,
20471,
4147,
7,
67,
70,
8,
198,
220,
220,
220,
220,
220,
697,
15853,
651,
62,
17440,
62,
85,
945,
7,
727,
62,
84,
11,
288,
70,
11,
479,
11,
1468,
62,
30854,
62,
312,
8,
220,
1635,
35139,
62,
3506,
58,
72,
11,
479,
60,
198,
220,
220,
220,
886,
198,
220,
220,
220,
900,
62,
17440,
62,
85,
945,
0,
7,
84,
11,
697,
11,
288,
70,
11,
1312,
11,
826,
62,
312,
8,
198,
220,
886,
198,
198,
437,
628,
198,
2,
1766,
945,
268,
4847,
287,
262,
46133,
1540,
332,
1912,
319,
257,
1351,
286,
2685,
62,
2340,
326,
815,
307,
4615,
198,
8818,
763,
945,
268,
0,
7,
67,
70,
3712,
35,
70,
16,
35,
90,
36,
80,
77,
11,
47529,
6030,
11,
23973,
27415,
11,
20634,
35755,
7156,
5512,
19609,
3712,
27660,
37031,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1200,
62,
46342,
62,
1462,
62,
1073,
945,
268,
3712,
23839,
19182,
90,
5317,
30072,
810,
1391,
36,
80,
77,
11,
47529,
6030,
11,
23973,
27415,
11,
20634,
35755,
7156,
92,
198,
220,
1303,
8229,
1903,
611,
612,
318,
2147,
284,
466,
198,
220,
611,
318,
28920,
7,
9410,
62,
46342,
62,
1462,
62,
1073,
945,
268,
8,
198,
220,
220,
220,
1441,
198,
220,
886,
628,
220,
1303,
45559,
3810,
329,
1123,
1468,
5002,
1771,
340,
2476,
284,
307,
4615,
198,
220,
284,
62,
1350,
62,
2787,
2668,
796,
27807,
274,
7,
710,
3639,
7,
67,
70,
13,
68,
3639,
4008,
198,
220,
1303,
383,
366,
8134,
7,
986,
16725,
318,
884,
326,
356,
460,
15879,
1096,
262,
2989,
475,
407,
262,
7177,
326,
318,
16499,
198,
220,
4847,
62,
1462,
62,
28956,
796,
2989,
82,
9741,
11085,
12195,
8134,
7,
67,
70,
13,
68,
3639,
13,
3846,
62,
2340,
58,
16,
25,
710,
3639,
7,
67,
70,
13,
68,
3639,
15437,
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,
220,
220,
220,
220,
220,
220,
220,
220,
1200,
62,
46342,
62,
1462,
62,
1073,
945,
268,
8,
198,
220,
284,
62,
1350,
62,
2787,
2668,
58,
68,
3639,
62,
1462,
62,
28956,
60,
764,
28,
2081,
628,
220,
1303,
4990,
391,
1459,
4610,
1366,
198,
220,
1468,
62,
77,
62,
68,
3639,
796,
497,
3639,
7,
67,
70,
13,
68,
3639,
8,
198,
220,
1468,
62,
84,
796,
288,
70,
13,
68,
3639,
13,
84,
628,
220,
1303,
3497,
649,
1351,
286,
12835,
4778,
198,
220,
12835,
62,
3846,
62,
2340,
796,
12835,
62,
46342,
7,
76,
5069,
13,
21048,
8,
628,
220,
1303,
20768,
1096,
649,
4847,
9290,
198,
220,
4847,
796,
2315,
62,
68,
3639,
7,
33201,
62,
3846,
62,
2340,
11,
19609,
11,
3254,
7,
27159,
27415,
828,
3254,
7,
45472,
35755,
7156,
4008,
198,
220,
299,
62,
68,
3639,
796,
497,
3639,
7,
68,
3639,
8,
628,
220,
1303,
26304,
625,
477,
4847,
287,
1468,
9290,
290,
2035,
4866,
606,
393,
763,
945,
268,
606,
198,
220,
14267,
796,
657,
198,
220,
5002,
62,
312,
796,
352,
198,
220,
329,
1468,
62,
30854,
62,
312,
287,
352,
25,
727,
62,
77,
62,
68,
3639,
198,
220,
220,
220,
1303,
1002,
14267,
318,
1729,
12,
22570,
11,
356,
655,
763,
945,
2945,
362,
61,
358,
12078,
4847,
290,
761,
284,
42848,
262,
1708,
4847,
198,
220,
220,
220,
611,
14267,
1875,
657,
198,
220,
220,
220,
220,
220,
14267,
48185,
352,
198,
220,
220,
220,
220,
220,
2555,
198,
220,
220,
220,
886,
628,
220,
220,
220,
611,
284,
62,
1350,
62,
2787,
2668,
58,
727,
62,
30854,
62,
312,
60,
198,
220,
220,
220,
220,
220,
1303,
1002,
281,
5002,
318,
284,
307,
4615,
11,
34182,
2198,
611,
262,
1708,
4847,
198,
220,
220,
220,
220,
220,
1303,
389,
635,
7498,
532,
4306,
612,
561,
307,
281,
4049,
287,
262,
835,
262,
198,
220,
220,
220,
220,
220,
1303,
4778,
14,
68,
3639,
389,
23243,
198,
220,
220,
220,
220,
220,
2488,
30493,
477,
7,
1462,
62,
1350,
62,
2787,
2668,
58,
727,
62,
30854,
62,
312,
37498,
727,
62,
30854,
62,
312,
10,
17,
61,
358,
12078,
7,
67,
70,
13219,
16,
8,
12962,
366,
14774,
2685,
14,
30854,
1502,
1,
628,
220,
220,
220,
220,
220,
1303,
1766,
945,
268,
4847,
290,
3650,
4610,
3264,
287,
649,
1366,
4645,
198,
220,
220,
220,
220,
220,
763,
945,
268,
62,
68,
3639,
0,
7,
68,
3639,
13,
84,
11,
5002,
62,
312,
11,
1468,
62,
84,
11,
1468,
62,
30854,
62,
312,
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,
288,
70,
13,
321,
81,
62,
1073,
945,
268,
62,
3506,
11,
288,
70,
13,
321,
81,
62,
1073,
945,
268,
62,
9464,
11,
288,
70,
8,
198,
220,
220,
220,
220,
220,
5002,
62,
312,
15853,
352,
198,
220,
220,
220,
220,
220,
14267,
796,
362,
61,
358,
12078,
7,
67,
70,
8,
532,
352,
198,
220,
220,
220,
2073,
198,
220,
220,
220,
220,
220,
1303,
17393,
1468,
5002,
1366,
284,
649,
5002,
9290,
198,
220,
220,
220,
220,
220,
2488,
33571,
4847,
13,
84,
58,
45299,
1058,
11,
5002,
62,
312,
60,
764,
28,
1468,
62,
84,
58,
45299,
1058,
11,
1468,
62,
30854,
62,
312,
60,
198,
220,
220,
220,
220,
220,
5002,
62,
312,
15853,
352,
198,
220,
220,
220,
886,
198,
220,
886,
628,
220,
1303,
20768,
1096,
649,
20314,
9290,
198,
220,
20314,
796,
2315,
62,
3849,
32186,
7,
33201,
62,
3846,
62,
2340,
11,
19609,
11,
3254,
7,
27159,
27415,
828,
3254,
7,
45472,
35755,
7156,
828,
4847,
8,
198,
220,
299,
62,
3849,
32186,
796,
299,
3849,
32186,
7,
3849,
32186,
8,
628,
220,
1303,
20768,
1096,
13215,
198,
220,
13215,
11,
299,
62,
7784,
3166,
62,
525,
62,
37295,
796,
2315,
62,
7784,
3166,
7,
33201,
62,
3846,
62,
2340,
11,
19609,
11,
3254,
7,
27159,
27415,
828,
3254,
7,
45472,
35755,
7156,
828,
4847,
8,
198,
220,
299,
62,
7784,
3166,
796,
299,
7784,
3166,
7,
7784,
3166,
8,
628,
220,
1303,
2986,
414,
2198,
198,
220,
611,
318,
41007,
291,
7,
76,
5069,
13,
21048,
8,
198,
220,
220,
220,
2488,
30493,
299,
62,
3849,
32186,
6624,
352,
9,
77,
62,
68,
3639,
5855,
1890,
352,
35,
290,
27458,
18209,
11,
299,
62,
11793,
69,
1276,
307,
262,
976,
355,
352,
9,
77,
62,
68,
10671,
4943,
198,
220,
886,
628,
220,
1303,
10133,
46133,
4554,
351,
649,
1366,
198,
220,
288,
70,
13,
68,
3639,
796,
4847,
198,
220,
288,
70,
13,
77,
62,
68,
3639,
796,
299,
62,
68,
3639,
198,
220,
288,
70,
13,
77,
62,
68,
3639,
62,
20541,
796,
299,
62,
68,
3639,
198,
220,
288,
70,
13,
3849,
32186,
796,
20314,
198,
220,
288,
70,
13,
77,
62,
3849,
32186,
796,
299,
62,
3849,
32186,
198,
220,
288,
70,
13,
7784,
3166,
796,
13215,
198,
220,
288,
70,
13,
77,
62,
7784,
3166,
796,
299,
62,
7784,
3166,
198,
220,
288,
70,
13,
77,
62,
7784,
3166,
62,
525,
62,
37295,
796,
299,
62,
7784,
3166,
62,
525,
62,
37295,
198,
437,
628,
198,
2,
1766,
945,
268,
4610,
1366,
334,
329,
1440,
4847,
11,
1262,
406,
17,
20128,
198,
8818,
763,
945,
268,
62,
68,
3639,
0,
7,
84,
11,
5002,
62,
312,
11,
1468,
62,
84,
11,
1468,
62,
30854,
62,
312,
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,
763,
945,
268,
62,
3506,
11,
763,
945,
268,
62,
9464,
11,
288,
70,
3712,
35,
70,
16,
35,
8,
198,
220,
1303,
9363,
1468,
5002,
220,
2340,
198,
220,
1364,
62,
312,
220,
796,
1468,
62,
30854,
62,
312,
198,
220,
826,
62,
312,
796,
1468,
62,
30854,
62,
312,
1343,
352,
628,
220,
329,
1312,
287,
352,
25,
20471,
4147,
7,
67,
70,
8,
198,
220,
220,
220,
697,
796,
6632,
7,
1136,
62,
17440,
62,
85,
945,
7,
84,
11,
288,
70,
11,
1312,
11,
5002,
62,
312,
4008,
628,
220,
220,
220,
1303,
4935,
422,
1364,
5002,
198,
220,
220,
220,
329,
479,
287,
352,
25,
20471,
4147,
7,
67,
70,
8,
198,
220,
220,
220,
220,
220,
697,
15853,
651,
62,
17440,
62,
85,
945,
7,
727,
62,
84,
11,
288,
70,
11,
479,
11,
1364,
62,
312,
8,
1635,
763,
945,
268,
62,
9464,
58,
72,
11,
479,
60,
198,
220,
220,
220,
886,
628,
220,
220,
220,
1303,
4935,
422,
826,
5002,
198,
220,
220,
220,
329,
479,
287,
352,
25,
20471,
4147,
7,
67,
70,
8,
198,
220,
220,
220,
220,
220,
697,
15853,
651,
62,
17440,
62,
85,
945,
7,
727,
62,
84,
11,
288,
70,
11,
479,
11,
826,
62,
312,
8,
1635,
763,
945,
268,
62,
3506,
58,
72,
11,
479,
60,
198,
220,
220,
220,
886,
628,
220,
220,
220,
1303,
10133,
1988,
198,
220,
220,
220,
900,
62,
17440,
62,
85,
945,
0,
7,
84,
11,
697,
11,
288,
70,
11,
1312,
11,
5002,
62,
312,
8,
198,
220,
886,
198,
437,
628,
198,
2,
27131,
378,
281,
3001,
49,
16916,
1988,
329,
1123,
5002,
14,
33201,
2685,
198,
2,
198,
2,
383,
16916,
1988,
7377,
119,
18872,
230,
25915,
16,
11,
16,
60,
318,
15139,
230,
532,
16,
329,
4778,
326,
815,
307,
763,
945,
2945,
11,
15139,
230,
198,
2,
657,
329,
4778,
326,
815,
3520,
355,
12,
271,
11,
290,
15139,
230,
352,
329,
4778,
326,
815,
307,
198,
2,
20449,
13,
198,
2,
198,
2,
5740,
25,
383,
7822,
994,
31821,
18533,
326,
356,
423,
281,
5002,
329,
198,
2,
1123,
12835,
2685,
290,
326,
484,
389,
287,
262,
976,
1502,
13,
198,
2,
198,
2,
44855,
11682,
25,
770,
318,
3058,
9177,
329,
1123,
1332,
1339,
532,
356,
761,
1223,
198,
2,
5035,
326,
318,
1111,
16022,
290,
1332,
1339,
4795,
198,
8818,
42302,
62,
321,
81,
62,
521,
26407,
7,
67,
70,
3712,
35,
70,
16,
35,
11,
19609,
3712,
27660,
37031,
11,
640,
8,
198,
220,
37456,
796,
1976,
27498,
7,
67,
70,
13,
77,
62,
68,
3639,
8,
628,
220,
611,
288,
70,
13,
321,
81,
62,
521,
26407,
24844,
1058,
4908,
1046,
198,
220,
220,
220,
2779,
62,
5715,
796,
604,
198,
220,
220,
220,
3509,
62,
5715,
796,
718,
198,
220,
220,
220,
11387,
62,
8929,
796,
657,
13,
21,
198,
220,
220,
220,
11387,
62,
9319,
796,
657,
13,
16,
628,
220,
220,
220,
1303,
40806,
378,
625,
477,
4847,
198,
220,
220,
220,
329,
5002,
62,
312,
287,
352,
25,
67,
70,
13,
77,
62,
68,
3639,
198,
220,
220,
220,
220,
220,
1303,
45559,
3810,
2496,
1241,
422,
9103,
1988,
198,
220,
220,
220,
220,
220,
9103,
796,
5415,
7,
67,
70,
13,
68,
3639,
13,
84,
58,
45299,
1058,
11,
5002,
62,
312,
12962,
198,
220,
220,
220,
220,
220,
611,
9103,
1875,
11387,
62,
8929,
198,
220,
220,
220,
220,
220,
220,
220,
2496,
62,
5715,
796,
3509,
62,
5715,
198,
220,
220,
220,
220,
220,
2073,
361,
9103,
1875,
11387,
62,
9319,
198,
220,
220,
220,
220,
220,
220,
220,
2496,
62,
5715,
796,
3509,
62,
5715,
532,
352,
198,
220,
220,
220,
220,
220,
2073,
198,
220,
220,
220,
220,
220,
220,
220,
2496,
62,
5715,
796,
2779,
62,
5715,
198,
220,
220,
220,
220,
220,
886,
628,
220,
220,
220,
220,
220,
1303,
27814,
2496,
1241,
351,
4036,
1241,
284,
900,
16916,
198,
220,
220,
220,
220,
220,
2685,
62,
312,
796,
288,
70,
13,
68,
3639,
13,
3846,
62,
2340,
58,
30854,
62,
312,
60,
198,
220,
220,
220,
220,
220,
4036,
62,
5715,
796,
19609,
13,
21048,
13,
46170,
58,
3846,
62,
312,
60,
198,
220,
220,
220,
220,
220,
611,
4036,
62,
5715,
1279,
2496,
62,
5715,
198,
220,
220,
220,
220,
220,
220,
220,
37456,
58,
30854,
62,
312,
60,
796,
352,
13,
15,
198,
220,
220,
220,
220,
220,
2073,
361,
4036,
62,
5715,
1875,
2496,
62,
5715,
198,
220,
220,
220,
220,
220,
220,
220,
37456,
58,
30854,
62,
312,
60,
796,
532,
16,
13,
15,
198,
220,
220,
220,
220,
220,
2073,
198,
220,
220,
220,
220,
220,
220,
220,
37456,
58,
30854,
62,
312,
60,
796,
657,
13,
15,
198,
220,
220,
220,
220,
220,
886,
198,
220,
220,
220,
886,
198,
220,
2073,
361,
288,
70,
13,
321,
81,
62,
521,
26407,
24844,
1058,
39806,
62,
19204,
198,
220,
220,
220,
2779,
62,
5715,
796,
604,
198,
220,
220,
220,
3509,
62,
5715,
796,
718,
198,
220,
220,
220,
34863,
62,
31412,
62,
400,
10126,
796,
657,
13,
486,
628,
220,
220,
220,
1303,
357,
3041,
25106,
36733,
1096,
5002,
7885,
6143,
329,
34863,
5766,
198,
220,
220,
220,
611,
22759,
10134,
2539,
7,
67,
70,
13,
30854,
62,
25641,
2977,
11,
1058,
321,
81,
62,
521,
26407,
62,
27160,
8,
8614,
198,
220,
220,
220,
220,
220,
220,
220,
4129,
7,
67,
70,
13,
30854,
62,
25641,
2977,
58,
25,
321,
81,
62,
521,
26407,
62,
27160,
12962,
14512,
288,
70,
13,
77,
62,
68,
3639,
8,
198,
220,
220,
220,
220,
220,
288,
70,
13,
30854,
62,
25641,
2977,
58,
25,
321,
81,
62,
521,
26407,
62,
27160,
60,
796,
20650,
90,
43879,
2414,
92,
7,
917,
891,
11,
288,
70,
13,
77,
62,
68,
3639,
8,
198,
220,
220,
220,
886,
198,
220,
220,
220,
611,
22759,
10134,
2539,
7,
67,
70,
13,
30854,
62,
25641,
2977,
11,
1058,
321,
81,
62,
521,
26407,
62,
27160,
62,
22065,
8,
8614,
198,
220,
220,
220,
220,
220,
220,
220,
4129,
7,
67,
70,
13,
30854,
62,
25641,
2977,
58,
25,
321,
81,
62,
521,
26407,
62,
27160,
62,
22065,
12962,
14512,
288,
70,
13,
77,
62,
68,
3639,
8,
198,
220,
220,
220,
220,
220,
288,
70,
13,
30854,
62,
25641,
2977,
58,
25,
321,
81,
62,
521,
26407,
62,
27160,
62,
22065,
60,
796,
20650,
90,
43879,
2414,
92,
7,
917,
891,
11,
288,
70,
13,
77,
62,
68,
3639,
8,
198,
220,
220,
220,
886,
628,
220,
220,
220,
17130,
220,
220,
220,
220,
796,
288,
70,
13,
30854,
62,
25641,
2977,
58,
25,
321,
81,
62,
521,
26407,
62,
27160,
60,
198,
220,
220,
220,
17130,
62,
22065,
796,
288,
70,
13,
30854,
62,
25641,
2977,
58,
25,
321,
81,
62,
521,
26407,
62,
27160,
62,
22065,
60,
198,
220,
220,
220,
42302,
62,
2436,
1571,
62,
22584,
669,
0,
7,
26591,
11,
17130,
62,
22065,
11,
288,
70,
13,
68,
3639,
13,
84,
11,
288,
70,
13,
321,
81,
62,
26591,
62,
9806,
11,
288,
70,
13,
321,
81,
62,
26591,
62,
1084,
11,
288,
70,
13,
321,
81,
62,
26591,
62,
5796,
5226,
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,
12109,
62,
36151,
11,
288,
70,
13,
16663,
62,
23870,
11,
288,
70,
8,
628,
220,
220,
220,
1303,
40806,
378,
625,
477,
4847,
198,
220,
220,
220,
329,
5002,
62,
312,
287,
352,
25,
67,
70,
13,
77,
62,
68,
3639,
198,
220,
220,
220,
220,
220,
611,
17130,
58,
30854,
62,
312,
60,
1875,
34863,
62,
31412,
62,
400,
10126,
198,
220,
220,
220,
220,
220,
220,
220,
2496,
62,
5715,
796,
3509,
62,
5715,
198,
220,
220,
220,
220,
220,
2073,
198,
220,
220,
220,
220,
220,
220,
220,
2496,
62,
5715,
796,
2779,
62,
5715,
198,
220,
220,
220,
220,
220,
886,
628,
220,
220,
220,
220,
220,
1303,
27814,
2496,
1241,
351,
4036,
1241,
284,
900,
16916,
198,
220,
220,
220,
220,
220,
2685,
62,
312,
796,
288,
70,
13,
68,
3639,
13,
3846,
62,
2340,
58,
30854,
62,
312,
60,
198,
220,
220,
220,
220,
220,
4036,
62,
5715,
796,
19609,
13,
21048,
13,
46170,
58,
3846,
62,
312,
60,
198,
220,
220,
220,
220,
220,
611,
4036,
62,
5715,
1279,
2496,
62,
5715,
198,
220,
220,
220,
220,
220,
220,
220,
37456,
58,
30854,
62,
312,
60,
796,
352,
13,
15,
198,
220,
220,
220,
220,
220,
2073,
361,
4036,
62,
5715,
1875,
2496,
62,
5715,
198,
220,
220,
220,
220,
220,
220,
220,
37456,
58,
30854,
62,
312,
60,
796,
532,
16,
13,
15,
198,
220,
220,
220,
220,
220,
2073,
198,
220,
220,
220,
220,
220,
220,
220,
37456,
58,
30854,
62,
312,
60,
796,
657,
13,
15,
198,
220,
220,
220,
220,
220,
886,
198,
220,
220,
220,
886,
198,
220,
2073,
198,
220,
220,
220,
4049,
7203,
34680,
3001,
49,
16916,
705,
3,
7,
67,
70,
13,
321,
81,
62,
521,
26407,
33047,
4943,
198,
220,
886,
628,
220,
1441,
37456,
198,
437,
198
] | 2.496476 | 4,115 |
# This file is a part of BitArraynge.jl, licensed under the MIT License (MIT).
println("building...")
| [
2,
770,
2393,
318,
257,
636,
286,
4722,
19182,
77,
469,
13,
20362,
11,
11971,
739,
262,
17168,
13789,
357,
36393,
737,
198,
35235,
7203,
16894,
9313,
8,
198
] | 3.517241 | 29 |
@doc raw"""
NelderMead(M, F [, p])
perform a nelder mead minimization problem for the cost funciton `F` on the
manifold `M`. If the initial population `p` is not given, a random set of
points is chosen.
This algorithm is adapted from the Euclidean Nelder-Mead method, see
[https://en.wikipedia.org/wiki/Nelder–Mead_method](https://en.wikipedia.org/wiki/Nelder–Mead_method)
and
[http://www.optimization-online.org/DB_FILE/2007/08/1742.pdf](http://www.optimization-online.org/DB_FILE/2007/08/1742.pdf).
# Input
* `M` – a manifold $\mathcal M$
* `F` – a cost function $F\colon\mathcal M\to\mathbb R$ to minimize
* `population` – (n+1 `random_point(M)`) an initial population of $n+1$ points, where $n$
is the dimension of the manifold `M`.
# Optional
* `stopping_criterion` – ([`StopAfterIteration`](@ref)`(2000)`) a [`StoppingCriterion`](@ref)
* `retraction` – (`exp`) a `retraction(M,x,ξ)` to use.
* `α` – (`1.`) reflection parameter ($\alpha > 0$)
* `γ` – (`2.`) expansion parameter ($\gamma$)
* `ρ` – (`1/2`) contraction parameter, $0 < \rho \leq \frac{1}{2}$,
* `σ` – (`1/2`) shrink coefficient, $0 < \sigma \leq 1$
and the ones that are passed to [`decorate_options`](@ref) for decorators.
# Output
* either `x` the last iterate or the complete options depending on the optional
keyword `return_options`, which is false by default (hence then only `x` is
returned).
"""
function NelderMead(M::MT,
F::Function,
population = [random_point(M) for i=1:(manifoldDimension(M)+1) ];
stopping_criterion::StoppingCriterion = StopAfterIteration(200000),
α = 1., γ = 2., ρ=1/2, σ = 1/2,
return_options=false,
kwargs... #collect rest
) where {MT <: Manifold,T}
p = CostProblem(M,F)
o = NelderMeadOptions(population, stopping_criterion;
α = α, γ = γ, ρ = ρ, σ = σ)
o = decorate_options(o; kwargs...)
resultO = solve(p,o)
if return_options
return resultO
else
return get_solver_result(resultO)
end
end
#
# Solver functions
#
function initialize_solver!(p::P,o::O) where {P <: CostProblem, O <: NelderMeadOptions}
# init cost and x
o.costs = get_cost.(Ref(p), o.population )
o.x = o.population[argmin(o.costs)] # select min
end
function step_solver!(p::P,o::O,iter) where {P <: CostProblem, O <: NelderMeadOptions}
m = mean(p.M, o.population)
ind = sortperm(o.costs) # reordering for cost and p, i.e. minimizer is at ind[1]
ξ =log( p.M, m, o.population[last(ind)])
# reflect last
xr = exp(p.M, m, - o.α * ξ )
Costr = get_cost(p,xr)
# is it better than the worst but not better than the best?
if Costr >= o.costs[first(ind)] && Costr < o.costs[last(ind)]
# store as last
o.population[last(ind)] = xr
o.costs[last(ind)] = Costr
end
# --- Expansion ---
if Costr < o.costs[first(ind)] # reflected is better than fist -> expand
xe = exp(p.M, m, - o.γ * o.α * ξ)
Coste = get_cost(p,xe)
if Coste < Costr # expanded successful
o.population[last(ind)] = xe
o.costs[last(ind)] = Coste
else # expansion failed but xr is still quite good -> store
o.population[last(ind)] = xr
o.costs[last(ind)] = Costr
end
end
# --- Contraction ---
if Costr > o.costs[ind[end-1]] # even worse than second worst
if Costr < o.costs[last(ind)] # but at least better tham last
# outside contraction
xc = exp(p.M, m, - o.ρ*ξ)
Costc = get_cost(p,xc)
if Costc < Costr # better than reflected -> store as last
o.population[last(ind)] = xr
o.costs[last(ind)] = Costr
end
else # even worse than last -> inside contraction
# outside contraction
xc = exp(p.M, m, o.ρ*ξ)
Costc = get_cost(p,xc)
if Costc < o.costs[last(ind)] # better than last ? -> store
o.population[last(ind)] = xr
o.costs[last(ind)] = Costr
end
end
end
# --- Shrink ---
for i=2:length(ind)
o.population[ind[i]] = shortest_geodesic(p.M, o.population[ind[1]], o.population[ind[i]], o.σ)
# update cost
o.costs[ind[i]] = get_cost(p, o.population[ind[i]])
end
# store best
o.x = o.population[ argmin(o.costs) ]
end
get_solver_result(p::P,o::O) where {P <: CostProblem, O <: NelderMeadOptions} = o.x | [
31,
15390,
8246,
37811,
198,
220,
220,
220,
3169,
6499,
44,
1329,
7,
44,
11,
376,
685,
11,
279,
12962,
198,
525,
687,
257,
497,
6499,
502,
324,
10356,
1634,
1917,
329,
262,
1575,
25439,
37752,
4600,
37,
63,
319,
262,
198,
805,
361,
727,
4600,
44,
44646,
1002,
262,
4238,
3265,
4600,
79,
63,
318,
407,
1813,
11,
257,
4738,
900,
286,
198,
13033,
318,
7147,
13,
198,
198,
1212,
11862,
318,
16573,
422,
262,
48862,
485,
272,
3169,
6499,
12,
44,
1329,
2446,
11,
766,
198,
58,
5450,
1378,
268,
13,
31266,
13,
2398,
14,
15466,
14,
8199,
6499,
1906,
44,
1329,
62,
24396,
16151,
5450,
1378,
268,
13,
31266,
13,
2398,
14,
15466,
14,
8199,
6499,
1906,
44,
1329,
62,
24396,
8,
198,
392,
198,
58,
4023,
1378,
2503,
13,
40085,
1634,
12,
25119,
13,
2398,
14,
11012,
62,
25664,
14,
12726,
14,
2919,
14,
1558,
3682,
13,
12315,
16151,
4023,
1378,
2503,
13,
40085,
1634,
12,
25119,
13,
2398,
14,
11012,
62,
25664,
14,
12726,
14,
2919,
14,
1558,
3682,
13,
12315,
737,
198,
198,
2,
23412,
198,
198,
9,
4600,
44,
63,
784,
257,
48048,
39280,
11018,
9948,
337,
3,
198,
9,
4600,
37,
63,
784,
257,
1575,
2163,
720,
37,
59,
4033,
261,
59,
11018,
9948,
337,
59,
1462,
59,
11018,
11848,
371,
3,
284,
17775,
198,
9,
4600,
39748,
63,
784,
357,
77,
10,
16,
4600,
25120,
62,
4122,
7,
44,
8,
63,
8,
281,
4238,
3265,
286,
720,
77,
10,
16,
3,
2173,
11,
810,
720,
77,
3,
198,
220,
318,
262,
15793,
286,
262,
48048,
4600,
44,
44646,
198,
198,
2,
32233,
198,
198,
9,
4600,
301,
33307,
62,
22213,
28019,
63,
784,
29565,
63,
19485,
3260,
29993,
341,
63,
16151,
31,
5420,
8,
63,
7,
11024,
8,
63,
8,
257,
685,
63,
1273,
33307,
18559,
28019,
63,
16151,
31,
5420,
8,
198,
9,
4600,
1186,
7861,
63,
784,
357,
63,
11201,
63,
8,
257,
4600,
1186,
7861,
7,
44,
11,
87,
11,
138,
122,
8,
63,
284,
779,
13,
198,
9,
4600,
17394,
63,
784,
357,
63,
16,
13,
63,
8,
14580,
11507,
7198,
59,
26591,
1875,
657,
3,
8,
198,
9,
4600,
42063,
63,
784,
357,
63,
17,
13,
63,
8,
7118,
11507,
7198,
59,
28483,
2611,
3,
8,
198,
9,
4600,
33643,
63,
784,
357,
63,
16,
14,
17,
63,
8,
36246,
11507,
11,
720,
15,
1279,
3467,
81,
8873,
3467,
293,
80,
3467,
31944,
90,
16,
18477,
17,
92,
47113,
198,
9,
4600,
38392,
63,
784,
357,
63,
16,
14,
17,
63,
8,
22085,
35381,
11,
720,
15,
1279,
3467,
82,
13495,
3467,
293,
80,
352,
3,
198,
198,
392,
262,
3392,
326,
389,
3804,
284,
685,
63,
12501,
16262,
62,
25811,
63,
16151,
31,
5420,
8,
329,
11705,
2024,
13,
198,
198,
2,
25235,
198,
9,
2035,
4600,
87,
63,
262,
938,
11629,
378,
393,
262,
1844,
3689,
6906,
319,
262,
11902,
198,
220,
21179,
4600,
7783,
62,
25811,
47671,
543,
318,
3991,
416,
4277,
357,
831,
344,
788,
691,
4600,
87,
63,
318,
198,
220,
4504,
737,
198,
37811,
198,
8818,
3169,
6499,
44,
1329,
7,
44,
3712,
13752,
11,
198,
220,
220,
220,
376,
3712,
22203,
11,
198,
220,
220,
220,
3265,
796,
685,
25120,
62,
4122,
7,
44,
8,
329,
1312,
28,
16,
37498,
805,
361,
727,
29271,
3004,
7,
44,
47762,
16,
8,
28013,
198,
220,
220,
220,
12225,
62,
22213,
28019,
3712,
1273,
33307,
18559,
28019,
796,
13707,
3260,
29993,
341,
7,
33470,
828,
198,
220,
220,
220,
26367,
796,
352,
1539,
7377,
111,
796,
362,
1539,
18074,
223,
28,
16,
14,
17,
11,
18074,
225,
796,
352,
14,
17,
11,
198,
220,
220,
220,
1441,
62,
25811,
28,
9562,
11,
198,
220,
220,
220,
479,
86,
22046,
986,
1303,
33327,
1334,
198,
220,
1267,
810,
1391,
13752,
1279,
25,
1869,
361,
727,
11,
51,
92,
198,
220,
220,
220,
279,
796,
6446,
40781,
7,
44,
11,
37,
8,
198,
220,
220,
220,
267,
796,
3169,
6499,
44,
1329,
29046,
7,
39748,
11,
12225,
62,
22213,
28019,
26,
198,
220,
220,
220,
26367,
796,
26367,
11,
7377,
111,
796,
7377,
111,
11,
18074,
223,
796,
18074,
223,
11,
18074,
225,
796,
18074,
225,
8,
198,
220,
220,
220,
267,
796,
11705,
378,
62,
25811,
7,
78,
26,
479,
86,
22046,
23029,
198,
220,
220,
220,
1255,
46,
796,
8494,
7,
79,
11,
78,
8,
198,
220,
220,
220,
611,
1441,
62,
25811,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
1255,
46,
198,
220,
220,
220,
2073,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
651,
62,
82,
14375,
62,
20274,
7,
20274,
46,
8,
198,
220,
220,
220,
886,
198,
437,
198,
2,
198,
2,
4294,
332,
5499,
198,
2,
198,
8818,
41216,
62,
82,
14375,
0,
7,
79,
3712,
47,
11,
78,
3712,
46,
8,
810,
1391,
47,
1279,
25,
6446,
40781,
11,
440,
1279,
25,
3169,
6499,
44,
1329,
29046,
92,
198,
220,
220,
220,
1303,
2315,
1575,
290,
2124,
198,
220,
220,
220,
267,
13,
15805,
82,
796,
651,
62,
15805,
12195,
8134,
7,
79,
828,
267,
13,
39748,
1267,
198,
220,
220,
220,
267,
13,
87,
796,
267,
13,
39748,
58,
853,
1084,
7,
78,
13,
15805,
82,
15437,
1303,
2922,
949,
198,
437,
198,
8818,
2239,
62,
82,
14375,
0,
7,
79,
3712,
47,
11,
78,
3712,
46,
11,
2676,
8,
810,
1391,
47,
1279,
25,
6446,
40781,
11,
440,
1279,
25,
3169,
6499,
44,
1329,
29046,
92,
198,
220,
220,
220,
285,
796,
1612,
7,
79,
13,
44,
11,
267,
13,
39748,
8,
198,
220,
220,
220,
773,
796,
3297,
16321,
7,
78,
13,
15805,
82,
8,
1303,
302,
34555,
329,
1575,
290,
279,
11,
1312,
13,
68,
13,
10356,
7509,
318,
379,
773,
58,
16,
60,
198,
220,
220,
220,
7377,
122,
796,
6404,
7,
279,
13,
44,
11,
285,
11,
267,
13,
39748,
58,
12957,
7,
521,
8,
12962,
198,
220,
220,
220,
1303,
4079,
938,
198,
220,
220,
220,
2124,
81,
796,
1033,
7,
79,
13,
44,
11,
285,
11,
532,
267,
13,
17394,
1635,
7377,
122,
1267,
198,
220,
220,
220,
6446,
81,
796,
651,
62,
15805,
7,
79,
11,
87,
81,
8,
198,
220,
220,
220,
1303,
318,
340,
1365,
621,
262,
5290,
475,
407,
1365,
621,
262,
1266,
30,
198,
220,
220,
220,
611,
6446,
81,
18189,
267,
13,
15805,
82,
58,
11085,
7,
521,
15437,
11405,
6446,
81,
1279,
267,
13,
15805,
82,
58,
12957,
7,
521,
15437,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
3650,
355,
938,
198,
220,
220,
220,
220,
220,
220,
220,
267,
13,
39748,
58,
12957,
7,
521,
15437,
796,
2124,
81,
198,
220,
220,
220,
220,
220,
220,
220,
267,
13,
15805,
82,
58,
12957,
7,
521,
15437,
796,
6446,
81,
198,
220,
220,
220,
886,
198,
220,
220,
220,
1303,
11420,
25042,
11420,
198,
220,
220,
220,
611,
6446,
81,
1279,
267,
13,
15805,
82,
58,
11085,
7,
521,
15437,
1303,
12548,
318,
1365,
621,
18606,
4613,
4292,
198,
220,
220,
220,
220,
220,
220,
220,
2124,
68,
796,
1033,
7,
79,
13,
44,
11,
285,
11,
532,
267,
13,
42063,
1635,
267,
13,
17394,
1635,
7377,
122,
8,
198,
220,
220,
220,
220,
220,
220,
220,
6446,
68,
796,
651,
62,
15805,
7,
79,
11,
27705,
8,
198,
220,
220,
220,
220,
220,
220,
220,
611,
6446,
68,
1279,
6446,
81,
1303,
9902,
4388,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
267,
13,
39748,
58,
12957,
7,
521,
15437,
796,
2124,
68,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
267,
13,
15805,
82,
58,
12957,
7,
521,
15437,
796,
6446,
68,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
1303,
7118,
4054,
475,
2124,
81,
318,
991,
2407,
922,
4613,
3650,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
267,
13,
39748,
58,
12957,
7,
521,
15437,
796,
2124,
81,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
267,
13,
15805,
82,
58,
12957,
7,
521,
15437,
796,
6446,
81,
198,
220,
220,
220,
220,
220,
220,
220,
886,
198,
220,
220,
220,
886,
198,
220,
220,
220,
1303,
11420,
2345,
7861,
11420,
198,
220,
220,
220,
611,
6446,
81,
1875,
267,
13,
15805,
82,
58,
521,
58,
437,
12,
16,
11907,
1303,
772,
4785,
621,
1218,
5290,
198,
220,
220,
220,
220,
220,
220,
220,
611,
6446,
81,
1279,
267,
13,
15805,
82,
58,
12957,
7,
521,
15437,
1303,
475,
379,
1551,
1365,
294,
321,
938,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
2354,
36246,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2124,
66,
796,
1033,
7,
79,
13,
44,
11,
285,
11,
532,
267,
13,
33643,
9,
138,
122,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6446,
66,
796,
651,
62,
15805,
7,
79,
11,
25306,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
6446,
66,
1279,
6446,
81,
1303,
1365,
621,
12548,
4613,
3650,
355,
938,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
267,
13,
39748,
58,
12957,
7,
521,
15437,
796,
2124,
81,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
267,
13,
15805,
82,
58,
12957,
7,
521,
15437,
796,
6446,
81,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
886,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
1303,
772,
4785,
621,
938,
4613,
2641,
36246,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
2354,
36246,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2124,
66,
796,
1033,
7,
79,
13,
44,
11,
285,
11,
267,
13,
33643,
9,
138,
122,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6446,
66,
796,
651,
62,
15805,
7,
79,
11,
25306,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
6446,
66,
1279,
267,
13,
15805,
82,
58,
12957,
7,
521,
15437,
1303,
1365,
621,
938,
5633,
4613,
3650,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
267,
13,
39748,
58,
12957,
7,
521,
15437,
796,
2124,
81,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
267,
13,
15805,
82,
58,
12957,
7,
521,
15437,
796,
6446,
81,
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,
220,
220,
220,
1303,
11420,
911,
81,
676,
11420,
198,
220,
220,
220,
329,
1312,
28,
17,
25,
13664,
7,
521,
8,
198,
220,
220,
220,
220,
220,
220,
220,
267,
13,
39748,
58,
521,
58,
72,
11907,
796,
35581,
62,
469,
4147,
291,
7,
79,
13,
44,
11,
267,
13,
39748,
58,
521,
58,
16,
60,
4357,
267,
13,
39748,
58,
521,
58,
72,
60,
4357,
267,
13,
38392,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
4296,
1575,
198,
220,
220,
220,
220,
220,
220,
220,
267,
13,
15805,
82,
58,
521,
58,
72,
11907,
796,
651,
62,
15805,
7,
79,
11,
267,
13,
39748,
58,
521,
58,
72,
11907,
8,
198,
220,
220,
220,
886,
198,
220,
220,
220,
1303,
3650,
1266,
198,
220,
220,
220,
267,
13,
87,
796,
267,
13,
39748,
58,
1822,
1084,
7,
78,
13,
15805,
82,
8,
2361,
198,
437,
198,
1136,
62,
82,
14375,
62,
20274,
7,
79,
3712,
47,
11,
78,
3712,
46,
8,
810,
1391,
47,
1279,
25,
6446,
40781,
11,
440,
1279,
25,
3169,
6499,
44,
1329,
29046,
92,
796,
267,
13,
87
] | 2.239273 | 1,981 |
# This file is auto-generated by AWSMetadata.jl
using AWS
using AWS.AWSServices: dynamodb_streams
using AWS.Compat
using AWS.UUIDs
"""
describe_stream(stream_arn)
describe_stream(stream_arn, params::Dict{String,<:Any})
Returns information about a stream, including the current status of the stream, its Amazon
Resource Name (ARN), the composition of its shards, and its corresponding DynamoDB table.
You can call DescribeStream at a maximum rate of 10 times per second. Each shard in the
stream has a SequenceNumberRange associated with it. If the SequenceNumberRange has a
StartingSequenceNumber but no EndingSequenceNumber, then the shard is still open (able to
receive more stream records). If both StartingSequenceNumber and EndingSequenceNumber are
present, then that shard is closed and can no longer receive more data.
# Arguments
- `stream_arn`: The Amazon Resource Name (ARN) for the stream.
# Optional Parameters
Optional parameters can be passed as a `params::Dict{String,<:Any}`. Valid keys are:
- `"ExclusiveStartShardId"`: The shard ID of the first item that this operation will
evaluate. Use the value that was returned for LastEvaluatedShardId in the previous
operation.
- `"Limit"`: The maximum number of shard objects to return. The upper limit is 100.
"""
function describe_stream(StreamArn; aws_config::AbstractAWSConfig=global_aws_config())
return dynamodb_streams(
"DescribeStream",
Dict{String,Any}("StreamArn" => StreamArn);
aws_config=aws_config,
feature_set=SERVICE_FEATURE_SET,
)
end
function describe_stream(
StreamArn,
params::AbstractDict{String};
aws_config::AbstractAWSConfig=global_aws_config(),
)
return dynamodb_streams(
"DescribeStream",
Dict{String,Any}(
mergewith(_merge, Dict{String,Any}("StreamArn" => StreamArn), params)
);
aws_config=aws_config,
feature_set=SERVICE_FEATURE_SET,
)
end
"""
get_records(shard_iterator)
get_records(shard_iterator, params::Dict{String,<:Any})
Retrieves the stream records from a given shard. Specify a shard iterator using the
ShardIterator parameter. The shard iterator specifies the position in the shard from which
you want to start reading stream records sequentially. If there are no stream records
available in the portion of the shard that the iterator points to, GetRecords returns an
empty list. Note that it might take multiple calls to get to a portion of the shard that
contains stream records. GetRecords can retrieve a maximum of 1 MB of data or 1000 stream
records, whichever comes first.
# Arguments
- `shard_iterator`: A shard iterator that was retrieved from a previous GetShardIterator
operation. This iterator can be used to access the stream records in this shard.
# Optional Parameters
Optional parameters can be passed as a `params::Dict{String,<:Any}`. Valid keys are:
- `"Limit"`: The maximum number of records to return from the shard. The upper limit is
1000.
"""
function get_records(ShardIterator; aws_config::AbstractAWSConfig=global_aws_config())
return dynamodb_streams(
"GetRecords",
Dict{String,Any}("ShardIterator" => ShardIterator);
aws_config=aws_config,
feature_set=SERVICE_FEATURE_SET,
)
end
function get_records(
ShardIterator,
params::AbstractDict{String};
aws_config::AbstractAWSConfig=global_aws_config(),
)
return dynamodb_streams(
"GetRecords",
Dict{String,Any}(
mergewith(_merge, Dict{String,Any}("ShardIterator" => ShardIterator), params)
);
aws_config=aws_config,
feature_set=SERVICE_FEATURE_SET,
)
end
"""
get_shard_iterator(shard_id, shard_iterator_type, stream_arn)
get_shard_iterator(shard_id, shard_iterator_type, stream_arn, params::Dict{String,<:Any})
Returns a shard iterator. A shard iterator provides information about how to retrieve the
stream records from within a shard. Use the shard iterator in a subsequent GetRecords
request to read the stream records from the shard. A shard iterator expires 15 minutes
after it is returned to the requester.
# Arguments
- `shard_id`: The identifier of the shard. The iterator will be returned for this shard ID.
- `shard_iterator_type`: Determines how the shard iterator is used to start reading stream
records from the shard: AT_SEQUENCE_NUMBER - Start reading exactly from the position
denoted by a specific sequence number. AFTER_SEQUENCE_NUMBER - Start reading right after
the position denoted by a specific sequence number. TRIM_HORIZON - Start reading at the
last (untrimmed) stream record, which is the oldest record in the shard. In DynamoDB
Streams, there is a 24 hour limit on data retention. Stream records whose age exceeds this
limit are subject to removal (trimming) from the stream. LATEST - Start reading just
after the most recent stream record in the shard, so that you always read the most recent
data in the shard.
- `stream_arn`: The Amazon Resource Name (ARN) for the stream.
# Optional Parameters
Optional parameters can be passed as a `params::Dict{String,<:Any}`. Valid keys are:
- `"SequenceNumber"`: The sequence number of a stream record in the shard from which to
start reading.
"""
function get_shard_iterator(
ShardId, ShardIteratorType, StreamArn; aws_config::AbstractAWSConfig=global_aws_config()
)
return dynamodb_streams(
"GetShardIterator",
Dict{String,Any}(
"ShardId" => ShardId,
"ShardIteratorType" => ShardIteratorType,
"StreamArn" => StreamArn,
);
aws_config=aws_config,
feature_set=SERVICE_FEATURE_SET,
)
end
function get_shard_iterator(
ShardId,
ShardIteratorType,
StreamArn,
params::AbstractDict{String};
aws_config::AbstractAWSConfig=global_aws_config(),
)
return dynamodb_streams(
"GetShardIterator",
Dict{String,Any}(
mergewith(
_merge,
Dict{String,Any}(
"ShardId" => ShardId,
"ShardIteratorType" => ShardIteratorType,
"StreamArn" => StreamArn,
),
params,
),
);
aws_config=aws_config,
feature_set=SERVICE_FEATURE_SET,
)
end
"""
list_streams()
list_streams(params::Dict{String,<:Any})
Returns an array of stream ARNs associated with the current account and endpoint. If the
TableName parameter is present, then ListStreams will return only the streams ARNs for that
table. You can call ListStreams at a maximum rate of 5 times per second.
# Optional Parameters
Optional parameters can be passed as a `params::Dict{String,<:Any}`. Valid keys are:
- `"ExclusiveStartStreamArn"`: The ARN (Amazon Resource Name) of the first item that this
operation will evaluate. Use the value that was returned for LastEvaluatedStreamArn in the
previous operation.
- `"Limit"`: The maximum number of streams to return. The upper limit is 100.
- `"TableName"`: If this parameter is provided, then only the streams associated with this
table name are returned.
"""
function list_streams(; aws_config::AbstractAWSConfig=global_aws_config())
return dynamodb_streams(
"ListStreams"; aws_config=aws_config, feature_set=SERVICE_FEATURE_SET
)
end
function list_streams(
params::AbstractDict{String}; aws_config::AbstractAWSConfig=global_aws_config()
)
return dynamodb_streams(
"ListStreams", params; aws_config=aws_config, feature_set=SERVICE_FEATURE_SET
)
end
| [
2,
770,
2393,
318,
8295,
12,
27568,
416,
30865,
9171,
14706,
13,
20362,
198,
3500,
30865,
198,
3500,
30865,
13,
12298,
5432,
712,
1063,
25,
6382,
375,
65,
62,
5532,
82,
198,
3500,
30865,
13,
40073,
198,
3500,
30865,
13,
52,
27586,
82,
198,
198,
37811,
198,
220,
220,
220,
6901,
62,
5532,
7,
5532,
62,
1501,
8,
198,
220,
220,
220,
6901,
62,
5532,
7,
5532,
62,
1501,
11,
42287,
3712,
35,
713,
90,
10100,
11,
27,
25,
7149,
30072,
198,
198,
35561,
1321,
546,
257,
4269,
11,
1390,
262,
1459,
3722,
286,
262,
4269,
11,
663,
6186,
198,
26198,
6530,
357,
1503,
45,
828,
262,
11742,
286,
663,
39991,
11,
290,
663,
11188,
41542,
11012,
3084,
13,
198,
1639,
460,
869,
39373,
4892,
12124,
379,
257,
5415,
2494,
286,
838,
1661,
583,
1218,
13,
220,
5501,
427,
446,
287,
262,
198,
5532,
468,
257,
45835,
15057,
17257,
3917,
351,
340,
13,
1002,
262,
45835,
15057,
17257,
468,
257,
198,
22851,
44015,
594,
15057,
475,
645,
43626,
44015,
594,
15057,
11,
788,
262,
427,
446,
318,
991,
1280,
357,
540,
284,
198,
260,
15164,
517,
4269,
4406,
737,
1002,
1111,
17962,
44015,
594,
15057,
290,
43626,
44015,
594,
15057,
389,
198,
25579,
11,
788,
326,
427,
446,
318,
4838,
290,
460,
645,
2392,
3328,
517,
1366,
13,
198,
198,
2,
20559,
2886,
198,
12,
4600,
5532,
62,
1501,
63,
25,
383,
6186,
20857,
6530,
357,
1503,
45,
8,
329,
262,
4269,
13,
198,
198,
2,
32233,
40117,
198,
30719,
10007,
460,
307,
3804,
355,
257,
4600,
37266,
3712,
35,
713,
90,
10100,
11,
27,
25,
7149,
92,
44646,
48951,
8251,
389,
25,
198,
12,
4600,
1,
3109,
5731,
10434,
2484,
446,
7390,
1,
63,
25,
383,
427,
446,
4522,
286,
262,
717,
2378,
326,
428,
4905,
481,
198,
220,
13446,
13,
5765,
262,
1988,
326,
373,
4504,
329,
4586,
36,
2100,
6605,
2484,
446,
7390,
287,
262,
2180,
198,
220,
4905,
13,
198,
12,
4600,
1,
39184,
1,
63,
25,
383,
5415,
1271,
286,
427,
446,
5563,
284,
1441,
13,
383,
6727,
4179,
318,
1802,
13,
198,
37811,
198,
8818,
6901,
62,
5532,
7,
12124,
3163,
77,
26,
3253,
82,
62,
11250,
3712,
23839,
12298,
50,
16934,
28,
20541,
62,
8356,
62,
11250,
28955,
198,
220,
220,
220,
1441,
6382,
375,
65,
62,
5532,
82,
7,
198,
220,
220,
220,
220,
220,
220,
220,
366,
24564,
4892,
12124,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
360,
713,
90,
10100,
11,
7149,
92,
7203,
12124,
3163,
77,
1,
5218,
13860,
3163,
77,
1776,
198,
220,
220,
220,
220,
220,
220,
220,
3253,
82,
62,
11250,
28,
8356,
62,
11250,
11,
198,
220,
220,
220,
220,
220,
220,
220,
3895,
62,
2617,
28,
35009,
27389,
62,
15112,
40086,
62,
28480,
11,
198,
220,
220,
220,
1267,
198,
437,
198,
8818,
6901,
62,
5532,
7,
198,
220,
220,
220,
13860,
3163,
77,
11,
198,
220,
220,
220,
42287,
3712,
23839,
35,
713,
90,
10100,
19629,
198,
220,
220,
220,
3253,
82,
62,
11250,
3712,
23839,
12298,
50,
16934,
28,
20541,
62,
8356,
62,
11250,
22784,
198,
8,
198,
220,
220,
220,
1441,
6382,
375,
65,
62,
5532,
82,
7,
198,
220,
220,
220,
220,
220,
220,
220,
366,
24564,
4892,
12124,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
360,
713,
90,
10100,
11,
7149,
92,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4017,
39909,
342,
28264,
647,
469,
11,
360,
713,
90,
10100,
11,
7149,
92,
7203,
12124,
3163,
77,
1,
5218,
13860,
3163,
77,
828,
42287,
8,
198,
220,
220,
220,
220,
220,
220,
220,
5619,
198,
220,
220,
220,
220,
220,
220,
220,
3253,
82,
62,
11250,
28,
8356,
62,
11250,
11,
198,
220,
220,
220,
220,
220,
220,
220,
3895,
62,
2617,
28,
35009,
27389,
62,
15112,
40086,
62,
28480,
11,
198,
220,
220,
220,
1267,
198,
437,
198,
198,
37811,
198,
220,
220,
220,
651,
62,
8344,
3669,
7,
1477,
446,
62,
48727,
8,
198,
220,
220,
220,
651,
62,
8344,
3669,
7,
1477,
446,
62,
48727,
11,
42287,
3712,
35,
713,
90,
10100,
11,
27,
25,
7149,
30072,
198,
198,
9781,
5034,
1158,
262,
4269,
4406,
422,
257,
1813,
427,
446,
13,
18291,
1958,
257,
427,
446,
41313,
1262,
262,
198,
2484,
446,
37787,
11507,
13,
383,
427,
446,
41313,
26052,
262,
2292,
287,
262,
427,
446,
422,
543,
198,
5832,
765,
284,
923,
3555,
4269,
4406,
4726,
3746,
13,
1002,
612,
389,
645,
4269,
4406,
198,
15182,
287,
262,
6903,
286,
262,
427,
446,
326,
262,
41313,
2173,
284,
11,
3497,
6690,
3669,
5860,
281,
198,
28920,
1351,
13,
5740,
326,
340,
1244,
1011,
3294,
3848,
284,
651,
284,
257,
6903,
286,
262,
427,
446,
326,
198,
3642,
1299,
4269,
4406,
13,
220,
220,
3497,
6690,
3669,
460,
19818,
257,
5415,
286,
352,
10771,
286,
1366,
393,
8576,
4269,
198,
8344,
3669,
11,
26204,
2058,
717,
13,
198,
198,
2,
20559,
2886,
198,
12,
4600,
1477,
446,
62,
48727,
63,
25,
317,
427,
446,
41313,
326,
373,
29517,
422,
257,
2180,
3497,
2484,
446,
37787,
198,
220,
4905,
13,
770,
41313,
460,
307,
973,
284,
1895,
262,
4269,
4406,
287,
428,
427,
446,
13,
198,
198,
2,
32233,
40117,
198,
30719,
10007,
460,
307,
3804,
355,
257,
4600,
37266,
3712,
35,
713,
90,
10100,
11,
27,
25,
7149,
92,
44646,
48951,
8251,
389,
25,
198,
12,
4600,
1,
39184,
1,
63,
25,
383,
5415,
1271,
286,
4406,
284,
1441,
422,
262,
427,
446,
13,
383,
6727,
4179,
318,
198,
220,
8576,
13,
198,
37811,
198,
8818,
651,
62,
8344,
3669,
7,
2484,
446,
37787,
26,
3253,
82,
62,
11250,
3712,
23839,
12298,
50,
16934,
28,
20541,
62,
8356,
62,
11250,
28955,
198,
220,
220,
220,
1441,
6382,
375,
65,
62,
5532,
82,
7,
198,
220,
220,
220,
220,
220,
220,
220,
366,
3855,
6690,
3669,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
360,
713,
90,
10100,
11,
7149,
92,
7203,
2484,
446,
37787,
1,
5218,
32822,
37787,
1776,
198,
220,
220,
220,
220,
220,
220,
220,
3253,
82,
62,
11250,
28,
8356,
62,
11250,
11,
198,
220,
220,
220,
220,
220,
220,
220,
3895,
62,
2617,
28,
35009,
27389,
62,
15112,
40086,
62,
28480,
11,
198,
220,
220,
220,
1267,
198,
437,
198,
8818,
651,
62,
8344,
3669,
7,
198,
220,
220,
220,
32822,
37787,
11,
198,
220,
220,
220,
42287,
3712,
23839,
35,
713,
90,
10100,
19629,
198,
220,
220,
220,
3253,
82,
62,
11250,
3712,
23839,
12298,
50,
16934,
28,
20541,
62,
8356,
62,
11250,
22784,
198,
8,
198,
220,
220,
220,
1441,
6382,
375,
65,
62,
5532,
82,
7,
198,
220,
220,
220,
220,
220,
220,
220,
366,
3855,
6690,
3669,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
360,
713,
90,
10100,
11,
7149,
92,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4017,
39909,
342,
28264,
647,
469,
11,
360,
713,
90,
10100,
11,
7149,
92,
7203,
2484,
446,
37787,
1,
5218,
32822,
37787,
828,
42287,
8,
198,
220,
220,
220,
220,
220,
220,
220,
5619,
198,
220,
220,
220,
220,
220,
220,
220,
3253,
82,
62,
11250,
28,
8356,
62,
11250,
11,
198,
220,
220,
220,
220,
220,
220,
220,
3895,
62,
2617,
28,
35009,
27389,
62,
15112,
40086,
62,
28480,
11,
198,
220,
220,
220,
1267,
198,
437,
198,
198,
37811,
198,
220,
220,
220,
651,
62,
1477,
446,
62,
48727,
7,
1477,
446,
62,
312,
11,
427,
446,
62,
48727,
62,
4906,
11,
4269,
62,
1501,
8,
198,
220,
220,
220,
651,
62,
1477,
446,
62,
48727,
7,
1477,
446,
62,
312,
11,
427,
446,
62,
48727,
62,
4906,
11,
4269,
62,
1501,
11,
42287,
3712,
35,
713,
90,
10100,
11,
27,
25,
7149,
30072,
198,
198,
35561,
257,
427,
446,
41313,
13,
317,
427,
446,
41313,
3769,
1321,
546,
703,
284,
19818,
262,
198,
5532,
4406,
422,
1626,
257,
427,
446,
13,
5765,
262,
427,
446,
41313,
287,
257,
8840,
3497,
6690,
3669,
198,
25927,
284,
1100,
262,
4269,
4406,
422,
262,
427,
446,
13,
220,
317,
427,
446,
41313,
27396,
1315,
2431,
198,
8499,
340,
318,
4504,
284,
262,
1038,
7834,
13,
198,
198,
2,
20559,
2886,
198,
12,
4600,
1477,
446,
62,
312,
63,
25,
383,
27421,
286,
262,
427,
446,
13,
383,
41313,
481,
307,
4504,
329,
428,
427,
446,
4522,
13,
198,
12,
4600,
1477,
446,
62,
48727,
62,
4906,
63,
25,
360,
13221,
274,
703,
262,
427,
446,
41313,
318,
973,
284,
923,
3555,
4269,
198,
220,
4406,
422,
262,
427,
446,
25,
220,
220,
220,
5161,
62,
5188,
10917,
18310,
62,
41359,
13246,
532,
7253,
3555,
3446,
422,
262,
2292,
198,
220,
2853,
5191,
416,
257,
2176,
8379,
1271,
13,
220,
220,
220,
36050,
62,
5188,
10917,
18310,
62,
41359,
13246,
532,
7253,
3555,
826,
706,
198,
220,
262,
2292,
2853,
5191,
416,
257,
2176,
8379,
1271,
13,
220,
220,
220,
7579,
3955,
62,
39,
1581,
14887,
1340,
532,
7253,
3555,
379,
262,
198,
220,
938,
357,
403,
2213,
320,
1150,
8,
4269,
1700,
11,
543,
318,
262,
13325,
1700,
287,
262,
427,
446,
13,
554,
41542,
11012,
198,
220,
13860,
82,
11,
612,
318,
257,
1987,
1711,
4179,
319,
1366,
21545,
13,
13860,
4406,
3025,
2479,
21695,
428,
198,
220,
4179,
389,
2426,
284,
9934,
357,
2213,
27428,
8,
422,
262,
4269,
13,
220,
220,
220,
42355,
6465,
532,
7253,
3555,
655,
198,
220,
706,
262,
749,
2274,
4269,
1700,
287,
262,
427,
446,
11,
523,
326,
345,
1464,
1100,
262,
749,
2274,
198,
220,
1366,
287,
262,
427,
446,
13,
198,
12,
4600,
5532,
62,
1501,
63,
25,
383,
6186,
20857,
6530,
357,
1503,
45,
8,
329,
262,
4269,
13,
198,
198,
2,
32233,
40117,
198,
30719,
10007,
460,
307,
3804,
355,
257,
4600,
37266,
3712,
35,
713,
90,
10100,
11,
27,
25,
7149,
92,
44646,
48951,
8251,
389,
25,
198,
12,
4600,
1,
44015,
594,
15057,
1,
63,
25,
383,
8379,
1271,
286,
257,
4269,
1700,
287,
262,
427,
446,
422,
543,
284,
198,
220,
923,
3555,
13,
198,
37811,
198,
8818,
651,
62,
1477,
446,
62,
48727,
7,
198,
220,
220,
220,
32822,
7390,
11,
32822,
37787,
6030,
11,
13860,
3163,
77,
26,
3253,
82,
62,
11250,
3712,
23839,
12298,
50,
16934,
28,
20541,
62,
8356,
62,
11250,
3419,
198,
8,
198,
220,
220,
220,
1441,
6382,
375,
65,
62,
5532,
82,
7,
198,
220,
220,
220,
220,
220,
220,
220,
366,
3855,
2484,
446,
37787,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
360,
713,
90,
10100,
11,
7149,
92,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
2484,
446,
7390,
1,
5218,
32822,
7390,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
2484,
446,
37787,
6030,
1,
5218,
32822,
37787,
6030,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
12124,
3163,
77,
1,
5218,
13860,
3163,
77,
11,
198,
220,
220,
220,
220,
220,
220,
220,
5619,
198,
220,
220,
220,
220,
220,
220,
220,
3253,
82,
62,
11250,
28,
8356,
62,
11250,
11,
198,
220,
220,
220,
220,
220,
220,
220,
3895,
62,
2617,
28,
35009,
27389,
62,
15112,
40086,
62,
28480,
11,
198,
220,
220,
220,
1267,
198,
437,
198,
8818,
651,
62,
1477,
446,
62,
48727,
7,
198,
220,
220,
220,
32822,
7390,
11,
198,
220,
220,
220,
32822,
37787,
6030,
11,
198,
220,
220,
220,
13860,
3163,
77,
11,
198,
220,
220,
220,
42287,
3712,
23839,
35,
713,
90,
10100,
19629,
198,
220,
220,
220,
3253,
82,
62,
11250,
3712,
23839,
12298,
50,
16934,
28,
20541,
62,
8356,
62,
11250,
22784,
198,
8,
198,
220,
220,
220,
1441,
6382,
375,
65,
62,
5532,
82,
7,
198,
220,
220,
220,
220,
220,
220,
220,
366,
3855,
2484,
446,
37787,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
360,
713,
90,
10100,
11,
7149,
92,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4017,
39909,
342,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4808,
647,
469,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
360,
713,
90,
10100,
11,
7149,
92,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
2484,
446,
7390,
1,
5218,
32822,
7390,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
2484,
446,
37787,
6030,
1,
5218,
32822,
37787,
6030,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
12124,
3163,
77,
1,
5218,
13860,
3163,
77,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10612,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
42287,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10612,
198,
220,
220,
220,
220,
220,
220,
220,
5619,
198,
220,
220,
220,
220,
220,
220,
220,
3253,
82,
62,
11250,
28,
8356,
62,
11250,
11,
198,
220,
220,
220,
220,
220,
220,
220,
3895,
62,
2617,
28,
35009,
27389,
62,
15112,
40086,
62,
28480,
11,
198,
220,
220,
220,
1267,
198,
437,
198,
198,
37811,
198,
220,
220,
220,
1351,
62,
5532,
82,
3419,
198,
220,
220,
220,
1351,
62,
5532,
82,
7,
37266,
3712,
35,
713,
90,
10100,
11,
27,
25,
7149,
30072,
198,
198,
35561,
281,
7177,
286,
4269,
5923,
47503,
3917,
351,
262,
1459,
1848,
290,
36123,
13,
1002,
262,
198,
10962,
5376,
11507,
318,
1944,
11,
788,
7343,
12124,
82,
481,
1441,
691,
262,
15190,
5923,
47503,
329,
326,
198,
11487,
13,
220,
921,
460,
869,
7343,
12124,
82,
379,
257,
5415,
2494,
286,
642,
1661,
583,
1218,
13,
198,
198,
2,
32233,
40117,
198,
30719,
10007,
460,
307,
3804,
355,
257,
4600,
37266,
3712,
35,
713,
90,
10100,
11,
27,
25,
7149,
92,
44646,
48951,
8251,
389,
25,
198,
12,
4600,
1,
3109,
5731,
10434,
12124,
3163,
77,
1,
63,
25,
383,
5923,
45,
357,
24888,
20857,
6530,
8,
286,
262,
717,
2378,
326,
428,
198,
220,
4905,
481,
13446,
13,
5765,
262,
1988,
326,
373,
4504,
329,
4586,
36,
2100,
6605,
12124,
3163,
77,
287,
262,
198,
220,
2180,
4905,
13,
198,
12,
4600,
1,
39184,
1,
63,
25,
383,
5415,
1271,
286,
15190,
284,
1441,
13,
383,
6727,
4179,
318,
1802,
13,
198,
12,
4600,
1,
10962,
5376,
1,
63,
25,
1002,
428,
11507,
318,
2810,
11,
788,
691,
262,
15190,
3917,
351,
428,
198,
220,
3084,
1438,
389,
4504,
13,
198,
37811,
198,
8818,
1351,
62,
5532,
82,
7,
26,
3253,
82,
62,
11250,
3712,
23839,
12298,
50,
16934,
28,
20541,
62,
8356,
62,
11250,
28955,
198,
220,
220,
220,
1441,
6382,
375,
65,
62,
5532,
82,
7,
198,
220,
220,
220,
220,
220,
220,
220,
366,
8053,
12124,
82,
8172,
3253,
82,
62,
11250,
28,
8356,
62,
11250,
11,
3895,
62,
2617,
28,
35009,
27389,
62,
15112,
40086,
62,
28480,
198,
220,
220,
220,
1267,
198,
437,
198,
8818,
1351,
62,
5532,
82,
7,
198,
220,
220,
220,
42287,
3712,
23839,
35,
713,
90,
10100,
19629,
3253,
82,
62,
11250,
3712,
23839,
12298,
50,
16934,
28,
20541,
62,
8356,
62,
11250,
3419,
198,
8,
198,
220,
220,
220,
1441,
6382,
375,
65,
62,
5532,
82,
7,
198,
220,
220,
220,
220,
220,
220,
220,
366,
8053,
12124,
82,
1600,
42287,
26,
3253,
82,
62,
11250,
28,
8356,
62,
11250,
11,
3895,
62,
2617,
28,
35009,
27389,
62,
15112,
40086,
62,
28480,
198,
220,
220,
220,
1267,
198,
437,
198
] | 2.885898 | 2,638 |
using DataFrames
using Query
using PyPlot
using LaTeXStrings
include("schema.jl")
include("plotting.jl")
const LEGEND_FIGURE_SIZE = (3.2, 3.5)
const PLOT_FIGURE_SIZE = (3, 2.5)
const COLOR_LIKELIHOOD_WEIGHTING_ONE_PARTICLE = "white"
const COLOR_GOLD_STANDARD = "gold"
const ANNOTATION_FONTSIZE = 11
const TITLE_FONTSIZE=13
function annotate_num_clusters_plot(data::DataFrame)
# draw filled circle for likelihood weighting with one particle
likelihood_weighting_one_particle = @from i in data begin
@where ((i.proposal_name == PRIOR_PROPOSAL_NAME) &&
(i.num_sweeps == 0) &&
(i.num_particles == 1))
@select {i.num_particles, i.num_clusters_estimate}
@collect DataFrame
end
add_filled_circle(likelihood_weighting_one_particle[COL_NUM_PARTICLES],
likelihood_weighting_one_particle[COL_NUM_CLUSTERS_ESTIMATE],
COLOR_LIKELIHOOD_WEIGHTING_ONE_PARTICLE)
# draw filled circle for gold-standard
gold_standard = @from i in data begin
@where ((i.proposal_name == OPTIMAL_PROPOSAL_NAME) &&
(i.num_sweeps == 4) &&
(i.num_particles == 100))
@select {i.num_particles, i.num_clusters_estimate}
@collect DataFrame
end
add_filled_circle(gold_standard[COL_NUM_PARTICLES],
gold_standard[COL_NUM_CLUSTERS_ESTIMATE],
COLOR_GOLD_STANDARD)
# draw arrow and text box for likelihood weighting with one particle
head = (0.07, 0.69)
base = (0.35, 0.87)
draw_arrow(base[1], base[2], head[1] - base[1], head[2] - base[2])
text(0.35, 0.9, "Appears accurate", ANNOTATION_FONTSIZE)
# draw horizontal dashed line for gold standard
xlim = get_xlim(data)
gold_standard_value = gold_standard[COL_NUM_CLUSTERS_ESTIMATE]
plt[:plot](xlim, [gold_standard_value, gold_standard_value], "k--")
end
function plot_num_clusters(data::DataFrame, fname::String, to_plot::Vector{Tuple{String,Int}})
plt[:figure](figsize=PLOT_FIGURE_SIZE)
for (proposal_name, num_sweeps) in to_plot
result = @from i in data begin
@where ((i.proposal_name == proposal_name) &&
(i.num_sweeps == num_sweeps))
@select {i.num_particles, i.num_clusters_estimate, i.num_clusters_stderr}
@collect DataFrame
end
plt[:plot](result[COL_NUM_PARTICLES], result[COL_NUM_CLUSTERS_ESTIMATE])
lower = result[COL_NUM_CLUSTERS_ESTIMATE] - result[COL_NUM_CLUSTERS_STDERR]
upper = result[COL_NUM_CLUSTERS_ESTIMATE] + result[COL_NUM_CLUSTERS_STDERR]
plt[:fill_between](result[COL_NUM_PARTICLES], lower, upper, alpha=0.3)
end
annotate_num_clusters_plot(data)
ax = plt[:gca]()
ax[:set_xscale]("log")
ax[:set_xlim](get_xlim(data))
plt[:ylabel]("Average number\nof clusters")
plt[:xlabel]("Number of particles")
plt[:title]("Heuristic diagnostic", fontsize=TITLE_FONTSIZE)
plt[:tight_layout](pad=0)
plt[:savefig](fname)
end
function annotate_aide_plot(data::DataFrame)
# draw filled circle for likelihood weighting with one particle
likelihood_weighting_one_particle = @from i in data begin
@where ((i.proposal_name == PRIOR_PROPOSAL_NAME) &&
(i.num_sweeps == 0) &&
(i.num_particles == 1))
@select {i.num_particles, i.aide_estimate}
@collect DataFrame
end
add_filled_circle(likelihood_weighting_one_particle[COL_NUM_PARTICLES],
likelihood_weighting_one_particle[COL_AIDE_ESTIMATE],
COLOR_LIKELIHOOD_WEIGHTING_ONE_PARTICLE)
# draw arrow and text box for likelihood weighting with one particle
head = (0.07, 0.93)
base = (0.23, 0.9)
draw_arrow(base[1], base[2], head[1] - base[1], head[2] - base[2])
text(0.25, 0.7, "Likelihood weighting\nwith 1 particle appears\nleast accurate", ANNOTATION_FONTSIZE)
# draw horizontal dashed line for zero KL divergence
xlim = get_xlim(data)
plt[:plot](xlim, [0., 0.], "k--")
end
function plot_aide(data::DataFrame, fname::String, to_plot::Vector{Tuple{String,Int}})
plt[:figure](figsize=PLOT_FIGURE_SIZE)
for (proposal_name, num_sweeps) in to_plot
result = @from i in data begin
@where ((i.proposal_name == proposal_name) &&
(i.num_sweeps == num_sweeps))
@select {i.num_particles, i.aide_estimate, i.aide_stderr}
@collect DataFrame
end
plt[:plot](result[COL_NUM_PARTICLES], result[COL_AIDE_ESTIMATE])
lower = result[COL_AIDE_ESTIMATE] - result[COL_AIDE_STDERR]
upper = result[COL_AIDE_ESTIMATE] + result[COL_AIDE_STDERR]
plt[:fill_between](result[COL_NUM_PARTICLES], lower, upper, alpha=0.3)
end
annotate_aide_plot(data)
ax = plt[:gca]()
ax[:set_xscale]("log")
ax[:set_xlim](get_xlim(data))
plt[:ylabel]("nats")
plt[:xlabel]("Number of particles")
plt[:title]("AIDE estimates", fontsize=TITLE_FONTSIZE)
plt[:tight_layout](pad=0)
plt[:savefig](fname)
end
function plot_legend(data::DataFrame, fname::String)
plt[:figure](figsize=LEGEND_FIGURE_SIZE)
plt[:plot]([], [], label="SMC, prior proposal\n0 rejuvenation sweeps")
plt[:plot]([], [], label="SMC, optimal proposal\n0 rejuvenation sweeps")
plt[:plot]([], [], label="SMC, optimal proposal\n4 rejuvenation sweeps")
plt[:scatter]([], [], color="gold", s=70, edgecolor="black", label="Gold-standard")
plt[:scatter]([], [], color="white", s=70, edgecolor="black", label="Likelihood-weighting\n(1 particle)")
plt[:legend](fontsize=13, ncol=1, frameon=false, borderpad=0, borderaxespad=0, loc="lower left", labelspacing=2)
plt[:axis]("off")
plt[:tight_layout](pad=0)
plt[:savefig](fname)
end
data_dir = "data"
plot_dir = "plots"
if !Base.Filesystem.isdir(plot_dir)
Base.Filesystem.mkdir(plot_dir)
end
data = readtable("$data_dir/sampler_data.csv")
# which proposals, and which number of sweeps to plot, as a function of number
# of particles
to_plot = [
(PRIOR_PROPOSAL_NAME, 0),
(OPTIMAL_PROPOSAL_NAME, 0),
(OPTIMAL_PROPOSAL_NAME, 4)]
plot_aide(data, "$plot_dir/aide.pdf", to_plot)
plot_num_clusters(data, "$plot_dir/num_clusters.pdf", to_plot)
plot_legend(data, "$plot_dir/legend.pdf")
| [
3500,
6060,
35439,
198,
3500,
43301,
198,
3500,
9485,
43328,
198,
3500,
4689,
49568,
13290,
654,
198,
198,
17256,
7203,
15952,
2611,
13,
20362,
4943,
198,
17256,
7203,
29487,
889,
13,
20362,
4943,
198,
198,
9979,
20978,
10619,
62,
16254,
11335,
62,
33489,
796,
357,
18,
13,
17,
11,
513,
13,
20,
8,
198,
9979,
9297,
2394,
62,
16254,
11335,
62,
33489,
796,
357,
18,
11,
362,
13,
20,
8,
198,
9979,
20444,
1581,
62,
43,
18694,
3698,
40,
39,
22808,
62,
8845,
9947,
2751,
62,
11651,
62,
30709,
31419,
796,
366,
11186,
1,
198,
9979,
20444,
1581,
62,
38,
15173,
62,
2257,
6981,
9795,
796,
366,
24267,
1,
198,
9979,
3537,
11929,
6234,
62,
37,
1340,
4694,
35400,
796,
1367,
198,
9979,
37977,
2538,
62,
37,
1340,
4694,
35400,
28,
1485,
628,
198,
8818,
24708,
378,
62,
22510,
62,
565,
13654,
62,
29487,
7,
7890,
3712,
6601,
19778,
8,
628,
220,
220,
220,
1303,
3197,
5901,
9197,
329,
14955,
3463,
278,
351,
530,
18758,
198,
220,
220,
220,
14955,
62,
6551,
278,
62,
505,
62,
3911,
1548,
796,
2488,
6738,
1312,
287,
1366,
2221,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2488,
3003,
14808,
72,
13,
1676,
40007,
62,
3672,
6624,
4810,
41254,
62,
4805,
3185,
2640,
1847,
62,
20608,
8,
11405,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
357,
72,
13,
22510,
62,
46280,
25386,
6624,
657,
8,
11405,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
357,
72,
13,
22510,
62,
3911,
2983,
6624,
352,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2488,
19738,
1391,
72,
13,
22510,
62,
3911,
2983,
11,
1312,
13,
22510,
62,
565,
13654,
62,
395,
1920,
92,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2488,
33327,
6060,
19778,
198,
220,
220,
220,
220,
220,
220,
220,
886,
198,
220,
220,
220,
751,
62,
20286,
62,
45597,
7,
2339,
11935,
62,
6551,
278,
62,
505,
62,
3911,
1548,
58,
25154,
62,
41359,
62,
30709,
2149,
28378,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
14955,
62,
6551,
278,
62,
505,
62,
3911,
1548,
58,
25154,
62,
41359,
62,
5097,
7759,
4877,
62,
6465,
3955,
6158,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
20444,
1581,
62,
43,
18694,
3698,
40,
39,
22808,
62,
8845,
9947,
2751,
62,
11651,
62,
30709,
31419,
8,
628,
220,
220,
220,
1303,
3197,
5901,
9197,
329,
3869,
12,
20307,
198,
220,
220,
220,
3869,
62,
20307,
796,
2488,
6738,
1312,
287,
1366,
2221,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2488,
3003,
14808,
72,
13,
1676,
40007,
62,
3672,
6624,
39852,
3955,
1847,
62,
4805,
3185,
2640,
1847,
62,
20608,
8,
11405,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
357,
72,
13,
22510,
62,
46280,
25386,
6624,
604,
8,
11405,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
357,
72,
13,
22510,
62,
3911,
2983,
6624,
1802,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2488,
19738,
1391,
72,
13,
22510,
62,
3911,
2983,
11,
1312,
13,
22510,
62,
565,
13654,
62,
395,
1920,
92,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2488,
33327,
6060,
19778,
198,
220,
220,
220,
220,
220,
220,
220,
886,
198,
220,
220,
220,
751,
62,
20286,
62,
45597,
7,
24267,
62,
20307,
58,
25154,
62,
41359,
62,
30709,
2149,
28378,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3869,
62,
20307,
58,
25154,
62,
41359,
62,
5097,
7759,
4877,
62,
6465,
3955,
6158,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
20444,
1581,
62,
38,
15173,
62,
2257,
6981,
9795,
8,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
3197,
15452,
290,
2420,
3091,
329,
14955,
3463,
278,
351,
530,
18758,
198,
220,
220,
220,
1182,
796,
357,
15,
13,
2998,
11,
657,
13,
3388,
8,
198,
220,
220,
220,
2779,
796,
357,
15,
13,
2327,
11,
657,
13,
5774,
8,
198,
220,
220,
220,
3197,
62,
6018,
7,
8692,
58,
16,
4357,
2779,
58,
17,
4357,
1182,
58,
16,
60,
532,
2779,
58,
16,
4357,
1182,
58,
17,
60,
532,
2779,
58,
17,
12962,
198,
220,
220,
220,
2420,
7,
15,
13,
2327,
11,
657,
13,
24,
11,
366,
4677,
4127,
7187,
1600,
3537,
11929,
6234,
62,
37,
1340,
4694,
35400,
8,
628,
220,
220,
220,
1303,
3197,
16021,
37901,
1627,
329,
3869,
3210,
220,
198,
220,
220,
220,
2124,
2475,
796,
651,
62,
87,
2475,
7,
7890,
8,
198,
220,
220,
220,
3869,
62,
20307,
62,
8367,
796,
3869,
62,
20307,
58,
25154,
62,
41359,
62,
5097,
7759,
4877,
62,
6465,
3955,
6158,
60,
198,
220,
220,
220,
458,
83,
58,
25,
29487,
16151,
87,
2475,
11,
685,
24267,
62,
20307,
62,
8367,
11,
3869,
62,
20307,
62,
8367,
4357,
366,
74,
438,
4943,
198,
437,
628,
198,
8818,
7110,
62,
22510,
62,
565,
13654,
7,
7890,
3712,
6601,
19778,
11,
277,
3672,
3712,
10100,
11,
284,
62,
29487,
3712,
38469,
90,
51,
29291,
90,
10100,
11,
5317,
11709,
8,
198,
220,
220,
220,
458,
83,
58,
25,
26875,
16151,
5647,
7857,
28,
6489,
2394,
62,
16254,
11335,
62,
33489,
8,
198,
220,
220,
220,
329,
357,
1676,
40007,
62,
3672,
11,
997,
62,
46280,
25386,
8,
287,
284,
62,
29487,
198,
220,
220,
220,
220,
220,
220,
220,
1255,
796,
2488,
6738,
1312,
287,
1366,
2221,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2488,
3003,
14808,
72,
13,
1676,
40007,
62,
3672,
6624,
6961,
62,
3672,
8,
11405,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
357,
72,
13,
22510,
62,
46280,
25386,
6624,
997,
62,
46280,
25386,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2488,
19738,
1391,
72,
13,
22510,
62,
3911,
2983,
11,
1312,
13,
22510,
62,
565,
13654,
62,
395,
1920,
11,
1312,
13,
22510,
62,
565,
13654,
62,
301,
1082,
81,
92,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2488,
33327,
6060,
19778,
198,
220,
220,
220,
220,
220,
220,
220,
886,
198,
220,
220,
220,
220,
220,
220,
220,
458,
83,
58,
25,
29487,
16151,
20274,
58,
25154,
62,
41359,
62,
30709,
2149,
28378,
4357,
1255,
58,
25154,
62,
41359,
62,
5097,
7759,
4877,
62,
6465,
3955,
6158,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
2793,
796,
1255,
58,
25154,
62,
41359,
62,
5097,
7759,
4877,
62,
6465,
3955,
6158,
60,
532,
1255,
58,
25154,
62,
41359,
62,
5097,
7759,
4877,
62,
2257,
49643,
60,
220,
198,
220,
220,
220,
220,
220,
220,
220,
6727,
796,
1255,
58,
25154,
62,
41359,
62,
5097,
7759,
4877,
62,
6465,
3955,
6158,
60,
1343,
1255,
58,
25154,
62,
41359,
62,
5097,
7759,
4877,
62,
2257,
49643,
60,
198,
220,
220,
220,
220,
220,
220,
220,
458,
83,
58,
25,
20797,
62,
23395,
16151,
20274,
58,
25154,
62,
41359,
62,
30709,
2149,
28378,
4357,
2793,
11,
6727,
11,
17130,
28,
15,
13,
18,
8,
198,
220,
220,
220,
886,
628,
220,
220,
220,
24708,
378,
62,
22510,
62,
565,
13654,
62,
29487,
7,
7890,
8,
628,
220,
220,
220,
7877,
796,
458,
83,
58,
25,
70,
6888,
60,
3419,
198,
220,
220,
220,
7877,
58,
25,
2617,
62,
87,
9888,
60,
7203,
6404,
4943,
198,
220,
220,
220,
7877,
58,
25,
2617,
62,
87,
2475,
16151,
1136,
62,
87,
2475,
7,
7890,
4008,
198,
220,
220,
220,
458,
83,
58,
25,
2645,
9608,
60,
7203,
26287,
1271,
59,
77,
1659,
23163,
4943,
198,
220,
220,
220,
458,
83,
58,
25,
87,
18242,
60,
7203,
15057,
286,
13166,
4943,
198,
220,
220,
220,
458,
83,
58,
25,
7839,
60,
7203,
1544,
27915,
23584,
1600,
10369,
7857,
28,
49560,
2538,
62,
37,
1340,
4694,
35400,
8,
198,
220,
220,
220,
458,
83,
58,
25,
33464,
62,
39786,
16151,
15636,
28,
15,
8,
198,
220,
220,
220,
458,
83,
58,
25,
21928,
5647,
16151,
69,
3672,
8,
198,
437,
198,
198,
8818,
24708,
378,
62,
64,
485,
62,
29487,
7,
7890,
3712,
6601,
19778,
8,
628,
220,
220,
220,
1303,
3197,
5901,
9197,
329,
14955,
3463,
278,
351,
530,
18758,
198,
220,
220,
220,
14955,
62,
6551,
278,
62,
505,
62,
3911,
1548,
796,
2488,
6738,
1312,
287,
1366,
2221,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2488,
3003,
14808,
72,
13,
1676,
40007,
62,
3672,
6624,
4810,
41254,
62,
4805,
3185,
2640,
1847,
62,
20608,
8,
11405,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
357,
72,
13,
22510,
62,
46280,
25386,
6624,
657,
8,
11405,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
357,
72,
13,
22510,
62,
3911,
2983,
6624,
352,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2488,
19738,
1391,
72,
13,
22510,
62,
3911,
2983,
11,
1312,
13,
64,
485,
62,
395,
1920,
92,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2488,
33327,
6060,
19778,
198,
220,
220,
220,
220,
220,
220,
220,
886,
198,
220,
220,
220,
751,
62,
20286,
62,
45597,
7,
2339,
11935,
62,
6551,
278,
62,
505,
62,
3911,
1548,
58,
25154,
62,
41359,
62,
30709,
2149,
28378,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
14955,
62,
6551,
278,
62,
505,
62,
3911,
1548,
58,
25154,
62,
32,
14114,
62,
6465,
3955,
6158,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
20444,
1581,
62,
43,
18694,
3698,
40,
39,
22808,
62,
8845,
9947,
2751,
62,
11651,
62,
30709,
31419,
8,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
3197,
15452,
290,
2420,
3091,
329,
14955,
3463,
278,
351,
530,
18758,
198,
220,
220,
220,
1182,
796,
357,
15,
13,
2998,
11,
657,
13,
6052,
8,
198,
220,
220,
220,
2779,
796,
357,
15,
13,
1954,
11,
657,
13,
24,
8,
198,
220,
220,
220,
3197,
62,
6018,
7,
8692,
58,
16,
4357,
2779,
58,
17,
4357,
1182,
58,
16,
60,
532,
2779,
58,
16,
4357,
1182,
58,
17,
60,
532,
2779,
58,
17,
12962,
198,
220,
220,
220,
2420,
7,
15,
13,
1495,
11,
657,
13,
22,
11,
366,
7594,
11935,
3463,
278,
59,
77,
4480,
352,
18758,
3568,
59,
77,
293,
459,
7187,
1600,
3537,
11929,
6234,
62,
37,
1340,
4694,
35400,
8,
628,
220,
220,
220,
1303,
3197,
16021,
37901,
1627,
329,
6632,
48253,
43366,
198,
220,
220,
220,
2124,
2475,
796,
651,
62,
87,
2475,
7,
7890,
8,
198,
220,
220,
220,
458,
83,
58,
25,
29487,
16151,
87,
2475,
11,
685,
15,
1539,
657,
13,
4357,
366,
74,
438,
4943,
198,
437,
198,
198,
8818,
7110,
62,
64,
485,
7,
7890,
3712,
6601,
19778,
11,
277,
3672,
3712,
10100,
11,
284,
62,
29487,
3712,
38469,
90,
51,
29291,
90,
10100,
11,
5317,
11709,
8,
198,
220,
220,
220,
458,
83,
58,
25,
26875,
16151,
5647,
7857,
28,
6489,
2394,
62,
16254,
11335,
62,
33489,
8,
198,
220,
220,
220,
329,
357,
1676,
40007,
62,
3672,
11,
997,
62,
46280,
25386,
8,
287,
284,
62,
29487,
198,
220,
220,
220,
220,
220,
220,
220,
1255,
796,
2488,
6738,
1312,
287,
1366,
2221,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2488,
3003,
14808,
72,
13,
1676,
40007,
62,
3672,
6624,
6961,
62,
3672,
8,
11405,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
357,
72,
13,
22510,
62,
46280,
25386,
6624,
997,
62,
46280,
25386,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2488,
19738,
1391,
72,
13,
22510,
62,
3911,
2983,
11,
1312,
13,
64,
485,
62,
395,
1920,
11,
1312,
13,
64,
485,
62,
301,
1082,
81,
92,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2488,
33327,
6060,
19778,
198,
220,
220,
220,
220,
220,
220,
220,
886,
198,
220,
220,
220,
220,
220,
220,
220,
458,
83,
58,
25,
29487,
16151,
20274,
58,
25154,
62,
41359,
62,
30709,
2149,
28378,
4357,
1255,
58,
25154,
62,
32,
14114,
62,
6465,
3955,
6158,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
2793,
796,
1255,
58,
25154,
62,
32,
14114,
62,
6465,
3955,
6158,
60,
532,
1255,
58,
25154,
62,
32,
14114,
62,
2257,
49643,
60,
220,
198,
220,
220,
220,
220,
220,
220,
220,
6727,
796,
1255,
58,
25154,
62,
32,
14114,
62,
6465,
3955,
6158,
60,
1343,
1255,
58,
25154,
62,
32,
14114,
62,
2257,
49643,
60,
198,
220,
220,
220,
220,
220,
220,
220,
458,
83,
58,
25,
20797,
62,
23395,
16151,
20274,
58,
25154,
62,
41359,
62,
30709,
2149,
28378,
4357,
2793,
11,
6727,
11,
17130,
28,
15,
13,
18,
8,
198,
220,
220,
220,
886,
628,
220,
220,
220,
24708,
378,
62,
64,
485,
62,
29487,
7,
7890,
8,
628,
220,
220,
220,
7877,
796,
458,
83,
58,
25,
70,
6888,
60,
3419,
198,
220,
220,
220,
7877,
58,
25,
2617,
62,
87,
9888,
60,
7203,
6404,
4943,
198,
220,
220,
220,
7877,
58,
25,
2617,
62,
87,
2475,
16151,
1136,
62,
87,
2475,
7,
7890,
4008,
198,
220,
220,
220,
458,
83,
58,
25,
2645,
9608,
60,
7203,
77,
1381,
4943,
198,
220,
220,
220,
458,
83,
58,
25,
87,
18242,
60,
7203,
15057,
286,
13166,
4943,
198,
220,
220,
220,
458,
83,
58,
25,
7839,
60,
7203,
32,
14114,
7746,
1600,
10369,
7857,
28,
49560,
2538,
62,
37,
1340,
4694,
35400,
8,
198,
220,
220,
220,
458,
83,
58,
25,
33464,
62,
39786,
16151,
15636,
28,
15,
8,
198,
220,
220,
220,
458,
83,
58,
25,
21928,
5647,
16151,
69,
3672,
8,
198,
437,
198,
198,
8818,
7110,
62,
1455,
437,
7,
7890,
3712,
6601,
19778,
11,
277,
3672,
3712,
10100,
8,
198,
220,
220,
220,
458,
83,
58,
25,
26875,
16151,
5647,
7857,
28,
2538,
38,
10619,
62,
16254,
11335,
62,
33489,
8,
198,
220,
220,
220,
458,
83,
58,
25,
29487,
16151,
58,
4357,
685,
4357,
6167,
2625,
50,
9655,
11,
3161,
6961,
59,
77,
15,
46834,
341,
46778,
4943,
198,
220,
220,
220,
458,
83,
58,
25,
29487,
16151,
58,
4357,
685,
4357,
6167,
2625,
50,
9655,
11,
16586,
6961,
59,
77,
15,
46834,
341,
46778,
4943,
198,
220,
220,
220,
458,
83,
58,
25,
29487,
16151,
58,
4357,
685,
4357,
6167,
2625,
50,
9655,
11,
16586,
6961,
59,
77,
19,
46834,
341,
46778,
4943,
198,
220,
220,
220,
458,
83,
58,
25,
1416,
1436,
16151,
58,
4357,
685,
4357,
3124,
2625,
24267,
1600,
264,
28,
2154,
11,
5743,
8043,
2625,
13424,
1600,
6167,
2625,
13306,
12,
20307,
4943,
198,
220,
220,
220,
458,
83,
58,
25,
1416,
1436,
16151,
58,
4357,
685,
4357,
3124,
2625,
11186,
1600,
264,
28,
2154,
11,
5743,
8043,
2625,
13424,
1600,
6167,
2625,
7594,
11935,
12,
6551,
278,
59,
77,
7,
16,
18758,
8,
4943,
198,
220,
220,
220,
458,
83,
58,
25,
1455,
437,
16151,
10331,
7857,
28,
1485,
11,
299,
4033,
28,
16,
11,
5739,
261,
28,
9562,
11,
4865,
15636,
28,
15,
11,
4865,
897,
9774,
324,
28,
15,
11,
1179,
2625,
21037,
1364,
1600,
14722,
79,
4092,
28,
17,
8,
198,
220,
220,
220,
458,
83,
58,
25,
22704,
60,
7203,
2364,
4943,
198,
220,
220,
220,
458,
83,
58,
25,
33464,
62,
39786,
16151,
15636,
28,
15,
8,
198,
220,
220,
220,
458,
83,
58,
25,
21928,
5647,
16151,
69,
3672,
8,
198,
437,
198,
198,
7890,
62,
15908,
796,
366,
7890,
1,
198,
198,
29487,
62,
15908,
796,
366,
489,
1747,
1,
198,
361,
5145,
14881,
13,
25876,
6781,
13,
9409,
343,
7,
29487,
62,
15908,
8,
198,
220,
220,
220,
7308,
13,
25876,
6781,
13,
28015,
15908,
7,
29487,
62,
15908,
8,
198,
437,
198,
198,
7890,
796,
1100,
11487,
7203,
3,
7890,
62,
15908,
14,
37687,
20053,
62,
7890,
13,
40664,
4943,
198,
198,
2,
543,
11628,
11,
290,
543,
1271,
286,
46778,
284,
7110,
11,
355,
257,
2163,
286,
1271,
198,
2,
286,
13166,
198,
1462,
62,
29487,
796,
685,
198,
220,
220,
220,
357,
4805,
41254,
62,
4805,
3185,
2640,
1847,
62,
20608,
11,
657,
828,
198,
220,
220,
220,
357,
3185,
51,
3955,
1847,
62,
4805,
3185,
2640,
1847,
62,
20608,
11,
657,
828,
198,
220,
220,
220,
357,
3185,
51,
3955,
1847,
62,
4805,
3185,
2640,
1847,
62,
20608,
11,
604,
15437,
198,
29487,
62,
64,
485,
7,
7890,
11,
17971,
29487,
62,
15908,
14,
64,
485,
13,
12315,
1600,
284,
62,
29487,
8,
198,
29487,
62,
22510,
62,
565,
13654,
7,
7890,
11,
17971,
29487,
62,
15908,
14,
22510,
62,
565,
13654,
13,
12315,
1600,
284,
62,
29487,
8,
198,
29487,
62,
1455,
437,
7,
7890,
11,
17971,
29487,
62,
15908,
14,
1455,
437,
13,
12315,
4943,
628
] | 2.180344 | 2,961 |
#****************************************************************************
# Molecular Dynamics Potentials (MDP)
# CESMIX-MIT Project
#
# Contributing authors: Ngoc-Cuong Nguyen ([email protected], [email protected])
#****************************************************************************
function Singlea(xi, qi, ti, mu, eta, kappa)
u = 0.0;
return u;
end
# one-body bonded potentials
function Singleb(xi, qi, ti, mu, eta, kappa)
u = 0.0;
return u;
end
# two-body non-bonded potentials
function Paira(xij, qi, qj, ti, tj, mu, eta, kappa)
#u = 0.0;
r2 = xij[1]*xij[1] + xij[2]*xij[2] + xij[3]*xij[3];
r = sqrt(r2);
r3 = r2*r; r4 = r2*r2; r5 = r4*r; r6 = r2*r4;
r7 = r6*r; r12 = r6*r6;
# shitfted Lennard-Jones potential
R = eta[1]; # cut-off radius for shitfted Lennard-Jones potential
R2 = R*R;
R4 = R2*R2;
R6 = R4*R2;
R12 = R6*R6;
A = mu[1];
B = mu[2];
uLJ = (A/r12 - B/r6) - (A/R12 - B/R6);
# shielded Coulomb potential (cf. ReaxFF)
Rcut = eta[2]; # cut-off radius for Coulomb potential
tap0 = 1;
tap4 = -35/(Rcut^4);
tap5 = 84/(Rcut^5);
tap6 = -70/(Rcut^6);
tap7 = 20/(Rcut^7);
tap = tap0 + tap4*r4 + tap5*r5 + tap6*r6 + tap7*r7;
gamma = mu[3];
C = mu[4];
rs = (r3 + (1/gamma)^3)^(1/3);
uC = tap*C*qi[1]*qj[1]/rs;
# shielded Morse potential (cf. ReaxFF)
Rcut = eta[3]; # cut-off radius for shielded Morse potential
tap0 = 1;
tap4 = -35/(Rcut^4);
tap5 = 84/(Rcut^5);
tap6 = -70/(Rcut^6);
tap7 = 20/(Rcut^7);
tap = tap0 + tap4*r4 + tap5*r5 + tap6*r6 + tap7*r7;
gamma = mu[5];
D = mu[6];
a = mu[7];
re = mu[8];
p = mu[9];
rs = (r^p + (1/gamma)^p)^(1.0/p);
tm = a*(1 - rs/re);
uM = tap*D*(exp(tm) - 2*exp(0.5*tm));
u = [uLJ uC uM];
return u;
end
# two-body bonded potentials
function Pairb(xij, qi, qj, ti, tj, mu, eta, kappa)
#u = 0.0;
r2 = xij[1]*xij[1] + xij[2]*xij[2] + xij[3]*xij[3];
r = sqrt(r2);
# bonded Morse potential
D = mu[1];
a = mu[2];
rc = mu[3];
tm = 2*a*(rc - r);
uM = D*(exp(tm) - 2*exp(tm));
# bonded harmonic potential
K = mu[4];
r0 = mu[5];
rc = mu[6];
uH = K*((r-r0)^2 - (rc-r0)^2);
u = [uM uH];
return u;
end
# two-body bond order potentials (EAM-like potentials)
function Pairc(xij, qi, qj, ti, tj, rho, mu, eta, kappa)
#u = 0.0;
r2 = xij[1]*xij[1] + xij[2]*xij[2] + xij[3]*xij[3];
r = sqrt(r2);
# EAM Potential
a1 = mu[1];
m1 = mu[2];
a2 = mu[3];
m2 = mu[4];
rhoaa = (a1/r)^m1;
rhoab = (a2/r)^m2;
Fa = -sqrt(rho[1]);
ua = [rhoaa; rhoab; Fa];
u = [ua ua];
return u;
end
# three-body non-bonded potentials
function Tripleta(xij, xik, qi, qj, qk, ti, tj, tk, mu, eta, kappa)
u = 0.0;
return u;
end
# three-body bonded potentials
function Tripletb(xij, xik, qi, qj, qk, ti, tj, tk, mu, eta, kappa)
#u = 0.0;
xdot = xij[1]*xik[1] + xij[2]*xik[2] + xij[3]*xik[3];
rij2 = xij[1]*xij[1] + xij[2]*xij[2] + xij[3]*xij[3];
rik2 = xik[1]*xik[1] + xik[2]*xik[2] + xik[3]*xik[3];
rij = sqrt(rij2); # distance between atom i and atom j
rik = sqrt(rik2); # distance between atom i and atom k
# cos(theta), where theta is the angle between xij and xik
costhe = xdot/(rij*rik);
rjk2 = rij2 + rik2 - 2*rij*rik*costhe;
rjk = sqrt(rjk2); # distance between atom j and atom k
u1 = mu[1]*(costhe - mu[2])^2;
u2 = u1 + mu[3]*(mu[4] - rjk)^2;
u = [u1 u2];
return u;
end
# three-body bond porder potentials (Terssof-like potentials)
function Tripletc(xij, xik, qi, qj, qk, ti, tj, tk, rho, mu, eta, kappa)
#u = 0.0;
xdot = xij[1]*xik[1] + xij[2]*xik[2] + xij[3]*xik[3];
rij2 = xij[1]*xij[1] + xij[2]*xij[2] + xij[3]*xij[3];
rik2 = xik[1]*xik[1] + xik[2]*xik[2] + xik[3]*xik[3];
rij = sqrt(rij2); # distance between atom i and atom j
rik = sqrt(rik2); # distance between atom i and atom k
# cos(theta), where theta is the angle between xij and xik
costhe = xdot/(rij*rik);
B = mu[1];
lambda2 = mu[2];
lambda3 = mu[3];
gamma = mu[4];
c = mu[5];
d = mu[6];
cos0 = mu[7];
m = mu[8];
n = mu[9];
beta = mu[10];
fA = -B*exp(-lambda2*rij);
fB = gamma*(1 + c^2/d^2 - c^2/(d^2 + (costhe-cos0)^2))*exp(lambda3^m*(rij - rik)^m);
fC = gamma*(1 + c^2/d^2 - c^2/(d^2 + (costhe-cos0)^2))*exp(lambda3^m*(rij - rik)^m);
fD = (1 + beta^n*rho[1]^n)^(-1.0/(2*n));
u = [fB; fA; fD];
u = reshape(u,(3,1));
return u;
end
# four-body non-bonded potentials
function Quadrupleta(xij, xik, xil, qi, qj, qk, ql, ti, tj, tk, tl, mu, eta, kappa)
u = 0.0;
return u;
end
# four-body bonded potentials
function Quadrupletb(xij, xik, xil, qi, qj, qk, ql, ti, tj, tk, tl, mu, eta, kappa)
#u = 0.0;
# calculate the distance d from atom i to a plane defined by 3 atoms (j, k, l)
xjk = xik - xij;
xjl = xil - xij;
n1 = xjk[2]*xjl[3] - xjk[3]*xjl[2];
n2 = xjk[3]*xjl[1] - xjk[1]*xjl[3];
n3 = xjk[1]*xjl[2] - xjk[2]*xjl[1];
nn = sqrt(n1*n1 + n2*n2 + n3*n3);
d = (n1*xij[1] + n2*xij[2] + n3*xij[3])/nn;
u = mu[1]*d^2 + mu[2]*d^4;
return u;
end
| [
2,
17174,
17174,
46068,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
198,
2,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
38275,
33806,
6902,
14817,
357,
44,
6322,
8,
198,
2,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
42700,
8895,
55,
12,
36393,
4935,
220,
220,
198,
2,
220,
198,
2,
220,
25767,
278,
7035,
25,
34786,
420,
12,
46141,
506,
42379,
357,
27399,
506,
782,
31,
2781,
13,
15532,
11,
409,
499,
2934,
31,
14816,
13,
785,
8,
198,
2,
17174,
17174,
46068,
198,
198,
8818,
14206,
64,
7,
29992,
11,
10662,
72,
11,
46668,
11,
38779,
11,
2123,
64,
11,
479,
20975,
8,
198,
220,
220,
220,
334,
796,
657,
13,
15,
26,
220,
220,
220,
220,
198,
220,
220,
220,
1441,
334,
26,
198,
437,
198,
198,
2,
530,
12,
2618,
40270,
2785,
82,
220,
198,
8818,
14206,
65,
7,
29992,
11,
10662,
72,
11,
46668,
11,
38779,
11,
2123,
64,
11,
479,
20975,
8,
198,
220,
220,
220,
334,
796,
657,
13,
15,
26,
220,
220,
220,
220,
198,
220,
220,
220,
1441,
334,
26,
198,
437,
198,
198,
2,
734,
12,
2618,
1729,
12,
65,
623,
276,
2785,
82,
220,
198,
8818,
39645,
64,
7,
87,
2926,
11,
10662,
72,
11,
10662,
73,
11,
46668,
11,
256,
73,
11,
38779,
11,
2123,
64,
11,
479,
20975,
8,
198,
220,
220,
220,
1303,
84,
796,
657,
13,
15,
26,
220,
220,
220,
220,
198,
220,
220,
220,
374,
17,
796,
2124,
2926,
58,
16,
60,
9,
87,
2926,
58,
16,
60,
1343,
2124,
2926,
58,
17,
60,
9,
87,
2926,
58,
17,
60,
1343,
2124,
2926,
58,
18,
60,
9,
87,
2926,
58,
18,
11208,
220,
220,
220,
220,
198,
220,
220,
220,
374,
796,
19862,
17034,
7,
81,
17,
1776,
198,
220,
220,
220,
374,
18,
796,
374,
17,
9,
81,
26,
374,
19,
796,
374,
17,
9,
81,
17,
26,
374,
20,
796,
374,
19,
9,
81,
26,
374,
21,
796,
374,
17,
9,
81,
19,
26,
198,
220,
220,
220,
374,
22,
796,
374,
21,
9,
81,
26,
374,
1065,
796,
374,
21,
9,
81,
21,
26,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
7510,
701,
276,
28423,
446,
12,
25784,
2785,
220,
220,
220,
198,
220,
220,
220,
371,
796,
2123,
64,
58,
16,
11208,
220,
220,
220,
220,
1303,
2005,
12,
2364,
16874,
329,
7510,
701,
276,
28423,
446,
12,
25784,
2785,
220,
220,
220,
198,
220,
220,
220,
371,
17,
796,
371,
9,
49,
26,
198,
220,
220,
220,
371,
19,
796,
371,
17,
9,
49,
17,
26,
198,
220,
220,
220,
371,
21,
796,
371,
19,
9,
49,
17,
26,
198,
220,
220,
220,
371,
1065,
796,
371,
21,
9,
49,
21,
26,
198,
220,
220,
220,
317,
796,
38779,
58,
16,
11208,
198,
220,
220,
220,
347,
796,
38779,
58,
17,
11208,
198,
220,
220,
220,
334,
43,
41,
796,
357,
32,
14,
81,
1065,
532,
347,
14,
81,
21,
8,
532,
357,
32,
14,
49,
1065,
532,
347,
14,
49,
21,
1776,
220,
220,
220,
220,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
45153,
27854,
2381,
2785,
357,
12993,
13,
797,
897,
5777,
8,
198,
220,
220,
220,
371,
8968,
796,
2123,
64,
58,
17,
11208,
1303,
2005,
12,
2364,
16874,
329,
27854,
2381,
2785,
220,
220,
220,
198,
220,
220,
220,
9814,
15,
796,
352,
26,
220,
198,
220,
220,
220,
9814,
19,
796,
532,
2327,
29006,
49,
8968,
61,
19,
1776,
198,
220,
220,
220,
9814,
20,
796,
9508,
29006,
49,
8968,
61,
20,
1776,
198,
220,
220,
220,
9814,
21,
796,
532,
2154,
29006,
49,
8968,
61,
21,
1776,
198,
220,
220,
220,
9814,
22,
796,
1160,
29006,
49,
8968,
61,
22,
1776,
198,
220,
220,
220,
9814,
796,
9814,
15,
1343,
9814,
19,
9,
81,
19,
1343,
9814,
20,
9,
81,
20,
1343,
9814,
21,
9,
81,
21,
1343,
9814,
22,
9,
81,
22,
26,
198,
220,
220,
220,
34236,
796,
38779,
58,
18,
11208,
198,
220,
220,
220,
327,
220,
796,
38779,
58,
19,
11208,
198,
220,
220,
220,
44608,
796,
357,
81,
18,
1343,
357,
16,
14,
28483,
2611,
8,
61,
18,
8,
61,
7,
16,
14,
18,
1776,
198,
220,
220,
220,
334,
34,
796,
9814,
9,
34,
9,
40603,
58,
16,
60,
9,
80,
73,
58,
16,
60,
14,
3808,
26,
220,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
45153,
44049,
2785,
357,
12993,
13,
797,
897,
5777,
8,
198,
220,
220,
220,
371,
8968,
796,
2123,
64,
58,
18,
11208,
1303,
2005,
12,
2364,
16874,
329,
45153,
44049,
2785,
220,
220,
220,
198,
220,
220,
220,
9814,
15,
796,
352,
26,
220,
198,
220,
220,
220,
9814,
19,
796,
532,
2327,
29006,
49,
8968,
61,
19,
1776,
198,
220,
220,
220,
9814,
20,
796,
9508,
29006,
49,
8968,
61,
20,
1776,
198,
220,
220,
220,
9814,
21,
796,
532,
2154,
29006,
49,
8968,
61,
21,
1776,
198,
220,
220,
220,
9814,
22,
796,
1160,
29006,
49,
8968,
61,
22,
1776,
198,
220,
220,
220,
9814,
796,
9814,
15,
1343,
9814,
19,
9,
81,
19,
1343,
9814,
20,
9,
81,
20,
1343,
9814,
21,
9,
81,
21,
1343,
9814,
22,
9,
81,
22,
26,
198,
220,
220,
220,
34236,
796,
38779,
58,
20,
11208,
198,
220,
220,
220,
360,
220,
796,
38779,
58,
21,
11208,
198,
220,
220,
220,
257,
220,
796,
38779,
58,
22,
11208,
198,
220,
220,
220,
302,
220,
796,
38779,
58,
23,
11208,
220,
220,
220,
220,
198,
220,
220,
220,
279,
796,
38779,
58,
24,
11208,
198,
220,
220,
220,
44608,
796,
357,
81,
61,
79,
1343,
357,
16,
14,
28483,
2611,
8,
61,
79,
8,
61,
7,
16,
13,
15,
14,
79,
1776,
198,
220,
220,
220,
256,
76,
796,
257,
9,
7,
16,
532,
44608,
14,
260,
1776,
198,
220,
220,
220,
334,
44,
796,
9814,
9,
35,
9,
7,
11201,
7,
17209,
8,
532,
362,
9,
11201,
7,
15,
13,
20,
9,
17209,
18125,
220,
198,
220,
220,
220,
220,
198,
220,
220,
220,
334,
796,
685,
84,
43,
41,
334,
34,
334,
44,
11208,
628,
220,
220,
220,
1441,
334,
26,
198,
437,
198,
198,
2,
734,
12,
2618,
40270,
2785,
82,
220,
198,
8818,
39645,
65,
7,
87,
2926,
11,
10662,
72,
11,
10662,
73,
11,
46668,
11,
256,
73,
11,
38779,
11,
2123,
64,
11,
479,
20975,
8,
198,
220,
220,
220,
1303,
84,
796,
657,
13,
15,
26,
220,
220,
220,
220,
198,
220,
220,
220,
374,
17,
796,
2124,
2926,
58,
16,
60,
9,
87,
2926,
58,
16,
60,
1343,
2124,
2926,
58,
17,
60,
9,
87,
2926,
58,
17,
60,
1343,
2124,
2926,
58,
18,
60,
9,
87,
2926,
58,
18,
11208,
220,
220,
220,
220,
198,
220,
220,
220,
374,
796,
19862,
17034,
7,
81,
17,
1776,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
40270,
44049,
2785,
220,
198,
220,
220,
220,
360,
220,
796,
38779,
58,
16,
11208,
198,
220,
220,
220,
257,
220,
796,
38779,
58,
17,
11208,
198,
220,
220,
220,
48321,
796,
38779,
58,
18,
11208,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
256,
76,
796,
362,
9,
64,
9,
7,
6015,
532,
374,
1776,
198,
220,
220,
220,
334,
44,
796,
360,
9,
7,
11201,
7,
17209,
8,
532,
362,
9,
11201,
7,
17209,
18125,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
40270,
49239,
2785,
220,
198,
220,
220,
220,
509,
220,
796,
38779,
58,
19,
11208,
198,
220,
220,
220,
374,
15,
220,
796,
38779,
58,
20,
11208,
198,
220,
220,
220,
48321,
220,
796,
38779,
58,
21,
11208,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
334,
39,
796,
509,
9,
19510,
81,
12,
81,
15,
8,
61,
17,
532,
357,
6015,
12,
81,
15,
8,
61,
17,
1776,
198,
220,
220,
220,
220,
198,
220,
220,
220,
334,
796,
685,
84,
44,
334,
39,
11208,
628,
220,
220,
220,
1441,
334,
26,
198,
437,
198,
198,
2,
734,
12,
2618,
6314,
1502,
2785,
82,
357,
36,
2390,
12,
2339,
2785,
82,
8,
198,
8818,
39645,
66,
7,
87,
2926,
11,
10662,
72,
11,
10662,
73,
11,
46668,
11,
256,
73,
11,
374,
8873,
11,
38779,
11,
2123,
64,
11,
479,
20975,
8,
198,
220,
220,
220,
1303,
84,
796,
657,
13,
15,
26,
198,
220,
220,
220,
374,
17,
796,
2124,
2926,
58,
16,
60,
9,
87,
2926,
58,
16,
60,
1343,
2124,
2926,
58,
17,
60,
9,
87,
2926,
58,
17,
60,
1343,
2124,
2926,
58,
18,
60,
9,
87,
2926,
58,
18,
11208,
220,
220,
220,
220,
198,
220,
220,
220,
374,
796,
19862,
17034,
7,
81,
17,
1776,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
412,
2390,
32480,
220,
198,
220,
220,
220,
257,
16,
796,
38779,
58,
16,
11208,
198,
220,
220,
220,
285,
16,
796,
38779,
58,
17,
11208,
220,
220,
220,
220,
198,
220,
220,
220,
257,
17,
796,
38779,
58,
18,
11208,
198,
220,
220,
220,
285,
17,
796,
38779,
58,
19,
11208,
220,
220,
220,
220,
198,
220,
220,
220,
374,
8873,
7252,
796,
357,
64,
16,
14,
81,
8,
61,
76,
16,
26,
198,
220,
220,
220,
374,
8873,
397,
796,
357,
64,
17,
14,
81,
8,
61,
76,
17,
26,
198,
220,
220,
220,
18350,
796,
532,
31166,
17034,
7,
81,
8873,
58,
16,
36563,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
334,
64,
796,
685,
81,
8873,
7252,
26,
374,
8873,
397,
26,
18350,
11208,
198,
220,
220,
220,
220,
198,
220,
220,
220,
334,
796,
685,
6413,
334,
64,
11208,
628,
220,
220,
220,
1441,
334,
26,
198,
437,
198,
198,
2,
1115,
12,
2618,
1729,
12,
65,
623,
276,
2785,
82,
220,
198,
8818,
19817,
8326,
7,
87,
2926,
11,
2124,
1134,
11,
10662,
72,
11,
10662,
73,
11,
10662,
74,
11,
46668,
11,
256,
73,
11,
256,
74,
11,
38779,
11,
2123,
64,
11,
479,
20975,
8,
198,
220,
220,
220,
334,
796,
657,
13,
15,
26,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
1441,
334,
26,
220,
198,
437,
198,
198,
2,
1115,
12,
2618,
40270,
2785,
82,
220,
198,
8818,
19817,
83,
65,
7,
87,
2926,
11,
2124,
1134,
11,
10662,
72,
11,
10662,
73,
11,
10662,
74,
11,
46668,
11,
256,
73,
11,
256,
74,
11,
38779,
11,
2123,
64,
11,
479,
20975,
8,
198,
220,
220,
220,
1303,
84,
796,
657,
13,
15,
26,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
2124,
26518,
796,
2124,
2926,
58,
16,
60,
9,
87,
1134,
58,
16,
60,
1343,
2124,
2926,
58,
17,
60,
9,
87,
1134,
58,
17,
60,
1343,
2124,
2926,
58,
18,
60,
9,
87,
1134,
58,
18,
11208,
198,
220,
220,
220,
374,
2926,
17,
796,
2124,
2926,
58,
16,
60,
9,
87,
2926,
58,
16,
60,
1343,
2124,
2926,
58,
17,
60,
9,
87,
2926,
58,
17,
60,
1343,
2124,
2926,
58,
18,
60,
9,
87,
2926,
58,
18,
11208,
220,
220,
220,
220,
198,
220,
220,
220,
374,
1134,
17,
796,
2124,
1134,
58,
16,
60,
9,
87,
1134,
58,
16,
60,
1343,
2124,
1134,
58,
17,
60,
9,
87,
1134,
58,
17,
60,
1343,
2124,
1134,
58,
18,
60,
9,
87,
1134,
58,
18,
11208,
220,
220,
220,
220,
198,
220,
220,
220,
374,
2926,
796,
19862,
17034,
7,
380,
73,
17,
1776,
220,
1303,
5253,
1022,
22037,
1312,
290,
22037,
474,
220,
220,
198,
220,
220,
220,
374,
1134,
796,
19862,
17034,
7,
12602,
17,
1776,
220,
1303,
5253,
1022,
22037,
1312,
290,
22037,
479,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
8615,
7,
1169,
8326,
828,
810,
262,
8326,
318,
262,
9848,
1022,
2124,
2926,
290,
2124,
1134,
198,
220,
220,
220,
1575,
258,
796,
2124,
26518,
29006,
380,
73,
9,
12602,
1776,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
374,
73,
74,
17,
796,
374,
2926,
17,
1343,
374,
1134,
17,
532,
362,
9,
380,
73,
9,
12602,
9,
15805,
258,
26,
198,
220,
220,
220,
374,
73,
74,
796,
19862,
17034,
7,
81,
73,
74,
17,
1776,
1303,
5253,
1022,
22037,
474,
290,
22037,
479,
198,
220,
220,
220,
220,
198,
220,
220,
220,
334,
16,
796,
38779,
58,
16,
60,
9,
7,
15805,
258,
532,
38779,
58,
17,
12962,
61,
17,
26,
220,
220,
220,
198,
220,
220,
220,
334,
17,
796,
334,
16,
1343,
38779,
58,
18,
60,
9,
7,
30300,
58,
19,
60,
532,
374,
73,
74,
8,
61,
17,
26,
198,
220,
220,
220,
334,
796,
685,
84,
16,
334,
17,
11208,
628,
220,
220,
220,
1441,
334,
26,
198,
437,
198,
198,
2,
1115,
12,
2618,
6314,
279,
2875,
2785,
82,
357,
51,
364,
568,
69,
12,
2339,
2785,
82,
8,
198,
8818,
19817,
23047,
7,
87,
2926,
11,
2124,
1134,
11,
10662,
72,
11,
10662,
73,
11,
10662,
74,
11,
46668,
11,
256,
73,
11,
256,
74,
11,
374,
8873,
11,
38779,
11,
2123,
64,
11,
479,
20975,
8,
198,
220,
220,
220,
1303,
84,
796,
657,
13,
15,
26,
198,
220,
220,
220,
220,
198,
220,
220,
220,
2124,
26518,
796,
2124,
2926,
58,
16,
60,
9,
87,
1134,
58,
16,
60,
1343,
2124,
2926,
58,
17,
60,
9,
87,
1134,
58,
17,
60,
1343,
2124,
2926,
58,
18,
60,
9,
87,
1134,
58,
18,
11208,
198,
220,
220,
220,
374,
2926,
17,
796,
2124,
2926,
58,
16,
60,
9,
87,
2926,
58,
16,
60,
1343,
2124,
2926,
58,
17,
60,
9,
87,
2926,
58,
17,
60,
1343,
2124,
2926,
58,
18,
60,
9,
87,
2926,
58,
18,
11208,
220,
220,
220,
220,
198,
220,
220,
220,
374,
1134,
17,
796,
2124,
1134,
58,
16,
60,
9,
87,
1134,
58,
16,
60,
1343,
2124,
1134,
58,
17,
60,
9,
87,
1134,
58,
17,
60,
1343,
2124,
1134,
58,
18,
60,
9,
87,
1134,
58,
18,
11208,
220,
220,
220,
220,
198,
220,
220,
220,
374,
2926,
796,
19862,
17034,
7,
380,
73,
17,
1776,
220,
1303,
5253,
1022,
22037,
1312,
290,
22037,
474,
220,
220,
198,
220,
220,
220,
374,
1134,
796,
19862,
17034,
7,
12602,
17,
1776,
220,
1303,
5253,
1022,
22037,
1312,
290,
22037,
479,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
8615,
7,
1169,
8326,
828,
810,
262,
8326,
318,
262,
9848,
1022,
2124,
2926,
290,
2124,
1134,
198,
220,
220,
220,
1575,
258,
796,
2124,
26518,
29006,
380,
73,
9,
12602,
1776,
198,
220,
220,
220,
198,
220,
220,
220,
347,
796,
38779,
58,
16,
11208,
198,
220,
220,
220,
37456,
17,
796,
38779,
58,
17,
11208,
198,
220,
220,
220,
37456,
18,
796,
38779,
58,
18,
11208,
198,
220,
220,
220,
34236,
796,
38779,
58,
19,
11208,
198,
220,
220,
220,
269,
796,
38779,
58,
20,
11208,
198,
220,
220,
220,
288,
796,
38779,
58,
21,
11208,
198,
220,
220,
220,
8615,
15,
796,
38779,
58,
22,
11208,
198,
220,
220,
220,
285,
796,
38779,
58,
23,
11208,
198,
220,
220,
220,
299,
796,
38779,
58,
24,
11208,
198,
220,
220,
220,
12159,
796,
38779,
58,
940,
11208,
198,
220,
220,
220,
220,
198,
220,
220,
220,
277,
32,
796,
532,
33,
9,
11201,
32590,
50033,
17,
9,
380,
73,
1776,
198,
220,
220,
220,
277,
33,
796,
34236,
9,
7,
16,
1343,
269,
61,
17,
14,
67,
61,
17,
532,
269,
61,
17,
29006,
67,
61,
17,
1343,
357,
15805,
258,
12,
6966,
15,
8,
61,
17,
4008,
9,
11201,
7,
50033,
18,
61,
76,
9,
7,
380,
73,
532,
374,
1134,
8,
61,
76,
1776,
198,
220,
220,
220,
277,
34,
796,
34236,
9,
7,
16,
1343,
269,
61,
17,
14,
67,
61,
17,
532,
269,
61,
17,
29006,
67,
61,
17,
1343,
357,
15805,
258,
12,
6966,
15,
8,
61,
17,
4008,
9,
11201,
7,
50033,
18,
61,
76,
9,
7,
380,
73,
532,
374,
1134,
8,
61,
76,
1776,
198,
220,
220,
220,
277,
35,
796,
357,
16,
1343,
12159,
61,
77,
9,
81,
8873,
58,
16,
60,
61,
77,
8,
61,
32590,
16,
13,
15,
29006,
17,
9,
77,
18125,
198,
220,
220,
220,
334,
796,
685,
69,
33,
26,
277,
32,
26,
277,
35,
11208,
220,
628,
220,
220,
220,
334,
796,
27179,
1758,
7,
84,
11,
7,
18,
11,
16,
18125,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1441,
334,
26,
198,
437,
198,
198,
2,
1440,
12,
2618,
1729,
12,
65,
623,
276,
2785,
82,
198,
8818,
20648,
622,
1154,
8326,
7,
87,
2926,
11,
2124,
1134,
11,
2124,
346,
11,
10662,
72,
11,
10662,
73,
11,
10662,
74,
11,
10662,
75,
11,
46668,
11,
256,
73,
11,
256,
74,
11,
256,
75,
11,
38779,
11,
2123,
64,
11,
479,
20975,
8,
198,
220,
220,
220,
334,
796,
657,
13,
15,
26,
220,
220,
220,
220,
198,
220,
220,
220,
1441,
334,
26,
198,
437,
198,
198,
2,
1440,
12,
2618,
40270,
2785,
82,
220,
198,
8818,
20648,
622,
37069,
65,
7,
87,
2926,
11,
2124,
1134,
11,
2124,
346,
11,
10662,
72,
11,
10662,
73,
11,
10662,
74,
11,
10662,
75,
11,
46668,
11,
256,
73,
11,
256,
74,
11,
256,
75,
11,
38779,
11,
2123,
64,
11,
479,
20975,
8,
198,
220,
220,
220,
1303,
84,
796,
657,
13,
15,
26,
220,
220,
220,
220,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
15284,
262,
5253,
288,
422,
22037,
1312,
284,
257,
6614,
5447,
416,
513,
23235,
357,
73,
11,
479,
11,
300,
8,
198,
220,
220,
220,
2124,
73,
74,
796,
2124,
1134,
532,
2124,
2926,
26,
198,
220,
220,
220,
2124,
20362,
796,
2124,
346,
532,
2124,
2926,
26,
198,
220,
220,
220,
299,
16,
796,
2124,
73,
74,
58,
17,
60,
9,
87,
20362,
58,
18,
60,
532,
2124,
73,
74,
58,
18,
60,
9,
87,
20362,
58,
17,
11208,
198,
220,
220,
220,
299,
17,
796,
2124,
73,
74,
58,
18,
60,
9,
87,
20362,
58,
16,
60,
532,
2124,
73,
74,
58,
16,
60,
9,
87,
20362,
58,
18,
11208,
198,
220,
220,
220,
299,
18,
796,
2124,
73,
74,
58,
16,
60,
9,
87,
20362,
58,
17,
60,
532,
2124,
73,
74,
58,
17,
60,
9,
87,
20362,
58,
16,
11208,
198,
220,
220,
220,
299,
77,
796,
19862,
17034,
7,
77,
16,
9,
77,
16,
1343,
299,
17,
9,
77,
17,
1343,
299,
18,
9,
77,
18,
1776,
198,
220,
220,
220,
288,
796,
357,
77,
16,
9,
87,
2926,
58,
16,
60,
1343,
299,
17,
9,
87,
2926,
58,
17,
60,
1343,
299,
18,
9,
87,
2926,
58,
18,
12962,
14,
20471,
26,
220,
220,
220,
220,
198,
220,
220,
220,
220,
198,
220,
220,
220,
334,
796,
38779,
58,
16,
60,
9,
67,
61,
17,
1343,
38779,
58,
17,
60,
9,
67,
61,
19,
26,
198,
220,
220,
220,
1441,
334,
26,
198,
437,
628
] | 1.726937 | 3,252 |
using Test
using Liga
include("testobjects.jl")
include("testoperations.jl")
| [
3500,
6208,
198,
3500,
39249,
198,
198,
17256,
7203,
9288,
48205,
13,
20362,
4943,
198,
198,
17256,
7203,
9288,
3575,
602,
13,
20362,
4943,
198
] | 3.16 | 25 |
abstract type AbstractPhspIterator end
abstract type AbstractParticle end
abstract type AbstractIAEAParticle <: AbstractParticle end
abstract type Format end
struct FormatEGS <: Format end
struct FormatIAEA <: Format end
Format(p::AbstractIAEAParticle) = FormatIAEA()
Base.length(iter::AbstractPhspIterator) = iter.length
function Base.iterate(iter::AbstractPhspIterator)
seekstart(iter.io)
_iterate(iter)
end
function Base.iterate(iter::AbstractPhspIterator, state)
_iterate(iter)
end
@inline function _iterate(iter::AbstractPhspIterator)
io = iter.io
h = iter.header
P = ptype(h)
if eof(iter.io)
nothing
else
p = read_particle(io, h)
dummy_state = nothing
p, dummy_state
end
end
function Base.IteratorSize(iter::AbstractPhspIterator)
Base.HasLength()
end
function Base.IteratorSize(iter::Base.Iterators.Take{<:AbstractPhspIterator})
Base.IteratorSize(iter.xs)
end
function Base.close(iter::AbstractPhspIterator)
close(iter.io)
end
"""
ptype(h)
Return type of particles from header.
"""
function ptype end
ptype(T::Type) = error("$T has no ptype")
ptype(h) = ptype(typeof(h))
| [
397,
8709,
2099,
27741,
2725,
2777,
37787,
886,
198,
397,
8709,
2099,
27741,
7841,
1548,
886,
198,
397,
8709,
2099,
27741,
3539,
36,
2969,
20205,
1279,
25,
27741,
7841,
1548,
886,
198,
198,
397,
8709,
2099,
18980,
886,
198,
7249,
18980,
7156,
50,
1279,
25,
18980,
886,
198,
7249,
18980,
3539,
16412,
1279,
25,
18980,
886,
198,
198,
26227,
7,
79,
3712,
23839,
3539,
36,
2969,
20205,
8,
796,
18980,
3539,
16412,
3419,
198,
14881,
13,
13664,
7,
2676,
3712,
23839,
2725,
2777,
37787,
8,
796,
11629,
13,
13664,
198,
198,
8818,
7308,
13,
2676,
378,
7,
2676,
3712,
23839,
2725,
2777,
37787,
8,
198,
220,
220,
220,
5380,
9688,
7,
2676,
13,
952,
8,
198,
220,
220,
220,
4808,
2676,
378,
7,
2676,
8,
198,
437,
198,
8818,
7308,
13,
2676,
378,
7,
2676,
3712,
23839,
2725,
2777,
37787,
11,
1181,
8,
198,
220,
220,
220,
4808,
2676,
378,
7,
2676,
8,
198,
437,
198,
198,
31,
45145,
2163,
4808,
2676,
378,
7,
2676,
3712,
23839,
2725,
2777,
37787,
8,
198,
220,
220,
220,
33245,
796,
11629,
13,
952,
198,
220,
220,
220,
289,
796,
11629,
13,
25677,
198,
220,
220,
220,
350,
796,
279,
4906,
7,
71,
8,
198,
220,
220,
220,
611,
304,
1659,
7,
2676,
13,
952,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2147,
198,
220,
220,
220,
2073,
198,
220,
220,
220,
220,
220,
220,
220,
279,
796,
1100,
62,
3911,
1548,
7,
952,
11,
289,
8,
198,
220,
220,
220,
220,
220,
220,
220,
31548,
62,
5219,
796,
2147,
198,
220,
220,
220,
220,
220,
220,
220,
279,
11,
31548,
62,
5219,
198,
220,
220,
220,
886,
198,
437,
198,
198,
8818,
7308,
13,
37787,
10699,
7,
2676,
3712,
23839,
2725,
2777,
37787,
8,
198,
220,
220,
220,
7308,
13,
19242,
24539,
3419,
198,
437,
198,
8818,
7308,
13,
37787,
10699,
7,
2676,
3712,
14881,
13,
29993,
2024,
13,
12322,
90,
27,
25,
23839,
2725,
2777,
37787,
30072,
220,
198,
220,
220,
220,
7308,
13,
37787,
10699,
7,
2676,
13,
34223,
8,
198,
437,
198,
8818,
7308,
13,
19836,
7,
2676,
3712,
23839,
2725,
2777,
37787,
8,
198,
220,
220,
220,
1969,
7,
2676,
13,
952,
8,
198,
437,
198,
198,
37811,
198,
220,
220,
220,
279,
4906,
7,
71,
8,
198,
198,
13615,
2099,
286,
13166,
422,
13639,
13,
198,
37811,
198,
8818,
279,
4906,
886,
198,
457,
2981,
7,
51,
3712,
6030,
8,
796,
4049,
7203,
3,
51,
468,
645,
279,
4906,
4943,
198,
457,
2981,
7,
71,
8,
796,
279,
4906,
7,
4906,
1659,
7,
71,
4008,
198
] | 2.718605 | 430 |
if basename(pwd()) == "aoc"
cd("2017/23")
end
| [
361,
1615,
12453,
7,
79,
16993,
28955,
6624,
366,
64,
420,
1,
198,
220,
220,
220,
22927,
7203,
5539,
14,
1954,
4943,
198,
437,
628
] | 2.04 | 25 |
"""
find(registry, [; col = filter, ...])
Find entries in a registry that match a set of filters given as keyword
arguments. The keyword name must correspond to a field in `registry`,
while the value is a filter that is checked against each field value.
See [how to use registries](/documents/docs/using.md) for examples.
"""
function find(registry::Registry; filters...)
mask = [matchesentry(getfield(registry, :fields), row; filters...)
for row in getfield(registry, :data)]
return view(registry, mask)
end
Base.filter(registry::Registry; kwargs...) = find(registry; kwargs...)
function Base.findfirst(registry::Registry; filters...)
for row in getfield(registry, :data)
if matchesentry(getfield(registry, :fields), row; filters...)
return RegistryEntry(row, registry)
end
end
nothing
end
function matchesentry(fields, row; filters...)
return all(matchesentry(fields[col], row[col], f) for (col, f) in filters)
end
# The default for any function is to match against a value
matchesentry(f::Field, value, query) = isnothing(f.filterfn) ? value == query : f.filterfn(value, query)
matchesentry(field::Field, value::Missing, ::typeof(ismissing)) = true
matchesentry(field::Field, value::Missing, _) = false
# Passing a function as a query uses it as predicate
matchesentry(::Field, value, query::Function) = query(value)
matchesentry(::Field{<:Function}, value::Function, query::Function) = query(value)
# For strings, do fuzzy matching and allow regex
matchesentry(::Field, str::String, query::String) = occursin(query, str)
matchesentry(::Field, str::String, query::Regex) = match(query, str) !== nothing
# TODO: efficient `Base.findfirst`
@testset "find" begin
function testregistry()
registry = Registry((
id = Field(String, name="ID"),
name = Field(String, name="name"),
),
name = "Test registry")
push!(registry, (id = "id1", name = "name1"))
push!(registry, (id = "id2", name = "name2"))
return registry
end
@test_nowarn testregistry()
registry = testregistry()
@test length(find(registry, id = "id1")) == 1
@test length(find(registry, id = "1")) == 1
@test length(find(registry, id = r"1")) == 1
@test length(find(registry, id = "id")) == 2
@test length(find(registry, id = "id", name = "name")) == 2
@test length(find(registry, id = x -> startswith(x, "id"), name = "name")) == 2
@test NamedTuple(findfirst(registry, id = "id")) == (id = "id1", name = "name1")
@test isnothing(findfirst(registry, id = "404"))
@testset "filtering" begin
@testset "Fallback: equality" begin
@test matchesentry(Field(Symbol), :x, :x)
@test !matchesentry(Field(Symbol), :x, :y)
end
@testset "Predicates" begin
@test matchesentry(Field(Symbol), :x, ==(:x))
@test matchesentry(Field(Function), sum, ==(sum))
end
@testset "Missing values" begin
@test !matchesentry(Field(Symbol, optional = true), missing, :x)
@test matchesentry(Field(Symbol, optional = true), missing, ismissing)
end
@testset "String" begin
@test matchesentry(Field(String), "hello", "hel")
@test !matchesentry(Field(String), "hello", "yo")
@test matchesentry(Field(String), "hello", r"^h")
@test !matchesentry(Field(String), "hello", r"^h$l")
end
@testset "Row" begin
fields = (f1 = Field(String), f2 = Field(Symbol, optional = true))
@test matchesentry(fields, (f1 = "", f2 = :x))
@test matchesentry(fields, (f1 = "", f2 = :x), f2 = :x, f1 = "")
@test !matchesentry(fields, (f1 = "", f2 = :s), f2 = :x, f1 = "")
@test !matchesentry(fields, (f1 = "", f2 = :x), f2 = :x, f1 = "s")
end
end
end
| [
37811,
198,
220,
220,
220,
1064,
7,
2301,
4592,
11,
685,
26,
951,
796,
8106,
11,
2644,
12962,
198,
198,
16742,
12784,
287,
257,
20478,
326,
2872,
257,
900,
286,
16628,
1813,
355,
21179,
198,
853,
2886,
13,
383,
21179,
1438,
1276,
6053,
284,
257,
2214,
287,
4600,
2301,
4592,
47671,
198,
4514,
262,
1988,
318,
257,
8106,
326,
318,
10667,
1028,
1123,
2214,
1988,
13,
198,
198,
6214,
685,
4919,
284,
779,
4214,
1678,
16151,
14,
15390,
2886,
14,
31628,
14,
3500,
13,
9132,
8,
329,
6096,
13,
198,
37811,
198,
8818,
1064,
7,
2301,
4592,
3712,
8081,
4592,
26,
16628,
23029,
198,
220,
220,
220,
9335,
796,
685,
6759,
2052,
13000,
7,
1136,
3245,
7,
2301,
4592,
11,
1058,
25747,
828,
5752,
26,
16628,
23029,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
5752,
287,
651,
3245,
7,
2301,
4592,
11,
1058,
7890,
15437,
198,
220,
220,
220,
1441,
1570,
7,
2301,
4592,
11,
9335,
8,
198,
437,
198,
198,
14881,
13,
24455,
7,
2301,
4592,
3712,
8081,
4592,
26,
479,
86,
22046,
23029,
796,
1064,
7,
2301,
4592,
26,
479,
86,
22046,
23029,
198,
198,
8818,
7308,
13,
19796,
11085,
7,
2301,
4592,
3712,
8081,
4592,
26,
16628,
23029,
198,
220,
220,
220,
329,
5752,
287,
651,
3245,
7,
2301,
4592,
11,
1058,
7890,
8,
198,
220,
220,
220,
220,
220,
220,
220,
611,
7466,
13000,
7,
1136,
3245,
7,
2301,
4592,
11,
1058,
25747,
828,
5752,
26,
16628,
23029,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
33432,
30150,
7,
808,
11,
20478,
8,
198,
220,
220,
220,
220,
220,
220,
220,
886,
198,
220,
220,
220,
886,
198,
220,
220,
220,
2147,
198,
437,
198,
198,
8818,
7466,
13000,
7,
25747,
11,
5752,
26,
16628,
23029,
198,
220,
220,
220,
1441,
477,
7,
6759,
2052,
13000,
7,
25747,
58,
4033,
4357,
5752,
58,
4033,
4357,
277,
8,
329,
357,
4033,
11,
277,
8,
287,
16628,
8,
198,
437,
198,
198,
2,
383,
4277,
329,
597,
2163,
318,
284,
2872,
1028,
257,
1988,
198,
6759,
2052,
13000,
7,
69,
3712,
15878,
11,
1988,
11,
12405,
8,
796,
318,
22366,
7,
69,
13,
24455,
22184,
8,
5633,
1988,
6624,
12405,
1058,
277,
13,
24455,
22184,
7,
8367,
11,
12405,
8,
198,
6759,
2052,
13000,
7,
3245,
3712,
15878,
11,
1988,
3712,
43730,
11,
7904,
4906,
1659,
7,
1042,
747,
278,
4008,
796,
2081,
198,
6759,
2052,
13000,
7,
3245,
3712,
15878,
11,
1988,
3712,
43730,
11,
4808,
8,
796,
3991,
198,
198,
2,
46389,
257,
2163,
355,
257,
12405,
3544,
340,
355,
44010,
198,
6759,
2052,
13000,
7,
3712,
15878,
11,
1988,
11,
12405,
3712,
22203,
8,
796,
12405,
7,
8367,
8,
198,
6759,
2052,
13000,
7,
3712,
15878,
90,
27,
25,
22203,
5512,
1988,
3712,
22203,
11,
12405,
3712,
22203,
8,
796,
12405,
7,
8367,
8,
198,
198,
2,
1114,
13042,
11,
466,
34669,
12336,
290,
1249,
40364,
198,
6759,
2052,
13000,
7,
3712,
15878,
11,
965,
3712,
10100,
11,
12405,
3712,
10100,
8,
796,
8833,
259,
7,
22766,
11,
965,
8,
198,
6759,
2052,
13000,
7,
3712,
15878,
11,
965,
3712,
10100,
11,
12405,
3712,
3041,
25636,
8,
796,
2872,
7,
22766,
11,
965,
8,
5145,
855,
2147,
628,
198,
198,
2,
16926,
46,
25,
6942,
4600,
14881,
13,
19796,
11085,
63,
198,
198,
31,
9288,
2617,
366,
19796,
1,
2221,
198,
220,
220,
220,
2163,
1332,
2301,
4592,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
20478,
796,
33432,
19510,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4686,
796,
7663,
7,
10100,
11,
1438,
2625,
2389,
12340,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1438,
796,
7663,
7,
10100,
11,
1438,
2625,
3672,
12340,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10612,
198,
220,
220,
220,
220,
220,
220,
220,
1438,
796,
366,
14402,
20478,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
4574,
0,
7,
2301,
4592,
11,
357,
312,
796,
366,
312,
16,
1600,
1438,
796,
366,
3672,
16,
48774,
198,
220,
220,
220,
220,
220,
220,
220,
4574,
0,
7,
2301,
4592,
11,
357,
312,
796,
366,
312,
17,
1600,
1438,
796,
366,
3672,
17,
48774,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
20478,
198,
220,
220,
220,
886,
198,
220,
220,
220,
2488,
9288,
62,
2197,
1501,
1332,
2301,
4592,
3419,
198,
220,
220,
220,
20478,
796,
1332,
2301,
4592,
3419,
628,
220,
220,
220,
2488,
9288,
4129,
7,
19796,
7,
2301,
4592,
11,
4686,
796,
366,
312,
16,
48774,
6624,
352,
198,
220,
220,
220,
2488,
9288,
4129,
7,
19796,
7,
2301,
4592,
11,
4686,
796,
366,
16,
48774,
6624,
352,
198,
220,
220,
220,
2488,
9288,
4129,
7,
19796,
7,
2301,
4592,
11,
4686,
796,
374,
1,
16,
48774,
6624,
352,
198,
220,
220,
220,
2488,
9288,
4129,
7,
19796,
7,
2301,
4592,
11,
4686,
796,
366,
312,
48774,
6624,
362,
198,
220,
220,
220,
2488,
9288,
4129,
7,
19796,
7,
2301,
4592,
11,
4686,
796,
366,
312,
1600,
1438,
796,
366,
3672,
48774,
6624,
362,
198,
220,
220,
220,
2488,
9288,
4129,
7,
19796,
7,
2301,
4592,
11,
4686,
796,
2124,
4613,
923,
2032,
342,
7,
87,
11,
366,
312,
12340,
1438,
796,
366,
3672,
48774,
6624,
362,
628,
220,
220,
220,
2488,
9288,
34441,
51,
29291,
7,
19796,
11085,
7,
2301,
4592,
11,
4686,
796,
366,
312,
48774,
6624,
357,
312,
796,
366,
312,
16,
1600,
1438,
796,
366,
3672,
16,
4943,
198,
220,
220,
220,
2488,
9288,
318,
22366,
7,
19796,
11085,
7,
2301,
4592,
11,
4686,
796,
366,
26429,
48774,
628,
220,
220,
220,
2488,
9288,
2617,
366,
10379,
20212,
1,
2221,
198,
220,
220,
220,
220,
220,
220,
220,
2488,
9288,
2617,
366,
24750,
1891,
25,
10537,
1,
2221,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2488,
9288,
7466,
13000,
7,
15878,
7,
13940,
23650,
828,
1058,
87,
11,
1058,
87,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2488,
9288,
5145,
6759,
2052,
13000,
7,
15878,
7,
13940,
23650,
828,
1058,
87,
11,
1058,
88,
8,
198,
220,
220,
220,
220,
220,
220,
220,
886,
628,
220,
220,
220,
220,
220,
220,
220,
2488,
9288,
2617,
366,
39156,
16856,
1,
2221,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2488,
9288,
7466,
13000,
7,
15878,
7,
13940,
23650,
828,
1058,
87,
11,
6624,
7,
25,
87,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2488,
9288,
7466,
13000,
7,
15878,
7,
22203,
828,
2160,
11,
6624,
7,
16345,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
886,
628,
220,
220,
220,
220,
220,
220,
220,
2488,
9288,
2617,
366,
43730,
3815,
1,
2221,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2488,
9288,
5145,
6759,
2052,
13000,
7,
15878,
7,
13940,
23650,
11,
11902,
796,
2081,
828,
4814,
11,
1058,
87,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2488,
9288,
7466,
13000,
7,
15878,
7,
13940,
23650,
11,
11902,
796,
2081,
828,
4814,
11,
318,
45688,
8,
198,
220,
220,
220,
220,
220,
220,
220,
886,
628,
220,
220,
220,
220,
220,
220,
220,
2488,
9288,
2617,
366,
10100,
1,
2221,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2488,
9288,
7466,
13000,
7,
15878,
7,
10100,
828,
366,
31373,
1600,
366,
2978,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2488,
9288,
5145,
6759,
2052,
13000,
7,
15878,
7,
10100,
828,
366,
31373,
1600,
366,
8226,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2488,
9288,
7466,
13000,
7,
15878,
7,
10100,
828,
366,
31373,
1600,
374,
1,
61,
71,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2488,
9288,
5145,
6759,
2052,
13000,
7,
15878,
7,
10100,
828,
366,
31373,
1600,
374,
1,
61,
71,
3,
75,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
886,
628,
220,
220,
220,
220,
220,
220,
220,
2488,
9288,
2617,
366,
25166,
1,
2221,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7032,
796,
357,
69,
16,
796,
7663,
7,
10100,
828,
277,
17,
796,
7663,
7,
13940,
23650,
11,
11902,
796,
2081,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2488,
9288,
7466,
13000,
7,
25747,
11,
357,
69,
16,
796,
366,
1600,
277,
17,
796,
1058,
87,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2488,
9288,
7466,
13000,
7,
25747,
11,
357,
69,
16,
796,
366,
1600,
277,
17,
796,
1058,
87,
828,
277,
17,
796,
1058,
87,
11,
277,
16,
796,
366,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2488,
9288,
5145,
6759,
2052,
13000,
7,
25747,
11,
357,
69,
16,
796,
366,
1600,
277,
17,
796,
1058,
82,
828,
277,
17,
796,
1058,
87,
11,
277,
16,
796,
366,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2488,
9288,
5145,
6759,
2052,
13000,
7,
25747,
11,
357,
69,
16,
796,
366,
1600,
277,
17,
796,
1058,
87,
828,
277,
17,
796,
1058,
87,
11,
277,
16,
796,
366,
82,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
886,
198,
220,
220,
220,
886,
198,
198,
437,
198
] | 2.471106 | 1,592 |
#######################
# static DSL function #
#######################
using FunctionalCollections: PersistentVector
struct Params
prob_outlier::Float64
slope::Float64
intercept::Float64
inlier_std::Float64
outlier_std::Float64
end
@gen (static) function datum(x::Float64, (grad)(params::Params))
is_outlier = @trace(bernoulli(params.prob_outlier), :z)
std = is_outlier ? params.inlier_std : params.outlier_std
y = @trace(normal(x * params.slope + params.intercept, std), :y)
return y
end
data_fn = Map(datum)
"""
my documentation
"""
@gen (static) function model(xs::Vector{Float64})
n = length(xs)
inlier_std = @trace(gamma(1, 1), :inlier_std)
outlier_std = @trace(gamma(1, 1), :outlier_std)
slope = @trace(normal(0, 2), :slope)
intercept = @trace(normal(0, 2), :intercept)
params::Params = Params(0.5, inlier_std, outlier_std, slope, intercept)
ys = @trace(data_fn(xs, fill(params, n)), :data)
return ys
end
@gen (static) function at_choice_example_1(i::Int)
ret = @trace(bernoulli(0.5), :x => i)
end
# @trace(choice_at(bernoulli)(0.5, i), :x)
@gen (static) function at_choice_example_2(i::Int)
ret = @trace(bernoulli(0.5), :x => i => :y)
end
# @trace(call_at(choice_at(bernoulli))(0.5, i, :y), :x)
@gen function foo(mu)
@trace(normal(mu, 1), :y)
end
@gen (static) function at_call_example_1(i::Int)
mu = 1.123
ret = @trace(foo(mu), :x => i)
end
@gen (static) function at_call_example_2(i::Int)
mu = 1.123
ret = @trace(foo(mu), :x => i => :y)
end
@testset "static DSL" begin
function get_node_by_name(ir, name::Symbol)
nodes = filter((node) -> (node.name == name), ir.nodes)
@assert length(nodes) == 1
nodes[1]
end
@testset "check IR" begin
#####################
# check IR of datum #
#####################
ir = Gen.get_ir(typeof(datum))
# argument nodes
@test length(ir.arg_nodes) == 2
x = ir.arg_nodes[1]
params = ir.arg_nodes[2]
@test x.name == :x
@test x.typ == :Float64
@test !x.compute_grad
@test params.name == :params
@test params.typ == :Params
@test params.compute_grad
# choice nodes and call nodes
@test length(ir.choice_nodes) == 2
@test length(ir.call_nodes) == 0
# is_outlier
is_outlier = ir.choice_nodes[1]
@test is_outlier.name == :is_outlier
@test is_outlier.addr == :z
@test is_outlier.typ == QuoteNode(Bool)
@test is_outlier.dist == bernoulli
@test length(is_outlier.inputs) == 1
# std
std = get_node_by_name(ir, :std)
@test isa(std, Gen.JuliaNode)
@test std.name == :std
@test std.typ == QuoteNode(Any)
@test length(std.inputs) == 2
in1 = std.inputs[1]
in2 = std.inputs[2]
@test (in1 === is_outlier && in2 === params) || (in2 === is_outlier && in1 === params)
# y
y = ir.choice_nodes[2]
@test y.name == :y
@test y.addr == :y
@test y.typ == QuoteNode(Float64)
@test y.dist == normal
@test length(y.inputs) == 2
@test y.inputs[2] === std
# y_mean
y_mean = y.inputs[1]
@test isa(y_mean, Gen.JuliaNode)
@test y_mean.typ == QuoteNode(Any)
@test length(y_mean.inputs) == 2
in1 = y_mean.inputs[1]
in2 = y_mean.inputs[2]
@test (in1 === x && in2 === params) || (in2 === x && in1 === params)
# prob outlier
prob_outlier = is_outlier.inputs[1]
@test isa(prob_outlier, Gen.JuliaNode)
@test length(prob_outlier.inputs) == 1
@test prob_outlier.inputs[1] === params
@test prob_outlier.typ == QuoteNode(Any)
@test ir.return_node === y
#####################
# check IR of model #
#####################
ir = Gen.get_ir(typeof(model))
@test length(ir.arg_nodes) == 1
xs = ir.arg_nodes[1]
@test xs.name == :xs
@test xs.typ == :(Vector{Float64})
@test !xs.compute_grad
# choice nodes and call nodes
@test length(ir.choice_nodes) == 4
@test length(ir.call_nodes) == 1
# inlier_std
inlier_std = ir.choice_nodes[1]
@test inlier_std.name == :inlier_std
@test inlier_std.addr == :inlier_std
@test inlier_std.typ == QuoteNode(Float64)
@test inlier_std.dist == gamma
@test length(inlier_std.inputs) == 2
# outlier_std
outlier_std = ir.choice_nodes[2]
@test outlier_std.name == :outlier_std
@test outlier_std.addr == :outlier_std
@test outlier_std.typ == QuoteNode(Float64)
@test outlier_std.dist == gamma
@test length(outlier_std.inputs) == 2
# slope
slope = ir.choice_nodes[3]
@test slope.name == :slope
@test slope.addr == :slope
@test slope.typ == QuoteNode(Float64)
@test slope.dist == normal
@test length(slope.inputs) == 2
# intercept
intercept = ir.choice_nodes[4]
@test intercept.name == :intercept
@test intercept.addr == :intercept
@test intercept.typ == QuoteNode(Float64)
@test intercept.dist == normal
@test length(intercept.inputs) == 2
# data
ys = ir.call_nodes[1]
@test ys.name == :ys
@test ys.addr == :data
@test ys.typ == QuoteNode(PersistentVector{Float64})
@test ys.generative_function == data_fn
@test length(ys.inputs) == 2
@test ys.inputs[1] == xs
# params
params = get_node_by_name(ir, :params)
@test isa(params, Gen.JuliaNode)
@test params.name == :params
@test params.typ == :Params
@test length(params.inputs) == 4
@test slope in params.inputs
@test intercept in params.inputs
@test inlier_std in params.inputs
@test outlier_std in params.inputs
# n
n = get_node_by_name(ir, :n)
@test isa(n, Gen.JuliaNode)
@test n.name == :n
@test n.typ == QuoteNode(Any)
@test length(n.inputs) == 1
@test n.inputs[1] === xs
# params_vec
params_vec = ys.inputs[2]
@test isa(params_vec, Gen.JuliaNode)
@test params_vec.typ == QuoteNode(Any)
@test length(params_vec.inputs) == 2
in1 = params_vec.inputs[1]
in2 = params_vec.inputs[2]
@test (in1 === params && in2 === n) || (in2 === params && in1 === n)
@test ir.return_node === ys
end
@testset "at_choice" begin
# at_choice_example_1
ir = Gen.get_ir(typeof(at_choice_example_1))
i = get_node_by_name(ir, :i)
ret = get_node_by_name(ir, :ret)
@test isa(ret, Gen.GenerativeFunctionCallNode)
@test ret.addr == :x
@test length(ret.inputs) == 2
@test isa(ret.inputs[1], Gen.JuliaNode) # () -> 0.5
@test ret.inputs[2] === i
at = ret.generative_function
@test isa(at, Gen.ChoiceAtCombinator)
@test at.dist == bernoulli
# at_choice_example_2
ir = Gen.get_ir(typeof(at_choice_example_2))
i = get_node_by_name(ir, :i)
ret = get_node_by_name(ir, :ret)
@test isa(ret, Gen.GenerativeFunctionCallNode)
@test ret.addr == :x
@test length(ret.inputs) == 3
@test isa(ret.inputs[1], Gen.JuliaNode) # () -> 0.5
@test isa(ret.inputs[2], Gen.JuliaNode) # () -> :y
@test ret.inputs[3] === i
at = ret.generative_function
@test isa(at, Gen.CallAtCombinator)
at2 = at.kernel
@test isa(at2, Gen.ChoiceAtCombinator)
@test at2.dist == bernoulli
end
@testset "at_call" begin
# at_call_example_1
ir = Gen.get_ir(typeof(at_call_example_1))
i = get_node_by_name(ir, :i)
ret = get_node_by_name(ir, :ret)
@test isa(ret, Gen.GenerativeFunctionCallNode)
@test ret.addr == :x
@test length(ret.inputs) == 2
@test isa(ret.inputs[1], Gen.JuliaNode) # () -> 0.5
@test ret.inputs[2] === i
at = ret.generative_function
@test isa(at, Gen.CallAtCombinator)
@test at.kernel == foo
#at_call_example_2
ir = Gen.get_ir(typeof(at_call_example_2))
i = get_node_by_name(ir, :i)
ret = get_node_by_name(ir, :ret)
@test isa(ret, Gen.GenerativeFunctionCallNode)
@test ret.addr == :x
@test length(ret.inputs) == 3
@test isa(ret.inputs[1], Gen.JuliaNode) # () -> 0.5
@test isa(ret.inputs[1], Gen.JuliaNode) # () -> 0.5
@test isa(ret.inputs[2], Gen.JuliaNode) # () -> :y
@test ret.inputs[3] === i
at = ret.generative_function
@test isa(at, Gen.CallAtCombinator)
at2 = at.kernel
@test isa(at2, Gen.CallAtCombinator)
@test at2.kernel == foo
end
@testset "tracked diff annotation" begin
@gen (static, diffs) function bar(x)
return x
end
@test Gen.get_options(typeof(bar)).track_diffs
@gen (static) function bar(x)
return x
end
@test !Gen.get_options(typeof(bar)).track_diffs
end
@testset "no julia cache annotation" begin
@gen (static, nojuliacache) function bar(x)
return x
end
@test !Gen.get_options(typeof(bar)).cache_julia_nodes
@gen (static) function bar(x)
return x
end
@test Gen.get_options(typeof(bar)).cache_julia_nodes
end
@testset "trainable parameters" begin
@gen (static) function foo()
@param theta::Float64
return theta
end
ir = Gen.get_ir(typeof(foo))
theta = get_node_by_name(ir, :theta)
@test isa(theta, Gen.TrainableParameterNode)
@test ir.return_node === theta
end
@testset "use of 'end'" begin
@gen (static) function foo()
x = [1, 2, 3, 4, 5, 6]
y = x[3:end]
return y
end
load_generated_functions()
@test foo() == [3, 4, 5, 6]
end
@testset "docstrings" begin
io = IOBuffer()
print(io, @doc model)
@test String(take!(io)) == "my documentation\n"
end
end # @testset "static DSL"
| [
14468,
4242,
21017,
198,
2,
9037,
32643,
2163,
1303,
198,
14468,
4242,
21017,
198,
198,
3500,
44224,
5216,
26448,
25,
9467,
7609,
38469,
198,
198,
7249,
2547,
4105,
198,
220,
220,
220,
1861,
62,
448,
2505,
3712,
43879,
2414,
198,
220,
220,
220,
22638,
3712,
43879,
2414,
198,
220,
220,
220,
15788,
3712,
43879,
2414,
198,
220,
220,
220,
287,
2505,
62,
19282,
3712,
43879,
2414,
198,
220,
220,
220,
503,
2505,
62,
19282,
3712,
43879,
2414,
198,
437,
198,
198,
31,
5235,
357,
12708,
8,
2163,
4818,
388,
7,
87,
3712,
43879,
2414,
11,
357,
9744,
5769,
37266,
3712,
10044,
4105,
4008,
198,
220,
220,
220,
318,
62,
448,
2505,
796,
2488,
40546,
7,
33900,
280,
15516,
7,
37266,
13,
1676,
65,
62,
448,
2505,
828,
1058,
89,
8,
198,
220,
220,
220,
14367,
796,
318,
62,
448,
2505,
5633,
42287,
13,
259,
2505,
62,
19282,
1058,
42287,
13,
448,
2505,
62,
19282,
198,
220,
220,
220,
331,
796,
2488,
40546,
7,
11265,
7,
87,
1635,
42287,
13,
6649,
3008,
1343,
42287,
13,
3849,
984,
11,
14367,
828,
1058,
88,
8,
198,
220,
220,
220,
1441,
331,
198,
437,
198,
198,
7890,
62,
22184,
796,
9347,
7,
19608,
388,
8,
198,
198,
37811,
198,
1820,
10314,
198,
37811,
198,
31,
5235,
357,
12708,
8,
2163,
2746,
7,
34223,
3712,
38469,
90,
43879,
2414,
30072,
198,
220,
220,
220,
299,
796,
4129,
7,
34223,
8,
198,
220,
220,
220,
287,
2505,
62,
19282,
796,
2488,
40546,
7,
28483,
2611,
7,
16,
11,
352,
828,
1058,
259,
2505,
62,
19282,
8,
198,
220,
220,
220,
503,
2505,
62,
19282,
796,
2488,
40546,
7,
28483,
2611,
7,
16,
11,
352,
828,
1058,
448,
2505,
62,
19282,
8,
198,
220,
220,
220,
22638,
796,
2488,
40546,
7,
11265,
7,
15,
11,
362,
828,
1058,
6649,
3008,
8,
198,
220,
220,
220,
15788,
796,
2488,
40546,
7,
11265,
7,
15,
11,
362,
828,
1058,
3849,
984,
8,
198,
220,
220,
220,
42287,
3712,
10044,
4105,
796,
2547,
4105,
7,
15,
13,
20,
11,
287,
2505,
62,
19282,
11,
503,
2505,
62,
19282,
11,
22638,
11,
15788,
8,
198,
220,
220,
220,
331,
82,
796,
2488,
40546,
7,
7890,
62,
22184,
7,
34223,
11,
6070,
7,
37266,
11,
299,
36911,
1058,
7890,
8,
198,
220,
220,
220,
1441,
331,
82,
198,
437,
198,
198,
31,
5235,
357,
12708,
8,
2163,
379,
62,
25541,
62,
20688,
62,
16,
7,
72,
3712,
5317,
8,
198,
220,
220,
220,
1005,
796,
2488,
40546,
7,
33900,
280,
15516,
7,
15,
13,
20,
828,
1058,
87,
5218,
1312,
8,
198,
437,
198,
198,
2,
2488,
40546,
7,
25541,
62,
265,
7,
33900,
280,
15516,
5769,
15,
13,
20,
11,
1312,
828,
1058,
87,
8,
198,
198,
31,
5235,
357,
12708,
8,
2163,
379,
62,
25541,
62,
20688,
62,
17,
7,
72,
3712,
5317,
8,
198,
220,
220,
220,
1005,
796,
2488,
40546,
7,
33900,
280,
15516,
7,
15,
13,
20,
828,
1058,
87,
5218,
1312,
5218,
1058,
88,
8,
198,
437,
198,
198,
2,
2488,
40546,
7,
13345,
62,
265,
7,
25541,
62,
265,
7,
33900,
280,
15516,
4008,
7,
15,
13,
20,
11,
1312,
11,
1058,
88,
828,
1058,
87,
8,
198,
198,
31,
5235,
2163,
22944,
7,
30300,
8,
198,
220,
220,
220,
2488,
40546,
7,
11265,
7,
30300,
11,
352,
828,
1058,
88,
8,
198,
437,
198,
198,
31,
5235,
357,
12708,
8,
2163,
379,
62,
13345,
62,
20688,
62,
16,
7,
72,
3712,
5317,
8,
198,
220,
220,
220,
38779,
796,
352,
13,
10163,
198,
220,
220,
220,
1005,
796,
2488,
40546,
7,
21943,
7,
30300,
828,
1058,
87,
5218,
1312,
8,
198,
437,
198,
198,
31,
5235,
357,
12708,
8,
2163,
379,
62,
13345,
62,
20688,
62,
17,
7,
72,
3712,
5317,
8,
198,
220,
220,
220,
38779,
796,
352,
13,
10163,
198,
220,
220,
220,
1005,
796,
2488,
40546,
7,
21943,
7,
30300,
828,
1058,
87,
5218,
1312,
5218,
1058,
88,
8,
198,
437,
198,
198,
31,
9288,
2617,
366,
12708,
32643,
1,
2221,
198,
198,
8818,
651,
62,
17440,
62,
1525,
62,
3672,
7,
343,
11,
1438,
3712,
13940,
23650,
8,
198,
220,
220,
220,
13760,
796,
8106,
19510,
17440,
8,
4613,
357,
17440,
13,
3672,
6624,
1438,
828,
4173,
13,
77,
4147,
8,
198,
220,
220,
220,
2488,
30493,
4129,
7,
77,
4147,
8,
6624,
352,
198,
220,
220,
220,
13760,
58,
16,
60,
198,
437,
198,
198,
31,
9288,
2617,
366,
9122,
14826,
1,
2221,
198,
198,
14468,
4242,
2,
198,
2,
2198,
14826,
286,
4818,
388,
1303,
198,
14468,
4242,
2,
198,
198,
343,
796,
5215,
13,
1136,
62,
343,
7,
4906,
1659,
7,
19608,
388,
4008,
198,
198,
2,
4578,
13760,
198,
31,
9288,
4129,
7,
343,
13,
853,
62,
77,
4147,
8,
6624,
362,
198,
87,
796,
4173,
13,
853,
62,
77,
4147,
58,
16,
60,
198,
37266,
796,
4173,
13,
853,
62,
77,
4147,
58,
17,
60,
198,
31,
9288,
2124,
13,
3672,
6624,
1058,
87,
198,
31,
9288,
2124,
13,
28004,
6624,
1058,
43879,
2414,
198,
31,
9288,
5145,
87,
13,
5589,
1133,
62,
9744,
198,
31,
9288,
42287,
13,
3672,
6624,
1058,
37266,
198,
31,
9288,
42287,
13,
28004,
6624,
1058,
10044,
4105,
198,
31,
9288,
42287,
13,
5589,
1133,
62,
9744,
198,
198,
2,
3572,
13760,
290,
869,
13760,
198,
31,
9288,
4129,
7,
343,
13,
25541,
62,
77,
4147,
8,
6624,
362,
198,
31,
9288,
4129,
7,
343,
13,
13345,
62,
77,
4147,
8,
6624,
657,
198,
198,
2,
318,
62,
448,
2505,
198,
271,
62,
448,
2505,
796,
4173,
13,
25541,
62,
77,
4147,
58,
16,
60,
198,
31,
9288,
318,
62,
448,
2505,
13,
3672,
6624,
1058,
271,
62,
448,
2505,
198,
31,
9288,
318,
62,
448,
2505,
13,
29851,
6624,
1058,
89,
198,
31,
9288,
318,
62,
448,
2505,
13,
28004,
6624,
19879,
19667,
7,
33,
970,
8,
198,
31,
9288,
318,
62,
448,
2505,
13,
17080,
6624,
275,
1142,
280,
15516,
198,
31,
9288,
4129,
7,
271,
62,
448,
2505,
13,
15414,
82,
8,
6624,
352,
198,
198,
2,
14367,
198,
19282,
796,
651,
62,
17440,
62,
1525,
62,
3672,
7,
343,
11,
1058,
19282,
8,
198,
31,
9288,
318,
64,
7,
19282,
11,
5215,
13,
16980,
544,
19667,
8,
198,
31,
9288,
14367,
13,
3672,
6624,
1058,
19282,
198,
31,
9288,
14367,
13,
28004,
6624,
19879,
19667,
7,
7149,
8,
198,
31,
9288,
4129,
7,
19282,
13,
15414,
82,
8,
6624,
362,
198,
259,
16,
796,
14367,
13,
15414,
82,
58,
16,
60,
198,
259,
17,
796,
14367,
13,
15414,
82,
58,
17,
60,
198,
31,
9288,
357,
259,
16,
24844,
318,
62,
448,
2505,
11405,
287,
17,
24844,
42287,
8,
8614,
357,
259,
17,
24844,
318,
62,
448,
2505,
11405,
287,
16,
24844,
42287,
8,
198,
198,
2,
331,
198,
88,
796,
4173,
13,
25541,
62,
77,
4147,
58,
17,
60,
198,
31,
9288,
331,
13,
3672,
6624,
1058,
88,
198,
31,
9288,
331,
13,
29851,
6624,
1058,
88,
198,
31,
9288,
331,
13,
28004,
6624,
19879,
19667,
7,
43879,
2414,
8,
198,
31,
9288,
331,
13,
17080,
6624,
3487,
198,
31,
9288,
4129,
7,
88,
13,
15414,
82,
8,
6624,
362,
198,
31,
9288,
331,
13,
15414,
82,
58,
17,
60,
24844,
14367,
198,
198,
2,
331,
62,
32604,
198,
88,
62,
32604,
796,
331,
13,
15414,
82,
58,
16,
60,
198,
31,
9288,
318,
64,
7,
88,
62,
32604,
11,
5215,
13,
16980,
544,
19667,
8,
198,
31,
9288,
331,
62,
32604,
13,
28004,
6624,
19879,
19667,
7,
7149,
8,
198,
31,
9288,
4129,
7,
88,
62,
32604,
13,
15414,
82,
8,
6624,
362,
198,
259,
16,
796,
331,
62,
32604,
13,
15414,
82,
58,
16,
60,
198,
259,
17,
796,
331,
62,
32604,
13,
15414,
82,
58,
17,
60,
198,
31,
9288,
357,
259,
16,
24844,
2124,
11405,
287,
17,
24844,
42287,
8,
8614,
357,
259,
17,
24844,
2124,
11405,
287,
16,
24844,
42287,
8,
198,
198,
2,
1861,
503,
2505,
198,
1676,
65,
62,
448,
2505,
796,
318,
62,
448,
2505,
13,
15414,
82,
58,
16,
60,
198,
31,
9288,
318,
64,
7,
1676,
65,
62,
448,
2505,
11,
5215,
13,
16980,
544,
19667,
8,
198,
31,
9288,
4129,
7,
1676,
65,
62,
448,
2505,
13,
15414,
82,
8,
6624,
352,
198,
31,
9288,
1861,
62,
448,
2505,
13,
15414,
82,
58,
16,
60,
24844,
42287,
198,
31,
9288,
1861,
62,
448,
2505,
13,
28004,
6624,
19879,
19667,
7,
7149,
8,
198,
198,
31,
9288,
4173,
13,
7783,
62,
17440,
24844,
331,
198,
198,
14468,
4242,
2,
198,
2,
2198,
14826,
286,
2746,
1303,
198,
14468,
4242,
2,
198,
198,
343,
796,
5215,
13,
1136,
62,
343,
7,
4906,
1659,
7,
19849,
4008,
198,
31,
9288,
4129,
7,
343,
13,
853,
62,
77,
4147,
8,
6624,
352,
198,
34223,
796,
4173,
13,
853,
62,
77,
4147,
58,
16,
60,
198,
31,
9288,
2124,
82,
13,
3672,
6624,
1058,
34223,
198,
31,
9288,
2124,
82,
13,
28004,
6624,
36147,
38469,
90,
43879,
2414,
30072,
198,
31,
9288,
5145,
34223,
13,
5589,
1133,
62,
9744,
198,
198,
2,
3572,
13760,
290,
869,
13760,
198,
31,
9288,
4129,
7,
343,
13,
25541,
62,
77,
4147,
8,
6624,
604,
198,
31,
9288,
4129,
7,
343,
13,
13345,
62,
77,
4147,
8,
6624,
352,
198,
198,
2,
287,
2505,
62,
19282,
198,
259,
2505,
62,
19282,
796,
4173,
13,
25541,
62,
77,
4147,
58,
16,
60,
198,
31,
9288,
287,
2505,
62,
19282,
13,
3672,
6624,
1058,
259,
2505,
62,
19282,
198,
31,
9288,
287,
2505,
62,
19282,
13,
29851,
6624,
1058,
259,
2505,
62,
19282,
198,
31,
9288,
287,
2505,
62,
19282,
13,
28004,
6624,
19879,
19667,
7,
43879,
2414,
8,
198,
31,
9288,
287,
2505,
62,
19282,
13,
17080,
6624,
34236,
198,
31,
9288,
4129,
7,
259,
2505,
62,
19282,
13,
15414,
82,
8,
6624,
362,
198,
198,
2,
503,
2505,
62,
19282,
220,
198,
448,
2505,
62,
19282,
796,
4173,
13,
25541,
62,
77,
4147,
58,
17,
60,
198,
31,
9288,
503,
2505,
62,
19282,
13,
3672,
6624,
1058,
448,
2505,
62,
19282,
198,
31,
9288,
503,
2505,
62,
19282,
13,
29851,
6624,
1058,
448,
2505,
62,
19282,
198,
31,
9288,
503,
2505,
62,
19282,
13,
28004,
6624,
19879,
19667,
7,
43879,
2414,
8,
198,
31,
9288,
503,
2505,
62,
19282,
13,
17080,
6624,
34236,
198,
31,
9288,
4129,
7,
448,
2505,
62,
19282,
13,
15414,
82,
8,
6624,
362,
198,
198,
2,
22638,
220,
198,
6649,
3008,
796,
4173,
13,
25541,
62,
77,
4147,
58,
18,
60,
198,
31,
9288,
22638,
13,
3672,
6624,
1058,
6649,
3008,
198,
31,
9288,
22638,
13,
29851,
6624,
1058,
6649,
3008,
198,
31,
9288,
22638,
13,
28004,
6624,
19879,
19667,
7,
43879,
2414,
8,
198,
31,
9288,
22638,
13,
17080,
6624,
3487,
198,
31,
9288,
4129,
7,
6649,
3008,
13,
15414,
82,
8,
6624,
362,
198,
198,
2,
15788,
220,
198,
3849,
984,
796,
4173,
13,
25541,
62,
77,
4147,
58,
19,
60,
198,
31,
9288,
15788,
13,
3672,
6624,
1058,
3849,
984,
198,
31,
9288,
15788,
13,
29851,
6624,
1058,
3849,
984,
198,
31,
9288,
15788,
13,
28004,
6624,
19879,
19667,
7,
43879,
2414,
8,
198,
31,
9288,
15788,
13,
17080,
6624,
3487,
198,
31,
9288,
4129,
7,
3849,
984,
13,
15414,
82,
8,
6624,
362,
198,
198,
2,
1366,
198,
893,
796,
4173,
13,
13345,
62,
77,
4147,
58,
16,
60,
198,
31,
9288,
331,
82,
13,
3672,
6624,
1058,
893,
198,
31,
9288,
331,
82,
13,
29851,
6624,
1058,
7890,
198,
31,
9288,
331,
82,
13,
28004,
6624,
19879,
19667,
7,
30946,
7609,
38469,
90,
43879,
2414,
30072,
198,
31,
9288,
331,
82,
13,
8612,
876,
62,
8818,
6624,
1366,
62,
22184,
198,
31,
9288,
4129,
7,
893,
13,
15414,
82,
8,
6624,
362,
198,
31,
9288,
331,
82,
13,
15414,
82,
58,
16,
60,
6624,
2124,
82,
198,
198,
2,
42287,
198,
37266,
796,
651,
62,
17440,
62,
1525,
62,
3672,
7,
343,
11,
1058,
37266,
8,
198,
31,
9288,
318,
64,
7,
37266,
11,
5215,
13,
16980,
544,
19667,
8,
198,
31,
9288,
42287,
13,
3672,
6624,
1058,
37266,
198,
31,
9288,
42287,
13,
28004,
6624,
1058,
10044,
4105,
198,
31,
9288,
4129,
7,
37266,
13,
15414,
82,
8,
6624,
604,
198,
31,
9288,
22638,
287,
42287,
13,
15414,
82,
198,
31,
9288,
15788,
287,
42287,
13,
15414,
82,
198,
31,
9288,
287,
2505,
62,
19282,
287,
42287,
13,
15414,
82,
198,
31,
9288,
503,
2505,
62,
19282,
287,
42287,
13,
15414,
82,
198,
198,
2,
299,
198,
77,
796,
651,
62,
17440,
62,
1525,
62,
3672,
7,
343,
11,
1058,
77,
8,
198,
31,
9288,
318,
64,
7,
77,
11,
5215,
13,
16980,
544,
19667,
8,
198,
31,
9288,
299,
13,
3672,
6624,
1058,
77,
198,
31,
9288,
299,
13,
28004,
6624,
19879,
19667,
7,
7149,
8,
220,
198,
31,
9288,
4129,
7,
77,
13,
15414,
82,
8,
6624,
352,
198,
31,
9288,
299,
13,
15414,
82,
58,
16,
60,
24844,
2124,
82,
198,
198,
2,
42287,
62,
35138,
198,
37266,
62,
35138,
796,
331,
82,
13,
15414,
82,
58,
17,
60,
198,
31,
9288,
318,
64,
7,
37266,
62,
35138,
11,
5215,
13,
16980,
544,
19667,
8,
198,
31,
9288,
42287,
62,
35138,
13,
28004,
6624,
19879,
19667,
7,
7149,
8,
198,
31,
9288,
4129,
7,
37266,
62,
35138,
13,
15414,
82,
8,
6624,
362,
198,
259,
16,
796,
42287,
62,
35138,
13,
15414,
82,
58,
16,
60,
198,
259,
17,
796,
42287,
62,
35138,
13,
15414,
82,
58,
17,
60,
198,
31,
9288,
357,
259,
16,
24844,
42287,
11405,
287,
17,
24844,
299,
8,
8614,
357,
259,
17,
24844,
42287,
11405,
287,
16,
24844,
299,
8,
198,
198,
31,
9288,
4173,
13,
7783,
62,
17440,
24844,
331,
82,
198,
198,
437,
628,
198,
31,
9288,
2617,
366,
265,
62,
25541,
1,
2221,
198,
198,
2,
379,
62,
25541,
62,
20688,
62,
16,
198,
343,
796,
5215,
13,
1136,
62,
343,
7,
4906,
1659,
7,
265,
62,
25541,
62,
20688,
62,
16,
4008,
198,
72,
796,
651,
62,
17440,
62,
1525,
62,
3672,
7,
343,
11,
1058,
72,
8,
198,
1186,
796,
651,
62,
17440,
62,
1525,
62,
3672,
7,
343,
11,
1058,
1186,
8,
198,
31,
9288,
318,
64,
7,
1186,
11,
5215,
13,
8645,
876,
22203,
14134,
19667,
8,
198,
31,
9288,
1005,
13,
29851,
6624,
1058,
87,
198,
31,
9288,
4129,
7,
1186,
13,
15414,
82,
8,
6624,
362,
198,
31,
9288,
318,
64,
7,
1186,
13,
15414,
82,
58,
16,
4357,
5215,
13,
16980,
544,
19667,
8,
1303,
7499,
4613,
657,
13,
20,
198,
31,
9288,
1005,
13,
15414,
82,
58,
17,
60,
24844,
1312,
198,
265,
796,
1005,
13,
8612,
876,
62,
8818,
198,
31,
9288,
318,
64,
7,
265,
11,
5215,
13,
46770,
2953,
20575,
20900,
8,
198,
31,
9288,
379,
13,
17080,
6624,
275,
1142,
280,
15516,
198,
198,
2,
379,
62,
25541,
62,
20688,
62,
17,
198,
343,
796,
5215,
13,
1136,
62,
343,
7,
4906,
1659,
7,
265,
62,
25541,
62,
20688,
62,
17,
4008,
198,
72,
796,
651,
62,
17440,
62,
1525,
62,
3672,
7,
343,
11,
1058,
72,
8,
198,
1186,
796,
651,
62,
17440,
62,
1525,
62,
3672,
7,
343,
11,
1058,
1186,
8,
198,
31,
9288,
318,
64,
7,
1186,
11,
5215,
13,
8645,
876,
22203,
14134,
19667,
8,
198,
31,
9288,
1005,
13,
29851,
6624,
1058,
87,
198,
31,
9288,
4129,
7,
1186,
13,
15414,
82,
8,
6624,
513,
198,
31,
9288,
318,
64,
7,
1186,
13,
15414,
82,
58,
16,
4357,
5215,
13,
16980,
544,
19667,
8,
1303,
7499,
4613,
657,
13,
20,
198,
31,
9288,
318,
64,
7,
1186,
13,
15414,
82,
58,
17,
4357,
5215,
13,
16980,
544,
19667,
8,
1303,
7499,
4613,
1058,
88,
198,
31,
9288,
1005,
13,
15414,
82,
58,
18,
60,
24844,
1312,
198,
265,
796,
1005,
13,
8612,
876,
62,
8818,
198,
31,
9288,
318,
64,
7,
265,
11,
5215,
13,
14134,
2953,
20575,
20900,
8,
198,
265,
17,
796,
379,
13,
33885,
198,
31,
9288,
318,
64,
7,
265,
17,
11,
5215,
13,
46770,
2953,
20575,
20900,
8,
198,
31,
9288,
379,
17,
13,
17080,
6624,
275,
1142,
280,
15516,
198,
198,
437,
628,
198,
31,
9288,
2617,
366,
265,
62,
13345,
1,
2221,
198,
198,
2,
379,
62,
13345,
62,
20688,
62,
16,
198,
343,
796,
5215,
13,
1136,
62,
343,
7,
4906,
1659,
7,
265,
62,
13345,
62,
20688,
62,
16,
4008,
198,
72,
796,
651,
62,
17440,
62,
1525,
62,
3672,
7,
343,
11,
1058,
72,
8,
198,
1186,
796,
651,
62,
17440,
62,
1525,
62,
3672,
7,
343,
11,
1058,
1186,
8,
198,
31,
9288,
318,
64,
7,
1186,
11,
5215,
13,
8645,
876,
22203,
14134,
19667,
8,
198,
31,
9288,
1005,
13,
29851,
6624,
1058,
87,
198,
31,
9288,
4129,
7,
1186,
13,
15414,
82,
8,
6624,
362,
198,
31,
9288,
318,
64,
7,
1186,
13,
15414,
82,
58,
16,
4357,
5215,
13,
16980,
544,
19667,
8,
1303,
7499,
4613,
657,
13,
20,
198,
31,
9288,
1005,
13,
15414,
82,
58,
17,
60,
24844,
1312,
198,
265,
796,
1005,
13,
8612,
876,
62,
8818,
198,
31,
9288,
318,
64,
7,
265,
11,
5215,
13,
14134,
2953,
20575,
20900,
8,
198,
31,
9288,
379,
13,
33885,
6624,
22944,
198,
198,
2,
265,
62,
13345,
62,
20688,
62,
17,
198,
343,
796,
5215,
13,
1136,
62,
343,
7,
4906,
1659,
7,
265,
62,
13345,
62,
20688,
62,
17,
4008,
198,
72,
796,
651,
62,
17440,
62,
1525,
62,
3672,
7,
343,
11,
1058,
72,
8,
198,
1186,
796,
651,
62,
17440,
62,
1525,
62,
3672,
7,
343,
11,
1058,
1186,
8,
198,
31,
9288,
318,
64,
7,
1186,
11,
5215,
13,
8645,
876,
22203,
14134,
19667,
8,
198,
31,
9288,
1005,
13,
29851,
6624,
1058,
87,
198,
31,
9288,
4129,
7,
1186,
13,
15414,
82,
8,
6624,
513,
198,
31,
9288,
318,
64,
7,
1186,
13,
15414,
82,
58,
16,
4357,
5215,
13,
16980,
544,
19667,
8,
1303,
7499,
4613,
657,
13,
20,
198,
31,
9288,
318,
64,
7,
1186,
13,
15414,
82,
58,
16,
4357,
5215,
13,
16980,
544,
19667,
8,
1303,
7499,
4613,
657,
13,
20,
198,
31,
9288,
318,
64,
7,
1186,
13,
15414,
82,
58,
17,
4357,
5215,
13,
16980,
544,
19667,
8,
1303,
7499,
4613,
1058,
88,
198,
31,
9288,
1005,
13,
15414,
82,
58,
18,
60,
24844,
1312,
198,
265,
796,
1005,
13,
8612,
876,
62,
8818,
198,
31,
9288,
318,
64,
7,
265,
11,
5215,
13,
14134,
2953,
20575,
20900,
8,
198,
265,
17,
796,
379,
13,
33885,
198,
31,
9288,
318,
64,
7,
265,
17,
11,
5215,
13,
14134,
2953,
20575,
20900,
8,
198,
31,
9288,
379,
17,
13,
33885,
6624,
22944,
198,
198,
437,
628,
198,
31,
9288,
2617,
366,
2213,
6021,
814,
23025,
1,
2221,
198,
198,
31,
5235,
357,
12708,
11,
814,
82,
8,
2163,
2318,
7,
87,
8,
198,
220,
220,
220,
1441,
2124,
198,
437,
198,
198,
31,
9288,
5215,
13,
1136,
62,
25811,
7,
4906,
1659,
7,
5657,
29720,
11659,
62,
67,
10203,
198,
198,
31,
5235,
357,
12708,
8,
2163,
2318,
7,
87,
8,
198,
220,
220,
220,
1441,
2124,
198,
437,
198,
198,
31,
9288,
5145,
13746,
13,
1136,
62,
25811,
7,
4906,
1659,
7,
5657,
29720,
11659,
62,
67,
10203,
198,
198,
437,
198,
198,
31,
9288,
2617,
366,
3919,
474,
43640,
12940,
23025,
1,
2221,
198,
198,
31,
5235,
357,
12708,
11,
645,
73,
377,
9607,
4891,
8,
2163,
2318,
7,
87,
8,
198,
220,
220,
220,
1441,
2124,
198,
437,
198,
198,
31,
9288,
5145,
13746,
13,
1136,
62,
25811,
7,
4906,
1659,
7,
5657,
29720,
23870,
62,
73,
43640,
62,
77,
4147,
198,
198,
31,
5235,
357,
12708,
8,
2163,
2318,
7,
87,
8,
198,
220,
220,
220,
1441,
2124,
198,
437,
198,
198,
31,
9288,
5215,
13,
1136,
62,
25811,
7,
4906,
1659,
7,
5657,
29720,
23870,
62,
73,
43640,
62,
77,
4147,
198,
198,
437,
628,
198,
198,
31,
9288,
2617,
366,
27432,
540,
10007,
1,
2221,
198,
198,
31,
5235,
357,
12708,
8,
2163,
22944,
3419,
198,
220,
220,
220,
2488,
17143,
262,
8326,
3712,
43879,
2414,
198,
220,
220,
220,
1441,
262,
8326,
198,
437,
198,
198,
343,
796,
5215,
13,
1136,
62,
343,
7,
4906,
1659,
7,
21943,
4008,
198,
1169,
8326,
796,
651,
62,
17440,
62,
1525,
62,
3672,
7,
343,
11,
1058,
1169,
8326,
8,
198,
31,
9288,
318,
64,
7,
1169,
8326,
11,
5215,
13,
44077,
540,
36301,
19667,
8,
198,
31,
9288,
4173,
13,
7783,
62,
17440,
24844,
262,
8326,
198,
198,
437,
198,
198,
31,
9288,
2617,
366,
1904,
286,
705,
437,
29653,
2221,
198,
198,
31,
5235,
357,
12708,
8,
2163,
22944,
3419,
198,
220,
220,
220,
2124,
796,
685,
16,
11,
362,
11,
513,
11,
604,
11,
642,
11,
718,
60,
198,
220,
220,
220,
331,
796,
2124,
58,
18,
25,
437,
60,
198,
220,
220,
220,
1441,
331,
198,
437,
198,
198,
2220,
62,
27568,
62,
12543,
2733,
3419,
198,
198,
31,
9288,
22944,
3419,
6624,
685,
18,
11,
604,
11,
642,
11,
718,
60,
198,
198,
437,
198,
198,
31,
9288,
2617,
366,
15390,
37336,
1,
2221,
198,
220,
220,
220,
33245,
796,
314,
9864,
13712,
3419,
198,
220,
220,
220,
3601,
7,
952,
11,
2488,
15390,
2746,
8,
198,
220,
220,
220,
2488,
9288,
10903,
7,
20657,
0,
7,
952,
4008,
6624,
366,
1820,
10314,
59,
77,
1,
198,
437,
628,
198,
437,
1303,
2488,
9288,
2617,
366,
12708,
32643,
1,
198
] | 2.407594 | 3,582 |
using HelloCExecutable
using Test
@testset "hello_world" begin
@test hello_world() == "Hello, Goma!"
end | [
3500,
18435,
34,
23002,
18187,
198,
3500,
6208,
198,
198,
31,
9288,
2617,
366,
31373,
62,
6894,
1,
2221,
198,
220,
220,
220,
2488,
9288,
23748,
62,
6894,
3419,
6624,
366,
15496,
11,
402,
6086,
2474,
198,
437
] | 2.868421 | 38 |
module LorenzMapDefinition
using ..PwDynamicDefinition: PwMap
using ValidatedNumerics
export LorenzMap
struct LorenzMap
D::PwMap
end
LorenzMap(θ, α) = PwMap([x->θ*abs(x-0.5)^α, x->1-θ*abs(x-0.5)^α],
[@interval(0), @interval(0.5), @interval(1)])
import ..DynamicDefinition: derivative
end
| [
21412,
15639,
27305,
13912,
36621,
198,
198,
3500,
11485,
47,
86,
44090,
36621,
25,
350,
86,
13912,
198,
3500,
3254,
41475,
45,
6975,
873,
628,
198,
198,
39344,
15639,
27305,
13912,
198,
198,
7249,
15639,
27305,
13912,
198,
220,
220,
220,
360,
3712,
47,
86,
13912,
198,
437,
198,
198,
43,
382,
27305,
13912,
7,
138,
116,
11,
26367,
8,
796,
350,
86,
13912,
26933,
87,
3784,
138,
116,
9,
8937,
7,
87,
12,
15,
13,
20,
8,
61,
17394,
11,
2124,
3784,
16,
12,
138,
116,
9,
8937,
7,
87,
12,
15,
13,
20,
8,
61,
17394,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
685,
31,
3849,
2100,
7,
15,
828,
2488,
3849,
2100,
7,
15,
13,
20,
828,
2488,
3849,
2100,
7,
16,
8,
12962,
198,
198,
11748,
11485,
44090,
36621,
25,
27255,
628,
198,
198,
437,
198
] | 2.090909 | 154 |
using Documenter, MIToS
include("literate.jl")
makedocs(
doctest = true,
format = :html,
sitename = "MIToS",
authors = "Diego Javier Zea",
modules = [MIToS],
pages = [
"Home" => "index.md",
"Installation.md",
"Example.md",
"Modules" => [ "MSA.md",
"Information.md",
"SIFTS.md",
"PDB.md",
"Pfam.md" ],
"Scripts.md",
"API" => [ "MSA_API.md",
"Information_API.md",
"SIFTS_API.md",
"PDB_API.md",
"Pfam_API.md",
"Utils_API.md" ],
"Cookbook" => [ "01_Change_B_factors.md",
"02_Linking_structural_and_evolutionary_information.md"]
]
)
deploydocs(
repo = "github.com/diegozea/MIToS.jl.git",
target = "build",
deps = nothing,
make = nothing
)
| [
3500,
16854,
263,
11,
17168,
34049,
198,
198,
17256,
7203,
17201,
378,
13,
20362,
4943,
198,
198,
76,
4335,
420,
82,
7,
198,
220,
220,
220,
10412,
395,
796,
2081,
11,
198,
220,
220,
220,
5794,
796,
1058,
6494,
11,
198,
220,
220,
220,
1650,
12453,
796,
366,
36393,
34049,
1600,
198,
220,
220,
220,
7035,
796,
366,
32423,
2188,
44492,
9033,
64,
1600,
198,
220,
220,
220,
13103,
796,
685,
36393,
34049,
4357,
198,
220,
220,
220,
5468,
796,
685,
198,
220,
220,
220,
220,
220,
220,
220,
366,
16060,
1,
5218,
366,
9630,
13,
9132,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
30838,
13,
9132,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
16281,
13,
9132,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
5841,
5028,
1,
5218,
685,
220,
366,
44,
4090,
13,
9132,
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,
366,
21918,
13,
9132,
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,
366,
50,
5064,
4694,
13,
9132,
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,
366,
5760,
33,
13,
9132,
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,
366,
47,
44769,
13,
9132,
1,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
366,
7391,
82,
13,
9132,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
17614,
1,
5218,
685,
220,
366,
44,
4090,
62,
17614,
13,
9132,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
21918,
62,
17614,
13,
9132,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
50,
5064,
4694,
62,
17614,
13,
9132,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
5760,
33,
62,
17614,
13,
9132,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
47,
44769,
62,
17614,
13,
9132,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
18274,
4487,
62,
17614,
13,
9132,
1,
220,
220,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
366,
28937,
2070,
1,
5218,
685,
366,
486,
62,
19400,
62,
33,
62,
22584,
669,
13,
9132,
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,
366,
2999,
62,
43,
8040,
62,
7249,
1523,
62,
392,
62,
1990,
2122,
560,
62,
17018,
13,
9132,
8973,
198,
220,
220,
220,
2361,
198,
8,
198,
198,
2934,
1420,
31628,
7,
198,
220,
220,
220,
29924,
220,
220,
796,
366,
12567,
13,
785,
14,
11979,
2188,
2736,
64,
14,
36393,
34049,
13,
20362,
13,
18300,
1600,
198,
220,
220,
220,
2496,
796,
366,
11249,
1600,
198,
220,
220,
220,
390,
862,
220,
220,
796,
2147,
11,
198,
220,
220,
220,
787,
220,
220,
796,
2147,
198,
8,
198
] | 1.644781 | 594 |
##############################################################################################
module TestDeSolvers
##############################################################################################
##############################################################################################
# imports and exports
using DataAssimilationBenchmarks.DeSolvers, DataAssimilationBenchmarks.L96
using LsqFit
##############################################################################################
##############################################################################################
# Define test function for analytical verification of discretization error
VecA = Union{Vector{Float64}, SubArray{Float64, 1}}
ParamDict = Union{Dict{String, Array{Float64}}, Dict{String, Vector{Float64}}}
##############################################################################################
##############################################################################################
function exponentialODE(x::T, t::Float64, dx_params::ParamDict) where {T <: VecA}
# Wrapper for making a vector form of the exponential function for the DE solvers
[exp(t)]
end
##############################################################################################
# Define auxiliary function to compute the difference of the simulated integral versus
# the analytical value
function expDiscretizationError(step_model!, h)
# continuous time length of the integration
tanl = 0.1
# discrete integration steps
fore_steps = convert(Int64, tanl/h)
time_steps = LinRange(0, tanl, fore_steps + 1)
# initial data for the exponential function
x = [1.0]
# set the kwargs for the integration scheme
# with empty values for the uneccessary parameters
diffusion = 0.0
dx_params = Dict{String, Array{Float64}}()
kwargs = Dict{String, Any}(
"h" => h,
"diffusion" => diffusion,
"dx_params" => dx_params,
"dx_dt" => exponentialODE,
)
for i in 1:fore_steps
step_model!(x, time_steps[i], kwargs)
end
# find the absolute difference of the apprximate integral from the built-in exponential
abs(x[1] - exp(tanl))
end
##############################################################################################
# Define auxiliary function to compute the least-squares estimated order of convergence
function calculateOrderConvergence(step_model!)
# set step sizes in increasing order for log-10 log-10 analysis
h_range = [0.005, 0.01, 0.05, 0.1]
error_range = Vector{Float64}(undef, length(h_range))
# loop the discretization and calculate the errors
for i in 1:length(h_range)
error_range[i] = expDiscretizationError(step_model!, h_range[i])
end
# convert the error and the step sizes to log-10
h_range_log10 = log10.(h_range)
error_range_log10 = log10.(error_range)
function model_lsq_squares(x,p)
# define a function object to vary parameters p
@. p[1] + p[2]*x
end
# fit the best-fit line and return coefficients
fit = curve_fit(model_lsq_squares, h_range_log10, error_range_log10, [1.0, 1.0])
coef(fit)
end
##############################################################################################
# Wrapper function to be supplied to runtests
function testEMExponential()
coef = calculateOrderConvergence(em_step!)
if abs(coef[2] - 1.0) > 0.1
false
else
true
end
end
##############################################################################################
# Wrapper function to be supplied to runtests
function testRKExponential()
coef = calculateOrderConvergence(rk4_step!)
if abs(coef[2] - 4.0) > 0.1
false
else
true
end
end
##############################################################################################
# end module
end
| [
29113,
29113,
14468,
7804,
4242,
2235,
198,
21412,
6208,
5005,
36949,
690,
198,
29113,
29113,
14468,
7804,
4242,
2235,
198,
29113,
29113,
14468,
7804,
4242,
2235,
198,
2,
17944,
290,
15319,
198,
3500,
6060,
8021,
42963,
44199,
14306,
13,
5005,
36949,
690,
11,
6060,
8021,
42963,
44199,
14306,
13,
43,
4846,
198,
3500,
406,
31166,
31805,
198,
198,
29113,
29113,
14468,
7804,
4242,
2235,
198,
29113,
29113,
14468,
7804,
4242,
2235,
198,
2,
2896,
500,
1332,
2163,
329,
30063,
19637,
286,
1221,
1186,
1634,
4049,
198,
53,
721,
32,
796,
4479,
90,
38469,
90,
43879,
2414,
5512,
3834,
19182,
90,
43879,
2414,
11,
352,
11709,
198,
22973,
35,
713,
796,
4479,
90,
35,
713,
90,
10100,
11,
15690,
90,
43879,
2414,
92,
5512,
360,
713,
90,
10100,
11,
20650,
90,
43879,
2414,
42535,
198,
198,
29113,
29113,
14468,
7804,
4242,
2235,
198,
29113,
29113,
14468,
7804,
4242,
2235,
198,
198,
8818,
39682,
16820,
7,
87,
3712,
51,
11,
256,
3712,
43879,
2414,
11,
44332,
62,
37266,
3712,
22973,
35,
713,
8,
810,
1391,
51,
1279,
25,
38692,
32,
92,
198,
220,
220,
220,
1303,
27323,
2848,
329,
1642,
257,
15879,
1296,
286,
262,
39682,
2163,
329,
262,
5550,
1540,
690,
198,
220,
220,
220,
685,
11201,
7,
83,
15437,
198,
437,
628,
198,
29113,
29113,
14468,
7804,
4242,
2235,
198,
2,
2896,
500,
37419,
2163,
284,
24061,
262,
3580,
286,
262,
28590,
19287,
9051,
198,
2,
262,
30063,
1988,
198,
198,
8818,
1033,
15642,
1186,
1634,
12331,
7,
9662,
62,
19849,
28265,
289,
8,
198,
220,
220,
220,
1303,
12948,
640,
4129,
286,
262,
11812,
198,
220,
220,
220,
25706,
75,
796,
657,
13,
16,
628,
220,
220,
220,
1303,
28810,
11812,
4831,
198,
220,
220,
220,
1674,
62,
20214,
796,
10385,
7,
5317,
2414,
11,
25706,
75,
14,
71,
8,
198,
220,
220,
220,
640,
62,
20214,
796,
5164,
17257,
7,
15,
11,
25706,
75,
11,
1674,
62,
20214,
1343,
352,
8,
628,
220,
220,
220,
1303,
4238,
1366,
329,
262,
39682,
2163,
198,
220,
220,
220,
2124,
796,
685,
16,
13,
15,
60,
628,
220,
220,
220,
1303,
900,
262,
479,
86,
22046,
329,
262,
11812,
7791,
198,
220,
220,
220,
1303,
351,
6565,
3815,
329,
262,
17809,
1591,
560,
10007,
198,
220,
220,
220,
44258,
796,
657,
13,
15,
198,
220,
220,
220,
44332,
62,
37266,
796,
360,
713,
90,
10100,
11,
15690,
90,
43879,
2414,
11709,
3419,
198,
220,
220,
220,
479,
86,
22046,
796,
360,
713,
90,
10100,
11,
4377,
92,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
71,
1,
5218,
289,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
26069,
4241,
1,
5218,
44258,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
34350,
62,
37266,
1,
5218,
44332,
62,
37266,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
34350,
62,
28664,
1,
5218,
39682,
16820,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
329,
1312,
287,
352,
25,
754,
62,
20214,
198,
220,
220,
220,
220,
220,
220,
220,
2239,
62,
19849,
0,
7,
87,
11,
640,
62,
20214,
58,
72,
4357,
479,
86,
22046,
8,
198,
220,
220,
220,
886,
628,
220,
220,
220,
1303,
1064,
262,
4112,
3580,
286,
262,
598,
40914,
1920,
19287,
422,
262,
3170,
12,
259,
39682,
198,
220,
220,
220,
2352,
7,
87,
58,
16,
60,
532,
1033,
7,
38006,
75,
4008,
198,
437,
628,
198,
29113,
29113,
14468,
7804,
4242,
2235,
198,
2,
2896,
500,
37419,
2163,
284,
24061,
262,
1551,
12,
16485,
3565,
6108,
1502,
286,
40826,
198,
198,
8818,
15284,
18743,
3103,
332,
12745,
7,
9662,
62,
19849,
8133,
198,
220,
220,
220,
1303,
900,
2239,
10620,
287,
3649,
1502,
329,
2604,
12,
940,
2604,
12,
940,
3781,
198,
220,
220,
220,
289,
62,
9521,
796,
685,
15,
13,
22544,
11,
657,
13,
486,
11,
657,
13,
2713,
11,
657,
13,
16,
60,
198,
220,
220,
220,
4049,
62,
9521,
796,
20650,
90,
43879,
2414,
92,
7,
917,
891,
11,
4129,
7,
71,
62,
9521,
4008,
628,
220,
220,
220,
1303,
9052,
262,
1221,
1186,
1634,
290,
15284,
262,
8563,
198,
220,
220,
220,
329,
1312,
287,
352,
25,
13664,
7,
71,
62,
9521,
8,
198,
220,
220,
220,
220,
220,
220,
220,
4049,
62,
9521,
58,
72,
60,
796,
1033,
15642,
1186,
1634,
12331,
7,
9662,
62,
19849,
28265,
289,
62,
9521,
58,
72,
12962,
198,
220,
220,
220,
886,
628,
220,
220,
220,
1303,
10385,
262,
4049,
290,
262,
2239,
10620,
284,
2604,
12,
940,
198,
220,
220,
220,
289,
62,
9521,
62,
6404,
940,
796,
2604,
940,
12195,
71,
62,
9521,
8,
198,
220,
220,
220,
4049,
62,
9521,
62,
6404,
940,
796,
2604,
940,
12195,
18224,
62,
9521,
8,
628,
220,
220,
220,
2163,
2746,
62,
7278,
80,
62,
16485,
3565,
7,
87,
11,
79,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
8160,
257,
2163,
2134,
284,
7565,
10007,
279,
198,
220,
220,
220,
220,
220,
220,
220,
2488,
13,
279,
58,
16,
60,
1343,
279,
58,
17,
60,
9,
87,
198,
220,
220,
220,
886,
628,
220,
220,
220,
1303,
4197,
262,
1266,
12,
11147,
1627,
290,
1441,
44036,
198,
220,
220,
220,
4197,
796,
12133,
62,
11147,
7,
19849,
62,
7278,
80,
62,
16485,
3565,
11,
289,
62,
9521,
62,
6404,
940,
11,
4049,
62,
9521,
62,
6404,
940,
11,
685,
16,
13,
15,
11,
352,
13,
15,
12962,
198,
220,
220,
220,
763,
891,
7,
11147,
8,
198,
437,
628,
198,
198,
29113,
29113,
14468,
7804,
4242,
2235,
198,
2,
27323,
2848,
2163,
284,
307,
14275,
284,
1057,
41989,
198,
198,
8818,
1332,
3620,
16870,
35470,
3419,
198,
220,
220,
220,
763,
891,
796,
15284,
18743,
3103,
332,
12745,
7,
368,
62,
9662,
8133,
628,
220,
220,
220,
611,
2352,
7,
1073,
891,
58,
17,
60,
532,
352,
13,
15,
8,
1875,
657,
13,
16,
198,
220,
220,
220,
220,
220,
220,
220,
3991,
198,
220,
220,
220,
2073,
198,
220,
220,
220,
220,
220,
220,
220,
2081,
198,
220,
220,
220,
886,
198,
437,
628,
198,
29113,
29113,
14468,
7804,
4242,
2235,
198,
2,
27323,
2848,
2163,
284,
307,
14275,
284,
1057,
41989,
198,
198,
8818,
1332,
49,
42,
16870,
35470,
3419,
198,
220,
220,
220,
763,
891,
796,
15284,
18743,
3103,
332,
12745,
7,
81,
74,
19,
62,
9662,
8133,
628,
220,
220,
220,
611,
2352,
7,
1073,
891,
58,
17,
60,
532,
604,
13,
15,
8,
1875,
657,
13,
16,
198,
220,
220,
220,
220,
220,
220,
220,
3991,
198,
220,
220,
220,
2073,
198,
220,
220,
220,
220,
220,
220,
220,
2081,
198,
220,
220,
220,
886,
198,
437,
628,
198,
29113,
29113,
14468,
7804,
4242,
2235,
198,
2,
886,
8265,
198,
198,
437,
198
] | 3.442994 | 1,149 |
# Mu' = f
struct SteadyStateProblem{uType,isinplace,P,F} <: AbstractSteadyStateProblem{uType,isinplace}
f::F
u0::uType
p::P
@add_kwonly function SteadyStateProblem{iip}(f::AbstractODEFunction{iip},
u0,p=nothing) where {iip}
new{typeof(u0),isinplace(f),typeof(p),typeof(f)}(f,u0,p)
end
function SteadyStateProblem{iip}(f,u0,p=nothing) where iip
SteadyStateProblem(ODEFunction{iip}(f),u0,p)
end
end
function SteadyStateProblem(f::AbstractODEFunction,u0,p=nothing;kwargs...)
SteadyStateProblem{isinplace(f)}(f,u0,p;kwargs...)
end
function SteadyStateProblem(f,u0,p=nothing;kwargs...)
SteadyStateProblem(ODEFunction(f),u0,p;kwargs...)
end
SteadyStateProblem(prob::AbstractODEProblem) =
SteadyStateProblem{isinplace(prob)}(prob.f,prob.u0,prob.p)
| [
2,
8252,
6,
796,
277,
198,
7249,
45445,
88,
9012,
40781,
90,
84,
6030,
11,
45763,
5372,
11,
47,
11,
37,
92,
1279,
25,
27741,
7447,
4597,
9012,
40781,
90,
84,
6030,
11,
45763,
5372,
92,
198,
220,
277,
3712,
37,
198,
220,
334,
15,
3712,
84,
6030,
198,
220,
279,
3712,
47,
198,
220,
2488,
2860,
62,
46265,
8807,
2163,
45445,
88,
9012,
40781,
90,
72,
541,
92,
7,
69,
3712,
23839,
16820,
22203,
90,
72,
541,
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,
220,
220,
220,
220,
220,
220,
334,
15,
11,
79,
28,
22366,
8,
810,
1391,
72,
541,
92,
198,
220,
220,
220,
649,
90,
4906,
1659,
7,
84,
15,
828,
45763,
5372,
7,
69,
828,
4906,
1659,
7,
79,
828,
4906,
1659,
7,
69,
38165,
7,
69,
11,
84,
15,
11,
79,
8,
198,
220,
886,
628,
220,
2163,
45445,
88,
9012,
40781,
90,
72,
541,
92,
7,
69,
11,
84,
15,
11,
79,
28,
22366,
8,
810,
1312,
541,
198,
220,
220,
220,
45445,
88,
9012,
40781,
7,
16820,
22203,
90,
72,
541,
92,
7,
69,
828,
84,
15,
11,
79,
8,
198,
220,
886,
198,
437,
198,
198,
8818,
45445,
88,
9012,
40781,
7,
69,
3712,
23839,
16820,
22203,
11,
84,
15,
11,
79,
28,
22366,
26,
46265,
22046,
23029,
198,
220,
45445,
88,
9012,
40781,
90,
45763,
5372,
7,
69,
38165,
7,
69,
11,
84,
15,
11,
79,
26,
46265,
22046,
23029,
198,
437,
198,
198,
8818,
45445,
88,
9012,
40781,
7,
69,
11,
84,
15,
11,
79,
28,
22366,
26,
46265,
22046,
23029,
198,
220,
45445,
88,
9012,
40781,
7,
16820,
22203,
7,
69,
828,
84,
15,
11,
79,
26,
46265,
22046,
23029,
198,
437,
198,
198,
7447,
4597,
9012,
40781,
7,
1676,
65,
3712,
23839,
16820,
40781,
8,
796,
198,
220,
220,
220,
220,
220,
45445,
88,
9012,
40781,
90,
45763,
5372,
7,
1676,
65,
38165,
7,
1676,
65,
13,
69,
11,
1676,
65,
13,
84,
15,
11,
1676,
65,
13,
79,
8,
198
] | 2.233062 | 369 |
include("./Functions.jl")
using Functions
val = BigInt(2) ^ BigInt(1000)
println(digitSum(val))
| [
17256,
7,
1911,
14,
24629,
2733,
13,
20362,
4943,
220,
198,
3500,
40480,
198,
198,
2100,
796,
4403,
5317,
7,
17,
8,
10563,
4403,
5317,
7,
12825,
8,
198,
35235,
7,
27003,
13065,
7,
2100,
4008,
198
] | 2.648649 | 37 |
using Base.Test, EPInference, ExpFamily
# Proposing samples from a wide spherical gaussian.
srand(123)
C = [1.0 0.5; 0.5 1.0]
P = 2/3 * [2 -1; -1 2]
m = [1.0;-0.5]
gNP = GaussianNatParam(mean=m, cov=C)
gNPprop = ones(GaussianNatParam, 2)/20 # division INFLATES the variance
(samples,w) = impsampling(x->loglik(gNP,x), gNPprop, 10000)
@test isapprox(sum(samples[:,i]*w[i] for i in 1:length(w)), m, rtol=0.05)
| [
3500,
7308,
13,
14402,
11,
14724,
818,
4288,
11,
5518,
24094,
198,
198,
2,
1041,
32927,
8405,
422,
257,
3094,
43180,
31986,
31562,
13,
198,
198,
82,
25192,
7,
10163,
8,
198,
198,
34,
220,
796,
685,
16,
13,
15,
657,
13,
20,
26,
657,
13,
20,
352,
13,
15,
60,
198,
47,
220,
796,
362,
14,
18,
1635,
685,
17,
532,
16,
26,
532,
16,
362,
60,
198,
76,
220,
796,
685,
16,
13,
15,
26,
12,
15,
13,
20,
60,
198,
198,
70,
22182,
220,
220,
220,
220,
796,
12822,
31562,
47849,
22973,
7,
32604,
28,
76,
11,
39849,
28,
34,
8,
198,
70,
22182,
22930,
796,
3392,
7,
35389,
31562,
47849,
22973,
11,
362,
20679,
1238,
1303,
7297,
3268,
3697,
29462,
262,
24198,
198,
198,
7,
82,
12629,
11,
86,
8,
796,
848,
37687,
11347,
7,
87,
3784,
6404,
46965,
7,
70,
22182,
11,
87,
828,
308,
22182,
22930,
11,
33028,
8,
198,
198,
31,
9288,
318,
1324,
13907,
7,
16345,
7,
82,
12629,
58,
45299,
72,
60,
9,
86,
58,
72,
60,
329,
1312,
287,
352,
25,
13664,
7,
86,
36911,
285,
11,
374,
83,
349,
28,
15,
13,
2713,
8,
198
] | 2.147959 | 196 |
# Automatically generated using Clang.jl wrap_c, version 0.0.0
import Base.zero
export
unix,
linux,
AV_TIME_BASE,
AV_NOPTS_VALUE,
AV_FOURCC_MAX_STRING_SIZE,
AVMediaType,
AVMEDIA_TYPE_UNKNOWN,
AVMEDIA_TYPE_VIDEO,
AVMEDIA_TYPE_AUDIO,
AVMEDIA_TYPE_DATA,
AVMEDIA_TYPE_SUBTITLE,
AVMEDIA_TYPE_ATTACHMENT,
AVMEDIA_TYPE_NB,
AVPictureType,
AV_PICTURE_TYPE_NONE,
AV_PICTURE_TYPE_I,
AV_PICTURE_TYPE_P,
AV_PICTURE_TYPE_B,
AV_PICTURE_TYPE_S,
AV_PICTURE_TYPE_SI,
AV_PICTURE_TYPE_SP,
AV_PICTURE_TYPE_BI,
AV_BUFFER_FLAG_READONLY,
AVBuffer,
AVBufferRef,
AVBufferPool,
AV_DICT_MATCH_CASE,
AV_DICT_IGNORE_SUFFIX,
AV_DICT_DONT_STRDUP_KEY,
AV_DICT_DONT_STRDUP_VAL,
AV_DICT_DONT_OVERWRITE,
AV_DICT_APPEND,
AV_DICT_MULTIKEY,
AVDictionaryEntry,
AVDictionary,
AVFifoBuffer,
AV_NUM_DATA_POINTERS,
AV_FRAME_FLAG_CORRUPT,
AV_FRAME_FLAG_DISCARD,
AVFrameSideDataType,
AV_FRAME_DATA_PANSCAN,
AV_FRAME_DATA_A53_CC,
AV_FRAME_DATA_STEREO3D,
AV_FRAME_DATA_MATRIXENCODING,
AV_FRAME_DATA_DOWNMIX_INFO,
AV_FRAME_DATA_REPLAYGAIN,
AV_FRAME_DATA_DISPLAYMATRIX,
AV_FRAME_DATA_AFD,
AV_FRAME_DATA_MOTION_VECTORS,
AV_FRAME_DATA_SKIP_SAMPLES,
AV_FRAME_DATA_AUDIO_SERVICE_TYPE,
AV_FRAME_DATA_MASTERING_DISPLAY_METADATA,
AV_FRAME_DATA_GOP_TIMECODE,
AV_FRAME_DATA_SPHERICAL,
AV_FRAME_DATA_CONTENT_LIGHT_LEVEL,
AV_FRAME_DATA_ICC_PROFILE,
AV_FRAME_DATA_QP_TABLE_PROPERTIES,
AV_FRAME_DATA_QP_TABLE_DATA,
AV_FRAME_DATA_S12M_TIMECODE,
AVActiveFormatDescription,
AV_AFD_SAME,
AV_AFD_4_3,
AV_AFD_16_9,
AV_AFD_14_9,
AV_AFD_4_3_SP_14_9,
AV_AFD_16_9_SP_14_9,
AV_AFD_SP_4_3,
AVFrameSideData,
AVRational,
AVColorRange,
AVCOL_RANGE_UNSPECIFIED,
AVCOL_RANGE_MPEG,
AVCOL_RANGE_JPEG,
AVCOL_RANGE_NB,
AVColorPrimaries,
AVCOL_PRI_RESERVED0,
AVCOL_PRI_BT709,
AVCOL_PRI_UNSPECIFIED,
AVCOL_PRI_RESERVED,
AVCOL_PRI_BT470M,
AVCOL_PRI_BT470BG,
AVCOL_PRI_SMPTE170M,
AVCOL_PRI_SMPTE240M,
AVCOL_PRI_FILM,
AVCOL_PRI_BT2020,
AVCOL_PRI_SMPTE428,
AVCOL_PRI_SMPTEST428_1,
AVCOL_PRI_SMPTE431,
AVCOL_PRI_SMPTE432,
AVCOL_PRI_JEDEC_P22,
AVCOL_PRI_NB,
AVColorTransferCharacteristic,
AVCOL_TRC_RESERVED0,
AVCOL_TRC_BT709,
AVCOL_TRC_UNSPECIFIED,
AVCOL_TRC_RESERVED,
AVCOL_TRC_GAMMA22,
AVCOL_TRC_GAMMA28,
AVCOL_TRC_SMPTE170M,
AVCOL_TRC_SMPTE240M,
AVCOL_TRC_LINEAR,
AVCOL_TRC_LOG,
AVCOL_TRC_LOG_SQRT,
AVCOL_TRC_IEC61966_2_4,
AVCOL_TRC_BT1361_ECG,
AVCOL_TRC_IEC61966_2_1,
AVCOL_TRC_BT2020_10,
AVCOL_TRC_BT2020_12,
AVCOL_TRC_SMPTE2084,
AVCOL_TRC_SMPTEST2084,
AVCOL_TRC_SMPTE428,
AVCOL_TRC_SMPTEST428_1,
AVCOL_TRC_ARIB_STD_B67,
AVCOL_TRC_NB,
AVColorSpace,
AVCOL_SPC_RGB,
AVCOL_SPC_BT709,
AVCOL_SPC_UNSPECIFIED,
AVCOL_SPC_RESERVED,
AVCOL_SPC_FCC,
AVCOL_SPC_BT470BG,
AVCOL_SPC_SMPTE170M,
AVCOL_SPC_SMPTE240M,
AVCOL_SPC_YCGCO,
AVCOL_SPC_YCOCG,
AVCOL_SPC_BT2020_NCL,
AVCOL_SPC_BT2020_CL,
AVCOL_SPC_SMPTE2085,
AVCOL_SPC_CHROMA_DERIVED_NCL,
AVCOL_SPC_CHROMA_DERIVED_CL,
AVCOL_SPC_ICTCP,
AVCOL_SPC_NB,
AVChromaLocation,
AVCHROMA_LOC_UNSPECIFIED,
AVCHROMA_LOC_LEFT,
AVCHROMA_LOC_CENTER,
AVCHROMA_LOC_TOPLEFT,
AVCHROMA_LOC_TOP,
AVCHROMA_LOC_BOTTOMLEFT,
AVCHROMA_LOC_BOTTOM,
AVCHROMA_LOC_NB,
AVFrame,
ANONYMOUS_1,
AV_FRAME_CROP_UNALIGNED,
AV_LOG_QUIET,
AV_LOG_PANIC,
AV_LOG_FATAL,
AV_LOG_ERROR,
AV_LOG_WARNING,
AV_LOG_INFO,
AV_LOG_VERBOSE,
AV_LOG_DEBUG,
AV_LOG_TRACE,
AV_LOG_MAX_OFFSET,
AV_LOG_SKIP_REPEATED,
AV_LOG_PRINT_LEVEL,
ANONYMOUS_2,
AV_CLASS_CATEGORY_NA,
AV_CLASS_CATEGORY_INPUT,
AV_CLASS_CATEGORY_OUTPUT,
AV_CLASS_CATEGORY_MUXER,
AV_CLASS_CATEGORY_DEMUXER,
AV_CLASS_CATEGORY_ENCODER,
AV_CLASS_CATEGORY_DECODER,
AV_CLASS_CATEGORY_FILTER,
AV_CLASS_CATEGORY_BITSTREAM_FILTER,
AV_CLASS_CATEGORY_SWSCALER,
AV_CLASS_CATEGORY_SWRESAMPLER,
AV_CLASS_CATEGORY_DEVICE_VIDEO_OUTPUT,
AV_CLASS_CATEGORY_DEVICE_VIDEO_INPUT,
AV_CLASS_CATEGORY_DEVICE_AUDIO_OUTPUT,
AV_CLASS_CATEGORY_DEVICE_AUDIO_INPUT,
AV_CLASS_CATEGORY_DEVICE_OUTPUT,
AV_CLASS_CATEGORY_DEVICE_INPUT,
AV_CLASS_CATEGORY_NB,
AVClassCategory,
AVOptionRange,
AVOptionRanges,
AVOptionType,
AV_OPT_TYPE_FLAGS,
AV_OPT_TYPE_INT,
AV_OPT_TYPE_INT64,
AV_OPT_TYPE_DOUBLE,
AV_OPT_TYPE_FLOAT,
AV_OPT_TYPE_STRING,
AV_OPT_TYPE_RATIONAL,
AV_OPT_TYPE_BINARY,
AV_OPT_TYPE_DICT,
AV_OPT_TYPE_UINT64,
AV_OPT_TYPE_CONST,
AV_OPT_TYPE_IMAGE_SIZE,
AV_OPT_TYPE_PIXEL_FMT,
AV_OPT_TYPE_SAMPLE_FMT,
AV_OPT_TYPE_VIDEO_RATE,
AV_OPT_TYPE_DURATION,
AV_OPT_TYPE_COLOR,
AV_OPT_TYPE_CHANNEL_LAYOUT,
AV_OPT_TYPE_BOOL,
AVOption,
AVClass,
AV_PIX_FMT_FLAG_BE,
AV_PIX_FMT_FLAG_PAL,
AV_PIX_FMT_FLAG_BITSTREAM,
AV_PIX_FMT_FLAG_HWACCEL,
AV_PIX_FMT_FLAG_PLANAR,
AV_PIX_FMT_FLAG_RGB,
AV_PIX_FMT_FLAG_PSEUDOPAL,
AV_PIX_FMT_FLAG_ALPHA,
AV_PIX_FMT_FLAG_BAYER,
AV_PIX_FMT_FLAG_FLOAT,
AVComponentDescriptor,
AVPixFmtDescriptor,
AVPALETTE_SIZE,
AVPALETTE_COUNT,
AVPixelFormat,
AV_PIX_FMT_NONE,
AV_PIX_FMT_YUV420P,
AV_PIX_FMT_YUYV422,
AV_PIX_FMT_RGB24,
AV_PIX_FMT_BGR24,
AV_PIX_FMT_YUV422P,
AV_PIX_FMT_YUV444P,
AV_PIX_FMT_YUV410P,
AV_PIX_FMT_YUV411P,
AV_PIX_FMT_GRAY8,
AV_PIX_FMT_MONOWHITE,
AV_PIX_FMT_MONOBLACK,
AV_PIX_FMT_PAL8,
AV_PIX_FMT_YUVJ420P,
AV_PIX_FMT_YUVJ422P,
AV_PIX_FMT_YUVJ444P,
AV_PIX_FMT_UYVY422,
AV_PIX_FMT_UYYVYY411,
AV_PIX_FMT_BGR8,
AV_PIX_FMT_BGR4,
AV_PIX_FMT_BGR4_BYTE,
AV_PIX_FMT_RGB8,
AV_PIX_FMT_RGB4,
AV_PIX_FMT_RGB4_BYTE,
AV_PIX_FMT_NV12,
AV_PIX_FMT_NV21,
AV_PIX_FMT_ARGB,
AV_PIX_FMT_RGBA,
AV_PIX_FMT_ABGR,
AV_PIX_FMT_BGRA,
AV_PIX_FMT_GRAY16BE,
AV_PIX_FMT_GRAY16LE,
AV_PIX_FMT_YUV440P,
AV_PIX_FMT_YUVJ440P,
AV_PIX_FMT_YUVA420P,
AV_PIX_FMT_RGB48BE,
AV_PIX_FMT_RGB48LE,
AV_PIX_FMT_RGB565BE,
AV_PIX_FMT_RGB565LE,
AV_PIX_FMT_RGB555BE,
AV_PIX_FMT_RGB555LE,
AV_PIX_FMT_BGR565BE,
AV_PIX_FMT_BGR565LE,
AV_PIX_FMT_BGR555BE,
AV_PIX_FMT_BGR555LE,
AV_PIX_FMT_VAAPI_MOCO,
AV_PIX_FMT_VAAPI_IDCT,
AV_PIX_FMT_VAAPI_VLD,
AV_PIX_FMT_VAAPI,
AV_PIX_FMT_YUV420P16LE,
AV_PIX_FMT_YUV420P16BE,
AV_PIX_FMT_YUV422P16LE,
AV_PIX_FMT_YUV422P16BE,
AV_PIX_FMT_YUV444P16LE,
AV_PIX_FMT_YUV444P16BE,
AV_PIX_FMT_DXVA2_VLD,
AV_PIX_FMT_RGB444LE,
AV_PIX_FMT_RGB444BE,
AV_PIX_FMT_BGR444LE,
AV_PIX_FMT_BGR444BE,
AV_PIX_FMT_YA8,
AV_PIX_FMT_Y400A,
AV_PIX_FMT_GRAY8A,
AV_PIX_FMT_BGR48BE,
AV_PIX_FMT_BGR48LE,
AV_PIX_FMT_YUV420P9BE,
AV_PIX_FMT_YUV420P9LE,
AV_PIX_FMT_YUV420P10BE,
AV_PIX_FMT_YUV420P10LE,
AV_PIX_FMT_YUV422P10BE,
AV_PIX_FMT_YUV422P10LE,
AV_PIX_FMT_YUV444P9BE,
AV_PIX_FMT_YUV444P9LE,
AV_PIX_FMT_YUV444P10BE,
AV_PIX_FMT_YUV444P10LE,
AV_PIX_FMT_YUV422P9BE,
AV_PIX_FMT_YUV422P9LE,
AV_PIX_FMT_GBRP,
AV_PIX_FMT_GBR24P,
AV_PIX_FMT_GBRP9BE,
AV_PIX_FMT_GBRP9LE,
AV_PIX_FMT_GBRP10BE,
AV_PIX_FMT_GBRP10LE,
AV_PIX_FMT_GBRP16BE,
AV_PIX_FMT_GBRP16LE,
AV_PIX_FMT_YUVA422P,
AV_PIX_FMT_YUVA444P,
AV_PIX_FMT_YUVA420P9BE,
AV_PIX_FMT_YUVA420P9LE,
AV_PIX_FMT_YUVA422P9BE,
AV_PIX_FMT_YUVA422P9LE,
AV_PIX_FMT_YUVA444P9BE,
AV_PIX_FMT_YUVA444P9LE,
AV_PIX_FMT_YUVA420P10BE,
AV_PIX_FMT_YUVA420P10LE,
AV_PIX_FMT_YUVA422P10BE,
AV_PIX_FMT_YUVA422P10LE,
AV_PIX_FMT_YUVA444P10BE,
AV_PIX_FMT_YUVA444P10LE,
AV_PIX_FMT_YUVA420P16BE,
AV_PIX_FMT_YUVA420P16LE,
AV_PIX_FMT_YUVA422P16BE,
AV_PIX_FMT_YUVA422P16LE,
AV_PIX_FMT_YUVA444P16BE,
AV_PIX_FMT_YUVA444P16LE,
AV_PIX_FMT_VDPAU,
AV_PIX_FMT_XYZ12LE,
AV_PIX_FMT_XYZ12BE,
AV_PIX_FMT_NV16,
AV_PIX_FMT_NV20LE,
AV_PIX_FMT_NV20BE,
AV_PIX_FMT_RGBA64BE,
AV_PIX_FMT_RGBA64LE,
AV_PIX_FMT_BGRA64BE,
AV_PIX_FMT_BGRA64LE,
AV_PIX_FMT_YVYU422,
AV_PIX_FMT_YA16BE,
AV_PIX_FMT_YA16LE,
AV_PIX_FMT_GBRAP,
AV_PIX_FMT_GBRAP16BE,
AV_PIX_FMT_GBRAP16LE,
AV_PIX_FMT_QSV,
AV_PIX_FMT_MMAL,
AV_PIX_FMT_D3D11VA_VLD,
AV_PIX_FMT_CUDA,
AV_PIX_FMT_0RGB,
AV_PIX_FMT_RGB0,
AV_PIX_FMT_0BGR,
AV_PIX_FMT_BGR0,
AV_PIX_FMT_YUV420P12BE,
AV_PIX_FMT_YUV420P12LE,
AV_PIX_FMT_YUV420P14BE,
AV_PIX_FMT_YUV420P14LE,
AV_PIX_FMT_YUV422P12BE,
AV_PIX_FMT_YUV422P12LE,
AV_PIX_FMT_YUV422P14BE,
AV_PIX_FMT_YUV422P14LE,
AV_PIX_FMT_YUV444P12BE,
AV_PIX_FMT_YUV444P12LE,
AV_PIX_FMT_YUV444P14BE,
AV_PIX_FMT_YUV444P14LE,
AV_PIX_FMT_GBRP12BE,
AV_PIX_FMT_GBRP12LE,
AV_PIX_FMT_GBRP14BE,
AV_PIX_FMT_GBRP14LE,
AV_PIX_FMT_YUVJ411P,
AV_PIX_FMT_BAYER_BGGR8,
AV_PIX_FMT_BAYER_RGGB8,
AV_PIX_FMT_BAYER_GBRG8,
AV_PIX_FMT_BAYER_GRBG8,
AV_PIX_FMT_BAYER_BGGR16LE,
AV_PIX_FMT_BAYER_BGGR16BE,
AV_PIX_FMT_BAYER_RGGB16LE,
AV_PIX_FMT_BAYER_RGGB16BE,
AV_PIX_FMT_BAYER_GBRG16LE,
AV_PIX_FMT_BAYER_GBRG16BE,
AV_PIX_FMT_BAYER_GRBG16LE,
AV_PIX_FMT_BAYER_GRBG16BE,
AV_PIX_FMT_XVMC,
AV_PIX_FMT_YUV440P10LE,
AV_PIX_FMT_YUV440P10BE,
AV_PIX_FMT_YUV440P12LE,
AV_PIX_FMT_YUV440P12BE,
AV_PIX_FMT_AYUV64LE,
AV_PIX_FMT_AYUV64BE,
AV_PIX_FMT_VIDEOTOOLBOX,
AV_PIX_FMT_P010LE,
AV_PIX_FMT_P010BE,
AV_PIX_FMT_GBRAP12BE,
AV_PIX_FMT_GBRAP12LE,
AV_PIX_FMT_GBRAP10BE,
AV_PIX_FMT_GBRAP10LE,
AV_PIX_FMT_MEDIACODEC,
AV_PIX_FMT_GRAY12BE,
AV_PIX_FMT_GRAY12LE,
AV_PIX_FMT_GRAY10BE,
AV_PIX_FMT_GRAY10LE,
AV_PIX_FMT_P016LE,
AV_PIX_FMT_P016BE,
AV_PIX_FMT_D3D11,
AV_PIX_FMT_GRAY9BE,
AV_PIX_FMT_GRAY9LE,
AV_PIX_FMT_GBRPF32BE,
AV_PIX_FMT_GBRPF32LE,
AV_PIX_FMT_GBRAPF32BE,
AV_PIX_FMT_GBRAPF32LE,
AV_PIX_FMT_DRM_PRIME,
AV_PIX_FMT_OPENCL,
AV_PIX_FMT_GRAY14BE,
AV_PIX_FMT_GRAY14LE,
AV_PIX_FMT_GRAYF32BE,
AV_PIX_FMT_GRAYF32LE,
AV_PIX_FMT_NB,
AVSampleFormat,
AV_SAMPLE_FMT_NONE,
AV_SAMPLE_FMT_U8,
AV_SAMPLE_FMT_S16,
AV_SAMPLE_FMT_S32,
AV_SAMPLE_FMT_FLT,
AV_SAMPLE_FMT_DBL,
AV_SAMPLE_FMT_U8P,
AV_SAMPLE_FMT_S16P,
AV_SAMPLE_FMT_S32P,
AV_SAMPLE_FMT_FLTP,
AV_SAMPLE_FMT_DBLP,
AV_SAMPLE_FMT_S64,
AV_SAMPLE_FMT_S64P,
AV_SAMPLE_FMT_NB,
LIBAVUTIL_VERSION_MAJOR,
LIBAVUTIL_VERSION_MINOR,
LIBAVUTIL_VERSION_MICRO,
LIBAVUTIL_BUILD,
AES_CTR_KEY_SIZE,
AES_CTR_IV_SIZE,
AVAESCTR,
AVAudioFifo,
AVCAMELLIA,
AVCAST5,
AV_CH_FRONT_LEFT,
AV_CH_FRONT_RIGHT,
AV_CH_FRONT_CENTER,
AV_CH_LOW_FREQUENCY,
AV_CH_BACK_LEFT,
AV_CH_BACK_RIGHT,
AV_CH_FRONT_LEFT_OF_CENTER,
AV_CH_FRONT_RIGHT_OF_CENTER,
AV_CH_BACK_CENTER,
AV_CH_SIDE_LEFT,
AV_CH_SIDE_RIGHT,
AV_CH_TOP_CENTER,
AV_CH_TOP_FRONT_LEFT,
AV_CH_TOP_FRONT_CENTER,
AV_CH_TOP_FRONT_RIGHT,
AV_CH_TOP_BACK_LEFT,
AV_CH_TOP_BACK_CENTER,
AV_CH_TOP_BACK_RIGHT,
AV_CH_STEREO_LEFT,
AV_CH_STEREO_RIGHT,
AV_CH_WIDE_LEFT,
AV_CH_WIDE_RIGHT,
AV_CH_SURROUND_DIRECT_LEFT,
AV_CH_SURROUND_DIRECT_RIGHT,
AV_CH_LOW_FREQUENCY_2,
AV_CH_LAYOUT_NATIVE,
AV_CH_LAYOUT_MONO,
AV_CH_LAYOUT_STEREO,
AV_CH_LAYOUT_2POINT1,
AV_CH_LAYOUT_2_1,
AV_CH_LAYOUT_SURROUND,
AV_CH_LAYOUT_3POINT1,
AV_CH_LAYOUT_4POINT0,
AV_CH_LAYOUT_4POINT1,
AV_CH_LAYOUT_2_2,
AV_CH_LAYOUT_QUAD,
AV_CH_LAYOUT_5POINT0,
AV_CH_LAYOUT_5POINT1,
AV_CH_LAYOUT_5POINT0_BACK,
AV_CH_LAYOUT_5POINT1_BACK,
AV_CH_LAYOUT_6POINT0,
AV_CH_LAYOUT_6POINT0_FRONT,
AV_CH_LAYOUT_HEXAGONAL,
AV_CH_LAYOUT_6POINT1,
AV_CH_LAYOUT_6POINT1_BACK,
AV_CH_LAYOUT_6POINT1_FRONT,
AV_CH_LAYOUT_7POINT0,
AV_CH_LAYOUT_7POINT0_FRONT,
AV_CH_LAYOUT_7POINT1,
AV_CH_LAYOUT_7POINT1_WIDE,
AV_CH_LAYOUT_7POINT1_WIDE_BACK,
AV_CH_LAYOUT_OCTAGONAL,
AV_CH_LAYOUT_HEXADECAGONAL,
AV_CH_LAYOUT_STEREO_DOWNMIX,
AVMatrixEncoding,
AV_MATRIX_ENCODING_NONE,
AV_MATRIX_ENCODING_DOLBY,
AV_MATRIX_ENCODING_DPLII,
AV_MATRIX_ENCODING_DPLIIX,
AV_MATRIX_ENCODING_DPLIIZ,
AV_MATRIX_ENCODING_DOLBYEX,
AV_MATRIX_ENCODING_DOLBYHEADPHONE,
AV_MATRIX_ENCODING_NB,
AVBPrint,
AVDES,
AVDownmixType,
AV_DOWNMIX_TYPE_UNKNOWN,
AV_DOWNMIX_TYPE_LORO,
AV_DOWNMIX_TYPE_LTRT,
AV_DOWNMIX_TYPE_DPLII,
AV_DOWNMIX_TYPE_NB,
AVDownmixInfo,
AVSubsampleEncryptionInfo,
AVEncryptionInfo,
AVEncryptionInitInfo,
AV_HASH_MAX_SIZE,
AVHashContext,
AVHWDeviceType,
AV_HWDEVICE_TYPE_NONE,
AV_HWDEVICE_TYPE_VDPAU,
AV_HWDEVICE_TYPE_CUDA,
AV_HWDEVICE_TYPE_VAAPI,
AV_HWDEVICE_TYPE_DXVA2,
AV_HWDEVICE_TYPE_QSV,
AV_HWDEVICE_TYPE_VIDEOTOOLBOX,
AV_HWDEVICE_TYPE_D3D11VA,
AV_HWDEVICE_TYPE_DRM,
AV_HWDEVICE_TYPE_OPENCL,
AV_HWDEVICE_TYPE_MEDIACODEC,
AVHWDeviceInternal,
AVHWDeviceContext,
AVHWFramesInternal,
AVHWFramesContext,
AVHWFrameTransferDirection,
AV_HWFRAME_TRANSFER_DIRECTION_FROM,
AV_HWFRAME_TRANSFER_DIRECTION_TO,
AVHWFramesConstraints,
ANONYMOUS_3,
AV_HWFRAME_MAP_READ,
AV_HWFRAME_MAP_WRITE,
AV_HWFRAME_MAP_OVERWRITE,
AV_HWFRAME_MAP_DIRECT,
AVCUDADeviceContextInternal,
AVCUDADeviceContext,
AVD3D11VADeviceContext,
AVD3D11FrameDescriptor,
AVD3D11VAFramesContext,
ANONYMOUS_4,
AV_DRM_MAX_PLANES,
AVDRMObjectDescriptor,
AVDRMPlaneDescriptor,
AVDRMLayerDescriptor,
AVDRMFrameDescriptor,
AVDRMDeviceContext,
AVDXVA2DeviceContext,
AVDXVA2FramesContext,
AVMediaCodecDeviceContext,
AVQSVDeviceContext,
AVQSVFramesContext,
ANONYMOUS_5,
AV_VAAPI_DRIVER_QUIRK_USER_SET,
AV_VAAPI_DRIVER_QUIRK_RENDER_PARAM_BUFFERS,
AV_VAAPI_DRIVER_QUIRK_ATTRIB_MEMTYPE,
AV_VAAPI_DRIVER_QUIRK_SURFACE_ATTRIBUTES,
# AVVAAPIDeviceContext,
# AVVAAPIFramesContext,
# AVVAAPIHWConfig,
# AVVDPAUDeviceContext,
AVMasteringDisplayMetadata,
AVContentLightMetadata,
AVMotionVector,
AV_OPT_FLAG_ENCODING_PARAM,
AV_OPT_FLAG_DECODING_PARAM,
AV_OPT_FLAG_AUDIO_PARAM,
AV_OPT_FLAG_VIDEO_PARAM,
AV_OPT_FLAG_SUBTITLE_PARAM,
AV_OPT_FLAG_EXPORT,
AV_OPT_FLAG_READONLY,
AV_OPT_FLAG_BSF_PARAM,
AV_OPT_FLAG_FILTERING_PARAM,
AV_OPT_FLAG_DEPRECATED,
AV_OPT_SEARCH_CHILDREN,
AV_OPT_SEARCH_FAKE_OBJ,
AV_OPT_ALLOW_NULL,
AV_OPT_MULTI_COMPONENT_RANGE,
AV_OPT_SERIALIZE_SKIP_DEFAULTS,
AV_OPT_SERIALIZE_OPT_FLAGS_EXACT,
ANONYMOUS_6,
AV_OPT_FLAG_IMPLICIT_KEY,
av_pixelutils_sad_fn,
AVRC4,
AVReplayGain,
AVSphericalProjection,
AV_SPHERICAL_EQUIRECTANGULAR,
AV_SPHERICAL_CUBEMAP,
AV_SPHERICAL_EQUIRECTANGULAR_TILE,
AVSphericalMapping,
AV_STEREO3D_FLAG_INVERT,
AVStereo3DType,
AV_STEREO3D_2D,
AV_STEREO3D_SIDEBYSIDE,
AV_STEREO3D_TOPBOTTOM,
AV_STEREO3D_FRAMESEQUENCE,
AV_STEREO3D_CHECKERBOARD,
AV_STEREO3D_SIDEBYSIDE_QUINCUNX,
AV_STEREO3D_LINES,
AV_STEREO3D_COLUMNS,
AVStereo3DView,
AV_STEREO3D_VIEW_PACKED,
AV_STEREO3D_VIEW_LEFT,
AV_STEREO3D_VIEW_RIGHT,
AVStereo3D,
AVTEA,
AVThreadMessageQueue,
AVThreadMessageFlags,
AV_THREAD_MESSAGE_NONBLOCK,
AV_TIMECODE_STR_SIZE,
AVTimecodeFlag,
AV_TIMECODE_FLAG_DROPFRAME,
AV_TIMECODE_FLAG_24HOURSMAX,
AV_TIMECODE_FLAG_ALLOWNEGATIVE,
AVTimecode,
AVTreeNode,
AVTWOFISH,
AVXTEA
const unix = 1
const linux = 1
const FF_LAMBDA_SHIFT = 7
const FF_LAMBDA_SCALE = 1 << FF_LAMBDA_SHIFT
const FF_QP2LAMBDA = 118
const FF_LAMBDA_MAX = 256 * 128 - 1
const FF_QUALITY_SCALE = FF_LAMBDA_SCALE
const AV_NOPTS_VALUE = reinterpret(Int64, 0x8000000000000000)
const AV_TIME_BASE = 1000000
struct AVRational
num::Cint
den::Cint
end
zero(::Type{AVRational}) = AVRational(0, 1)
const AV_TIME_BASE_Q = AVRational(1, AV_TIME_BASE)
# Skipping MacroDefinition: av_int_list_length ( list , term ) av_int_list_length_for_size ( sizeof ( * ( list ) ) , list , term )
const AV_FOURCC_MAX_STRING_SIZE = 32
# Skipping MacroDefinition: av_fourcc2str ( fourcc ) av_fourcc_make_string ( ( char [ AV_FOURCC_MAX_STRING_SIZE ] ) { 0 } , fourcc )
# begin enum AVMediaType
const AVMediaType = Cint
const AVMEDIA_TYPE_UNKNOWN = -1 |> Int32
const AVMEDIA_TYPE_VIDEO = 0 |> Int32
const AVMEDIA_TYPE_AUDIO = 1 |> Int32
const AVMEDIA_TYPE_DATA = 2 |> Int32
const AVMEDIA_TYPE_SUBTITLE = 3 |> Int32
const AVMEDIA_TYPE_ATTACHMENT = 4 |> Int32
const AVMEDIA_TYPE_NB = 5 |> Int32
# end enum AVMediaType
# begin enum AVPictureType
const AVPictureType = UInt32
const AV_PICTURE_TYPE_NONE = 0 |> UInt32
const AV_PICTURE_TYPE_I = 1 |> UInt32
const AV_PICTURE_TYPE_P = 2 |> UInt32
const AV_PICTURE_TYPE_B = 3 |> UInt32
const AV_PICTURE_TYPE_S = 4 |> UInt32
const AV_PICTURE_TYPE_SI = 5 |> UInt32
const AV_PICTURE_TYPE_SP = 6 |> UInt32
const AV_PICTURE_TYPE_BI = 7 |> UInt32
# end enum AVPictureType
const AV_BUFFER_FLAG_READONLY = 1 << 0
struct AVBuffer
end
struct AVBufferRef
buffer::Ptr{AVBuffer}
data::Ptr{UInt8}
size::Cint
end
struct AVBufferPool
end
const AV_DICT_MATCH_CASE = 1
const AV_DICT_IGNORE_SUFFIX = 2
const AV_DICT_DONT_STRDUP_KEY = 4
const AV_DICT_DONT_STRDUP_VAL = 8
const AV_DICT_DONT_OVERWRITE = 16
const AV_DICT_APPEND = 32
const AV_DICT_MULTIKEY = 64
struct AVDictionaryEntry
key::Cstring
value::Cstring
end
struct AVDictionary
end
struct AVFifoBuffer
buffer::Ptr{UInt8}
rptr::Ptr{UInt8}
wptr::Ptr{UInt8}
_end::Ptr{UInt8}
rndx::UInt32
wndx::UInt32
end
const AV_NUM_DATA_POINTERS = 8
const AV_FRAME_FLAG_CORRUPT = 1 << 0
const AV_FRAME_FLAG_DISCARD = 1 << 2
const FF_DECODE_ERROR_INVALID_BITSTREAM = 1
const FF_DECODE_ERROR_MISSING_REFERENCE = 2
# begin enum AVFrameSideDataType
const AVFrameSideDataType = UInt32
const AV_FRAME_DATA_PANSCAN = 0 |> UInt32
const AV_FRAME_DATA_A53_CC = 1 |> UInt32
const AV_FRAME_DATA_STEREO3D = 2 |> UInt32
const AV_FRAME_DATA_MATRIXENCODING = 3 |> UInt32
const AV_FRAME_DATA_DOWNMIX_INFO = 4 |> UInt32
const AV_FRAME_DATA_REPLAYGAIN = 5 |> UInt32
const AV_FRAME_DATA_DISPLAYMATRIX = 6 |> UInt32
const AV_FRAME_DATA_AFD = 7 |> UInt32
const AV_FRAME_DATA_MOTION_VECTORS = 8 |> UInt32
const AV_FRAME_DATA_SKIP_SAMPLES = 9 |> UInt32
const AV_FRAME_DATA_AUDIO_SERVICE_TYPE = 10 |> UInt32
const AV_FRAME_DATA_MASTERING_DISPLAY_METADATA = 11 |> UInt32
const AV_FRAME_DATA_GOP_TIMECODE = 12 |> UInt32
const AV_FRAME_DATA_SPHERICAL = 13 |> UInt32
const AV_FRAME_DATA_CONTENT_LIGHT_LEVEL = 14 |> UInt32
const AV_FRAME_DATA_ICC_PROFILE = 15 |> UInt32
const AV_FRAME_DATA_QP_TABLE_PROPERTIES = 16 |> UInt32
const AV_FRAME_DATA_QP_TABLE_DATA = 17 |> UInt32
const AV_FRAME_DATA_S12M_TIMECODE = 18 |> UInt32
# end enum AVFrameSideDataType
# begin enum AVActiveFormatDescription
const AVActiveFormatDescription = UInt32
const AV_AFD_SAME = 8 |> UInt32
const AV_AFD_4_3 = 9 |> UInt32
const AV_AFD_16_9 = 10 |> UInt32
const AV_AFD_14_9 = 11 |> UInt32
const AV_AFD_4_3_SP_14_9 = 13 |> UInt32
const AV_AFD_16_9_SP_14_9 = 14 |> UInt32
const AV_AFD_SP_4_3 = 15 |> UInt32
# end enum AVActiveFormatDescription
struct AVFrameSideData
_type::AVFrameSideDataType
data::Ptr{UInt8}
size::Cint
metadata::Ptr{AVDictionary}
buf::Ptr{AVBufferRef}
end
# begin enum AVColorRange
const AVColorRange = UInt32
const AVCOL_RANGE_UNSPECIFIED = 0 |> UInt32
const AVCOL_RANGE_MPEG = 1 |> UInt32
const AVCOL_RANGE_JPEG = 2 |> UInt32
const AVCOL_RANGE_NB = 3 |> UInt32
# end enum AVColorRange
# begin enum AVColorPrimaries
const AVColorPrimaries = UInt32
const AVCOL_PRI_RESERVED0 = 0 |> UInt32
const AVCOL_PRI_BT709 = 1 |> UInt32
const AVCOL_PRI_UNSPECIFIED = 2 |> UInt32
const AVCOL_PRI_RESERVED = 3 |> UInt32
const AVCOL_PRI_BT470M = 4 |> UInt32
const AVCOL_PRI_BT470BG = 5 |> UInt32
const AVCOL_PRI_SMPTE170M = 6 |> UInt32
const AVCOL_PRI_SMPTE240M = 7 |> UInt32
const AVCOL_PRI_FILM = 8 |> UInt32
const AVCOL_PRI_BT2020 = 9 |> UInt32
const AVCOL_PRI_SMPTE428 = 10 |> UInt32
const AVCOL_PRI_SMPTEST428_1 = 10 |> UInt32
const AVCOL_PRI_SMPTE431 = 11 |> UInt32
const AVCOL_PRI_SMPTE432 = 12 |> UInt32
const AVCOL_PRI_JEDEC_P22 = 22 |> UInt32
const AVCOL_PRI_NB = 23 |> UInt32
# end enum AVColorPrimaries
# begin enum AVColorTransferCharacteristic
const AVColorTransferCharacteristic = UInt32
const AVCOL_TRC_RESERVED0 = 0 |> UInt32
const AVCOL_TRC_BT709 = 1 |> UInt32
const AVCOL_TRC_UNSPECIFIED = 2 |> UInt32
const AVCOL_TRC_RESERVED = 3 |> UInt32
const AVCOL_TRC_GAMMA22 = 4 |> UInt32
const AVCOL_TRC_GAMMA28 = 5 |> UInt32
const AVCOL_TRC_SMPTE170M = 6 |> UInt32
const AVCOL_TRC_SMPTE240M = 7 |> UInt32
const AVCOL_TRC_LINEAR = 8 |> UInt32
const AVCOL_TRC_LOG = 9 |> UInt32
const AVCOL_TRC_LOG_SQRT = 10 |> UInt32
const AVCOL_TRC_IEC61966_2_4 = 11 |> UInt32
const AVCOL_TRC_BT1361_ECG = 12 |> UInt32
const AVCOL_TRC_IEC61966_2_1 = 13 |> UInt32
const AVCOL_TRC_BT2020_10 = 14 |> UInt32
const AVCOL_TRC_BT2020_12 = 15 |> UInt32
const AVCOL_TRC_SMPTE2084 = 16 |> UInt32
const AVCOL_TRC_SMPTEST2084 = 16 |> UInt32
const AVCOL_TRC_SMPTE428 = 17 |> UInt32
const AVCOL_TRC_SMPTEST428_1 = 17 |> UInt32
const AVCOL_TRC_ARIB_STD_B67 = 18 |> UInt32
const AVCOL_TRC_NB = 19 |> UInt32
# end enum AVColorTransferCharacteristic
# begin enum AVColorSpace
const AVColorSpace = UInt32
const AVCOL_SPC_RGB = 0 |> UInt32
const AVCOL_SPC_BT709 = 1 |> UInt32
const AVCOL_SPC_UNSPECIFIED = 2 |> UInt32
const AVCOL_SPC_RESERVED = 3 |> UInt32
const AVCOL_SPC_FCC = 4 |> UInt32
const AVCOL_SPC_BT470BG = 5 |> UInt32
const AVCOL_SPC_SMPTE170M = 6 |> UInt32
const AVCOL_SPC_SMPTE240M = 7 |> UInt32
const AVCOL_SPC_YCGCO = 8 |> UInt32
const AVCOL_SPC_YCOCG = 8 |> UInt32
const AVCOL_SPC_BT2020_NCL = 9 |> UInt32
const AVCOL_SPC_BT2020_CL = 10 |> UInt32
const AVCOL_SPC_SMPTE2085 = 11 |> UInt32
const AVCOL_SPC_CHROMA_DERIVED_NCL = 12 |> UInt32
const AVCOL_SPC_CHROMA_DERIVED_CL = 13 |> UInt32
const AVCOL_SPC_ICTCP = 14 |> UInt32
const AVCOL_SPC_NB = 15 |> UInt32
# end enum AVColorSpace
# begin enum AVChromaLocation
const AVChromaLocation = UInt32
const AVCHROMA_LOC_UNSPECIFIED = 0 |> UInt32
const AVCHROMA_LOC_LEFT = 1 |> UInt32
const AVCHROMA_LOC_CENTER = 2 |> UInt32
const AVCHROMA_LOC_TOPLEFT = 3 |> UInt32
const AVCHROMA_LOC_TOP = 4 |> UInt32
const AVCHROMA_LOC_BOTTOMLEFT = 5 |> UInt32
const AVCHROMA_LOC_BOTTOM = 6 |> UInt32
const AVCHROMA_LOC_NB = 7 |> UInt32
# end enum AVChromaLocation
zero(::Type{NTuple{N,P}}) where {N,P<:Ptr} = (N == 1 ? (C_NULL,) : (zero(NTuple{N-1,P})..., C_NULL))
zero(::Type{NTuple{N,T}}) where {N,T} = (N == 1 ? (zero(T),) : (zero(NTuple{N-1,T})..., zero(T)))
struct AVFrame
data::NTuple{8, Ptr{UInt8}}
linesize::NTuple{8, Cint}
extended_data::Ptr{Ptr{UInt8}}
width::Cint
height::Cint
nb_samples::Cint
format::Cint
key_frame::Cint
pict_type::AVPictureType
sample_aspect_ratio::AVRational
pts::Int64
pkt_pts::Int64
pkt_dts::Int64
coded_picture_number::Cint
display_picture_number::Cint
quality::Cint
opaque::Ptr{Cvoid}
error::NTuple{8, UInt64}
repeat_pict::Cint
interlaced_frame::Cint
top_field_first::Cint
palette_has_changed::Cint
reordered_opaque::Int64
sample_rate::Cint
channel_layout::UInt64
buf::NTuple{8, Ptr{AVBufferRef}}
extended_buf::Ptr{Ptr{AVBufferRef}}
nb_extended_buf::Cint
side_data::Ptr{Ptr{AVFrameSideData}}
nb_side_data::Cint
flags::Cint
color_range::AVColorRange
color_primaries::AVColorPrimaries
color_trc::AVColorTransferCharacteristic
colorspace::AVColorSpace
chroma_location::AVChromaLocation
best_effort_timestamp::Int64
pkt_pos::Int64
pkt_duration::Int64
metadata::Ptr{AVDictionary}
decode_error_flags::Cint
channels::Cint
pkt_size::Cint
qscale_table::Ptr{Int8}
qstride::Cint
qscale_type::Cint
qp_table_buf::Ptr{AVBufferRef}
hw_frames_ctx::Ptr{AVBufferRef}
opaque_ref::Ptr{AVBufferRef}
crop_top::Csize_t
crop_bottom::Csize_t
crop_left::Csize_t
crop_right::Csize_t
private_ref::Ptr{AVBufferRef}
end
# begin enum ANONYMOUS_1
const ANONYMOUS_1 = UInt32
const AV_FRAME_CROP_UNALIGNED = 1 |> UInt32
# end enum ANONYMOUS_1
# Skipping MacroDefinition: AV_IS_INPUT_DEVICE ( category ) ( ( ( category ) == AV_CLASS_CATEGORY_DEVICE_VIDEO_INPUT ) || ( ( category ) == AV_CLASS_CATEGORY_DEVICE_AUDIO_INPUT ) || ( ( category ) == AV_CLASS_CATEGORY_DEVICE_INPUT ) )
# Skipping MacroDefinition: AV_IS_OUTPUT_DEVICE ( category ) ( ( ( category ) == AV_CLASS_CATEGORY_DEVICE_VIDEO_OUTPUT ) || ( ( category ) == AV_CLASS_CATEGORY_DEVICE_AUDIO_OUTPUT ) || ( ( category ) == AV_CLASS_CATEGORY_DEVICE_OUTPUT ) )
const AV_LOG_QUIET = -8
const AV_LOG_PANIC = 0
const AV_LOG_FATAL = 8
const AV_LOG_ERROR = 16
const AV_LOG_WARNING = 24
const AV_LOG_INFO = 32
const AV_LOG_VERBOSE = 40
const AV_LOG_DEBUG = 48
const AV_LOG_TRACE = 56
const AV_LOG_MAX_OFFSET = AV_LOG_TRACE - AV_LOG_QUIET
# Skipping MacroDefinition: AV_LOG_C ( x ) ( ( x ) << 8 )
const AV_LOG_SKIP_REPEATED = 1
const AV_LOG_PRINT_LEVEL = 2
# begin enum ANONYMOUS_2
const ANONYMOUS_2 = UInt32
const AV_CLASS_CATEGORY_NA = 0 |> UInt32
const AV_CLASS_CATEGORY_INPUT = 1 |> UInt32
const AV_CLASS_CATEGORY_OUTPUT = 2 |> UInt32
const AV_CLASS_CATEGORY_MUXER = 3 |> UInt32
const AV_CLASS_CATEGORY_DEMUXER = 4 |> UInt32
const AV_CLASS_CATEGORY_ENCODER = 5 |> UInt32
const AV_CLASS_CATEGORY_DECODER = 6 |> UInt32
const AV_CLASS_CATEGORY_FILTER = 7 |> UInt32
const AV_CLASS_CATEGORY_BITSTREAM_FILTER = 8 |> UInt32
const AV_CLASS_CATEGORY_SWSCALER = 9 |> UInt32
const AV_CLASS_CATEGORY_SWRESAMPLER = 10 |> UInt32
const AV_CLASS_CATEGORY_DEVICE_VIDEO_OUTPUT = 40 |> UInt32
const AV_CLASS_CATEGORY_DEVICE_VIDEO_INPUT = 41 |> UInt32
const AV_CLASS_CATEGORY_DEVICE_AUDIO_OUTPUT = 42 |> UInt32
const AV_CLASS_CATEGORY_DEVICE_AUDIO_INPUT = 43 |> UInt32
const AV_CLASS_CATEGORY_DEVICE_OUTPUT = 44 |> UInt32
const AV_CLASS_CATEGORY_DEVICE_INPUT = 45 |> UInt32
const AV_CLASS_CATEGORY_NB = 46 |> UInt32
# end enum ANONYMOUS_2
const AVClassCategory = Cint
struct AVOptionRange
str::Cstring
value_min::Cdouble
value_max::Cdouble
component_min::Cdouble
component_max::Cdouble
is_range::Cint
end
struct AVOptionRanges
range::Ptr{Ptr{AVOptionRange}}
nb_ranges::Cint
nb_components::Cint
end
# begin enum AVOptionType
const AVOptionType = UInt32
const AV_OPT_TYPE_FLAGS = 0 |> UInt32
const AV_OPT_TYPE_INT = 1 |> UInt32
const AV_OPT_TYPE_INT64 = 2 |> UInt32
const AV_OPT_TYPE_DOUBLE = 3 |> UInt32
const AV_OPT_TYPE_FLOAT = 4 |> UInt32
const AV_OPT_TYPE_STRING = 5 |> UInt32
const AV_OPT_TYPE_RATIONAL = 6 |> UInt32
const AV_OPT_TYPE_BINARY = 7 |> UInt32
const AV_OPT_TYPE_DICT = 8 |> UInt32
const AV_OPT_TYPE_UINT64 = 9 |> UInt32
const AV_OPT_TYPE_CONST = 10 |> UInt32
const AV_OPT_TYPE_IMAGE_SIZE = 11 |> UInt32
const AV_OPT_TYPE_PIXEL_FMT = 12 |> UInt32
const AV_OPT_TYPE_SAMPLE_FMT = 13 |> UInt32
const AV_OPT_TYPE_VIDEO_RATE = 14 |> UInt32
const AV_OPT_TYPE_DURATION = 15 |> UInt32
const AV_OPT_TYPE_COLOR = 16 |> UInt32
const AV_OPT_TYPE_CHANNEL_LAYOUT = 17 |> UInt32
const AV_OPT_TYPE_BOOL = 18 |> UInt32
# end enum AVOptionType
struct AVOption
name::Cstring
help::Cstring
offset::Cint
_type::AVOptionType
default_val::Int64
min::Cdouble
max::Cdouble
flags::Cint
unit::Cstring
end
struct AVClass
class_name::Cstring
item_name::Ptr{Cvoid}
option::Ptr{AVOption}
version::Cint
log_level_offset_offset::Cint
parent_log_context_offset::Cint
child_next::Ptr{Cvoid}
child_class_next::Ptr{Cvoid}
category::AVClassCategory
get_category::Ptr{Cvoid}
query_ranges::Ptr{Cvoid}
end
# Skipping MacroDefinition: DECLARE_ALIGNED ( n , t , v ) t __attribute__ ( ( aligned ( n ) ) ) v
# Skipping MacroDefinition: DECLARE_ASM_ALIGNED ( n , t , v ) t av_used __attribute__ ( ( aligned ( n ) ) ) v
# Skipping MacroDefinition: DECLARE_ASM_CONST ( n , t , v ) static const t av_used __attribute__ ( ( aligned ( n ) ) ) v
# Skipping MacroDefinition: av_malloc_attrib __attribute__ ( ( __malloc__ ) )
# Skipping MacroDefinition: av_alloc_size ( ... )
const AV_PIX_FMT_FLAG_BE = 1 << 0
const AV_PIX_FMT_FLAG_PAL = 1 << 1
const AV_PIX_FMT_FLAG_BITSTREAM = 1 << 2
const AV_PIX_FMT_FLAG_HWACCEL = 1 << 3
const AV_PIX_FMT_FLAG_PLANAR = 1 << 4
const AV_PIX_FMT_FLAG_RGB = 1 << 5
const AV_PIX_FMT_FLAG_PSEUDOPAL = 1 << 6
const AV_PIX_FMT_FLAG_ALPHA = 1 << 7
const AV_PIX_FMT_FLAG_BAYER = 1 << 8
const AV_PIX_FMT_FLAG_FLOAT = 1 << 9
const FF_LOSS_RESOLUTION = 0x0001
const FF_LOSS_DEPTH = 0x0002
const FF_LOSS_COLORSPACE = 0x0004
const FF_LOSS_ALPHA = 0x0008
const FF_LOSS_COLORQUANT = 0x0010
const FF_LOSS_CHROMA = 0x0020
struct AVComponentDescriptor
plane::Cint
step::Cint
offset::Cint
shift::Cint
depth::Cint
step_minus1::Cint
depth_minus1::Cint
offset_plus1::Cint
end
struct AVPixFmtDescriptor
name::Cstring
nb_components::UInt8
log2_chroma_w::UInt8
log2_chroma_h::UInt8
flags::UInt64
comp::NTuple{4, AVComponentDescriptor}
alias::Cstring
end
const AVPALETTE_SIZE = 1024
const AVPALETTE_COUNT = 256
# begin enum AVPixelFormat
const AVPixelFormat = Cint
const AV_PIX_FMT_NONE = -1 |> Int32
const AV_PIX_FMT_YUV420P = 0 |> Int32
const AV_PIX_FMT_YUYV422 = 1 |> Int32
const AV_PIX_FMT_RGB24 = 2 |> Int32
const AV_PIX_FMT_BGR24 = 3 |> Int32
const AV_PIX_FMT_YUV422P = 4 |> Int32
const AV_PIX_FMT_YUV444P = 5 |> Int32
const AV_PIX_FMT_YUV410P = 6 |> Int32
const AV_PIX_FMT_YUV411P = 7 |> Int32
const AV_PIX_FMT_GRAY8 = 8 |> Int32
const AV_PIX_FMT_MONOWHITE = 9 |> Int32
const AV_PIX_FMT_MONOBLACK = 10 |> Int32
const AV_PIX_FMT_PAL8 = 11 |> Int32
const AV_PIX_FMT_YUVJ420P = 12 |> Int32
const AV_PIX_FMT_YUVJ422P = 13 |> Int32
const AV_PIX_FMT_YUVJ444P = 14 |> Int32
const AV_PIX_FMT_UYVY422 = 15 |> Int32
const AV_PIX_FMT_UYYVYY411 = 16 |> Int32
const AV_PIX_FMT_BGR8 = 17 |> Int32
const AV_PIX_FMT_BGR4 = 18 |> Int32
const AV_PIX_FMT_BGR4_BYTE = 19 |> Int32
const AV_PIX_FMT_RGB8 = 20 |> Int32
const AV_PIX_FMT_RGB4 = 21 |> Int32
const AV_PIX_FMT_RGB4_BYTE = 22 |> Int32
const AV_PIX_FMT_NV12 = 23 |> Int32
const AV_PIX_FMT_NV21 = 24 |> Int32
const AV_PIX_FMT_ARGB = 25 |> Int32
const AV_PIX_FMT_RGBA = 26 |> Int32
const AV_PIX_FMT_ABGR = 27 |> Int32
const AV_PIX_FMT_BGRA = 28 |> Int32
const AV_PIX_FMT_GRAY16BE = 29 |> Int32
const AV_PIX_FMT_GRAY16LE = 30 |> Int32
const AV_PIX_FMT_YUV440P = 31 |> Int32
const AV_PIX_FMT_YUVJ440P = 32 |> Int32
const AV_PIX_FMT_YUVA420P = 33 |> Int32
const AV_PIX_FMT_RGB48BE = 34 |> Int32
const AV_PIX_FMT_RGB48LE = 35 |> Int32
const AV_PIX_FMT_RGB565BE = 36 |> Int32
const AV_PIX_FMT_RGB565LE = 37 |> Int32
const AV_PIX_FMT_RGB555BE = 38 |> Int32
const AV_PIX_FMT_RGB555LE = 39 |> Int32
const AV_PIX_FMT_BGR565BE = 40 |> Int32
const AV_PIX_FMT_BGR565LE = 41 |> Int32
const AV_PIX_FMT_BGR555BE = 42 |> Int32
const AV_PIX_FMT_BGR555LE = 43 |> Int32
const AV_PIX_FMT_VAAPI_MOCO = 44 |> Int32
const AV_PIX_FMT_VAAPI_IDCT = 45 |> Int32
const AV_PIX_FMT_VAAPI_VLD = 46 |> Int32
const AV_PIX_FMT_VAAPI = 46 |> Int32
const AV_PIX_FMT_YUV420P16LE = 47 |> Int32
const AV_PIX_FMT_YUV420P16BE = 48 |> Int32
const AV_PIX_FMT_YUV422P16LE = 49 |> Int32
const AV_PIX_FMT_YUV422P16BE = 50 |> Int32
const AV_PIX_FMT_YUV444P16LE = 51 |> Int32
const AV_PIX_FMT_YUV444P16BE = 52 |> Int32
const AV_PIX_FMT_DXVA2_VLD = 53 |> Int32
const AV_PIX_FMT_RGB444LE = 54 |> Int32
const AV_PIX_FMT_RGB444BE = 55 |> Int32
const AV_PIX_FMT_BGR444LE = 56 |> Int32
const AV_PIX_FMT_BGR444BE = 57 |> Int32
const AV_PIX_FMT_YA8 = 58 |> Int32
const AV_PIX_FMT_Y400A = 58 |> Int32
const AV_PIX_FMT_GRAY8A = 58 |> Int32
const AV_PIX_FMT_BGR48BE = 59 |> Int32
const AV_PIX_FMT_BGR48LE = 60 |> Int32
const AV_PIX_FMT_YUV420P9BE = 61 |> Int32
const AV_PIX_FMT_YUV420P9LE = 62 |> Int32
const AV_PIX_FMT_YUV420P10BE = 63 |> Int32
const AV_PIX_FMT_YUV420P10LE = 64 |> Int32
const AV_PIX_FMT_YUV422P10BE = 65 |> Int32
const AV_PIX_FMT_YUV422P10LE = 66 |> Int32
const AV_PIX_FMT_YUV444P9BE = 67 |> Int32
const AV_PIX_FMT_YUV444P9LE = 68 |> Int32
const AV_PIX_FMT_YUV444P10BE = 69 |> Int32
const AV_PIX_FMT_YUV444P10LE = 70 |> Int32
const AV_PIX_FMT_YUV422P9BE = 71 |> Int32
const AV_PIX_FMT_YUV422P9LE = 72 |> Int32
const AV_PIX_FMT_GBRP = 73 |> Int32
const AV_PIX_FMT_GBR24P = 73 |> Int32
const AV_PIX_FMT_GBRP9BE = 74 |> Int32
const AV_PIX_FMT_GBRP9LE = 75 |> Int32
const AV_PIX_FMT_GBRP10BE = 76 |> Int32
const AV_PIX_FMT_GBRP10LE = 77 |> Int32
const AV_PIX_FMT_GBRP16BE = 78 |> Int32
const AV_PIX_FMT_GBRP16LE = 79 |> Int32
const AV_PIX_FMT_YUVA422P = 80 |> Int32
const AV_PIX_FMT_YUVA444P = 81 |> Int32
const AV_PIX_FMT_YUVA420P9BE = 82 |> Int32
const AV_PIX_FMT_YUVA420P9LE = 83 |> Int32
const AV_PIX_FMT_YUVA422P9BE = 84 |> Int32
const AV_PIX_FMT_YUVA422P9LE = 85 |> Int32
const AV_PIX_FMT_YUVA444P9BE = 86 |> Int32
const AV_PIX_FMT_YUVA444P9LE = 87 |> Int32
const AV_PIX_FMT_YUVA420P10BE = 88 |> Int32
const AV_PIX_FMT_YUVA420P10LE = 89 |> Int32
const AV_PIX_FMT_YUVA422P10BE = 90 |> Int32
const AV_PIX_FMT_YUVA422P10LE = 91 |> Int32
const AV_PIX_FMT_YUVA444P10BE = 92 |> Int32
const AV_PIX_FMT_YUVA444P10LE = 93 |> Int32
const AV_PIX_FMT_YUVA420P16BE = 94 |> Int32
const AV_PIX_FMT_YUVA420P16LE = 95 |> Int32
const AV_PIX_FMT_YUVA422P16BE = 96 |> Int32
const AV_PIX_FMT_YUVA422P16LE = 97 |> Int32
const AV_PIX_FMT_YUVA444P16BE = 98 |> Int32
const AV_PIX_FMT_YUVA444P16LE = 99 |> Int32
const AV_PIX_FMT_VDPAU = 100 |> Int32
const AV_PIX_FMT_XYZ12LE = 101 |> Int32
const AV_PIX_FMT_XYZ12BE = 102 |> Int32
const AV_PIX_FMT_NV16 = 103 |> Int32
const AV_PIX_FMT_NV20LE = 104 |> Int32
const AV_PIX_FMT_NV20BE = 105 |> Int32
const AV_PIX_FMT_RGBA64BE = 106 |> Int32
const AV_PIX_FMT_RGBA64LE = 107 |> Int32
const AV_PIX_FMT_BGRA64BE = 108 |> Int32
const AV_PIX_FMT_BGRA64LE = 109 |> Int32
const AV_PIX_FMT_YVYU422 = 110 |> Int32
const AV_PIX_FMT_YA16BE = 111 |> Int32
const AV_PIX_FMT_YA16LE = 112 |> Int32
const AV_PIX_FMT_GBRAP = 113 |> Int32
const AV_PIX_FMT_GBRAP16BE = 114 |> Int32
const AV_PIX_FMT_GBRAP16LE = 115 |> Int32
const AV_PIX_FMT_QSV = 116 |> Int32
const AV_PIX_FMT_MMAL = 117 |> Int32
const AV_PIX_FMT_D3D11VA_VLD = 118 |> Int32
const AV_PIX_FMT_CUDA = 119 |> Int32
const AV_PIX_FMT_0RGB = 120 |> Int32
const AV_PIX_FMT_RGB0 = 121 |> Int32
const AV_PIX_FMT_0BGR = 122 |> Int32
const AV_PIX_FMT_BGR0 = 123 |> Int32
const AV_PIX_FMT_YUV420P12BE = 124 |> Int32
const AV_PIX_FMT_YUV420P12LE = 125 |> Int32
const AV_PIX_FMT_YUV420P14BE = 126 |> Int32
const AV_PIX_FMT_YUV420P14LE = 127 |> Int32
const AV_PIX_FMT_YUV422P12BE = 128 |> Int32
const AV_PIX_FMT_YUV422P12LE = 129 |> Int32
const AV_PIX_FMT_YUV422P14BE = 130 |> Int32
const AV_PIX_FMT_YUV422P14LE = 131 |> Int32
const AV_PIX_FMT_YUV444P12BE = 132 |> Int32
const AV_PIX_FMT_YUV444P12LE = 133 |> Int32
const AV_PIX_FMT_YUV444P14BE = 134 |> Int32
const AV_PIX_FMT_YUV444P14LE = 135 |> Int32
const AV_PIX_FMT_GBRP12BE = 136 |> Int32
const AV_PIX_FMT_GBRP12LE = 137 |> Int32
const AV_PIX_FMT_GBRP14BE = 138 |> Int32
const AV_PIX_FMT_GBRP14LE = 139 |> Int32
const AV_PIX_FMT_YUVJ411P = 140 |> Int32
const AV_PIX_FMT_BAYER_BGGR8 = 141 |> Int32
const AV_PIX_FMT_BAYER_RGGB8 = 142 |> Int32
const AV_PIX_FMT_BAYER_GBRG8 = 143 |> Int32
const AV_PIX_FMT_BAYER_GRBG8 = 144 |> Int32
const AV_PIX_FMT_BAYER_BGGR16LE = 145 |> Int32
const AV_PIX_FMT_BAYER_BGGR16BE = 146 |> Int32
const AV_PIX_FMT_BAYER_RGGB16LE = 147 |> Int32
const AV_PIX_FMT_BAYER_RGGB16BE = 148 |> Int32
const AV_PIX_FMT_BAYER_GBRG16LE = 149 |> Int32
const AV_PIX_FMT_BAYER_GBRG16BE = 150 |> Int32
const AV_PIX_FMT_BAYER_GRBG16LE = 151 |> Int32
const AV_PIX_FMT_BAYER_GRBG16BE = 152 |> Int32
const AV_PIX_FMT_XVMC = 153 |> Int32
const AV_PIX_FMT_YUV440P10LE = 154 |> Int32
const AV_PIX_FMT_YUV440P10BE = 155 |> Int32
const AV_PIX_FMT_YUV440P12LE = 156 |> Int32
const AV_PIX_FMT_YUV440P12BE = 157 |> Int32
const AV_PIX_FMT_AYUV64LE = 158 |> Int32
const AV_PIX_FMT_AYUV64BE = 159 |> Int32
const AV_PIX_FMT_VIDEOTOOLBOX = 160 |> Int32
const AV_PIX_FMT_P010LE = 161 |> Int32
const AV_PIX_FMT_P010BE = 162 |> Int32
const AV_PIX_FMT_GBRAP12BE = 163 |> Int32
const AV_PIX_FMT_GBRAP12LE = 164 |> Int32
const AV_PIX_FMT_GBRAP10BE = 165 |> Int32
const AV_PIX_FMT_GBRAP10LE = 166 |> Int32
const AV_PIX_FMT_MEDIACODEC = 167 |> Int32
const AV_PIX_FMT_GRAY12BE = 168 |> Int32
const AV_PIX_FMT_GRAY12LE = 169 |> Int32
const AV_PIX_FMT_GRAY10BE = 170 |> Int32
const AV_PIX_FMT_GRAY10LE = 171 |> Int32
const AV_PIX_FMT_P016LE = 172 |> Int32
const AV_PIX_FMT_P016BE = 173 |> Int32
const AV_PIX_FMT_D3D11 = 174 |> Int32
const AV_PIX_FMT_GRAY9BE = 175 |> Int32
const AV_PIX_FMT_GRAY9LE = 176 |> Int32
const AV_PIX_FMT_GBRPF32BE = 177 |> Int32
const AV_PIX_FMT_GBRPF32LE = 178 |> Int32
const AV_PIX_FMT_GBRAPF32BE = 179 |> Int32
const AV_PIX_FMT_GBRAPF32LE = 180 |> Int32
const AV_PIX_FMT_DRM_PRIME = 181 |> Int32
const AV_PIX_FMT_OPENCL = 182 |> Int32
const AV_PIX_FMT_GRAY14BE = 183 |> Int32
const AV_PIX_FMT_GRAY14LE = 184 |> Int32
const AV_PIX_FMT_GRAYF32BE = 185 |> Int32
const AV_PIX_FMT_GRAYF32LE = 186 |> Int32
const AV_PIX_FMT_NB = 187 |> Int32
# end enum AVPixelFormat
macro AV_PIX_FMT_NE(be, le)
Symbol("AV_PIX_FMT_"*string(le))
end
const AV_PIX_FMT_RGB32 = @AV_PIX_FMT_NE(ARGB, BGRA)
const AV_PIX_FMT_RGB32_1 = @AV_PIX_FMT_NE(RGBA, ABGR)
const AV_PIX_FMT_BGR32 = @AV_PIX_FMT_NE(ABGR, RGBA)
const AV_PIX_FMT_BGR32_1 = @AV_PIX_FMT_NE(BGRA, ARGB)
const AV_PIX_FMT_0RGB32 = @AV_PIX_FMT_NE(0RGB, BGR0)
const AV_PIX_FMT_0BGR32 = @AV_PIX_FMT_NE(0BGR, RGB0)
const AV_PIX_FMT_GRAY9 = @AV_PIX_FMT_NE(GRAY9BE, GRAY9LE)
const AV_PIX_FMT_GRAY10 = @AV_PIX_FMT_NE(GRAY10BE, GRAY10LE)
const AV_PIX_FMT_GRAY12 = @AV_PIX_FMT_NE(GRAY12BE, GRAY12LE)
const AV_PIX_FMT_GRAY14 = @AV_PIX_FMT_NE(GRAY14BE, GRAY14LE)
const AV_PIX_FMT_GRAY16 = @AV_PIX_FMT_NE(GRAY16BE, GRAY16LE)
const AV_PIX_FMT_YA16 = @AV_PIX_FMT_NE(YA16BE, YA16LE)
const AV_PIX_FMT_RGB48 = @AV_PIX_FMT_NE(RGB48BE, RGB48LE)
const AV_PIX_FMT_RGB565 = @AV_PIX_FMT_NE(RGB565BE, RGB565LE)
const AV_PIX_FMT_RGB555 = @AV_PIX_FMT_NE(RGB555BE, RGB555LE)
const AV_PIX_FMT_RGB444 = @AV_PIX_FMT_NE(RGB444BE, RGB444LE)
const AV_PIX_FMT_RGBA64 = @AV_PIX_FMT_NE(RGBA64BE, RGBA64LE)
const AV_PIX_FMT_BGR48 = @AV_PIX_FMT_NE(BGR48BE, BGR48LE)
const AV_PIX_FMT_BGR565 = @AV_PIX_FMT_NE(BGR565BE, BGR565LE)
const AV_PIX_FMT_BGR555 = @AV_PIX_FMT_NE(BGR555BE, BGR555LE)
const AV_PIX_FMT_BGR444 = @AV_PIX_FMT_NE(BGR444BE, BGR444LE)
const AV_PIX_FMT_BGRA64 = @AV_PIX_FMT_NE(BGRA64BE, BGRA64LE)
const AV_PIX_FMT_YUV420P9 = @AV_PIX_FMT_NE(YUV420P9BE, YUV420P9LE)
const AV_PIX_FMT_YUV422P9 = @AV_PIX_FMT_NE(YUV422P9BE, YUV422P9LE)
const AV_PIX_FMT_YUV444P9 = @AV_PIX_FMT_NE(YUV444P9BE, YUV444P9LE)
const AV_PIX_FMT_YUV420P10 = @AV_PIX_FMT_NE(YUV420P10BE, YUV420P10LE)
const AV_PIX_FMT_YUV422P10 = @AV_PIX_FMT_NE(YUV422P10BE, YUV422P10LE)
const AV_PIX_FMT_YUV440P10 = @AV_PIX_FMT_NE(YUV440P10BE, YUV440P10LE)
const AV_PIX_FMT_YUV444P10 = @AV_PIX_FMT_NE(YUV444P10BE, YUV444P10LE)
const AV_PIX_FMT_YUV420P12 = @AV_PIX_FMT_NE(YUV420P12BE, YUV420P12LE)
const AV_PIX_FMT_YUV422P12 = @AV_PIX_FMT_NE(YUV422P12BE, YUV422P12LE)
const AV_PIX_FMT_YUV440P12 = @AV_PIX_FMT_NE(YUV440P12BE, YUV440P12LE)
const AV_PIX_FMT_YUV444P12 = @AV_PIX_FMT_NE(YUV444P12BE, YUV444P12LE)
const AV_PIX_FMT_YUV420P14 = @AV_PIX_FMT_NE(YUV420P14BE, YUV420P14LE)
const AV_PIX_FMT_YUV422P14 = @AV_PIX_FMT_NE(YUV422P14BE, YUV422P14LE)
const AV_PIX_FMT_YUV444P14 = @AV_PIX_FMT_NE(YUV444P14BE, YUV444P14LE)
const AV_PIX_FMT_YUV420P16 = @AV_PIX_FMT_NE(YUV420P16BE, YUV420P16LE)
const AV_PIX_FMT_YUV422P16 = @AV_PIX_FMT_NE(YUV422P16BE, YUV422P16LE)
const AV_PIX_FMT_YUV444P16 = @AV_PIX_FMT_NE(YUV444P16BE, YUV444P16LE)
const AV_PIX_FMT_GBRP9 = @AV_PIX_FMT_NE(GBRP9BE, GBRP9LE)
const AV_PIX_FMT_GBRP10 = @AV_PIX_FMT_NE(GBRP10BE, GBRP10LE)
const AV_PIX_FMT_GBRP12 = @AV_PIX_FMT_NE(GBRP12BE, GBRP12LE)
const AV_PIX_FMT_GBRP14 = @AV_PIX_FMT_NE(GBRP14BE, GBRP14LE)
const AV_PIX_FMT_GBRP16 = @AV_PIX_FMT_NE(GBRP16BE, GBRP16LE)
const AV_PIX_FMT_GBRAP10 = @AV_PIX_FMT_NE(GBRAP10BE, GBRAP10LE)
const AV_PIX_FMT_GBRAP12 = @AV_PIX_FMT_NE(GBRAP12BE, GBRAP12LE)
const AV_PIX_FMT_GBRAP16 = @AV_PIX_FMT_NE(GBRAP16BE, GBRAP16LE)
const AV_PIX_FMT_BAYER_BGGR16 = @AV_PIX_FMT_NE(BAYER_BGGR16BE, BAYER_BGGR16LE)
const AV_PIX_FMT_BAYER_RGGB16 = @AV_PIX_FMT_NE(BAYER_RGGB16BE, BAYER_RGGB16LE)
const AV_PIX_FMT_BAYER_GBRG16 = @AV_PIX_FMT_NE(BAYER_GBRG16BE, BAYER_GBRG16LE)
const AV_PIX_FMT_BAYER_GRBG16 = @AV_PIX_FMT_NE(BAYER_GRBG16BE, BAYER_GRBG16LE)
const AV_PIX_FMT_GBRPF32 = @AV_PIX_FMT_NE(GBRPF32BE, GBRPF32LE)
const AV_PIX_FMT_GBRAPF32 = @AV_PIX_FMT_NE(GBRAPF32BE, GBRAPF32LE)
const AV_PIX_FMT_GRAYF32 = @AV_PIX_FMT_NE(GRAYF32BE, GRAYF32LE)
const AV_PIX_FMT_YUVA420P9 = @AV_PIX_FMT_NE(YUVA420P9BE, YUVA420P9LE)
const AV_PIX_FMT_YUVA422P9 = @AV_PIX_FMT_NE(YUVA422P9BE, YUVA422P9LE)
const AV_PIX_FMT_YUVA444P9 = @AV_PIX_FMT_NE(YUVA444P9BE, YUVA444P9LE)
const AV_PIX_FMT_YUVA420P10 = @AV_PIX_FMT_NE(YUVA420P10BE, YUVA420P10LE)
const AV_PIX_FMT_YUVA422P10 = @AV_PIX_FMT_NE(YUVA422P10BE, YUVA422P10LE)
const AV_PIX_FMT_YUVA444P10 = @AV_PIX_FMT_NE(YUVA444P10BE, YUVA444P10LE)
const AV_PIX_FMT_YUVA420P16 = @AV_PIX_FMT_NE(YUVA420P16BE, YUVA420P16LE)
const AV_PIX_FMT_YUVA422P16 = @AV_PIX_FMT_NE(YUVA422P16BE, YUVA422P16LE)
const AV_PIX_FMT_YUVA444P16 = @AV_PIX_FMT_NE(YUVA444P16BE, YUVA444P16LE)
const AV_PIX_FMT_XYZ12 = @AV_PIX_FMT_NE(XYZ12BE, XYZ12LE)
const AV_PIX_FMT_NV20 = @AV_PIX_FMT_NE(NV20BE, NV20LE)
const AV_PIX_FMT_AYUV64 = @AV_PIX_FMT_NE(AYUV64BE, AYUV64LE)
const AV_PIX_FMT_P010 = @AV_PIX_FMT_NE(P010BE, P010LE)
const AV_PIX_FMT_P016 = @AV_PIX_FMT_NE(P016BE, P016LE)
# begin enum AVColorPrimaries
const AVColorPrimaries = UInt32
const AVCOL_PRI_RESERVED0 = 0 |> UInt32
const AVCOL_PRI_BT709 = 1 |> UInt32
const AVCOL_PRI_UNSPECIFIED = 2 |> UInt32
const AVCOL_PRI_RESERVED = 3 |> UInt32
const AVCOL_PRI_BT470M = 4 |> UInt32
const AVCOL_PRI_BT470BG = 5 |> UInt32
const AVCOL_PRI_SMPTE170M = 6 |> UInt32
const AVCOL_PRI_SMPTE240M = 7 |> UInt32
const AVCOL_PRI_FILM = 8 |> UInt32
const AVCOL_PRI_BT2020 = 9 |> UInt32
const AVCOL_PRI_SMPTE428 = 10 |> UInt32
const AVCOL_PRI_SMPTEST428_1 = 10 |> UInt32
const AVCOL_PRI_SMPTE431 = 11 |> UInt32
const AVCOL_PRI_SMPTE432 = 12 |> UInt32
const AVCOL_PRI_JEDEC_P22 = 22 |> UInt32
const AVCOL_PRI_NB = 23 |> UInt32
# end enum AVColorPrimaries
# begin enum AVColorTransferCharacteristic
const AVColorTransferCharacteristic = UInt32
const AVCOL_TRC_RESERVED0 = 0 |> UInt32
const AVCOL_TRC_BT709 = 1 |> UInt32
const AVCOL_TRC_UNSPECIFIED = 2 |> UInt32
const AVCOL_TRC_RESERVED = 3 |> UInt32
const AVCOL_TRC_GAMMA22 = 4 |> UInt32
const AVCOL_TRC_GAMMA28 = 5 |> UInt32
const AVCOL_TRC_SMPTE170M = 6 |> UInt32
const AVCOL_TRC_SMPTE240M = 7 |> UInt32
const AVCOL_TRC_LINEAR = 8 |> UInt32
const AVCOL_TRC_LOG = 9 |> UInt32
const AVCOL_TRC_LOG_SQRT = 10 |> UInt32
const AVCOL_TRC_IEC61966_2_4 = 11 |> UInt32
const AVCOL_TRC_BT1361_ECG = 12 |> UInt32
const AVCOL_TRC_IEC61966_2_1 = 13 |> UInt32
const AVCOL_TRC_BT2020_10 = 14 |> UInt32
const AVCOL_TRC_BT2020_12 = 15 |> UInt32
const AVCOL_TRC_SMPTE2084 = 16 |> UInt32
const AVCOL_TRC_SMPTEST2084 = 16 |> UInt32
const AVCOL_TRC_SMPTE428 = 17 |> UInt32
const AVCOL_TRC_SMPTEST428_1 = 17 |> UInt32
const AVCOL_TRC_ARIB_STD_B67 = 18 |> UInt32
const AVCOL_TRC_NB = 19 |> UInt32
# end enum AVColorTransferCharacteristic
# begin enum AVColorSpace
const AVColorSpace = UInt32
const AVCOL_SPC_RGB = 0 |> UInt32
const AVCOL_SPC_BT709 = 1 |> UInt32
const AVCOL_SPC_UNSPECIFIED = 2 |> UInt32
const AVCOL_SPC_RESERVED = 3 |> UInt32
const AVCOL_SPC_FCC = 4 |> UInt32
const AVCOL_SPC_BT470BG = 5 |> UInt32
const AVCOL_SPC_SMPTE170M = 6 |> UInt32
const AVCOL_SPC_SMPTE240M = 7 |> UInt32
const AVCOL_SPC_YCGCO = 8 |> UInt32
const AVCOL_SPC_YCOCG = 8 |> UInt32
const AVCOL_SPC_BT2020_NCL = 9 |> UInt32
const AVCOL_SPC_BT2020_CL = 10 |> UInt32
const AVCOL_SPC_SMPTE2085 = 11 |> UInt32
const AVCOL_SPC_CHROMA_DERIVED_NCL = 12 |> UInt32
const AVCOL_SPC_CHROMA_DERIVED_CL = 13 |> UInt32
const AVCOL_SPC_ICTCP = 14 |> UInt32
const AVCOL_SPC_NB = 15 |> UInt32
# end enum AVColorSpace
# begin enum AVColorRange
const AVColorRange = UInt32
const AVCOL_RANGE_UNSPECIFIED = 0 |> UInt32
const AVCOL_RANGE_MPEG = 1 |> UInt32
const AVCOL_RANGE_JPEG = 2 |> UInt32
const AVCOL_RANGE_NB = 3 |> UInt32
# end enum AVColorRange
# begin enum AVChromaLocation
const AVChromaLocation = UInt32
const AVCHROMA_LOC_UNSPECIFIED = 0 |> UInt32
const AVCHROMA_LOC_LEFT = 1 |> UInt32
const AVCHROMA_LOC_CENTER = 2 |> UInt32
const AVCHROMA_LOC_TOPLEFT = 3 |> UInt32
const AVCHROMA_LOC_TOP = 4 |> UInt32
const AVCHROMA_LOC_BOTTOMLEFT = 5 |> UInt32
const AVCHROMA_LOC_BOTTOM = 6 |> UInt32
const AVCHROMA_LOC_NB = 7 |> UInt32
# end enum AVChromaLocation
# begin enum AVSampleFormat
const AVSampleFormat = Cint
const AV_SAMPLE_FMT_NONE = -1 |> Int32
const AV_SAMPLE_FMT_U8 = 0 |> Int32
const AV_SAMPLE_FMT_S16 = 1 |> Int32
const AV_SAMPLE_FMT_S32 = 2 |> Int32
const AV_SAMPLE_FMT_FLT = 3 |> Int32
const AV_SAMPLE_FMT_DBL = 4 |> Int32
const AV_SAMPLE_FMT_U8P = 5 |> Int32
const AV_SAMPLE_FMT_S16P = 6 |> Int32
const AV_SAMPLE_FMT_S32P = 7 |> Int32
const AV_SAMPLE_FMT_FLTP = 8 |> Int32
const AV_SAMPLE_FMT_DBLP = 9 |> Int32
const AV_SAMPLE_FMT_S64 = 10 |> Int32
const AV_SAMPLE_FMT_S64P = 11 |> Int32
const AV_SAMPLE_FMT_NB = 12 |> Int32
# end enum AVSampleFormat
# Skipping MacroDefinition: AV_VERSION_INT ( a , b , c ) ( ( a ) << 16 | ( b ) << 8 | ( c ) )
# Skipping MacroDefinition: AV_VERSION_DOT ( a , b , c ) a ## . ## b ## . ## c
# Skipping MacroDefinition: AV_VERSION ( a , b , c ) AV_VERSION_DOT ( a , b , c )
# Skipping MacroDefinition: AV_VERSION_MAJOR ( a ) ( ( a ) >> 16 )
# Skipping MacroDefinition: AV_VERSION_MINOR ( a ) ( ( ( a ) & 0x00FF00 ) >> 8 )
# Skipping MacroDefinition: AV_VERSION_MICRO ( a ) ( ( a ) & 0xFF )
const LIBAVUTIL_VERSION_MAJOR = 56
const LIBAVUTIL_VERSION_MINOR = 22
const LIBAVUTIL_VERSION_MICRO = 100
# Skipping MacroDefinition: LIBAVUTIL_VERSION_INT AV_VERSION_INT ( LIBAVUTIL_VERSION_MAJOR , LIBAVUTIL_VERSION_MINOR , LIBAVUTIL_VERSION_MICRO )
# Skipping MacroDefinition: LIBAVUTIL_VERSION AV_VERSION ( LIBAVUTIL_VERSION_MAJOR , LIBAVUTIL_VERSION_MINOR , LIBAVUTIL_VERSION_MICRO )
# const LIBAVUTIL_BUILD = LIBAVUTIL_VERSION_INT
# Skipping MacroDefinition: LIBAVUTIL_IDENT "Lavu" AV_STRINGIFY ( LIBAVUTIL_VERSION )
# Skipping MacroDefinition: FF_API_VAAPI ( LIBAVUTIL_VERSION_MAJOR < 57 )
# Skipping MacroDefinition: FF_API_FRAME_QP ( LIBAVUTIL_VERSION_MAJOR < 57 )
# Skipping MacroDefinition: FF_API_PLUS1_MINUS1 ( LIBAVUTIL_VERSION_MAJOR < 57 )
# Skipping MacroDefinition: FF_API_ERROR_FRAME ( LIBAVUTIL_VERSION_MAJOR < 57 )
# Skipping MacroDefinition: FF_API_PKT_PTS ( LIBAVUTIL_VERSION_MAJOR < 57 )
# Skipping MacroDefinition: FF_API_CRYPTO_SIZE_T ( LIBAVUTIL_VERSION_MAJOR < 57 )
# Skipping MacroDefinition: FF_API_FRAME_GET_SET ( LIBAVUTIL_VERSION_MAJOR < 57 )
# Skipping MacroDefinition: FF_API_PSEUDOPAL ( LIBAVUTIL_VERSION_MAJOR < 57 )
const AES_CTR_KEY_SIZE = 16
const AES_CTR_IV_SIZE = 8
struct AVAESCTR
end
struct AVAudioFifo
end
struct AVCAMELLIA
end
struct AVCAST5
end
const AV_CH_FRONT_LEFT = 0x00000001
const AV_CH_FRONT_RIGHT = 0x00000002
const AV_CH_FRONT_CENTER = 0x00000004
const AV_CH_LOW_FREQUENCY = 0x00000008
const AV_CH_BACK_LEFT = 0x00000010
const AV_CH_BACK_RIGHT = 0x00000020
const AV_CH_FRONT_LEFT_OF_CENTER = 0x00000040
const AV_CH_FRONT_RIGHT_OF_CENTER = 0x00000080
const AV_CH_BACK_CENTER = 0x00000100
const AV_CH_SIDE_LEFT = 0x00000200
const AV_CH_SIDE_RIGHT = 0x00000400
const AV_CH_TOP_CENTER = 0x00000800
const AV_CH_TOP_FRONT_LEFT = 0x00001000
const AV_CH_TOP_FRONT_CENTER = 0x00002000
const AV_CH_TOP_FRONT_RIGHT = 0x00004000
const AV_CH_TOP_BACK_LEFT = 0x00008000
const AV_CH_TOP_BACK_CENTER = 0x00010000
const AV_CH_TOP_BACK_RIGHT = 0x00020000
const AV_CH_STEREO_LEFT = 0x20000000
const AV_CH_STEREO_RIGHT = 0x40000000
const AV_CH_WIDE_LEFT = UInt64(0x0000000080000000)
const AV_CH_WIDE_RIGHT = UInt64(0x0000000100000000)
const AV_CH_SURROUND_DIRECT_LEFT = UInt64(0x0000000200000000)
const AV_CH_SURROUND_DIRECT_RIGHT = UInt64(0x0000000400000000)
const AV_CH_LOW_FREQUENCY_2 = UInt64(0x0000000800000000)
const AV_CH_LAYOUT_NATIVE = UInt64(0x8000000000000000)
const AV_CH_LAYOUT_MONO = AV_CH_FRONT_CENTER
const AV_CH_LAYOUT_STEREO = AV_CH_FRONT_LEFT | AV_CH_FRONT_RIGHT
const AV_CH_LAYOUT_2POINT1 = AV_CH_LAYOUT_STEREO | AV_CH_LOW_FREQUENCY
const AV_CH_LAYOUT_2_1 = AV_CH_LAYOUT_STEREO | AV_CH_BACK_CENTER
const AV_CH_LAYOUT_SURROUND = AV_CH_LAYOUT_STEREO | AV_CH_FRONT_CENTER
const AV_CH_LAYOUT_3POINT1 = AV_CH_LAYOUT_SURROUND | AV_CH_LOW_FREQUENCY
const AV_CH_LAYOUT_4POINT0 = AV_CH_LAYOUT_SURROUND | AV_CH_BACK_CENTER
const AV_CH_LAYOUT_4POINT1 = AV_CH_LAYOUT_4POINT0 | AV_CH_LOW_FREQUENCY
const AV_CH_LAYOUT_2_2 = (AV_CH_LAYOUT_STEREO | AV_CH_SIDE_LEFT) | AV_CH_SIDE_RIGHT
const AV_CH_LAYOUT_QUAD = (AV_CH_LAYOUT_STEREO | AV_CH_BACK_LEFT) | AV_CH_BACK_RIGHT
const AV_CH_LAYOUT_5POINT0 = (AV_CH_LAYOUT_SURROUND | AV_CH_SIDE_LEFT) | AV_CH_SIDE_RIGHT
const AV_CH_LAYOUT_5POINT1 = AV_CH_LAYOUT_5POINT0 | AV_CH_LOW_FREQUENCY
const AV_CH_LAYOUT_5POINT0_BACK = (AV_CH_LAYOUT_SURROUND | AV_CH_BACK_LEFT) | AV_CH_BACK_RIGHT
const AV_CH_LAYOUT_5POINT1_BACK = AV_CH_LAYOUT_5POINT0_BACK | AV_CH_LOW_FREQUENCY
const AV_CH_LAYOUT_6POINT0 = AV_CH_LAYOUT_5POINT0 | AV_CH_BACK_CENTER
const AV_CH_LAYOUT_6POINT0_FRONT = (AV_CH_LAYOUT_2_2 | AV_CH_FRONT_LEFT_OF_CENTER) | AV_CH_FRONT_RIGHT_OF_CENTER
const AV_CH_LAYOUT_HEXAGONAL = AV_CH_LAYOUT_5POINT0_BACK | AV_CH_BACK_CENTER
const AV_CH_LAYOUT_6POINT1 = AV_CH_LAYOUT_5POINT1 | AV_CH_BACK_CENTER
const AV_CH_LAYOUT_6POINT1_BACK = AV_CH_LAYOUT_5POINT1_BACK | AV_CH_BACK_CENTER
const AV_CH_LAYOUT_6POINT1_FRONT = AV_CH_LAYOUT_6POINT0_FRONT | AV_CH_LOW_FREQUENCY
const AV_CH_LAYOUT_7POINT0 = (AV_CH_LAYOUT_5POINT0 | AV_CH_BACK_LEFT) | AV_CH_BACK_RIGHT
const AV_CH_LAYOUT_7POINT0_FRONT = (AV_CH_LAYOUT_5POINT0 | AV_CH_FRONT_LEFT_OF_CENTER) | AV_CH_FRONT_RIGHT_OF_CENTER
const AV_CH_LAYOUT_7POINT1 = (AV_CH_LAYOUT_5POINT1 | AV_CH_BACK_LEFT) | AV_CH_BACK_RIGHT
const AV_CH_LAYOUT_7POINT1_WIDE = (AV_CH_LAYOUT_5POINT1 | AV_CH_FRONT_LEFT_OF_CENTER) | AV_CH_FRONT_RIGHT_OF_CENTER
const AV_CH_LAYOUT_7POINT1_WIDE_BACK = (AV_CH_LAYOUT_5POINT1_BACK | AV_CH_FRONT_LEFT_OF_CENTER) | AV_CH_FRONT_RIGHT_OF_CENTER
const AV_CH_LAYOUT_OCTAGONAL = ((AV_CH_LAYOUT_5POINT0 | AV_CH_BACK_LEFT) | AV_CH_BACK_CENTER) | AV_CH_BACK_RIGHT
const AV_CH_LAYOUT_HEXADECAGONAL = (((((((AV_CH_LAYOUT_OCTAGONAL | AV_CH_WIDE_LEFT) | AV_CH_WIDE_RIGHT) | AV_CH_TOP_BACK_LEFT) | AV_CH_TOP_BACK_RIGHT) | AV_CH_TOP_BACK_CENTER) | AV_CH_TOP_FRONT_CENTER) | AV_CH_TOP_FRONT_LEFT) | AV_CH_TOP_FRONT_RIGHT
const AV_CH_LAYOUT_STEREO_DOWNMIX = AV_CH_STEREO_LEFT | AV_CH_STEREO_RIGHT
# begin enum AVMatrixEncoding
const AVMatrixEncoding = UInt32
const AV_MATRIX_ENCODING_NONE = 0 |> UInt32
const AV_MATRIX_ENCODING_DOLBY = 1 |> UInt32
const AV_MATRIX_ENCODING_DPLII = 2 |> UInt32
const AV_MATRIX_ENCODING_DPLIIX = 3 |> UInt32
const AV_MATRIX_ENCODING_DPLIIZ = 4 |> UInt32
const AV_MATRIX_ENCODING_DOLBYEX = 5 |> UInt32
const AV_MATRIX_ENCODING_DOLBYHEADPHONE = 6 |> UInt32
const AV_MATRIX_ENCODING_NB = 7 |> UInt32
# end enum AVMatrixEncoding
struct AVBPrint
end
struct AVDES
round_keys::NTuple{3, NTuple{16, UInt64}}
triple_des::Cint
end
# begin enum AVDownmixType
const AVDownmixType = UInt32
const AV_DOWNMIX_TYPE_UNKNOWN = 0 |> UInt32
const AV_DOWNMIX_TYPE_LORO = 1 |> UInt32
const AV_DOWNMIX_TYPE_LTRT = 2 |> UInt32
const AV_DOWNMIX_TYPE_DPLII = 3 |> UInt32
const AV_DOWNMIX_TYPE_NB = 4 |> UInt32
# end enum AVDownmixType
struct AVDownmixInfo
preferred_downmix_type::AVDownmixType
center_mix_level::Cdouble
center_mix_level_ltrt::Cdouble
surround_mix_level::Cdouble
surround_mix_level_ltrt::Cdouble
lfe_mix_level::Cdouble
end
struct AVSubsampleEncryptionInfo
bytes_of_clear_data::UInt32
bytes_of_protected_data::UInt32
end
struct AVEncryptionInfo
scheme::UInt32
crypt_byte_block::UInt32
skip_byte_block::UInt32
key_id::Ptr{UInt8}
key_id_size::UInt32
iv::Ptr{UInt8}
iv_size::UInt32
subsamples::Ptr{AVSubsampleEncryptionInfo}
subsample_count::UInt32
end
struct AVEncryptionInitInfo
system_id::Ptr{UInt8}
system_id_size::UInt32
key_ids::Ptr{Ptr{UInt8}}
num_key_ids::UInt32
key_id_size::UInt32
data::Ptr{UInt8}
data_size::UInt32
next::Ptr{AVEncryptionInitInfo}
end
const AV_HASH_MAX_SIZE = 64
struct AVHashContext
end
# begin enum AVHWDeviceType
const AVHWDeviceType = UInt32
const AV_HWDEVICE_TYPE_NONE = 0 |> UInt32
const AV_HWDEVICE_TYPE_VDPAU = 1 |> UInt32
const AV_HWDEVICE_TYPE_CUDA = 2 |> UInt32
const AV_HWDEVICE_TYPE_VAAPI = 3 |> UInt32
const AV_HWDEVICE_TYPE_DXVA2 = 4 |> UInt32
const AV_HWDEVICE_TYPE_QSV = 5 |> UInt32
const AV_HWDEVICE_TYPE_VIDEOTOOLBOX = 6 |> UInt32
const AV_HWDEVICE_TYPE_D3D11VA = 7 |> UInt32
const AV_HWDEVICE_TYPE_DRM = 8 |> UInt32
const AV_HWDEVICE_TYPE_OPENCL = 9 |> UInt32
const AV_HWDEVICE_TYPE_MEDIACODEC = 10 |> UInt32
# end enum AVHWDeviceType
struct AVHWDeviceInternal
end
struct AVHWDeviceContext
av_class::Ptr{AVClass}
internal::Ptr{AVHWDeviceInternal}
_type::AVHWDeviceType
hwctx::Ptr{Cvoid}
free::Ptr{Cvoid}
user_opaque::Ptr{Cvoid}
end
struct AVHWFramesInternal
end
struct AVHWFramesContext
av_class::Ptr{AVClass}
internal::Ptr{AVHWFramesInternal}
device_ref::Ptr{AVBufferRef}
device_ctx::Ptr{AVHWDeviceContext}
hwctx::Ptr{Cvoid}
free::Ptr{Cvoid}
user_opaque::Ptr{Cvoid}
pool::Ptr{AVBufferPool}
initial_pool_size::Cint
format::AVPixelFormat
sw_format::AVPixelFormat
width::Cint
height::Cint
end
# begin enum AVHWFrameTransferDirection
const AVHWFrameTransferDirection = UInt32
const AV_HWFRAME_TRANSFER_DIRECTION_FROM = 0 |> UInt32
const AV_HWFRAME_TRANSFER_DIRECTION_TO = 1 |> UInt32
# end enum AVHWFrameTransferDirection
struct AVHWFramesConstraints
valid_hw_formats::Ptr{AVPixelFormat}
valid_sw_formats::Ptr{AVPixelFormat}
min_width::Cint
min_height::Cint
max_width::Cint
max_height::Cint
end
# begin enum ANONYMOUS_3
const ANONYMOUS_3 = UInt32
const AV_HWFRAME_MAP_READ = 1 |> UInt32
const AV_HWFRAME_MAP_WRITE = 2 |> UInt32
const AV_HWFRAME_MAP_OVERWRITE = 4 |> UInt32
const AV_HWFRAME_MAP_DIRECT = 8 |> UInt32
# end enum ANONYMOUS_3
struct AVCUDADeviceContextInternal
end
struct AVCUDADeviceContext
cuda_ctx::Cint
stream::Cint
internal::Ptr{AVCUDADeviceContextInternal}
end
struct AVD3D11VADeviceContext
device::Ptr{Cint}
device_context::Ptr{Cint}
video_device::Ptr{Cint}
video_context::Ptr{Cint}
lock::Ptr{Cvoid}
unlock::Ptr{Cvoid}
lock_ctx::Ptr{Cvoid}
end
struct AVD3D11FrameDescriptor
texture::Ptr{Cint}
index::Cint
end
struct AVD3D11VAFramesContext
texture::Ptr{Cint}
BindFlags::Cint
MiscFlags::Cint
end
# begin enum ANONYMOUS_4
const ANONYMOUS_4 = UInt32
const AV_DRM_MAX_PLANES = 4 |> UInt32
# end enum ANONYMOUS_4
struct AVDRMObjectDescriptor
fd::Cint
size::Csize_t
format_modifier::UInt64
end
struct AVDRMPlaneDescriptor
object_index::Cint
offset::Cptrdiff_t
pitch::Cptrdiff_t
end
struct AVDRMLayerDescriptor
format::UInt32
nb_planes::Cint
planes::NTuple{4, AVDRMPlaneDescriptor}
end
struct AVDRMFrameDescriptor
nb_objects::Cint
objects::NTuple{4, AVDRMObjectDescriptor}
nb_layers::Cint
layers::NTuple{4, AVDRMLayerDescriptor}
end
struct AVDRMDeviceContext
fd::Cint
end
struct AVDXVA2DeviceContext
devmgr::Ptr{Cint}
end
struct AVDXVA2FramesContext
surface_type::Cint
surfaces::Ptr{Ptr{Cint}}
nb_surfaces::Cint
decoder_to_release::Ptr{Cint}
end
struct AVMediaCodecDeviceContext
surface::Ptr{Cvoid}
end
struct AVQSVDeviceContext
session::Cint
end
struct AVQSVFramesContext
surfaces::Ptr{Cint}
nb_surfaces::Cint
frame_type::Cint
end
# begin enum ANONYMOUS_5
const ANONYMOUS_5 = UInt32
const AV_VAAPI_DRIVER_QUIRK_USER_SET = 1 |> UInt32
const AV_VAAPI_DRIVER_QUIRK_RENDER_PARAM_BUFFERS = 2 |> UInt32
const AV_VAAPI_DRIVER_QUIRK_ATTRIB_MEMTYPE = 4 |> UInt32
const AV_VAAPI_DRIVER_QUIRK_SURFACE_ATTRIBUTES = 8 |> UInt32
# end enum ANONYMOUS_5
# struct AVVAAPIDeviceContext
# display::VADisplay
# driver_quirks::UInt32
# end
# struct AVVAAPIFramesContext
# attributes::Ptr{VASurfaceAttrib}
# nb_attributes::Cint
# surface_ids::Ptr{VASurfaceID}
# nb_surfaces::Cint
# end
# struct AVVAAPIHWConfig
# config_id::VAConfigID
# end
# struct AVVDPAUDeviceContext
# device::VdpDevice
# get_proc_address::Ptr{VdpGetProcAddress}
# end
struct AVMasteringDisplayMetadata
display_primaries::NTuple{3, NTuple{2, AVRational}}
white_point::NTuple{2, AVRational}
min_luminance::AVRational
max_luminance::AVRational
has_primaries::Cint
has_luminance::Cint
end
struct AVContentLightMetadata
MaxCLL::UInt32
MaxFALL::UInt32
end
struct AVMotionVector
source::Int32
w::UInt8
h::UInt8
src_x::Int16
src_y::Int16
dst_x::Int16
dst_y::Int16
flags::UInt64
motion_x::Int32
motion_y::Int32
motion_scale::UInt16
end
const AV_OPT_FLAG_ENCODING_PARAM = 1
const AV_OPT_FLAG_DECODING_PARAM = 2
const AV_OPT_FLAG_AUDIO_PARAM = 8
const AV_OPT_FLAG_VIDEO_PARAM = 16
const AV_OPT_FLAG_SUBTITLE_PARAM = 32
const AV_OPT_FLAG_EXPORT = 64
const AV_OPT_FLAG_READONLY = 128
const AV_OPT_FLAG_BSF_PARAM = 1 << 8
const AV_OPT_FLAG_FILTERING_PARAM = 1 << 16
const AV_OPT_FLAG_DEPRECATED = 1 << 17
const AV_OPT_SEARCH_CHILDREN = 1 << 0
const AV_OPT_SEARCH_FAKE_OBJ = 1 << 1
const AV_OPT_ALLOW_NULL = 1 << 2
const AV_OPT_MULTI_COMPONENT_RANGE = 1 << 12
# Skipping MacroDefinition: av_opt_set_int_list ( obj , name , val , term , flags ) ( av_int_list_length ( val , term ) > INT_MAX / sizeof ( * ( val ) ) ? AVERROR ( EINVAL ) : av_opt_set_bin ( obj , name , ( const uint8_t * ) ( val ) , av_int_list_length ( val , term ) * sizeof ( * ( val ) ) , flags ) )
const AV_OPT_SERIALIZE_SKIP_DEFAULTS = 0x00000001
const AV_OPT_SERIALIZE_OPT_FLAGS_EXACT = 0x00000002
# begin enum ANONYMOUS_6
const ANONYMOUS_6 = UInt32
const AV_OPT_FLAG_IMPLICIT_KEY = 1 |> UInt32
# end enum ANONYMOUS_6
const av_pixelutils_sad_fn = Ptr{Cvoid}
struct AVRC4
state::NTuple{256, UInt8}
x::Cint
y::Cint
end
struct AVReplayGain
track_gain::Int32
track_peak::UInt32
album_gain::Int32
album_peak::UInt32
end
# begin enum AVSphericalProjection
const AVSphericalProjection = UInt32
const AV_SPHERICAL_EQUIRECTANGULAR = 0 |> UInt32
const AV_SPHERICAL_CUBEMAP = 1 |> UInt32
const AV_SPHERICAL_EQUIRECTANGULAR_TILE = 2 |> UInt32
# end enum AVSphericalProjection
struct AVSphericalMapping
projection::AVSphericalProjection
yaw::Int32
pitch::Int32
roll::Int32
bound_left::UInt32
bound_top::UInt32
bound_right::UInt32
bound_bottom::UInt32
padding::UInt32
end
const AV_STEREO3D_FLAG_INVERT = 1 << 0
# begin enum AVStereo3DType
const AVStereo3DType = UInt32
const AV_STEREO3D_2D = 0 |> UInt32
const AV_STEREO3D_SIDEBYSIDE = 1 |> UInt32
const AV_STEREO3D_TOPBOTTOM = 2 |> UInt32
const AV_STEREO3D_FRAMESEQUENCE = 3 |> UInt32
const AV_STEREO3D_CHECKERBOARD = 4 |> UInt32
const AV_STEREO3D_SIDEBYSIDE_QUINCUNX = 5 |> UInt32
const AV_STEREO3D_LINES = 6 |> UInt32
const AV_STEREO3D_COLUMNS = 7 |> UInt32
# end enum AVStereo3DType
# begin enum AVStereo3DView
const AVStereo3DView = UInt32
const AV_STEREO3D_VIEW_PACKED = 0 |> UInt32
const AV_STEREO3D_VIEW_LEFT = 1 |> UInt32
const AV_STEREO3D_VIEW_RIGHT = 2 |> UInt32
# end enum AVStereo3DView
struct AVStereo3D
_type::AVStereo3DType
flags::Cint
view::AVStereo3DView
end
struct AVTEA
end
struct AVThreadMessageQueue
end
# begin enum AVThreadMessageFlags
const AVThreadMessageFlags = UInt32
const AV_THREAD_MESSAGE_NONBLOCK = 1 |> UInt32
# end enum AVThreadMessageFlags
const AV_TIMECODE_STR_SIZE = 23
# begin enum AVTimecodeFlag
const AVTimecodeFlag = UInt32
const AV_TIMECODE_FLAG_DROPFRAME = 1 |> UInt32
const AV_TIMECODE_FLAG_24HOURSMAX = 2 |> UInt32
const AV_TIMECODE_FLAG_ALLOWNEGATIVE = 4 |> UInt32
# end enum AVTimecodeFlag
const AVTimecode =
struct AVTreeNode
end
struct AVTWOFISH
end
struct AVXTEA
key::NTuple{16, UInt32}
end
| [
2,
17406,
4142,
7560,
1262,
1012,
648,
13,
20362,
14441,
62,
66,
11,
2196,
657,
13,
15,
13,
15,
198,
198,
11748,
7308,
13,
22570,
628,
198,
39344,
198,
220,
220,
220,
555,
844,
11,
198,
220,
220,
220,
32639,
11,
198,
220,
220,
220,
14661,
62,
34694,
62,
33,
11159,
11,
198,
220,
220,
220,
14661,
62,
45,
3185,
4694,
62,
39488,
11,
198,
220,
220,
220,
14661,
62,
37,
11698,
4093,
62,
22921,
62,
18601,
2751,
62,
33489,
11,
198,
220,
220,
220,
14661,
13152,
6030,
11,
198,
220,
220,
220,
14661,
30733,
3539,
62,
25216,
62,
4944,
44706,
11,
198,
220,
220,
220,
14661,
30733,
3539,
62,
25216,
62,
42937,
11,
198,
220,
220,
220,
14661,
30733,
3539,
62,
25216,
62,
48877,
9399,
11,
198,
220,
220,
220,
14661,
30733,
3539,
62,
25216,
62,
26947,
11,
198,
220,
220,
220,
14661,
30733,
3539,
62,
25216,
62,
50,
10526,
49560,
2538,
11,
198,
220,
220,
220,
14661,
30733,
3539,
62,
25216,
62,
17139,
16219,
10979,
11,
198,
220,
220,
220,
14661,
30733,
3539,
62,
25216,
62,
32819,
11,
198,
220,
220,
220,
317,
8859,
713,
495,
6030,
11,
198,
220,
220,
220,
14661,
62,
47,
18379,
11335,
62,
25216,
62,
45,
11651,
11,
198,
220,
220,
220,
14661,
62,
47,
18379,
11335,
62,
25216,
62,
40,
11,
198,
220,
220,
220,
14661,
62,
47,
18379,
11335,
62,
25216,
62,
47,
11,
198,
220,
220,
220,
14661,
62,
47,
18379,
11335,
62,
25216,
62,
33,
11,
198,
220,
220,
220,
14661,
62,
47,
18379,
11335,
62,
25216,
62,
50,
11,
198,
220,
220,
220,
14661,
62,
47,
18379,
11335,
62,
25216,
62,
11584,
11,
198,
220,
220,
220,
14661,
62,
47,
18379,
11335,
62,
25216,
62,
4303,
11,
198,
220,
220,
220,
14661,
62,
47,
18379,
11335,
62,
25216,
62,
3483,
11,
198,
220,
220,
220,
14661,
62,
19499,
45746,
62,
38948,
62,
15675,
1340,
11319,
11,
198,
220,
220,
220,
14661,
28632,
11,
198,
220,
220,
220,
14661,
28632,
8134,
11,
198,
220,
220,
220,
14661,
28632,
27201,
11,
198,
220,
220,
220,
14661,
62,
35,
18379,
62,
44,
11417,
62,
34,
11159,
11,
198,
220,
220,
220,
14661,
62,
35,
18379,
62,
16284,
6965,
62,
12564,
5777,
10426,
11,
198,
220,
220,
220,
14661,
62,
35,
18379,
62,
35,
35830,
62,
18601,
35,
8577,
62,
20373,
11,
198,
220,
220,
220,
14661,
62,
35,
18379,
62,
35,
35830,
62,
18601,
35,
8577,
62,
23428,
11,
198,
220,
220,
220,
14661,
62,
35,
18379,
62,
35,
35830,
62,
41983,
18564,
12709,
11,
198,
220,
220,
220,
14661,
62,
35,
18379,
62,
24805,
10619,
11,
198,
220,
220,
220,
14661,
62,
35,
18379,
62,
44,
16724,
40,
20373,
11,
198,
220,
220,
220,
317,
8898,
14188,
30150,
11,
198,
220,
220,
220,
317,
8898,
14188,
11,
198,
220,
220,
220,
14661,
44403,
78,
28632,
11,
198,
220,
220,
220,
14661,
62,
41359,
62,
26947,
62,
16402,
12394,
4877,
11,
198,
220,
220,
220,
14661,
62,
10913,
10067,
62,
38948,
62,
44879,
49,
8577,
51,
11,
198,
220,
220,
220,
14661,
62,
10913,
10067,
62,
38948,
62,
26288,
34,
9795,
11,
198,
220,
220,
220,
14661,
19778,
24819,
6601,
6030,
11,
198,
220,
220,
220,
14661,
62,
10913,
10067,
62,
26947,
62,
47,
1565,
6173,
1565,
11,
198,
220,
220,
220,
14661,
62,
10913,
10067,
62,
26947,
62,
32,
4310,
62,
4093,
11,
198,
220,
220,
220,
14661,
62,
10913,
10067,
62,
26947,
62,
41809,
4720,
18,
35,
11,
198,
220,
220,
220,
14661,
62,
10913,
10067,
62,
26947,
62,
41636,
7112,
55,
24181,
3727,
2751,
11,
198,
220,
220,
220,
14661,
62,
10913,
10067,
62,
26947,
62,
41925,
8895,
55,
62,
10778,
11,
198,
220,
220,
220,
14661,
62,
10913,
10067,
62,
26947,
62,
2200,
31519,
9273,
1268,
11,
198,
220,
220,
220,
14661,
62,
10913,
10067,
62,
26947,
62,
26288,
31519,
41636,
7112,
55,
11,
198,
220,
220,
220,
14661,
62,
10913,
10067,
62,
26947,
62,
8579,
35,
11,
198,
220,
220,
220,
14661,
62,
10913,
10067,
62,
26947,
62,
44,
2394,
2849,
62,
53,
9782,
20673,
11,
198,
220,
220,
220,
14661,
62,
10913,
10067,
62,
26947,
62,
18831,
4061,
62,
49302,
6489,
1546,
11,
198,
220,
220,
220,
14661,
62,
10913,
10067,
62,
26947,
62,
48877,
9399,
62,
35009,
27389,
62,
25216,
11,
198,
220,
220,
220,
14661,
62,
10913,
10067,
62,
26947,
62,
31180,
5781,
2751,
62,
26288,
31519,
62,
47123,
2885,
13563,
11,
198,
220,
220,
220,
14661,
62,
10913,
10067,
62,
26947,
62,
44962,
62,
51,
3955,
2943,
16820,
11,
198,
220,
220,
220,
14661,
62,
10913,
10067,
62,
26947,
62,
4303,
16879,
20151,
11,
198,
220,
220,
220,
14661,
62,
10913,
10067,
62,
26947,
62,
37815,
3525,
62,
43,
9947,
62,
2538,
18697,
11,
198,
220,
220,
220,
14661,
62,
10913,
10067,
62,
26947,
62,
2149,
34,
62,
31190,
25664,
11,
198,
220,
220,
220,
14661,
62,
10913,
10067,
62,
26947,
62,
48,
47,
62,
38148,
62,
4805,
3185,
17395,
11015,
11,
198,
220,
220,
220,
14661,
62,
10913,
10067,
62,
26947,
62,
48,
47,
62,
38148,
62,
26947,
11,
198,
220,
220,
220,
14661,
62,
10913,
10067,
62,
26947,
62,
50,
1065,
44,
62,
51,
3955,
2943,
16820,
11,
198,
220,
220,
220,
14661,
13739,
26227,
11828,
11,
198,
220,
220,
220,
14661,
62,
8579,
35,
62,
50,
10067,
11,
198,
220,
220,
220,
14661,
62,
8579,
35,
62,
19,
62,
18,
11,
198,
220,
220,
220,
14661,
62,
8579,
35,
62,
1433,
62,
24,
11,
198,
220,
220,
220,
14661,
62,
8579,
35,
62,
1415,
62,
24,
11,
198,
220,
220,
220,
14661,
62,
8579,
35,
62,
19,
62,
18,
62,
4303,
62,
1415,
62,
24,
11,
198,
220,
220,
220,
14661,
62,
8579,
35,
62,
1433,
62,
24,
62,
4303,
62,
1415,
62,
24,
11,
198,
220,
220,
220,
14661,
62,
8579,
35,
62,
4303,
62,
19,
62,
18,
11,
198,
220,
220,
220,
14661,
19778,
24819,
6601,
11,
198,
220,
220,
220,
317,
13024,
864,
11,
198,
220,
220,
220,
14661,
10258,
17257,
11,
198,
220,
220,
220,
14661,
25154,
62,
49,
27746,
62,
4944,
48451,
28343,
11,
198,
220,
220,
220,
14661,
25154,
62,
49,
27746,
62,
7378,
7156,
11,
198,
220,
220,
220,
14661,
25154,
62,
49,
27746,
62,
12889,
7156,
11,
198,
220,
220,
220,
14661,
25154,
62,
49,
27746,
62,
32819,
11,
198,
220,
220,
220,
14661,
10258,
23828,
3166,
11,
198,
220,
220,
220,
14661,
25154,
62,
4805,
40,
62,
19535,
1137,
53,
1961,
15,
11,
198,
220,
220,
220,
14661,
25154,
62,
4805,
40,
62,
19313,
31495,
11,
198,
220,
220,
220,
14661,
25154,
62,
4805,
40,
62,
4944,
48451,
28343,
11,
198,
220,
220,
220,
14661,
25154,
62,
4805,
40,
62,
19535,
1137,
53,
1961,
11,
198,
220,
220,
220,
14661,
25154,
62,
4805,
40,
62,
19313,
27790,
44,
11,
198,
220,
220,
220,
14661,
25154,
62,
4805,
40,
62,
19313,
27790,
40469,
11,
198,
220,
220,
220,
14661,
25154,
62,
4805,
40,
62,
50,
7378,
9328,
17279,
44,
11,
198,
220,
220,
220,
14661,
25154,
62,
4805,
40,
62,
50,
7378,
9328,
16102,
44,
11,
198,
220,
220,
220,
14661,
25154,
62,
4805,
40,
62,
46700,
44,
11,
198,
220,
220,
220,
14661,
25154,
62,
4805,
40,
62,
19313,
42334,
11,
198,
220,
220,
220,
14661,
25154,
62,
4805,
40,
62,
50,
7378,
9328,
40173,
11,
198,
220,
220,
220,
14661,
25154,
62,
4805,
40,
62,
50,
7378,
51,
6465,
40173,
62,
16,
11,
198,
220,
220,
220,
14661,
25154,
62,
4805,
40,
62,
50,
7378,
9328,
50080,
11,
198,
220,
220,
220,
14661,
25154,
62,
4805,
40,
62,
50,
7378,
9328,
45331,
11,
198,
220,
220,
220,
14661,
25154,
62,
4805,
40,
62,
41,
1961,
2943,
62,
47,
1828,
11,
198,
220,
220,
220,
14661,
25154,
62,
4805,
40,
62,
32819,
11,
198,
220,
220,
220,
14661,
10258,
43260,
27275,
2569,
11,
198,
220,
220,
220,
14661,
25154,
62,
5446,
34,
62,
19535,
1137,
53,
1961,
15,
11,
198,
220,
220,
220,
14661,
25154,
62,
5446,
34,
62,
19313,
31495,
11,
198,
220,
220,
220,
14661,
25154,
62,
5446,
34,
62,
4944,
48451,
28343,
11,
198,
220,
220,
220,
14661,
25154,
62,
5446,
34,
62,
19535,
1137,
53,
1961,
11,
198,
220,
220,
220,
14661,
25154,
62,
5446,
34,
62,
38,
2390,
5673,
1828,
11,
198,
220,
220,
220,
14661,
25154,
62,
5446,
34,
62,
38,
2390,
5673,
2078,
11,
198,
220,
220,
220,
14661,
25154,
62,
5446,
34,
62,
50,
7378,
9328,
17279,
44,
11,
198,
220,
220,
220,
14661,
25154,
62,
5446,
34,
62,
50,
7378,
9328,
16102,
44,
11,
198,
220,
220,
220,
14661,
25154,
62,
5446,
34,
62,
24027,
1503,
11,
198,
220,
220,
220,
14661,
25154,
62,
5446,
34,
62,
25294,
11,
198,
220,
220,
220,
14661,
25154,
62,
5446,
34,
62,
25294,
62,
50,
48,
14181,
11,
198,
220,
220,
220,
14661,
25154,
62,
5446,
34,
62,
40,
2943,
21,
44227,
62,
17,
62,
19,
11,
198,
220,
220,
220,
14661,
25154,
62,
5446,
34,
62,
19313,
1485,
5333,
62,
2943,
38,
11,
198,
220,
220,
220,
14661,
25154,
62,
5446,
34,
62,
40,
2943,
21,
44227,
62,
17,
62,
16,
11,
198,
220,
220,
220,
14661,
25154,
62,
5446,
34,
62,
19313,
42334,
62,
940,
11,
198,
220,
220,
220,
14661,
25154,
62,
5446,
34,
62,
19313,
42334,
62,
1065,
11,
198,
220,
220,
220,
14661,
25154,
62,
5446,
34,
62,
50,
7378,
9328,
1238,
5705,
11,
198,
220,
220,
220,
14661,
25154,
62,
5446,
34,
62,
50,
7378,
51,
6465,
1238,
5705,
11,
198,
220,
220,
220,
14661,
25154,
62,
5446,
34,
62,
50,
7378,
9328,
40173,
11,
198,
220,
220,
220,
14661,
25154,
62,
5446,
34,
62,
50,
7378,
51,
6465,
40173,
62,
16,
11,
198,
220,
220,
220,
14661,
25154,
62,
5446,
34,
62,
1503,
9865,
62,
32147,
62,
33,
3134,
11,
198,
220,
220,
220,
14661,
25154,
62,
5446,
34,
62,
32819,
11,
198,
220,
220,
220,
14661,
10258,
14106,
11,
198,
220,
220,
220,
14661,
25154,
62,
4303,
34,
62,
36982,
11,
198,
220,
220,
220,
14661,
25154,
62,
4303,
34,
62,
19313,
31495,
11,
198,
220,
220,
220,
14661,
25154,
62,
4303,
34,
62,
4944,
48451,
28343,
11,
198,
220,
220,
220,
14661,
25154,
62,
4303,
34,
62,
19535,
1137,
53,
1961,
11,
198,
220,
220,
220,
14661,
25154,
62,
4303,
34,
62,
37,
4093,
11,
198,
220,
220,
220,
14661,
25154,
62,
4303,
34,
62,
19313,
27790,
40469,
11,
198,
220,
220,
220,
14661,
25154,
62,
4303,
34,
62,
50,
7378,
9328,
17279,
44,
11,
198,
220,
220,
220,
14661,
25154,
62,
4303,
34,
62,
50,
7378,
9328,
16102,
44,
11,
198,
220,
220,
220,
14661,
25154,
62,
4303,
34,
62,
56,
39816,
8220,
11,
198,
220,
220,
220,
14661,
25154,
62,
4303,
34,
62,
44816,
4503,
38,
11,
198,
220,
220,
220,
14661,
25154,
62,
4303,
34,
62,
19313,
42334,
62,
45,
5097,
11,
198,
220,
220,
220,
14661,
25154,
62,
4303,
34,
62,
19313,
42334,
62,
5097,
11,
198,
220,
220,
220,
14661,
25154,
62,
4303,
34,
62,
50,
7378,
9328,
1238,
5332,
11,
198,
220,
220,
220,
14661,
25154,
62,
4303,
34,
62,
3398,
33676,
32,
62,
14418,
3824,
1961,
62,
45,
5097,
11,
198,
220,
220,
220,
14661,
25154,
62,
4303,
34,
62,
3398,
33676,
32,
62,
14418,
3824,
1961,
62,
5097,
11,
198,
220,
220,
220,
14661,
25154,
62,
4303,
34,
62,
2149,
4825,
47,
11,
198,
220,
220,
220,
14661,
25154,
62,
4303,
34,
62,
32819,
11,
198,
220,
220,
220,
14661,
1925,
42902,
14749,
11,
198,
220,
220,
220,
14661,
3398,
33676,
32,
62,
29701,
62,
4944,
48451,
28343,
11,
198,
220,
220,
220,
14661,
3398,
33676,
32,
62,
29701,
62,
2538,
9792,
11,
198,
220,
220,
220,
14661,
3398,
33676,
32,
62,
29701,
62,
43960,
1137,
11,
198,
220,
220,
220,
14661,
3398,
33676,
32,
62,
29701,
62,
51,
34354,
9792,
11,
198,
220,
220,
220,
14661,
3398,
33676,
32,
62,
29701,
62,
35222,
11,
198,
220,
220,
220,
14661,
3398,
33676,
32,
62,
29701,
62,
33,
29089,
2662,
2538,
9792,
11,
198,
220,
220,
220,
14661,
3398,
33676,
32,
62,
29701,
62,
33,
29089,
2662,
11,
198,
220,
220,
220,
14661,
3398,
33676,
32,
62,
29701,
62,
32819,
11,
198,
220,
220,
220,
14661,
19778,
11,
198,
220,
220,
220,
3537,
40508,
44,
20958,
62,
16,
11,
198,
220,
220,
220,
14661,
62,
10913,
10067,
62,
9419,
3185,
62,
4944,
1847,
16284,
1961,
11,
198,
220,
220,
220,
14661,
62,
25294,
62,
43702,
2767,
11,
198,
220,
220,
220,
14661,
62,
25294,
62,
47,
1565,
2149,
11,
198,
220,
220,
220,
14661,
62,
25294,
62,
37,
1404,
1847,
11,
198,
220,
220,
220,
14661,
62,
25294,
62,
24908,
11,
198,
220,
220,
220,
14661,
62,
25294,
62,
31502,
11,
198,
220,
220,
220,
14661,
62,
25294,
62,
10778,
11,
198,
220,
220,
220,
14661,
62,
25294,
62,
5959,
33,
14058,
11,
198,
220,
220,
220,
14661,
62,
25294,
62,
30531,
11,
198,
220,
220,
220,
14661,
62,
25294,
62,
5446,
11598,
11,
198,
220,
220,
220,
14661,
62,
25294,
62,
22921,
62,
27977,
28480,
11,
198,
220,
220,
220,
14661,
62,
25294,
62,
18831,
4061,
62,
2200,
11401,
11617,
11,
198,
220,
220,
220,
14661,
62,
25294,
62,
4805,
12394,
62,
2538,
18697,
11,
198,
220,
220,
220,
3537,
40508,
44,
20958,
62,
17,
11,
198,
220,
220,
220,
14661,
62,
31631,
62,
34,
6158,
38,
15513,
62,
4535,
11,
198,
220,
220,
220,
14661,
62,
31631,
62,
34,
6158,
38,
15513,
62,
1268,
30076,
11,
198,
220,
220,
220,
14661,
62,
31631,
62,
34,
6158,
38,
15513,
62,
2606,
7250,
3843,
11,
198,
220,
220,
220,
14661,
62,
31631,
62,
34,
6158,
38,
15513,
62,
44,
31235,
1137,
11,
198,
220,
220,
220,
14661,
62,
31631,
62,
34,
6158,
38,
15513,
62,
39429,
31235,
1137,
11,
198,
220,
220,
220,
14661,
62,
31631,
62,
34,
6158,
38,
15513,
62,
24181,
3727,
1137,
11,
198,
220,
220,
220,
14661,
62,
31631,
62,
34,
6158,
38,
15513,
62,
41374,
3727,
1137,
11,
198,
220,
220,
220,
14661,
62,
31631,
62,
34,
6158,
38,
15513,
62,
46700,
5781,
11,
198,
220,
220,
220,
14661,
62,
31631,
62,
34,
6158,
38,
15513,
62,
26094,
2257,
32235,
62,
46700,
5781,
11,
198,
220,
220,
220,
14661,
62,
31631,
62,
34,
6158,
38,
15513,
62,
17887,
6173,
1847,
1137,
11,
198,
220,
220,
220,
14661,
62,
31631,
62,
34,
6158,
38,
15513,
62,
17887,
19535,
2390,
6489,
1137,
11,
198,
220,
220,
220,
14661,
62,
31631,
62,
34,
6158,
38,
15513,
62,
7206,
27389,
62,
42937,
62,
2606,
7250,
3843,
11,
198,
220,
220,
220,
14661,
62,
31631,
62,
34,
6158,
38,
15513,
62,
7206,
27389,
62,
42937,
62,
1268,
30076,
11,
198,
220,
220,
220,
14661,
62,
31631,
62,
34,
6158,
38,
15513,
62,
7206,
27389,
62,
48877,
9399,
62,
2606,
7250,
3843,
11,
198,
220,
220,
220,
14661,
62,
31631,
62,
34,
6158,
38,
15513,
62,
7206,
27389,
62,
48877,
9399,
62,
1268,
30076,
11,
198,
220,
220,
220,
14661,
62,
31631,
62,
34,
6158,
38,
15513,
62,
7206,
27389,
62,
2606,
7250,
3843,
11,
198,
220,
220,
220,
14661,
62,
31631,
62,
34,
6158,
38,
15513,
62,
7206,
27389,
62,
1268,
30076,
11,
198,
220,
220,
220,
14661,
62,
31631,
62,
34,
6158,
38,
15513,
62,
32819,
11,
198,
220,
220,
220,
14661,
9487,
27313,
11,
198,
220,
220,
220,
14661,
19722,
17257,
11,
198,
220,
220,
220,
14661,
19722,
49,
6231,
11,
198,
220,
220,
220,
14661,
19722,
6030,
11,
198,
220,
220,
220,
14661,
62,
3185,
51,
62,
25216,
62,
38948,
50,
11,
198,
220,
220,
220,
14661,
62,
3185,
51,
62,
25216,
62,
12394,
11,
198,
220,
220,
220,
14661,
62,
3185,
51,
62,
25216,
62,
12394,
2414,
11,
198,
220,
220,
220,
14661,
62,
3185,
51,
62,
25216,
62,
35,
2606,
19146,
11,
198,
220,
220,
220,
14661,
62,
3185,
51,
62,
25216,
62,
3697,
46,
1404,
11,
198,
220,
220,
220,
14661,
62,
3185,
51,
62,
25216,
62,
18601,
2751,
11,
198,
220,
220,
220,
14661,
62,
3185,
51,
62,
25216,
62,
49,
29912,
11,
198,
220,
220,
220,
14661,
62,
3185,
51,
62,
25216,
62,
33,
1268,
13153,
11,
198,
220,
220,
220,
14661,
62,
3185,
51,
62,
25216,
62,
35,
18379,
11,
198,
220,
220,
220,
14661,
62,
3185,
51,
62,
25216,
62,
52,
12394,
2414,
11,
198,
220,
220,
220,
14661,
62,
3185,
51,
62,
25216,
62,
10943,
2257,
11,
198,
220,
220,
220,
14661,
62,
3185,
51,
62,
25216,
62,
3955,
11879,
62,
33489,
11,
198,
220,
220,
220,
14661,
62,
3185,
51,
62,
25216,
62,
47,
10426,
3698,
62,
37,
13752,
11,
198,
220,
220,
220,
14661,
62,
3185,
51,
62,
25216,
62,
49302,
16437,
62,
37,
13752,
11,
198,
220,
220,
220,
14661,
62,
3185,
51,
62,
25216,
62,
42937,
62,
49,
6158,
11,
198,
220,
220,
220,
14661,
62,
3185,
51,
62,
25216,
62,
35,
4261,
6234,
11,
198,
220,
220,
220,
14661,
62,
3185,
51,
62,
25216,
62,
46786,
11,
198,
220,
220,
220,
14661,
62,
3185,
51,
62,
25216,
62,
3398,
22846,
3698,
62,
43,
4792,
12425,
11,
198,
220,
220,
220,
14661,
62,
3185,
51,
62,
25216,
62,
8202,
3535,
11,
198,
220,
220,
220,
14661,
19722,
11,
198,
220,
220,
220,
14661,
9487,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
38948,
62,
12473,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
38948,
62,
47,
1847,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
38948,
62,
26094,
2257,
32235,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
38948,
62,
39,
54,
26861,
3698,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
38948,
62,
6489,
1565,
1503,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
38948,
62,
36982,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
38948,
62,
3705,
36,
8322,
3185,
1847,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
38948,
62,
1847,
47,
7801,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
38948,
62,
4339,
56,
1137,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
38948,
62,
3697,
46,
1404,
11,
198,
220,
220,
220,
14661,
21950,
24564,
1968,
273,
11,
198,
220,
220,
220,
317,
8859,
844,
37,
16762,
24564,
1968,
273,
11,
198,
220,
220,
220,
317,
8859,
1847,
2767,
9328,
62,
33489,
11,
198,
220,
220,
220,
317,
8859,
1847,
2767,
9328,
62,
34,
28270,
11,
198,
220,
220,
220,
317,
8859,
7168,
26227,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
45,
11651,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
31667,
27211,
47,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
52,
56,
53,
44361,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
36982,
1731,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
33,
10761,
1731,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
31667,
44361,
47,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
31667,
30272,
47,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
31667,
33289,
47,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
31667,
42224,
47,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
38,
30631,
23,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
27857,
3913,
39,
12709,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
27857,
46,
9148,
8120,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
47,
1847,
23,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
31667,
41,
27211,
47,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
31667,
41,
44361,
47,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
31667,
41,
30272,
47,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
52,
56,
53,
56,
44361,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
52,
26314,
53,
26314,
42224,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
33,
10761,
23,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
33,
10761,
19,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
33,
10761,
19,
62,
17513,
9328,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
36982,
23,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
36982,
19,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
36982,
19,
62,
17513,
9328,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
27159,
1065,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
27159,
2481,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
1503,
4579,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
48192,
4339,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
6242,
10761,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
40469,
3861,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
38,
30631,
1433,
12473,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
38,
30631,
1433,
2538,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
31667,
25644,
47,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
31667,
41,
25644,
47,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
52,
11731,
27211,
47,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
36982,
2780,
12473,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
36982,
2780,
2538,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
36982,
47372,
12473,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
36982,
47372,
2538,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
36982,
31046,
12473,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
36982,
31046,
2538,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
33,
10761,
47372,
12473,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
33,
10761,
47372,
2538,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
33,
10761,
31046,
12473,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
33,
10761,
31046,
2538,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
11731,
17614,
62,
44,
4503,
46,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
11731,
17614,
62,
2389,
4177,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
11731,
17614,
62,
53,
11163,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
11731,
17614,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
31667,
27211,
47,
1433,
2538,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
31667,
27211,
47,
1433,
12473,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
31667,
44361,
47,
1433,
2538,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
31667,
44361,
47,
1433,
12473,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
31667,
30272,
47,
1433,
2538,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
31667,
30272,
47,
1433,
12473,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
36227,
11731,
17,
62,
53,
11163,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
36982,
30272,
2538,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
36982,
30272,
12473,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
33,
10761,
30272,
2538,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
33,
10761,
30272,
12473,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
44947,
23,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
7029,
32,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
38,
30631,
23,
32,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
33,
10761,
2780,
12473,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
33,
10761,
2780,
2538,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
31667,
27211,
47,
24,
12473,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
31667,
27211,
47,
24,
2538,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
31667,
27211,
47,
940,
12473,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
31667,
27211,
47,
940,
2538,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
31667,
44361,
47,
940,
12473,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
31667,
44361,
47,
940,
2538,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
31667,
30272,
47,
24,
12473,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
31667,
30272,
47,
24,
2538,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
31667,
30272,
47,
940,
12473,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
31667,
30272,
47,
940,
2538,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
31667,
44361,
47,
24,
12473,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
31667,
44361,
47,
24,
2538,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
4579,
20031,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
4579,
49,
1731,
47,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
4579,
20031,
24,
12473,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
4579,
20031,
24,
2538,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
4579,
20031,
940,
12473,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
4579,
20031,
940,
2538,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
4579,
20031,
1433,
12473,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
4579,
20031,
1433,
2538,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
52,
11731,
44361,
47,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
52,
11731,
30272,
47,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
52,
11731,
27211,
47,
24,
12473,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
52,
11731,
27211,
47,
24,
2538,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
52,
11731,
44361,
47,
24,
12473,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
52,
11731,
44361,
47,
24,
2538,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
52,
11731,
30272,
47,
24,
12473,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
52,
11731,
30272,
47,
24,
2538,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
52,
11731,
27211,
47,
940,
12473,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
52,
11731,
27211,
47,
940,
2538,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
52,
11731,
44361,
47,
940,
12473,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
52,
11731,
44361,
47,
940,
2538,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
52,
11731,
30272,
47,
940,
12473,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
52,
11731,
30272,
47,
940,
2538,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
52,
11731,
27211,
47,
1433,
12473,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
52,
11731,
27211,
47,
1433,
2538,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
52,
11731,
44361,
47,
1433,
12473,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
52,
11731,
44361,
47,
1433,
2538,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
52,
11731,
30272,
47,
1433,
12473,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
52,
11731,
30272,
47,
1433,
2538,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
8898,
4537,
52,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
34278,
57,
1065,
2538,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
34278,
57,
1065,
12473,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
27159,
1433,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
27159,
1238,
2538,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
27159,
1238,
12473,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
48192,
4339,
2414,
12473,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
48192,
4339,
2414,
2538,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
40469,
3861,
2414,
12473,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
40469,
3861,
2414,
2538,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
53,
56,
52,
44361,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
44947,
1433,
12473,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
44947,
1433,
2538,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
4579,
49,
2969,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
4579,
49,
2969,
1433,
12473,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
4579,
49,
2969,
1433,
2538,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
48,
50,
53,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
12038,
1847,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
35,
18,
35,
1157,
11731,
62,
53,
11163,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
43633,
5631,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
15,
36982,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
36982,
15,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
15,
33,
10761,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
33,
10761,
15,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
31667,
27211,
47,
1065,
12473,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
31667,
27211,
47,
1065,
2538,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
31667,
27211,
47,
1415,
12473,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
31667,
27211,
47,
1415,
2538,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
31667,
44361,
47,
1065,
12473,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
31667,
44361,
47,
1065,
2538,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
31667,
44361,
47,
1415,
12473,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
31667,
44361,
47,
1415,
2538,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
31667,
30272,
47,
1065,
12473,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
31667,
30272,
47,
1065,
2538,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
31667,
30272,
47,
1415,
12473,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
31667,
30272,
47,
1415,
2538,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
4579,
20031,
1065,
12473,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
4579,
20031,
1065,
2538,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
4579,
20031,
1415,
12473,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
4579,
20031,
1415,
2538,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
31667,
41,
42224,
47,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
4339,
56,
1137,
62,
40469,
10761,
23,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
4339,
56,
1137,
62,
48192,
4579,
23,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
4339,
56,
1137,
62,
4579,
48192,
23,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
4339,
56,
1137,
62,
10761,
40469,
23,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
4339,
56,
1137,
62,
40469,
10761,
1433,
2538,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
4339,
56,
1137,
62,
40469,
10761,
1433,
12473,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
4339,
56,
1137,
62,
48192,
4579,
1433,
2538,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
4339,
56,
1137,
62,
48192,
4579,
1433,
12473,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
4339,
56,
1137,
62,
4579,
48192,
1433,
2538,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
4339,
56,
1137,
62,
4579,
48192,
1433,
12473,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
4339,
56,
1137,
62,
10761,
40469,
1433,
2538,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
4339,
56,
1137,
62,
10761,
40469,
1433,
12473,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
55,
53,
9655,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
31667,
25644,
47,
940,
2538,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
31667,
25644,
47,
940,
12473,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
31667,
25644,
47,
1065,
2538,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
31667,
25644,
47,
1065,
12473,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
4792,
31667,
2414,
2538,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
4792,
31667,
2414,
12473,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
11008,
36,
26631,
3535,
39758,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
47,
20943,
2538,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
47,
20943,
12473,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
4579,
49,
2969,
1065,
12473,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
4579,
49,
2969,
1065,
2538,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
4579,
49,
2969,
940,
12473,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
4579,
49,
2969,
940,
2538,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
30733,
40,
2246,
3727,
2943,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
38,
30631,
1065,
12473,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
38,
30631,
1065,
2538,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
38,
30631,
940,
12473,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
38,
30631,
940,
2538,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
47,
27037,
2538,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
47,
27037,
12473,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
35,
18,
35,
1157,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
38,
30631,
24,
12473,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
38,
30631,
24,
2538,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
4579,
20031,
37,
2624,
12473,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
4579,
20031,
37,
2624,
2538,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
4579,
49,
2969,
37,
2624,
12473,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
4579,
49,
2969,
37,
2624,
2538,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
7707,
44,
62,
4805,
12789,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
3185,
1677,
5097,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
38,
30631,
1415,
12473,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
38,
30631,
1415,
2538,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
38,
30631,
37,
2624,
12473,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
38,
30631,
37,
2624,
2538,
11,
198,
220,
220,
220,
14661,
62,
47,
10426,
62,
37,
13752,
62,
32819,
11,
198,
220,
220,
220,
14661,
36674,
26227,
11,
198,
220,
220,
220,
14661,
62,
49302,
16437,
62,
37,
13752,
62,
45,
11651,
11,
198,
220,
220,
220,
14661,
62,
49302,
16437,
62,
37,
13752,
62,
52,
23,
11,
198,
220,
220,
220,
14661,
62,
49302,
16437,
62,
37,
13752,
62,
50,
1433,
11,
198,
220,
220,
220,
14661,
62,
49302,
16437,
62,
37,
13752,
62,
50,
2624,
11,
198,
220,
220,
220,
14661,
62,
49302,
16437,
62,
37,
13752,
62,
3697,
51,
11,
198,
220,
220,
220,
14661,
62,
49302,
16437,
62,
37,
13752,
62,
35,
9148,
11,
198,
220,
220,
220,
14661,
62,
49302,
16437,
62,
37,
13752,
62,
52,
23,
47,
11,
198,
220,
220,
220,
14661,
62,
49302,
16437,
62,
37,
13752,
62,
50,
1433,
47,
11,
198,
220,
220,
220,
14661,
62,
49302,
16437,
62,
37,
13752,
62,
50,
2624,
47,
11,
198,
220,
220,
220,
14661,
62,
49302,
16437,
62,
37,
13752,
62,
3697,
7250,
11,
198,
220,
220,
220,
14661,
62,
49302,
16437,
62,
37,
13752,
62,
35,
9148,
47,
11,
198,
220,
220,
220,
14661,
62,
49302,
16437,
62,
37,
13752,
62,
50,
2414,
11,
198,
220,
220,
220,
14661,
62,
49302,
16437,
62,
37,
13752,
62,
50,
2414,
47,
11,
198,
220,
220,
220,
14661,
62,
49302,
16437,
62,
37,
13752,
62,
32819,
11,
198,
220,
220,
220,
24653,
4339,
53,
3843,
4146,
62,
43717,
62,
5673,
41,
1581,
11,
198,
220,
220,
220,
24653,
4339,
53,
3843,
4146,
62,
43717,
62,
23678,
1581,
11,
198,
220,
220,
220,
24653,
4339,
53,
3843,
4146,
62,
43717,
62,
49884,
13252,
11,
198,
220,
220,
220,
24653,
4339,
53,
3843,
4146,
62,
19499,
26761,
11,
198,
220,
220,
220,
34329,
62,
4177,
49,
62,
20373,
62,
33489,
11,
198,
220,
220,
220,
34329,
62,
4177,
49,
62,
3824,
62,
33489,
11,
198,
220,
220,
220,
317,
11731,
1546,
4177,
49,
11,
198,
220,
220,
220,
317,
11731,
463,
952,
44403,
78,
11,
198,
220,
220,
220,
14661,
34,
10067,
3069,
3539,
11,
198,
220,
220,
220,
14661,
44647,
20,
11,
198,
220,
220,
220,
14661,
62,
3398,
62,
10913,
35830,
62,
2538,
9792,
11,
198,
220,
220,
220,
14661,
62,
3398,
62,
10913,
35830,
62,
49,
9947,
11,
198,
220,
220,
220,
14661,
62,
3398,
62,
10913,
35830,
62,
43960,
1137,
11,
198,
220,
220,
220,
14661,
62,
3398,
62,
43,
3913,
62,
37,
2200,
10917,
45155,
11,
198,
220,
220,
220,
14661,
62,
3398,
62,
31098,
62,
2538,
9792,
11,
198,
220,
220,
220,
14661,
62,
3398,
62,
31098,
62,
49,
9947,
11,
198,
220,
220,
220,
14661,
62,
3398,
62,
10913,
35830,
62,
2538,
9792,
62,
19238,
62,
43960,
1137,
11,
198,
220,
220,
220,
14661,
62,
3398,
62,
10913,
35830,
62,
49,
9947,
62,
19238,
62,
43960,
1137,
11,
198,
220,
220,
220,
14661,
62,
3398,
62,
31098,
62,
43960,
1137,
11,
198,
220,
220,
220,
14661,
62,
3398,
62,
50,
14114,
62,
2538,
9792,
11,
198,
220,
220,
220,
14661,
62,
3398,
62,
50,
14114,
62,
49,
9947,
11,
198,
220,
220,
220,
14661,
62,
3398,
62,
35222,
62,
43960,
1137,
11,
198,
220,
220,
220,
14661,
62,
3398,
62,
35222,
62,
10913,
35830,
62,
2538,
9792,
11,
198,
220,
220,
220,
14661,
62,
3398,
62,
35222,
62,
10913,
35830,
62,
43960,
1137,
11,
198,
220,
220,
220,
14661,
62,
3398,
62,
35222,
62,
10913,
35830,
62,
49,
9947,
11,
198,
220,
220,
220,
14661,
62,
3398,
62,
35222,
62,
31098,
62,
2538,
9792,
11,
198,
220,
220,
220,
14661,
62,
3398,
62,
35222,
62,
31098,
62,
43960,
1137,
11,
198,
220,
220,
220,
14661,
62,
3398,
62,
35222,
62,
31098,
62,
49,
9947,
11,
198,
220,
220,
220,
14661,
62,
3398,
62,
41809,
4720,
62,
2538,
9792,
11,
198,
220,
220,
220,
14661,
62,
3398,
62,
41809,
4720,
62,
49,
9947,
11,
198,
220,
220,
220,
14661,
62,
3398,
62,
54,
14114,
62,
2538,
9792,
11,
198,
220,
220,
220,
14661,
62,
3398,
62,
54,
14114,
62,
49,
9947,
11,
198,
220,
220,
220,
14661,
62,
3398,
62,
50,
31302,
15919,
62,
17931,
23988,
62,
2538,
9792,
11,
198,
220,
220,
220,
14661,
62,
3398,
62,
50,
31302,
15919,
62,
17931,
23988,
62,
49,
9947,
11,
198,
220,
220,
220,
14661,
62,
3398,
62,
43,
3913,
62,
37,
2200,
10917,
45155,
62,
17,
11,
198,
220,
220,
220,
14661,
62,
3398,
62,
43,
4792,
12425,
62,
34259,
9306,
11,
198,
220,
220,
220,
14661,
62,
3398,
62,
43,
4792,
12425,
62,
27857,
46,
11,
198,
220,
220,
220,
14661,
62,
3398,
62,
43,
4792,
12425,
62,
41809,
4720,
11,
198,
220,
220,
220,
14661,
62,
3398,
62,
43,
4792,
12425,
62,
17,
16402,
12394,
16,
11,
198,
220,
220,
220,
14661,
62,
3398,
62,
43,
4792,
12425,
62,
17,
62,
16,
11,
198,
220,
220,
220,
14661,
62,
3398,
62,
43,
4792,
12425,
62,
50,
31302,
15919,
11,
198,
220,
220,
220,
14661,
62,
3398,
62,
43,
4792,
12425,
62,
18,
16402,
12394,
16,
11,
198,
220,
220,
220,
14661,
62,
3398,
62,
43,
4792,
12425,
62,
19,
16402,
12394,
15,
11,
198,
220,
220,
220,
14661,
62,
3398,
62,
43,
4792,
12425,
62,
19,
16402,
12394,
16,
11,
198,
220,
220,
220,
14661,
62,
3398,
62,
43,
4792,
12425,
62,
17,
62,
17,
11,
198,
220,
220,
220,
14661,
62,
3398,
62,
43,
4792,
12425,
62,
10917,
2885,
11,
198,
220,
220,
220,
14661,
62,
3398,
62,
43,
4792,
12425,
62,
20,
16402,
12394,
15,
11,
198,
220,
220,
220,
14661,
62,
3398,
62,
43,
4792,
12425,
62,
20,
16402,
12394,
16,
11,
198,
220,
220,
220,
14661,
62,
3398,
62,
43,
4792,
12425,
62,
20,
16402,
12394,
15,
62,
31098,
11,
198,
220,
220,
220,
14661,
62,
3398,
62,
43,
4792,
12425,
62,
20,
16402,
12394,
16,
62,
31098,
11,
198,
220,
220,
220,
14661,
62,
3398,
62,
43,
4792,
12425,
62,
21,
16402,
12394,
15,
11,
198,
220,
220,
220,
14661,
62,
3398,
62,
43,
4792,
12425,
62,
21,
16402,
12394,
15,
62,
10913,
35830,
11,
198,
220,
220,
220,
14661,
62,
3398,
62,
43,
4792,
12425,
62,
39,
6369,
4760,
1340,
1847,
11,
198,
220,
220,
220,
14661,
62,
3398,
62,
43,
4792,
12425,
62,
21,
16402,
12394,
16,
11,
198,
220,
220,
220,
14661,
62,
3398,
62,
43,
4792,
12425,
62,
21,
16402,
12394,
16,
62,
31098,
11,
198,
220,
220,
220,
14661,
62,
3398,
62,
43,
4792,
12425,
62,
21,
16402,
12394,
16,
62,
10913,
35830,
11,
198,
220,
220,
220,
14661,
62,
3398,
62,
43,
4792,
12425,
62,
22,
16402,
12394,
15,
11,
198,
220,
220,
220,
14661,
62,
3398,
62,
43,
4792,
12425,
62,
22,
16402,
12394,
15,
62,
10913,
35830,
11,
198,
220,
220,
220,
14661,
62,
3398,
62,
43,
4792,
12425,
62,
22,
16402,
12394,
16,
11,
198,
220,
220,
220,
14661,
62,
3398,
62,
43,
4792,
12425,
62,
22,
16402,
12394,
16,
62,
54,
14114,
11,
198,
220,
220,
220,
14661,
62,
3398,
62,
43,
4792,
12425,
62,
22,
16402,
12394,
16,
62,
54,
14114,
62,
31098,
11,
198,
220,
220,
220,
14661,
62,
3398,
62,
43,
4792,
12425,
62,
46,
4177,
4760,
1340,
1847,
11,
198,
220,
220,
220,
14661,
62,
3398,
62,
43,
4792,
12425,
62,
39,
6369,
2885,
2943,
4760,
1340,
1847,
11,
198,
220,
220,
220,
14661,
62,
3398,
62,
43,
4792,
12425,
62,
41809,
4720,
62,
41925,
8895,
55,
11,
198,
220,
220,
220,
14661,
46912,
27195,
7656,
11,
198,
220,
220,
220,
14661,
62,
41636,
7112,
55,
62,
24181,
3727,
2751,
62,
45,
11651,
11,
198,
220,
220,
220,
14661,
62,
41636,
7112,
55,
62,
24181,
3727,
2751,
62,
35,
3535,
17513,
11,
198,
220,
220,
220,
14661,
62,
41636,
7112,
55,
62,
24181,
3727,
2751,
62,
6322,
43,
3978,
11,
198,
220,
220,
220,
14661,
62,
41636,
7112,
55,
62,
24181,
3727,
2751,
62,
6322,
43,
3978,
55,
11,
198,
220,
220,
220,
14661,
62,
41636,
7112,
55,
62,
24181,
3727,
2751,
62,
6322,
43,
3978,
57,
11,
198,
220,
220,
220,
14661,
62,
41636,
7112,
55,
62,
24181,
3727,
2751,
62,
35,
3535,
17513,
6369,
11,
198,
220,
220,
220,
14661,
62,
41636,
7112,
55,
62,
24181,
3727,
2751,
62,
35,
3535,
17513,
37682,
11909,
11651,
11,
198,
220,
220,
220,
14661,
62,
41636,
7112,
55,
62,
24181,
3727,
2751,
62,
32819,
11,
198,
220,
220,
220,
14661,
33,
18557,
11,
198,
220,
220,
220,
317,
8898,
1546,
11,
198,
220,
220,
220,
14661,
8048,
19816,
6030,
11,
198,
220,
220,
220,
14661,
62,
41925,
8895,
55,
62,
25216,
62,
4944,
44706,
11,
198,
220,
220,
220,
14661,
62,
41925,
8895,
55,
62,
25216,
62,
43,
1581,
46,
11,
198,
220,
220,
220,
14661,
62,
41925,
8895,
55,
62,
25216,
62,
43,
5446,
51,
11,
198,
220,
220,
220,
14661,
62,
41925,
8895,
55,
62,
25216,
62,
6322,
43,
3978,
11,
198,
220,
220,
220,
14661,
62,
41925,
8895,
55,
62,
25216,
62,
32819,
11,
198,
220,
220,
220,
14661,
8048,
19816,
12360,
11,
198,
220,
220,
220,
14661,
7004,
39873,
27195,
13168,
12360,
11,
198,
220,
220,
220,
14661,
27195,
13168,
12360,
11,
198,
220,
220,
220,
14661,
27195,
13168,
31768,
12360,
11,
198,
220,
220,
220,
14661,
62,
39,
11211,
62,
22921,
62,
33489,
11,
198,
220,
220,
220,
14661,
26257,
21947,
11,
198,
220,
220,
220,
14661,
39,
54,
24728,
6030,
11,
198,
220,
220,
220,
14661,
62,
39,
54,
7206,
27389,
62,
25216,
62,
45,
11651,
11,
198,
220,
220,
220,
14661,
62,
39,
54,
7206,
27389,
62,
25216,
62,
8898,
4537,
52,
11,
198,
220,
220,
220,
14661,
62,
39,
54,
7206,
27389,
62,
25216,
62,
43633,
5631,
11,
198,
220,
220,
220,
14661,
62,
39,
54,
7206,
27389,
62,
25216,
62,
11731,
17614,
11,
198,
220,
220,
220,
14661,
62,
39,
54,
7206,
27389,
62,
25216,
62,
36227,
11731,
17,
11,
198,
220,
220,
220,
14661,
62,
39,
54,
7206,
27389,
62,
25216,
62,
48,
50,
53,
11,
198,
220,
220,
220,
14661,
62,
39,
54,
7206,
27389,
62,
25216,
62,
11008,
36,
26631,
3535,
39758,
11,
198,
220,
220,
220,
14661,
62,
39,
54,
7206,
27389,
62,
25216,
62,
35,
18,
35,
1157,
11731,
11,
198,
220,
220,
220,
14661,
62,
39,
54,
7206,
27389,
62,
25216,
62,
7707,
44,
11,
198,
220,
220,
220,
14661,
62,
39,
54,
7206,
27389,
62,
25216,
62,
3185,
1677,
5097,
11,
198,
220,
220,
220,
14661,
62,
39,
54,
7206,
27389,
62,
25216,
62,
30733,
40,
2246,
3727,
2943,
11,
198,
220,
220,
220,
14661,
39,
54,
24728,
37693,
11,
198,
220,
220,
220,
14661,
39,
54,
24728,
21947,
11,
198,
220,
220,
220,
14661,
39,
54,
35439,
37693,
11,
198,
220,
220,
220,
14661,
39,
54,
35439,
21947,
11,
198,
220,
220,
220,
14661,
39,
54,
19778,
43260,
35,
4154,
11,
198,
220,
220,
220,
14661,
62,
39,
54,
10913,
10067,
62,
5446,
15037,
24302,
62,
17931,
23988,
2849,
62,
10913,
2662,
11,
198,
220,
220,
220,
14661,
62,
39,
54,
10913,
10067,
62,
5446,
15037,
24302,
62,
17931,
23988,
2849,
62,
10468,
11,
198,
220,
220,
220,
14661,
39,
54,
35439,
3103,
2536,
6003,
11,
198,
220,
220,
220,
3537,
40508,
44,
20958,
62,
18,
11,
198,
220,
220,
220,
14661,
62,
39,
54,
10913,
10067,
62,
33767,
62,
15675,
11,
198,
220,
220,
220,
14661,
62,
39,
54,
10913,
10067,
62,
33767,
62,
18564,
12709,
11,
198,
220,
220,
220,
14661,
62,
39,
54,
10913,
10067,
62,
33767,
62,
41983,
18564,
12709,
11,
198,
220,
220,
220,
14661,
62,
39,
54,
10913,
10067,
62,
33767,
62,
17931,
23988,
11,
198,
220,
220,
220,
14661,
34,
8322,
2885,
1990,
501,
21947,
37693,
11,
198,
220,
220,
220,
14661,
34,
8322,
2885,
1990,
501,
21947,
11,
198,
220,
220,
220,
317,
8898,
18,
35,
1157,
53,
2885,
1990,
501,
21947,
11,
198,
220,
220,
220,
317,
8898,
18,
35,
1157,
19778,
24564,
1968,
273,
11,
198,
220,
220,
220,
317,
8898,
18,
35,
1157,
53,
8579,
859,
274,
21947,
11,
198,
220,
220,
220,
3537,
40508,
44,
20958,
62,
19,
11,
198,
220,
220,
220,
14661,
62,
7707,
44,
62,
22921,
62,
6489,
1565,
1546,
11,
198,
220,
220,
220,
14661,
7707,
44,
10267,
24564,
1968,
273,
11,
198,
220,
220,
220,
14661,
7707,
44,
3646,
1531,
24564,
1968,
273,
11,
198,
220,
220,
220,
14661,
7707,
5805,
2794,
24564,
1968,
273,
11,
198,
220,
220,
220,
14661,
7707,
44,
19778,
24564,
1968,
273,
11,
198,
220,
220,
220,
14661,
7707,
12740,
1990,
501,
21947,
11,
198,
220,
220,
220,
317,
8898,
55,
11731,
17,
24728,
21947,
11,
198,
220,
220,
220,
317,
8898,
55,
11731,
17,
35439,
21947,
11,
198,
220,
220,
220,
14661,
13152,
43806,
721,
24728,
21947,
11,
198,
220,
220,
220,
14661,
48,
50,
8898,
1990,
501,
21947,
11,
198,
220,
220,
220,
14661,
48,
50,
53,
35439,
21947,
11,
198,
220,
220,
220,
3537,
40508,
44,
20958,
62,
20,
11,
198,
220,
220,
220,
14661,
62,
11731,
17614,
62,
7707,
38757,
62,
10917,
4663,
42,
62,
29904,
62,
28480,
11,
198,
220,
220,
220,
14661,
62,
11731,
17614,
62,
7707,
38757,
62,
10917,
4663,
42,
62,
49,
10619,
1137,
62,
27082,
2390,
62,
19499,
5777,
4877,
11,
198,
220,
220,
220,
14661,
62,
11731,
17614,
62,
7707,
38757,
62,
10917,
4663,
42,
62,
1404,
5446,
9865,
62,
44,
3620,
25216,
11,
198,
220,
220,
220,
14661,
62,
11731,
17614,
62,
7707,
38757,
62,
10917,
4663,
42,
62,
50,
4261,
49836,
62,
1404,
5446,
9865,
3843,
1546,
11,
198,
220,
220,
220,
1303,
14661,
11731,
2969,
2389,
1990,
501,
21947,
11,
198,
220,
220,
220,
1303,
14661,
11731,
2969,
5064,
859,
274,
21947,
11,
198,
220,
220,
220,
1303,
14661,
11731,
17614,
39,
54,
16934,
11,
198,
220,
220,
220,
1303,
14661,
8898,
4537,
8322,
1990,
501,
21947,
11,
198,
220,
220,
220,
14661,
18254,
278,
23114,
9171,
14706,
11,
198,
220,
220,
220,
14661,
19746,
15047,
9171,
14706,
11,
198,
220,
220,
220,
14661,
45740,
38469,
11,
198,
220,
220,
220,
14661,
62,
3185,
51,
62,
38948,
62,
24181,
3727,
2751,
62,
27082,
2390,
11,
198,
220,
220,
220,
14661,
62,
3185,
51,
62,
38948,
62,
41374,
3727,
2751,
62,
27082,
2390,
11,
198,
220,
220,
220,
14661,
62,
3185,
51,
62,
38948,
62,
48877,
9399,
62,
27082,
2390,
11,
198,
220,
220,
220,
14661,
62,
3185,
51,
62,
38948,
62,
42937,
62,
27082,
2390,
11,
198,
220,
220,
220,
14661,
62,
3185,
51,
62,
38948,
62,
50,
10526,
49560,
2538,
62,
27082,
2390,
11,
198,
220,
220,
220,
14661,
62,
3185,
51,
62,
38948,
62,
6369,
15490,
11,
198,
220,
220,
220,
14661,
62,
3185,
51,
62,
38948,
62,
15675,
1340,
11319,
11,
198,
220,
220,
220,
14661,
62,
3185,
51,
62,
38948,
62,
4462,
37,
62,
27082,
2390,
11,
198,
220,
220,
220,
14661,
62,
3185,
51,
62,
38948,
62,
46700,
5781,
2751,
62,
27082,
2390,
11,
198,
220,
220,
220,
14661,
62,
3185,
51,
62,
38948,
62,
46162,
38827,
11617,
11,
198,
220,
220,
220,
14661,
62,
3185,
51,
62,
5188,
31315,
62,
3398,
4146,
7707,
1677,
11,
198,
220,
220,
220,
14661,
62,
3185,
51,
62,
5188,
31315,
62,
7708,
7336,
62,
9864,
41,
11,
198,
220,
220,
220,
14661,
62,
3185,
51,
62,
7036,
3913,
62,
33991,
11,
198,
220,
220,
220,
14661,
62,
3185,
51,
62,
44,
16724,
40,
62,
9858,
47,
1340,
3525,
62,
49,
27746,
11,
198,
220,
220,
220,
14661,
62,
3185,
51,
62,
35009,
12576,
35400,
62,
18831,
4061,
62,
7206,
7708,
35342,
11,
198,
220,
220,
220,
14661,
62,
3185,
51,
62,
35009,
12576,
35400,
62,
3185,
51,
62,
38948,
50,
62,
6369,
10659,
11,
198,
220,
220,
220,
3537,
40508,
44,
20958,
62,
21,
11,
198,
220,
220,
220,
14661,
62,
3185,
51,
62,
38948,
62,
3955,
31484,
2043,
62,
20373,
11,
198,
220,
220,
220,
1196,
62,
32515,
26791,
62,
82,
324,
62,
22184,
11,
198,
220,
220,
220,
14661,
7397,
19,
11,
198,
220,
220,
220,
14661,
3041,
1759,
38,
391,
11,
198,
220,
220,
220,
14661,
4561,
37910,
16775,
295,
11,
198,
220,
220,
220,
14661,
62,
4303,
16879,
20151,
62,
36,
43702,
23988,
15567,
37232,
11,
198,
220,
220,
220,
14661,
62,
4303,
16879,
20151,
62,
34,
10526,
3620,
2969,
11,
198,
220,
220,
220,
14661,
62,
4303,
16879,
20151,
62,
36,
43702,
23988,
15567,
37232,
62,
25621,
2538,
11,
198,
220,
220,
220,
14661,
4561,
37910,
44,
5912,
11,
198,
220,
220,
220,
14661,
62,
41809,
4720,
18,
35,
62,
38948,
62,
1268,
15858,
11,
198,
220,
220,
220,
14661,
1273,
32934,
18,
35,
6030,
11,
198,
220,
220,
220,
14661,
62,
41809,
4720,
18,
35,
62,
17,
35,
11,
198,
220,
220,
220,
14661,
62,
41809,
4720,
18,
35,
62,
50,
14114,
33,
16309,
14114,
11,
198,
220,
220,
220,
14661,
62,
41809,
4720,
18,
35,
62,
35222,
33,
29089,
2662,
11,
198,
220,
220,
220,
14661,
62,
41809,
4720,
18,
35,
62,
10913,
29559,
36,
10917,
18310,
11,
198,
220,
220,
220,
14661,
62,
41809,
4720,
18,
35,
62,
50084,
1137,
8202,
9795,
11,
198,
220,
220,
220,
14661,
62,
41809,
4720,
18,
35,
62,
50,
14114,
33,
16309,
14114,
62,
10917,
30158,
4944,
55,
11,
198,
220,
220,
220,
14661,
62,
41809,
4720,
18,
35,
62,
34509,
1546,
11,
198,
220,
220,
220,
14661,
62,
41809,
4720,
18,
35,
62,
25154,
5883,
8035,
11,
198,
220,
220,
220,
14661,
1273,
32934,
18,
35,
7680,
11,
198,
220,
220,
220,
14661,
62,
41809,
4720,
18,
35,
62,
28206,
62,
47,
8120,
1961,
11,
198,
220,
220,
220,
14661,
62,
41809,
4720,
18,
35,
62,
28206,
62,
2538,
9792,
11,
198,
220,
220,
220,
14661,
62,
41809,
4720,
18,
35,
62,
28206,
62,
49,
9947,
11,
198,
220,
220,
220,
14661,
1273,
32934,
18,
35,
11,
198,
220,
220,
220,
14661,
9328,
32,
11,
198,
220,
220,
220,
14661,
16818,
12837,
34991,
11,
198,
220,
220,
220,
14661,
16818,
12837,
40053,
11,
198,
220,
220,
220,
14661,
62,
4221,
15675,
62,
44,
1546,
4090,
8264,
62,
45,
1340,
9148,
11290,
11,
198,
220,
220,
220,
14661,
62,
51,
3955,
2943,
16820,
62,
18601,
62,
33489,
11,
198,
220,
220,
220,
14661,
7575,
8189,
34227,
11,
198,
220,
220,
220,
14661,
62,
51,
3955,
2943,
16820,
62,
38948,
62,
7707,
3185,
10913,
10067,
11,
198,
220,
220,
220,
14661,
62,
51,
3955,
2943,
16820,
62,
38948,
62,
1731,
46685,
6998,
22921,
11,
198,
220,
220,
220,
14661,
62,
51,
3955,
2943,
16820,
62,
38948,
62,
7036,
14165,
7156,
37045,
11,
198,
220,
220,
220,
14661,
7575,
8189,
11,
198,
220,
220,
220,
14661,
27660,
19667,
11,
198,
220,
220,
220,
14661,
34551,
19238,
18422,
11,
198,
220,
220,
220,
14661,
55,
9328,
32,
628,
198,
9979,
555,
844,
796,
352,
198,
9979,
32639,
796,
352,
198,
9979,
18402,
62,
43,
2390,
33,
5631,
62,
9693,
32297,
796,
767,
198,
9979,
18402,
62,
43,
2390,
33,
5631,
62,
6173,
21358,
796,
352,
9959,
18402,
62,
43,
2390,
33,
5631,
62,
9693,
32297,
198,
9979,
18402,
62,
48,
47,
17,
43,
2390,
33,
5631,
796,
19035,
198,
9979,
18402,
62,
43,
2390,
33,
5631,
62,
22921,
796,
17759,
1635,
13108,
532,
352,
198,
9979,
18402,
62,
10917,
1847,
9050,
62,
6173,
21358,
796,
18402,
62,
43,
2390,
33,
5631,
62,
6173,
21358,
198,
198,
9979,
14661,
62,
45,
3185,
4694,
62,
39488,
220,
796,
220,
302,
27381,
7,
5317,
2414,
11,
657,
87,
23,
8269,
24598,
8,
198,
198,
9979,
14661,
62,
34694,
62,
33,
11159,
796,
1802,
2388,
198,
198,
7249,
317,
13024,
864,
198,
220,
220,
220,
997,
3712,
34,
600,
198,
220,
220,
220,
2853,
3712,
34,
600,
198,
437,
198,
198,
22570,
7,
3712,
6030,
90,
10116,
49,
864,
30072,
796,
317,
13024,
864,
7,
15,
11,
352,
8,
198,
198,
9979,
14661,
62,
34694,
62,
33,
11159,
62,
48,
220,
796,
220,
317,
13024,
864,
7,
16,
11,
14661,
62,
34694,
62,
33,
11159,
8,
198,
198,
2,
3661,
4501,
42755,
36621,
25,
1196,
62,
600,
62,
4868,
62,
13664,
357,
1351,
837,
3381,
1267,
1196,
62,
600,
62,
4868,
62,
13664,
62,
1640,
62,
7857,
357,
39364,
357,
1635,
357,
1351,
1267,
1267,
837,
1351,
837,
3381,
1267,
198,
198,
9979,
14661,
62,
37,
11698,
4093,
62,
22921,
62,
18601,
2751,
62,
33489,
796,
3933,
198,
198,
2,
3661,
4501,
42755,
36621,
25,
1196,
62,
14337,
535,
17,
2536,
357,
1440,
535,
1267,
1196,
62,
14337,
535,
62,
15883,
62,
8841,
357,
357,
1149,
685,
14661,
62,
37,
11698,
4093,
62,
22921,
62,
18601,
2751,
62,
33489,
2361,
1267,
1391,
657,
1782,
837,
1440,
535,
1267,
198,
198,
2,
2221,
33829,
14661,
13152,
6030,
198,
9979,
14661,
13152,
6030,
796,
327,
600,
198,
9979,
14661,
30733,
3539,
62,
25216,
62,
4944,
44706,
796,
532,
16,
930,
29,
2558,
2624,
198,
9979,
14661,
30733,
3539,
62,
25216,
62,
42937,
796,
657,
930,
29,
2558,
2624,
198,
9979,
14661,
30733,
3539,
62,
25216,
62,
48877,
9399,
796,
352,
930,
29,
2558,
2624,
198,
9979,
14661,
30733,
3539,
62,
25216,
62,
26947,
796,
362,
930,
29,
2558,
2624,
198,
9979,
14661,
30733,
3539,
62,
25216,
62,
50,
10526,
49560,
2538,
796,
513,
930,
29,
2558,
2624,
198,
9979,
14661,
30733,
3539,
62,
25216,
62,
17139,
16219,
10979,
796,
604,
930,
29,
2558,
2624,
198,
9979,
14661,
30733,
3539,
62,
25216,
62,
32819,
796,
642,
930,
29,
2558,
2624,
198,
2,
886,
33829,
14661,
13152,
6030,
198,
198,
2,
2221,
33829,
317,
8859,
713,
495,
6030,
198,
9979,
317,
8859,
713,
495,
6030,
796,
471,
5317,
2624,
198,
9979,
14661,
62,
47,
18379,
11335,
62,
25216,
62,
45,
11651,
796,
657,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
62,
47,
18379,
11335,
62,
25216,
62,
40,
796,
352,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
62,
47,
18379,
11335,
62,
25216,
62,
47,
796,
362,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
62,
47,
18379,
11335,
62,
25216,
62,
33,
796,
513,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
62,
47,
18379,
11335,
62,
25216,
62,
50,
796,
604,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
62,
47,
18379,
11335,
62,
25216,
62,
11584,
796,
642,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
62,
47,
18379,
11335,
62,
25216,
62,
4303,
796,
718,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
62,
47,
18379,
11335,
62,
25216,
62,
3483,
796,
767,
930,
29,
471,
5317,
2624,
198,
2,
886,
33829,
317,
8859,
713,
495,
6030,
198,
198,
9979,
14661,
62,
19499,
45746,
62,
38948,
62,
15675,
1340,
11319,
796,
352,
9959,
657,
198,
198,
7249,
14661,
28632,
198,
437,
198,
198,
7249,
14661,
28632,
8134,
198,
220,
220,
220,
11876,
3712,
46745,
90,
10116,
28632,
92,
198,
220,
220,
220,
1366,
3712,
46745,
90,
52,
5317,
23,
92,
198,
220,
220,
220,
2546,
3712,
34,
600,
198,
437,
198,
198,
7249,
14661,
28632,
27201,
198,
437,
198,
198,
9979,
14661,
62,
35,
18379,
62,
44,
11417,
62,
34,
11159,
796,
352,
198,
9979,
14661,
62,
35,
18379,
62,
16284,
6965,
62,
12564,
5777,
10426,
796,
362,
198,
9979,
14661,
62,
35,
18379,
62,
35,
35830,
62,
18601,
35,
8577,
62,
20373,
796,
604,
198,
9979,
14661,
62,
35,
18379,
62,
35,
35830,
62,
18601,
35,
8577,
62,
23428,
796,
807,
198,
9979,
14661,
62,
35,
18379,
62,
35,
35830,
62,
41983,
18564,
12709,
796,
1467,
198,
9979,
14661,
62,
35,
18379,
62,
24805,
10619,
796,
3933,
198,
9979,
14661,
62,
35,
18379,
62,
44,
16724,
40,
20373,
796,
5598,
198,
198,
7249,
317,
8898,
14188,
30150,
198,
220,
220,
220,
1994,
3712,
34,
8841,
198,
220,
220,
220,
1988,
3712,
34,
8841,
198,
437,
198,
198,
7249,
317,
8898,
14188,
198,
437,
198,
198,
7249,
14661,
44403,
78,
28632,
198,
220,
220,
220,
11876,
3712,
46745,
90,
52,
5317,
23,
92,
198,
220,
220,
220,
374,
20692,
3712,
46745,
90,
52,
5317,
23,
92,
198,
220,
220,
220,
266,
20692,
3712,
46745,
90,
52,
5317,
23,
92,
198,
220,
220,
220,
4808,
437,
3712,
46745,
90,
52,
5317,
23,
92,
198,
220,
220,
220,
374,
358,
87,
3712,
52,
5317,
2624,
198,
220,
220,
220,
266,
358,
87,
3712,
52,
5317,
2624,
198,
437,
198,
198,
9979,
14661,
62,
41359,
62,
26947,
62,
16402,
12394,
4877,
796,
807,
198,
9979,
14661,
62,
10913,
10067,
62,
38948,
62,
44879,
49,
8577,
51,
796,
352,
9959,
657,
198,
9979,
14661,
62,
10913,
10067,
62,
38948,
62,
26288,
34,
9795,
796,
352,
9959,
362,
198,
9979,
18402,
62,
41374,
16820,
62,
24908,
62,
1268,
23428,
2389,
62,
26094,
2257,
32235,
796,
352,
198,
9979,
18402,
62,
41374,
16820,
62,
24908,
62,
44,
16744,
2751,
62,
2200,
24302,
18310,
796,
362,
198,
198,
2,
2221,
33829,
14661,
19778,
24819,
6601,
6030,
198,
9979,
14661,
19778,
24819,
6601,
6030,
796,
471,
5317,
2624,
198,
9979,
14661,
62,
10913,
10067,
62,
26947,
62,
47,
1565,
6173,
1565,
796,
657,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
62,
10913,
10067,
62,
26947,
62,
32,
4310,
62,
4093,
796,
352,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
62,
10913,
10067,
62,
26947,
62,
41809,
4720,
18,
35,
796,
362,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
62,
10913,
10067,
62,
26947,
62,
41636,
7112,
55,
24181,
3727,
2751,
796,
513,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
62,
10913,
10067,
62,
26947,
62,
41925,
8895,
55,
62,
10778,
796,
604,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
62,
10913,
10067,
62,
26947,
62,
2200,
31519,
9273,
1268,
796,
642,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
62,
10913,
10067,
62,
26947,
62,
26288,
31519,
41636,
7112,
55,
796,
718,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
62,
10913,
10067,
62,
26947,
62,
8579,
35,
796,
767,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
62,
10913,
10067,
62,
26947,
62,
44,
2394,
2849,
62,
53,
9782,
20673,
796,
807,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
62,
10913,
10067,
62,
26947,
62,
18831,
4061,
62,
49302,
6489,
1546,
796,
860,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
62,
10913,
10067,
62,
26947,
62,
48877,
9399,
62,
35009,
27389,
62,
25216,
796,
838,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
62,
10913,
10067,
62,
26947,
62,
31180,
5781,
2751,
62,
26288,
31519,
62,
47123,
2885,
13563,
796,
1367,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
62,
10913,
10067,
62,
26947,
62,
44962,
62,
51,
3955,
2943,
16820,
796,
1105,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
62,
10913,
10067,
62,
26947,
62,
4303,
16879,
20151,
796,
1511,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
62,
10913,
10067,
62,
26947,
62,
37815,
3525,
62,
43,
9947,
62,
2538,
18697,
796,
1478,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
62,
10913,
10067,
62,
26947,
62,
2149,
34,
62,
31190,
25664,
796,
1315,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
62,
10913,
10067,
62,
26947,
62,
48,
47,
62,
38148,
62,
4805,
3185,
17395,
11015,
796,
1467,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
62,
10913,
10067,
62,
26947,
62,
48,
47,
62,
38148,
62,
26947,
796,
1596,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
62,
10913,
10067,
62,
26947,
62,
50,
1065,
44,
62,
51,
3955,
2943,
16820,
796,
1248,
930,
29,
471,
5317,
2624,
198,
2,
886,
33829,
14661,
19778,
24819,
6601,
6030,
198,
198,
2,
2221,
33829,
14661,
13739,
26227,
11828,
198,
9979,
14661,
13739,
26227,
11828,
796,
471,
5317,
2624,
198,
9979,
14661,
62,
8579,
35,
62,
50,
10067,
796,
807,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
62,
8579,
35,
62,
19,
62,
18,
796,
860,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
62,
8579,
35,
62,
1433,
62,
24,
796,
838,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
62,
8579,
35,
62,
1415,
62,
24,
796,
1367,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
62,
8579,
35,
62,
19,
62,
18,
62,
4303,
62,
1415,
62,
24,
796,
1511,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
62,
8579,
35,
62,
1433,
62,
24,
62,
4303,
62,
1415,
62,
24,
796,
1478,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
62,
8579,
35,
62,
4303,
62,
19,
62,
18,
796,
1315,
930,
29,
471,
5317,
2624,
198,
2,
886,
33829,
14661,
13739,
26227,
11828,
198,
198,
7249,
14661,
19778,
24819,
6601,
198,
220,
220,
220,
4808,
4906,
3712,
10116,
19778,
24819,
6601,
6030,
198,
220,
220,
220,
1366,
3712,
46745,
90,
52,
5317,
23,
92,
198,
220,
220,
220,
2546,
3712,
34,
600,
198,
220,
220,
220,
20150,
3712,
46745,
90,
32,
8898,
14188,
92,
198,
220,
220,
220,
42684,
3712,
46745,
90,
10116,
28632,
8134,
92,
198,
437,
198,
198,
2,
2221,
33829,
14661,
10258,
17257,
198,
9979,
14661,
10258,
17257,
796,
471,
5317,
2624,
198,
9979,
14661,
25154,
62,
49,
27746,
62,
4944,
48451,
28343,
796,
657,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
25154,
62,
49,
27746,
62,
7378,
7156,
796,
352,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
25154,
62,
49,
27746,
62,
12889,
7156,
796,
362,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
25154,
62,
49,
27746,
62,
32819,
796,
513,
930,
29,
471,
5317,
2624,
198,
2,
886,
33829,
14661,
10258,
17257,
198,
198,
2,
2221,
33829,
14661,
10258,
23828,
3166,
198,
9979,
14661,
10258,
23828,
3166,
796,
471,
5317,
2624,
198,
9979,
14661,
25154,
62,
4805,
40,
62,
19535,
1137,
53,
1961,
15,
796,
657,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
25154,
62,
4805,
40,
62,
19313,
31495,
796,
352,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
25154,
62,
4805,
40,
62,
4944,
48451,
28343,
796,
362,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
25154,
62,
4805,
40,
62,
19535,
1137,
53,
1961,
796,
513,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
25154,
62,
4805,
40,
62,
19313,
27790,
44,
796,
604,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
25154,
62,
4805,
40,
62,
19313,
27790,
40469,
796,
642,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
25154,
62,
4805,
40,
62,
50,
7378,
9328,
17279,
44,
796,
718,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
25154,
62,
4805,
40,
62,
50,
7378,
9328,
16102,
44,
796,
767,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
25154,
62,
4805,
40,
62,
46700,
44,
796,
807,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
25154,
62,
4805,
40,
62,
19313,
42334,
796,
860,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
25154,
62,
4805,
40,
62,
50,
7378,
9328,
40173,
796,
838,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
25154,
62,
4805,
40,
62,
50,
7378,
51,
6465,
40173,
62,
16,
796,
838,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
25154,
62,
4805,
40,
62,
50,
7378,
9328,
50080,
796,
1367,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
25154,
62,
4805,
40,
62,
50,
7378,
9328,
45331,
796,
1105,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
25154,
62,
4805,
40,
62,
41,
1961,
2943,
62,
47,
1828,
796,
2534,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
25154,
62,
4805,
40,
62,
32819,
796,
2242,
930,
29,
471,
5317,
2624,
198,
2,
886,
33829,
14661,
10258,
23828,
3166,
198,
198,
2,
2221,
33829,
14661,
10258,
43260,
27275,
2569,
198,
9979,
14661,
10258,
43260,
27275,
2569,
796,
471,
5317,
2624,
198,
9979,
14661,
25154,
62,
5446,
34,
62,
19535,
1137,
53,
1961,
15,
796,
657,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
25154,
62,
5446,
34,
62,
19313,
31495,
796,
352,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
25154,
62,
5446,
34,
62,
4944,
48451,
28343,
796,
362,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
25154,
62,
5446,
34,
62,
19535,
1137,
53,
1961,
796,
513,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
25154,
62,
5446,
34,
62,
38,
2390,
5673,
1828,
796,
604,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
25154,
62,
5446,
34,
62,
38,
2390,
5673,
2078,
796,
642,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
25154,
62,
5446,
34,
62,
50,
7378,
9328,
17279,
44,
796,
718,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
25154,
62,
5446,
34,
62,
50,
7378,
9328,
16102,
44,
796,
767,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
25154,
62,
5446,
34,
62,
24027,
1503,
796,
807,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
25154,
62,
5446,
34,
62,
25294,
796,
860,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
25154,
62,
5446,
34,
62,
25294,
62,
50,
48,
14181,
796,
838,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
25154,
62,
5446,
34,
62,
40,
2943,
21,
44227,
62,
17,
62,
19,
796,
1367,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
25154,
62,
5446,
34,
62,
19313,
1485,
5333,
62,
2943,
38,
796,
1105,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
25154,
62,
5446,
34,
62,
40,
2943,
21,
44227,
62,
17,
62,
16,
796,
1511,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
25154,
62,
5446,
34,
62,
19313,
42334,
62,
940,
796,
1478,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
25154,
62,
5446,
34,
62,
19313,
42334,
62,
1065,
796,
1315,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
25154,
62,
5446,
34,
62,
50,
7378,
9328,
1238,
5705,
796,
1467,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
25154,
62,
5446,
34,
62,
50,
7378,
51,
6465,
1238,
5705,
796,
1467,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
25154,
62,
5446,
34,
62,
50,
7378,
9328,
40173,
796,
1596,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
25154,
62,
5446,
34,
62,
50,
7378,
51,
6465,
40173,
62,
16,
796,
1596,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
25154,
62,
5446,
34,
62,
1503,
9865,
62,
32147,
62,
33,
3134,
796,
1248,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
25154,
62,
5446,
34,
62,
32819,
796,
678,
930,
29,
471,
5317,
2624,
198,
2,
886,
33829,
14661,
10258,
43260,
27275,
2569,
198,
198,
2,
2221,
33829,
14661,
10258,
14106,
198,
9979,
14661,
10258,
14106,
796,
471,
5317,
2624,
198,
9979,
14661,
25154,
62,
4303,
34,
62,
36982,
796,
657,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
25154,
62,
4303,
34,
62,
19313,
31495,
796,
352,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
25154,
62,
4303,
34,
62,
4944,
48451,
28343,
796,
362,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
25154,
62,
4303,
34,
62,
19535,
1137,
53,
1961,
796,
513,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
25154,
62,
4303,
34,
62,
37,
4093,
796,
604,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
25154,
62,
4303,
34,
62,
19313,
27790,
40469,
796,
642,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
25154,
62,
4303,
34,
62,
50,
7378,
9328,
17279,
44,
796,
718,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
25154,
62,
4303,
34,
62,
50,
7378,
9328,
16102,
44,
796,
767,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
25154,
62,
4303,
34,
62,
56,
39816,
8220,
796,
807,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
25154,
62,
4303,
34,
62,
44816,
4503,
38,
796,
807,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
25154,
62,
4303,
34,
62,
19313,
42334,
62,
45,
5097,
796,
860,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
25154,
62,
4303,
34,
62,
19313,
42334,
62,
5097,
796,
838,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
25154,
62,
4303,
34,
62,
50,
7378,
9328,
1238,
5332,
796,
1367,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
25154,
62,
4303,
34,
62,
3398,
33676,
32,
62,
14418,
3824,
1961,
62,
45,
5097,
796,
1105,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
25154,
62,
4303,
34,
62,
3398,
33676,
32,
62,
14418,
3824,
1961,
62,
5097,
796,
1511,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
25154,
62,
4303,
34,
62,
2149,
4825,
47,
796,
1478,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
25154,
62,
4303,
34,
62,
32819,
796,
1315,
930,
29,
471,
5317,
2624,
198,
2,
886,
33829,
14661,
10258,
14106,
198,
198,
2,
2221,
33829,
14661,
1925,
42902,
14749,
198,
9979,
14661,
1925,
42902,
14749,
796,
471,
5317,
2624,
198,
9979,
14661,
3398,
33676,
32,
62,
29701,
62,
4944,
48451,
28343,
796,
657,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
3398,
33676,
32,
62,
29701,
62,
2538,
9792,
796,
352,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
3398,
33676,
32,
62,
29701,
62,
43960,
1137,
796,
362,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
3398,
33676,
32,
62,
29701,
62,
51,
34354,
9792,
796,
513,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
3398,
33676,
32,
62,
29701,
62,
35222,
796,
604,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
3398,
33676,
32,
62,
29701,
62,
33,
29089,
2662,
2538,
9792,
796,
642,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
3398,
33676,
32,
62,
29701,
62,
33,
29089,
2662,
796,
718,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
3398,
33676,
32,
62,
29701,
62,
32819,
796,
767,
930,
29,
471,
5317,
2624,
198,
2,
886,
33829,
14661,
1925,
42902,
14749,
198,
198,
22570,
7,
3712,
6030,
90,
11251,
29291,
90,
45,
11,
47,
11709,
8,
810,
1391,
45,
11,
47,
27,
25,
46745,
92,
796,
357,
45,
6624,
352,
5633,
357,
34,
62,
33991,
35751,
1058,
357,
22570,
7,
11251,
29291,
90,
45,
12,
16,
11,
47,
92,
26513,
11,
327,
62,
33991,
4008,
198,
22570,
7,
3712,
6030,
90,
11251,
29291,
90,
45,
11,
51,
11709,
8,
810,
1391,
45,
11,
51,
92,
796,
357,
45,
6624,
352,
5633,
357,
22570,
7,
51,
828,
8,
1058,
357,
22570,
7,
11251,
29291,
90,
45,
12,
16,
11,
51,
92,
26513,
11,
6632,
7,
51,
22305,
198,
198,
7249,
14661,
19778,
198,
220,
220,
220,
1366,
3712,
11251,
29291,
90,
23,
11,
350,
2213,
90,
52,
5317,
23,
11709,
198,
220,
220,
220,
3951,
1096,
3712,
11251,
29291,
90,
23,
11,
327,
600,
92,
198,
220,
220,
220,
7083,
62,
7890,
3712,
46745,
90,
46745,
90,
52,
5317,
23,
11709,
198,
220,
220,
220,
9647,
3712,
34,
600,
198,
220,
220,
220,
6001,
3712,
34,
600,
198,
220,
220,
220,
299,
65,
62,
82,
12629,
3712,
34,
600,
198,
220,
220,
220,
5794,
3712,
34,
600,
198,
220,
220,
220,
1994,
62,
14535,
3712,
34,
600,
198,
220,
220,
220,
2862,
62,
4906,
3712,
32,
8859,
713,
495,
6030,
198,
220,
220,
220,
6291,
62,
292,
806,
62,
10366,
952,
3712,
10116,
49,
864,
198,
220,
220,
220,
43344,
3712,
5317,
2414,
198,
220,
220,
220,
279,
21841,
62,
457,
82,
3712,
5317,
2414,
198,
220,
220,
220,
279,
21841,
62,
67,
912,
3712,
5317,
2414,
198,
220,
220,
220,
30817,
62,
34053,
62,
17618,
3712,
34,
600,
198,
220,
220,
220,
3359,
62,
34053,
62,
17618,
3712,
34,
600,
198,
220,
220,
220,
3081,
3712,
34,
600,
198,
220,
220,
220,
32191,
3712,
46745,
90,
34,
19382,
92,
198,
220,
220,
220,
4049,
3712,
11251,
29291,
90,
23,
11,
471,
5317,
2414,
92,
198,
220,
220,
220,
9585,
62,
18847,
3712,
34,
600,
198,
220,
220,
220,
987,
75,
2286,
62,
14535,
3712,
34,
600,
198,
220,
220,
220,
1353,
62,
3245,
62,
11085,
3712,
34,
600,
198,
220,
220,
220,
27043,
62,
10134,
62,
40985,
3712,
34,
600,
198,
220,
220,
220,
302,
24071,
62,
404,
18251,
3712,
5317,
2414,
198,
220,
220,
220,
6291,
62,
4873,
3712,
34,
600,
198,
220,
220,
220,
6518,
62,
39786,
3712,
52,
5317,
2414,
198,
220,
220,
220,
42684,
3712,
11251,
29291,
90,
23,
11,
350,
2213,
90,
10116,
28632,
8134,
11709,
198,
220,
220,
220,
7083,
62,
29325,
3712,
46745,
90,
46745,
90,
10116,
28632,
8134,
11709,
198,
220,
220,
220,
299,
65,
62,
2302,
1631,
62,
29325,
3712,
34,
600,
198,
220,
220,
220,
1735,
62,
7890,
3712,
46745,
90,
46745,
90,
10116,
19778,
24819,
6601,
11709,
198,
220,
220,
220,
299,
65,
62,
1589,
62,
7890,
3712,
34,
600,
198,
220,
220,
220,
9701,
3712,
34,
600,
198,
220,
220,
220,
3124,
62,
9521,
3712,
10116,
10258,
17257,
198,
220,
220,
220,
3124,
62,
19795,
3166,
3712,
10116,
10258,
23828,
3166,
198,
220,
220,
220,
3124,
62,
2213,
66,
3712,
10116,
10258,
43260,
27275,
2569,
198,
220,
220,
220,
7577,
10223,
3712,
10116,
10258,
14106,
198,
220,
220,
220,
15358,
64,
62,
24886,
3712,
10116,
1925,
42902,
14749,
198,
220,
220,
220,
1266,
62,
14822,
419,
62,
16514,
27823,
3712,
5317,
2414,
198,
220,
220,
220,
279,
21841,
62,
1930,
3712,
5317,
2414,
198,
220,
220,
220,
279,
21841,
62,
32257,
3712,
5317,
2414,
198,
220,
220,
220,
20150,
3712,
46745,
90,
32,
8898,
14188,
92,
198,
220,
220,
220,
36899,
62,
18224,
62,
33152,
3712,
34,
600,
198,
220,
220,
220,
9619,
3712,
34,
600,
198,
220,
220,
220,
279,
21841,
62,
7857,
3712,
34,
600,
198,
220,
220,
220,
10662,
9888,
62,
11487,
3712,
46745,
90,
5317,
23,
92,
198,
220,
220,
220,
10662,
2536,
485,
3712,
34,
600,
198,
220,
220,
220,
10662,
9888,
62,
4906,
3712,
34,
600,
198,
220,
220,
220,
10662,
79,
62,
11487,
62,
29325,
3712,
46745,
90,
10116,
28632,
8134,
92,
198,
220,
220,
220,
289,
86,
62,
37805,
62,
49464,
3712,
46745,
90,
10116,
28632,
8134,
92,
198,
220,
220,
220,
32191,
62,
5420,
3712,
46745,
90,
10116,
28632,
8134,
92,
198,
220,
220,
220,
13833,
62,
4852,
3712,
34,
7857,
62,
83,
198,
220,
220,
220,
13833,
62,
22487,
3712,
34,
7857,
62,
83,
198,
220,
220,
220,
13833,
62,
9464,
3712,
34,
7857,
62,
83,
198,
220,
220,
220,
13833,
62,
3506,
3712,
34,
7857,
62,
83,
198,
220,
220,
220,
2839,
62,
5420,
3712,
46745,
90,
10116,
28632,
8134,
92,
198,
437,
198,
198,
2,
2221,
33829,
3537,
40508,
44,
20958,
62,
16,
198,
9979,
3537,
40508,
44,
20958,
62,
16,
796,
471,
5317,
2624,
198,
9979,
14661,
62,
10913,
10067,
62,
9419,
3185,
62,
4944,
1847,
16284,
1961,
796,
352,
930,
29,
471,
5317,
2624,
198,
2,
886,
33829,
3537,
40508,
44,
20958,
62,
16,
198,
198,
2,
3661,
4501,
42755,
36621,
25,
14661,
62,
1797,
62,
1268,
30076,
62,
7206,
27389,
357,
6536,
1267,
357,
357,
357,
6536,
1267,
6624,
14661,
62,
31631,
62,
34,
6158,
38,
15513,
62,
7206,
27389,
62,
42937,
62,
1268,
30076,
1267,
8614,
357,
357,
6536,
1267,
6624,
14661,
62,
31631,
62,
34,
6158,
38,
15513,
62,
7206,
27389,
62,
48877,
9399,
62,
1268,
30076,
1267,
8614,
357,
357,
6536,
1267,
6624,
14661,
62,
31631,
62,
34,
6158,
38,
15513,
62,
7206,
27389,
62,
1268,
30076,
1267,
1267,
198,
2,
3661,
4501,
42755,
36621,
25,
14661,
62,
1797,
62,
2606,
7250,
3843,
62,
7206,
27389,
357,
6536,
1267,
357,
357,
357,
6536,
1267,
6624,
14661,
62,
31631,
62,
34,
6158,
38,
15513,
62,
7206,
27389,
62,
42937,
62,
2606,
7250,
3843,
1267,
8614,
357,
357,
6536,
1267,
6624,
14661,
62,
31631,
62,
34,
6158,
38,
15513,
62,
7206,
27389,
62,
48877,
9399,
62,
2606,
7250,
3843,
1267,
8614,
357,
357,
6536,
1267,
6624,
14661,
62,
31631,
62,
34,
6158,
38,
15513,
62,
7206,
27389,
62,
2606,
7250,
3843,
1267,
1267,
198,
198,
9979,
14661,
62,
25294,
62,
43702,
2767,
796,
532,
23,
198,
9979,
14661,
62,
25294,
62,
47,
1565,
2149,
796,
657,
198,
9979,
14661,
62,
25294,
62,
37,
1404,
1847,
796,
807,
198,
9979,
14661,
62,
25294,
62,
24908,
796,
1467,
198,
9979,
14661,
62,
25294,
62,
31502,
796,
1987,
198,
9979,
14661,
62,
25294,
62,
10778,
796,
3933,
198,
9979,
14661,
62,
25294,
62,
5959,
33,
14058,
796,
2319,
198,
9979,
14661,
62,
25294,
62,
30531,
796,
4764,
198,
9979,
14661,
62,
25294,
62,
5446,
11598,
796,
7265,
198,
9979,
14661,
62,
25294,
62,
22921,
62,
27977,
28480,
796,
14661,
62,
25294,
62,
5446,
11598,
532,
14661,
62,
25294,
62,
43702,
2767,
198,
198,
2,
3661,
4501,
42755,
36621,
25,
14661,
62,
25294,
62,
34,
357,
2124,
1267,
357,
357,
2124,
1267,
9959,
807,
1267,
198,
198,
9979,
14661,
62,
25294,
62,
18831,
4061,
62,
2200,
11401,
11617,
796,
352,
198,
9979,
14661,
62,
25294,
62,
4805,
12394,
62,
2538,
18697,
796,
362,
198,
198,
2,
2221,
33829,
3537,
40508,
44,
20958,
62,
17,
198,
9979,
3537,
40508,
44,
20958,
62,
17,
796,
471,
5317,
2624,
198,
9979,
14661,
62,
31631,
62,
34,
6158,
38,
15513,
62,
4535,
796,
657,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
62,
31631,
62,
34,
6158,
38,
15513,
62,
1268,
30076,
796,
352,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
62,
31631,
62,
34,
6158,
38,
15513,
62,
2606,
7250,
3843,
796,
362,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
62,
31631,
62,
34,
6158,
38,
15513,
62,
44,
31235,
1137,
796,
513,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
62,
31631,
62,
34,
6158,
38,
15513,
62,
39429,
31235,
1137,
796,
604,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
62,
31631,
62,
34,
6158,
38,
15513,
62,
24181,
3727,
1137,
796,
642,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
62,
31631,
62,
34,
6158,
38,
15513,
62,
41374,
3727,
1137,
796,
718,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
62,
31631,
62,
34,
6158,
38,
15513,
62,
46700,
5781,
796,
767,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
62,
31631,
62,
34,
6158,
38,
15513,
62,
26094,
2257,
32235,
62,
46700,
5781,
796,
807,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
62,
31631,
62,
34,
6158,
38,
15513,
62,
17887,
6173,
1847,
1137,
796,
860,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
62,
31631,
62,
34,
6158,
38,
15513,
62,
17887,
19535,
2390,
6489,
1137,
796,
838,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
62,
31631,
62,
34,
6158,
38,
15513,
62,
7206,
27389,
62,
42937,
62,
2606,
7250,
3843,
796,
2319,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
62,
31631,
62,
34,
6158,
38,
15513,
62,
7206,
27389,
62,
42937,
62,
1268,
30076,
796,
6073,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
62,
31631,
62,
34,
6158,
38,
15513,
62,
7206,
27389,
62,
48877,
9399,
62,
2606,
7250,
3843,
796,
5433,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
62,
31631,
62,
34,
6158,
38,
15513,
62,
7206,
27389,
62,
48877,
9399,
62,
1268,
30076,
796,
5946,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
62,
31631,
62,
34,
6158,
38,
15513,
62,
7206,
27389,
62,
2606,
7250,
3843,
796,
5846,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
62,
31631,
62,
34,
6158,
38,
15513,
62,
7206,
27389,
62,
1268,
30076,
796,
4153,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
62,
31631,
62,
34,
6158,
38,
15513,
62,
32819,
796,
6337,
930,
29,
471,
5317,
2624,
198,
2,
886,
33829,
3537,
40508,
44,
20958,
62,
17,
198,
198,
9979,
14661,
9487,
27313,
796,
327,
600,
198,
198,
7249,
14661,
19722,
17257,
198,
220,
220,
220,
965,
3712,
34,
8841,
198,
220,
220,
220,
1988,
62,
1084,
3712,
34,
23352,
198,
220,
220,
220,
1988,
62,
9806,
3712,
34,
23352,
198,
220,
220,
220,
7515,
62,
1084,
3712,
34,
23352,
198,
220,
220,
220,
7515,
62,
9806,
3712,
34,
23352,
198,
220,
220,
220,
318,
62,
9521,
3712,
34,
600,
198,
437,
198,
198,
7249,
14661,
19722,
49,
6231,
198,
220,
220,
220,
2837,
3712,
46745,
90,
46745,
90,
10116,
19722,
17257,
11709,
198,
220,
220,
220,
299,
65,
62,
81,
6231,
3712,
34,
600,
198,
220,
220,
220,
299,
65,
62,
5589,
3906,
3712,
34,
600,
198,
437,
198,
198,
2,
2221,
33829,
14661,
19722,
6030,
198,
9979,
14661,
19722,
6030,
796,
471,
5317,
2624,
198,
9979,
14661,
62,
3185,
51,
62,
25216,
62,
38948,
50,
796,
657,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
62,
3185,
51,
62,
25216,
62,
12394,
796,
352,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
62,
3185,
51,
62,
25216,
62,
12394,
2414,
796,
362,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
62,
3185,
51,
62,
25216,
62,
35,
2606,
19146,
796,
513,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
62,
3185,
51,
62,
25216,
62,
3697,
46,
1404,
796,
604,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
62,
3185,
51,
62,
25216,
62,
18601,
2751,
796,
642,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
62,
3185,
51,
62,
25216,
62,
49,
29912,
796,
718,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
62,
3185,
51,
62,
25216,
62,
33,
1268,
13153,
796,
767,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
62,
3185,
51,
62,
25216,
62,
35,
18379,
796,
807,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
62,
3185,
51,
62,
25216,
62,
52,
12394,
2414,
796,
860,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
62,
3185,
51,
62,
25216,
62,
10943,
2257,
796,
838,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
62,
3185,
51,
62,
25216,
62,
3955,
11879,
62,
33489,
796,
1367,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
62,
3185,
51,
62,
25216,
62,
47,
10426,
3698,
62,
37,
13752,
796,
1105,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
62,
3185,
51,
62,
25216,
62,
49302,
16437,
62,
37,
13752,
796,
1511,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
62,
3185,
51,
62,
25216,
62,
42937,
62,
49,
6158,
796,
1478,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
62,
3185,
51,
62,
25216,
62,
35,
4261,
6234,
796,
1315,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
62,
3185,
51,
62,
25216,
62,
46786,
796,
1467,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
62,
3185,
51,
62,
25216,
62,
3398,
22846,
3698,
62,
43,
4792,
12425,
796,
1596,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
62,
3185,
51,
62,
25216,
62,
8202,
3535,
796,
1248,
930,
29,
471,
5317,
2624,
198,
2,
886,
33829,
14661,
19722,
6030,
198,
198,
7249,
14661,
19722,
198,
220,
220,
220,
1438,
3712,
34,
8841,
198,
220,
220,
220,
1037,
3712,
34,
8841,
198,
220,
220,
220,
11677,
3712,
34,
600,
198,
220,
220,
220,
4808,
4906,
3712,
10116,
19722,
6030,
198,
220,
220,
220,
4277,
62,
2100,
3712,
5317,
2414,
198,
220,
220,
220,
949,
3712,
34,
23352,
198,
220,
220,
220,
3509,
3712,
34,
23352,
198,
220,
220,
220,
9701,
3712,
34,
600,
198,
220,
220,
220,
4326,
3712,
34,
8841,
198,
437,
198,
198,
7249,
14661,
9487,
198,
220,
220,
220,
1398,
62,
3672,
3712,
34,
8841,
198,
220,
220,
220,
2378,
62,
3672,
3712,
46745,
90,
34,
19382,
92,
198,
220,
220,
220,
3038,
3712,
46745,
90,
10116,
19722,
92,
198,
220,
220,
220,
2196,
3712,
34,
600,
198,
220,
220,
220,
2604,
62,
5715,
62,
28968,
62,
28968,
3712,
34,
600,
198,
220,
220,
220,
2560,
62,
6404,
62,
22866,
62,
28968,
3712,
34,
600,
198,
220,
220,
220,
1200,
62,
19545,
3712,
46745,
90,
34,
19382,
92,
198,
220,
220,
220,
1200,
62,
4871,
62,
19545,
3712,
46745,
90,
34,
19382,
92,
198,
220,
220,
220,
6536,
3712,
10116,
9487,
27313,
198,
220,
220,
220,
651,
62,
22872,
3712,
46745,
90,
34,
19382,
92,
198,
220,
220,
220,
12405,
62,
81,
6231,
3712,
46745,
90,
34,
19382,
92,
198,
437,
198,
198,
2,
3661,
4501,
42755,
36621,
25,
27196,
43,
12203,
62,
1847,
16284,
1961,
357,
299,
837,
256,
837,
410,
1267,
256,
11593,
42348,
834,
357,
357,
19874,
357,
299,
1267,
1267,
1267,
410,
198,
2,
3661,
4501,
42755,
36621,
25,
27196,
43,
12203,
62,
1921,
44,
62,
1847,
16284,
1961,
357,
299,
837,
256,
837,
410,
1267,
256,
1196,
62,
1484,
11593,
42348,
834,
357,
357,
19874,
357,
299,
1267,
1267,
1267,
410,
198,
2,
3661,
4501,
42755,
36621,
25,
27196,
43,
12203,
62,
1921,
44,
62,
10943,
2257,
357,
299,
837,
256,
837,
410,
1267,
9037,
1500,
256,
1196,
62,
1484,
11593,
42348,
834,
357,
357,
19874,
357,
299,
1267,
1267,
1267,
410,
198,
2,
3661,
4501,
42755,
36621,
25,
1196,
62,
76,
32332,
62,
1078,
822,
11593,
42348,
834,
357,
357,
11593,
76,
32332,
834,
1267,
1267,
198,
2,
3661,
4501,
42755,
36621,
25,
1196,
62,
32332,
62,
7857,
357,
2644,
1267,
198,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
38948,
62,
12473,
796,
352,
9959,
657,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
38948,
62,
47,
1847,
796,
352,
9959,
352,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
38948,
62,
26094,
2257,
32235,
796,
352,
9959,
362,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
38948,
62,
39,
54,
26861,
3698,
796,
352,
9959,
513,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
38948,
62,
6489,
1565,
1503,
796,
352,
9959,
604,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
38948,
62,
36982,
796,
352,
9959,
642,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
38948,
62,
3705,
36,
8322,
3185,
1847,
796,
352,
9959,
718,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
38948,
62,
1847,
47,
7801,
796,
352,
9959,
767,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
38948,
62,
4339,
56,
1137,
796,
352,
9959,
807,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
38948,
62,
3697,
46,
1404,
796,
352,
9959,
860,
198,
9979,
18402,
62,
43,
18420,
62,
19535,
3535,
35354,
796,
657,
87,
18005,
198,
9979,
18402,
62,
43,
18420,
62,
46162,
4221,
796,
657,
87,
34215,
198,
9979,
18402,
62,
43,
18420,
62,
46786,
4303,
11598,
796,
657,
87,
830,
19,
198,
9979,
18402,
62,
43,
18420,
62,
1847,
47,
7801,
796,
657,
87,
830,
23,
198,
9979,
18402,
62,
43,
18420,
62,
46786,
10917,
8643,
796,
657,
87,
37187,
198,
9979,
18402,
62,
43,
18420,
62,
3398,
33676,
32,
796,
657,
87,
405,
1238,
198,
198,
7249,
14661,
21950,
24564,
1968,
273,
198,
220,
220,
220,
6614,
3712,
34,
600,
198,
220,
220,
220,
2239,
3712,
34,
600,
198,
220,
220,
220,
11677,
3712,
34,
600,
198,
220,
220,
220,
6482,
3712,
34,
600,
198,
220,
220,
220,
6795,
3712,
34,
600,
198,
220,
220,
220,
2239,
62,
40191,
16,
3712,
34,
600,
198,
220,
220,
220,
6795,
62,
40191,
16,
3712,
34,
600,
198,
220,
220,
220,
11677,
62,
9541,
16,
3712,
34,
600,
198,
437,
198,
198,
7249,
317,
8859,
844,
37,
16762,
24564,
1968,
273,
198,
220,
220,
220,
1438,
3712,
34,
8841,
198,
220,
220,
220,
299,
65,
62,
5589,
3906,
3712,
52,
5317,
23,
198,
220,
220,
220,
2604,
17,
62,
28663,
64,
62,
86,
3712,
52,
5317,
23,
198,
220,
220,
220,
2604,
17,
62,
28663,
64,
62,
71,
3712,
52,
5317,
23,
198,
220,
220,
220,
9701,
3712,
52,
5317,
2414,
198,
220,
220,
220,
552,
3712,
11251,
29291,
90,
19,
11,
14661,
21950,
24564,
1968,
273,
92,
198,
220,
220,
220,
16144,
3712,
34,
8841,
198,
437,
198,
198,
9979,
317,
8859,
1847,
2767,
9328,
62,
33489,
796,
28119,
198,
9979,
317,
8859,
1847,
2767,
9328,
62,
34,
28270,
796,
17759,
198,
198,
2,
2221,
33829,
317,
8859,
7168,
26227,
198,
9979,
317,
8859,
7168,
26227,
796,
327,
600,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
45,
11651,
796,
532,
16,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
31667,
27211,
47,
796,
657,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
52,
56,
53,
44361,
796,
352,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
36982,
1731,
796,
362,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
33,
10761,
1731,
796,
513,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
31667,
44361,
47,
796,
604,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
31667,
30272,
47,
796,
642,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
31667,
33289,
47,
796,
718,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
31667,
42224,
47,
796,
767,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
38,
30631,
23,
796,
807,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
27857,
3913,
39,
12709,
796,
860,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
27857,
46,
9148,
8120,
796,
838,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
47,
1847,
23,
796,
1367,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
31667,
41,
27211,
47,
796,
1105,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
31667,
41,
44361,
47,
796,
1511,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
31667,
41,
30272,
47,
796,
1478,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
52,
56,
53,
56,
44361,
796,
1315,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
52,
26314,
53,
26314,
42224,
796,
1467,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
33,
10761,
23,
796,
1596,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
33,
10761,
19,
796,
1248,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
33,
10761,
19,
62,
17513,
9328,
796,
678,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
36982,
23,
796,
1160,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
36982,
19,
796,
2310,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
36982,
19,
62,
17513,
9328,
796,
2534,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
27159,
1065,
796,
2242,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
27159,
2481,
796,
1987,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
1503,
4579,
796,
1679,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
48192,
4339,
796,
2608,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
6242,
10761,
796,
2681,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
40469,
3861,
796,
2579,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
38,
30631,
1433,
12473,
796,
2808,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
38,
30631,
1433,
2538,
796,
1542,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
31667,
25644,
47,
796,
3261,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
31667,
41,
25644,
47,
796,
3933,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
52,
11731,
27211,
47,
796,
4747,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
36982,
2780,
12473,
796,
4974,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
36982,
2780,
2538,
796,
3439,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
36982,
47372,
12473,
796,
4570,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
36982,
47372,
2538,
796,
5214,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
36982,
31046,
12473,
796,
4353,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
36982,
31046,
2538,
796,
5014,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
33,
10761,
47372,
12473,
796,
2319,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
33,
10761,
47372,
2538,
796,
6073,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
33,
10761,
31046,
12473,
796,
5433,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
33,
10761,
31046,
2538,
796,
5946,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
11731,
17614,
62,
44,
4503,
46,
796,
5846,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
11731,
17614,
62,
2389,
4177,
796,
4153,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
11731,
17614,
62,
53,
11163,
796,
6337,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
11731,
17614,
796,
6337,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
31667,
27211,
47,
1433,
2538,
796,
6298,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
31667,
27211,
47,
1433,
12473,
796,
4764,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
31667,
44361,
47,
1433,
2538,
796,
5125,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
31667,
44361,
47,
1433,
12473,
796,
2026,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
31667,
30272,
47,
1433,
2538,
796,
6885,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
31667,
30272,
47,
1433,
12473,
796,
6740,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
36227,
11731,
17,
62,
53,
11163,
796,
7192,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
36982,
30272,
2538,
796,
7175,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
36982,
30272,
12473,
796,
5996,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
33,
10761,
30272,
2538,
796,
7265,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
33,
10761,
30272,
12473,
796,
7632,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
44947,
23,
796,
7618,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
7029,
32,
796,
7618,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
38,
30631,
23,
32,
796,
7618,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
33,
10761,
2780,
12473,
796,
7863,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
33,
10761,
2780,
2538,
796,
3126,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
31667,
27211,
47,
24,
12473,
796,
8454,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
31667,
27211,
47,
24,
2538,
796,
8190,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
31667,
27211,
47,
940,
12473,
796,
8093,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
31667,
27211,
47,
940,
2538,
796,
5598,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
31667,
44361,
47,
940,
12473,
796,
6135,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
31667,
44361,
47,
940,
2538,
796,
7930,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
31667,
30272,
47,
24,
12473,
796,
8275,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
31667,
30272,
47,
24,
2538,
796,
8257,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
31667,
30272,
47,
940,
12473,
796,
8644,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
31667,
30272,
47,
940,
2538,
796,
4317,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
31667,
44361,
47,
24,
12473,
796,
9166,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
31667,
44361,
47,
24,
2538,
796,
7724,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
4579,
20031,
796,
8854,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
4579,
49,
1731,
47,
796,
8854,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
4579,
20031,
24,
12473,
796,
8915,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
4579,
20031,
24,
2538,
796,
5441,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
4579,
20031,
940,
12473,
796,
8684,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
4579,
20031,
940,
2538,
796,
8541,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
4579,
20031,
1433,
12473,
796,
8699,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
4579,
20031,
1433,
2538,
796,
9225,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
52,
11731,
44361,
47,
796,
4019,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
52,
11731,
30272,
47,
796,
9773,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
52,
11731,
27211,
47,
24,
12473,
796,
9415,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
52,
11731,
27211,
47,
24,
2538,
796,
9698,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
52,
11731,
44361,
47,
24,
12473,
796,
9508,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
52,
11731,
44361,
47,
24,
2538,
796,
7600,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
52,
11731,
30272,
47,
24,
12473,
796,
9849,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
52,
11731,
30272,
47,
24,
2538,
796,
10083,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
52,
11731,
27211,
47,
940,
12473,
796,
9193,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
52,
11731,
27211,
47,
940,
2538,
796,
9919,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
52,
11731,
44361,
47,
940,
12473,
796,
4101,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
52,
11731,
44361,
47,
940,
2538,
796,
10495,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
52,
11731,
30272,
47,
940,
12473,
796,
10190,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
52,
11731,
30272,
47,
940,
2538,
796,
10261,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
52,
11731,
27211,
47,
1433,
12473,
796,
10048,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
52,
11731,
27211,
47,
1433,
2538,
796,
6957,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
52,
11731,
44361,
47,
1433,
12473,
796,
9907,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
52,
11731,
44361,
47,
1433,
2538,
796,
10111,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
52,
11731,
30272,
47,
1433,
12473,
796,
9661,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
52,
11731,
30272,
47,
1433,
2538,
796,
7388,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
8898,
4537,
52,
796,
1802,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
34278,
57,
1065,
2538,
796,
8949,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
34278,
57,
1065,
12473,
796,
15143,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
27159,
1433,
796,
15349,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
27159,
1238,
2538,
796,
14436,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
27159,
1238,
12473,
796,
13343,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
48192,
4339,
2414,
12473,
796,
15696,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
48192,
4339,
2414,
2538,
796,
16226,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
40469,
3861,
2414,
12473,
796,
15495,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
40469,
3861,
2414,
2538,
796,
16003,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
53,
56,
52,
44361,
796,
9796,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
44947,
1433,
12473,
796,
13374,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
44947,
1433,
2538,
796,
13539,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
4579,
49,
2969,
796,
17318,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
4579,
49,
2969,
1433,
12473,
796,
17342,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
4579,
49,
2969,
1433,
2538,
796,
12279,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
48,
50,
53,
796,
18693,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
12038,
1847,
796,
19048,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
35,
18,
35,
1157,
11731,
62,
53,
11163,
796,
19035,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
43633,
5631,
796,
15136,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
15,
36982,
796,
7982,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
36982,
15,
796,
20416,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
15,
33,
10761,
796,
19409,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
33,
10761,
15,
796,
17031,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
31667,
27211,
47,
1065,
12473,
796,
19755,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
31667,
27211,
47,
1065,
2538,
796,
13151,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
31667,
27211,
47,
1415,
12473,
796,
19710,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
31667,
27211,
47,
1415,
2538,
796,
18112,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
31667,
44361,
47,
1065,
12473,
796,
13108,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
31667,
44361,
47,
1065,
2538,
796,
20248,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
31667,
44361,
47,
1415,
12473,
796,
11323,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
31667,
44361,
47,
1415,
2538,
796,
23134,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
31667,
30272,
47,
1065,
12473,
796,
21761,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
31667,
30272,
47,
1065,
2538,
796,
22169,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
31667,
30272,
47,
1415,
12473,
796,
22352,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
31667,
30272,
47,
1415,
2538,
796,
17501,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
4579,
20031,
1065,
12473,
796,
21056,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
4579,
20031,
1065,
2538,
796,
21643,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
4579,
20031,
1415,
12473,
796,
21503,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
4579,
20031,
1415,
2538,
796,
23666,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
31667,
41,
42224,
47,
796,
12713,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
4339,
56,
1137,
62,
40469,
10761,
23,
796,
25500,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
4339,
56,
1137,
62,
48192,
4579,
23,
796,
25181,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
4339,
56,
1137,
62,
4579,
48192,
23,
796,
24356,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
4339,
56,
1137,
62,
10761,
40469,
23,
796,
20224,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
4339,
56,
1137,
62,
40469,
10761,
1433,
2538,
796,
20299,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
4339,
56,
1137,
62,
40469,
10761,
1433,
12473,
796,
22986,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
4339,
56,
1137,
62,
48192,
4579,
1433,
2538,
796,
22909,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
4339,
56,
1137,
62,
48192,
4579,
1433,
12473,
796,
22613,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
4339,
56,
1137,
62,
4579,
48192,
1433,
2538,
796,
24041,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
4339,
56,
1137,
62,
4579,
48192,
1433,
12473,
796,
6640,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
4339,
56,
1137,
62,
10761,
40469,
1433,
2538,
796,
25326,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
4339,
56,
1137,
62,
10761,
40469,
1433,
12473,
796,
24848,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
55,
53,
9655,
796,
24652,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
31667,
25644,
47,
940,
2538,
796,
24235,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
31667,
25644,
47,
940,
12473,
796,
20708,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
31667,
25644,
47,
1065,
2538,
796,
23871,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
31667,
25644,
47,
1065,
12473,
796,
23313,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
4792,
31667,
2414,
2538,
796,
24063,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
4792,
31667,
2414,
12473,
796,
26422,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
11008,
36,
26631,
3535,
39758,
796,
13454,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
47,
20943,
2538,
796,
27829,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
47,
20943,
12473,
796,
25090,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
4579,
49,
2969,
1065,
12473,
796,
26826,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
4579,
49,
2969,
1065,
2538,
796,
25307,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
4579,
49,
2969,
940,
12473,
796,
21409,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
4579,
49,
2969,
940,
2538,
796,
26753,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
30733,
40,
2246,
3727,
2943,
796,
26118,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
38,
30631,
1065,
12473,
796,
23378,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
38,
30631,
1065,
2538,
796,
27191,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
38,
30631,
940,
12473,
796,
16677,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
38,
30631,
940,
2538,
796,
28369,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
47,
27037,
2538,
796,
23120,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
47,
27037,
12473,
796,
28174,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
35,
18,
35,
1157,
796,
27621,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
38,
30631,
24,
12473,
796,
19038,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
38,
30631,
24,
2538,
796,
26937,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
4579,
20031,
37,
2624,
12473,
796,
26607,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
4579,
20031,
37,
2624,
2538,
796,
27368,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
4579,
49,
2969,
37,
2624,
12473,
796,
27228,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
4579,
49,
2969,
37,
2624,
2538,
796,
11546,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
7707,
44,
62,
4805,
12789,
796,
30110,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
3185,
1677,
5097,
796,
28581,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
38,
30631,
1415,
12473,
796,
28551,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
38,
30631,
1415,
2538,
796,
28598,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
38,
30631,
37,
2624,
12473,
796,
22855,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
38,
30631,
37,
2624,
2538,
796,
28481,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
32819,
796,
27649,
930,
29,
2558,
2624,
198,
2,
886,
33829,
317,
8859,
7168,
26227,
198,
198,
20285,
305,
14661,
62,
47,
10426,
62,
37,
13752,
62,
12161,
7,
1350,
11,
443,
8,
198,
220,
220,
220,
38357,
7203,
10116,
62,
47,
10426,
62,
37,
13752,
62,
1,
9,
8841,
7,
293,
4008,
198,
437,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
36982,
2624,
796,
2488,
10116,
62,
47,
10426,
62,
37,
13752,
62,
12161,
7,
1503,
4579,
11,
34839,
3861,
8,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
36982,
2624,
62,
16,
796,
2488,
10116,
62,
47,
10426,
62,
37,
13752,
62,
12161,
7,
48192,
4339,
11,
9564,
10761,
8,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
33,
10761,
2624,
796,
2488,
10116,
62,
47,
10426,
62,
37,
13752,
62,
12161,
7,
6242,
10761,
11,
34359,
4339,
8,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
33,
10761,
2624,
62,
16,
796,
2488,
10116,
62,
47,
10426,
62,
37,
13752,
62,
12161,
7,
40469,
3861,
11,
5923,
4579,
8,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
15,
36982,
2624,
796,
2488,
10116,
62,
47,
10426,
62,
37,
13752,
62,
12161,
7,
15,
36982,
11,
347,
10761,
15,
8,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
15,
33,
10761,
2624,
796,
2488,
10116,
62,
47,
10426,
62,
37,
13752,
62,
12161,
7,
15,
33,
10761,
11,
25228,
15,
8,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
38,
30631,
24,
796,
2488,
10116,
62,
47,
10426,
62,
37,
13752,
62,
12161,
7,
38,
30631,
24,
12473,
11,
402,
30631,
24,
2538,
8,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
38,
30631,
940,
796,
2488,
10116,
62,
47,
10426,
62,
37,
13752,
62,
12161,
7,
38,
30631,
940,
12473,
11,
402,
30631,
940,
2538,
8,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
38,
30631,
1065,
796,
2488,
10116,
62,
47,
10426,
62,
37,
13752,
62,
12161,
7,
38,
30631,
1065,
12473,
11,
402,
30631,
1065,
2538,
8,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
38,
30631,
1415,
796,
2488,
10116,
62,
47,
10426,
62,
37,
13752,
62,
12161,
7,
38,
30631,
1415,
12473,
11,
402,
30631,
1415,
2538,
8,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
38,
30631,
1433,
796,
2488,
10116,
62,
47,
10426,
62,
37,
13752,
62,
12161,
7,
38,
30631,
1433,
12473,
11,
402,
30631,
1433,
2538,
8,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
44947,
1433,
796,
2488,
10116,
62,
47,
10426,
62,
37,
13752,
62,
12161,
7,
44947,
1433,
12473,
11,
575,
32,
1433,
2538,
8,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
36982,
2780,
796,
2488,
10116,
62,
47,
10426,
62,
37,
13752,
62,
12161,
7,
36982,
2780,
12473,
11,
25228,
2780,
2538,
8,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
36982,
47372,
796,
2488,
10116,
62,
47,
10426,
62,
37,
13752,
62,
12161,
7,
36982,
47372,
12473,
11,
25228,
47372,
2538,
8,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
36982,
31046,
796,
2488,
10116,
62,
47,
10426,
62,
37,
13752,
62,
12161,
7,
36982,
31046,
12473,
11,
25228,
31046,
2538,
8,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
36982,
30272,
796,
2488,
10116,
62,
47,
10426,
62,
37,
13752,
62,
12161,
7,
36982,
30272,
12473,
11,
25228,
30272,
2538,
8,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
48192,
4339,
2414,
796,
2488,
10116,
62,
47,
10426,
62,
37,
13752,
62,
12161,
7,
48192,
4339,
2414,
12473,
11,
34359,
4339,
2414,
2538,
8,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
33,
10761,
2780,
796,
2488,
10116,
62,
47,
10426,
62,
37,
13752,
62,
12161,
7,
33,
10761,
2780,
12473,
11,
347,
10761,
2780,
2538,
8,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
33,
10761,
47372,
796,
2488,
10116,
62,
47,
10426,
62,
37,
13752,
62,
12161,
7,
33,
10761,
47372,
12473,
11,
347,
10761,
47372,
2538,
8,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
33,
10761,
31046,
796,
2488,
10116,
62,
47,
10426,
62,
37,
13752,
62,
12161,
7,
33,
10761,
31046,
12473,
11,
347,
10761,
31046,
2538,
8,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
33,
10761,
30272,
796,
2488,
10116,
62,
47,
10426,
62,
37,
13752,
62,
12161,
7,
33,
10761,
30272,
12473,
11,
347,
10761,
30272,
2538,
8,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
40469,
3861,
2414,
796,
2488,
10116,
62,
47,
10426,
62,
37,
13752,
62,
12161,
7,
40469,
3861,
2414,
12473,
11,
34839,
3861,
2414,
2538,
8,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
31667,
27211,
47,
24,
796,
2488,
10116,
62,
47,
10426,
62,
37,
13752,
62,
12161,
7,
56,
31667,
27211,
47,
24,
12473,
11,
575,
31667,
27211,
47,
24,
2538,
8,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
31667,
44361,
47,
24,
796,
2488,
10116,
62,
47,
10426,
62,
37,
13752,
62,
12161,
7,
56,
31667,
44361,
47,
24,
12473,
11,
575,
31667,
44361,
47,
24,
2538,
8,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
31667,
30272,
47,
24,
796,
2488,
10116,
62,
47,
10426,
62,
37,
13752,
62,
12161,
7,
56,
31667,
30272,
47,
24,
12473,
11,
575,
31667,
30272,
47,
24,
2538,
8,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
31667,
27211,
47,
940,
796,
2488,
10116,
62,
47,
10426,
62,
37,
13752,
62,
12161,
7,
56,
31667,
27211,
47,
940,
12473,
11,
575,
31667,
27211,
47,
940,
2538,
8,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
31667,
44361,
47,
940,
796,
2488,
10116,
62,
47,
10426,
62,
37,
13752,
62,
12161,
7,
56,
31667,
44361,
47,
940,
12473,
11,
575,
31667,
44361,
47,
940,
2538,
8,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
31667,
25644,
47,
940,
796,
2488,
10116,
62,
47,
10426,
62,
37,
13752,
62,
12161,
7,
56,
31667,
25644,
47,
940,
12473,
11,
575,
31667,
25644,
47,
940,
2538,
8,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
31667,
30272,
47,
940,
796,
2488,
10116,
62,
47,
10426,
62,
37,
13752,
62,
12161,
7,
56,
31667,
30272,
47,
940,
12473,
11,
575,
31667,
30272,
47,
940,
2538,
8,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
31667,
27211,
47,
1065,
796,
2488,
10116,
62,
47,
10426,
62,
37,
13752,
62,
12161,
7,
56,
31667,
27211,
47,
1065,
12473,
11,
575,
31667,
27211,
47,
1065,
2538,
8,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
31667,
44361,
47,
1065,
796,
2488,
10116,
62,
47,
10426,
62,
37,
13752,
62,
12161,
7,
56,
31667,
44361,
47,
1065,
12473,
11,
575,
31667,
44361,
47,
1065,
2538,
8,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
31667,
25644,
47,
1065,
796,
2488,
10116,
62,
47,
10426,
62,
37,
13752,
62,
12161,
7,
56,
31667,
25644,
47,
1065,
12473,
11,
575,
31667,
25644,
47,
1065,
2538,
8,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
31667,
30272,
47,
1065,
796,
2488,
10116,
62,
47,
10426,
62,
37,
13752,
62,
12161,
7,
56,
31667,
30272,
47,
1065,
12473,
11,
575,
31667,
30272,
47,
1065,
2538,
8,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
31667,
27211,
47,
1415,
796,
2488,
10116,
62,
47,
10426,
62,
37,
13752,
62,
12161,
7,
56,
31667,
27211,
47,
1415,
12473,
11,
575,
31667,
27211,
47,
1415,
2538,
8,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
31667,
44361,
47,
1415,
796,
2488,
10116,
62,
47,
10426,
62,
37,
13752,
62,
12161,
7,
56,
31667,
44361,
47,
1415,
12473,
11,
575,
31667,
44361,
47,
1415,
2538,
8,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
31667,
30272,
47,
1415,
796,
2488,
10116,
62,
47,
10426,
62,
37,
13752,
62,
12161,
7,
56,
31667,
30272,
47,
1415,
12473,
11,
575,
31667,
30272,
47,
1415,
2538,
8,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
31667,
27211,
47,
1433,
796,
2488,
10116,
62,
47,
10426,
62,
37,
13752,
62,
12161,
7,
56,
31667,
27211,
47,
1433,
12473,
11,
575,
31667,
27211,
47,
1433,
2538,
8,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
31667,
44361,
47,
1433,
796,
2488,
10116,
62,
47,
10426,
62,
37,
13752,
62,
12161,
7,
56,
31667,
44361,
47,
1433,
12473,
11,
575,
31667,
44361,
47,
1433,
2538,
8,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
31667,
30272,
47,
1433,
796,
2488,
10116,
62,
47,
10426,
62,
37,
13752,
62,
12161,
7,
56,
31667,
30272,
47,
1433,
12473,
11,
575,
31667,
30272,
47,
1433,
2538,
8,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
4579,
20031,
24,
796,
2488,
10116,
62,
47,
10426,
62,
37,
13752,
62,
12161,
7,
4579,
20031,
24,
12473,
11,
402,
11473,
47,
24,
2538,
8,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
4579,
20031,
940,
796,
2488,
10116,
62,
47,
10426,
62,
37,
13752,
62,
12161,
7,
4579,
20031,
940,
12473,
11,
402,
11473,
47,
940,
2538,
8,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
4579,
20031,
1065,
796,
2488,
10116,
62,
47,
10426,
62,
37,
13752,
62,
12161,
7,
4579,
20031,
1065,
12473,
11,
402,
11473,
47,
1065,
2538,
8,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
4579,
20031,
1415,
796,
2488,
10116,
62,
47,
10426,
62,
37,
13752,
62,
12161,
7,
4579,
20031,
1415,
12473,
11,
402,
11473,
47,
1415,
2538,
8,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
4579,
20031,
1433,
796,
2488,
10116,
62,
47,
10426,
62,
37,
13752,
62,
12161,
7,
4579,
20031,
1433,
12473,
11,
402,
11473,
47,
1433,
2538,
8,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
4579,
49,
2969,
940,
796,
2488,
10116,
62,
47,
10426,
62,
37,
13752,
62,
12161,
7,
4579,
49,
2969,
940,
12473,
11,
402,
11473,
2969,
940,
2538,
8,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
4579,
49,
2969,
1065,
796,
2488,
10116,
62,
47,
10426,
62,
37,
13752,
62,
12161,
7,
4579,
49,
2969,
1065,
12473,
11,
402,
11473,
2969,
1065,
2538,
8,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
4579,
49,
2969,
1433,
796,
2488,
10116,
62,
47,
10426,
62,
37,
13752,
62,
12161,
7,
4579,
49,
2969,
1433,
12473,
11,
402,
11473,
2969,
1433,
2538,
8,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
4339,
56,
1137,
62,
40469,
10761,
1433,
796,
2488,
10116,
62,
47,
10426,
62,
37,
13752,
62,
12161,
7,
4339,
56,
1137,
62,
40469,
10761,
1433,
12473,
11,
347,
4792,
1137,
62,
40469,
10761,
1433,
2538,
8,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
4339,
56,
1137,
62,
48192,
4579,
1433,
796,
2488,
10116,
62,
47,
10426,
62,
37,
13752,
62,
12161,
7,
4339,
56,
1137,
62,
48192,
4579,
1433,
12473,
11,
347,
4792,
1137,
62,
48192,
4579,
1433,
2538,
8,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
4339,
56,
1137,
62,
4579,
48192,
1433,
796,
2488,
10116,
62,
47,
10426,
62,
37,
13752,
62,
12161,
7,
4339,
56,
1137,
62,
4579,
48192,
1433,
12473,
11,
347,
4792,
1137,
62,
4579,
48192,
1433,
2538,
8,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
4339,
56,
1137,
62,
10761,
40469,
1433,
796,
2488,
10116,
62,
47,
10426,
62,
37,
13752,
62,
12161,
7,
4339,
56,
1137,
62,
10761,
40469,
1433,
12473,
11,
347,
4792,
1137,
62,
10761,
40469,
1433,
2538,
8,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
4579,
20031,
37,
2624,
796,
2488,
10116,
62,
47,
10426,
62,
37,
13752,
62,
12161,
7,
4579,
20031,
37,
2624,
12473,
11,
402,
11473,
42668,
2624,
2538,
8,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
4579,
49,
2969,
37,
2624,
796,
2488,
10116,
62,
47,
10426,
62,
37,
13752,
62,
12161,
7,
4579,
49,
2969,
37,
2624,
12473,
11,
402,
11473,
2969,
37,
2624,
2538,
8,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
38,
30631,
37,
2624,
796,
2488,
10116,
62,
47,
10426,
62,
37,
13752,
62,
12161,
7,
38,
30631,
37,
2624,
12473,
11,
402,
30631,
37,
2624,
2538,
8,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
52,
11731,
27211,
47,
24,
796,
2488,
10116,
62,
47,
10426,
62,
37,
13752,
62,
12161,
7,
56,
52,
11731,
27211,
47,
24,
12473,
11,
575,
52,
11731,
27211,
47,
24,
2538,
8,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
52,
11731,
44361,
47,
24,
796,
2488,
10116,
62,
47,
10426,
62,
37,
13752,
62,
12161,
7,
56,
52,
11731,
44361,
47,
24,
12473,
11,
575,
52,
11731,
44361,
47,
24,
2538,
8,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
52,
11731,
30272,
47,
24,
796,
2488,
10116,
62,
47,
10426,
62,
37,
13752,
62,
12161,
7,
56,
52,
11731,
30272,
47,
24,
12473,
11,
575,
52,
11731,
30272,
47,
24,
2538,
8,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
52,
11731,
27211,
47,
940,
796,
2488,
10116,
62,
47,
10426,
62,
37,
13752,
62,
12161,
7,
56,
52,
11731,
27211,
47,
940,
12473,
11,
575,
52,
11731,
27211,
47,
940,
2538,
8,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
52,
11731,
44361,
47,
940,
796,
2488,
10116,
62,
47,
10426,
62,
37,
13752,
62,
12161,
7,
56,
52,
11731,
44361,
47,
940,
12473,
11,
575,
52,
11731,
44361,
47,
940,
2538,
8,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
52,
11731,
30272,
47,
940,
796,
2488,
10116,
62,
47,
10426,
62,
37,
13752,
62,
12161,
7,
56,
52,
11731,
30272,
47,
940,
12473,
11,
575,
52,
11731,
30272,
47,
940,
2538,
8,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
52,
11731,
27211,
47,
1433,
796,
2488,
10116,
62,
47,
10426,
62,
37,
13752,
62,
12161,
7,
56,
52,
11731,
27211,
47,
1433,
12473,
11,
575,
52,
11731,
27211,
47,
1433,
2538,
8,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
52,
11731,
44361,
47,
1433,
796,
2488,
10116,
62,
47,
10426,
62,
37,
13752,
62,
12161,
7,
56,
52,
11731,
44361,
47,
1433,
12473,
11,
575,
52,
11731,
44361,
47,
1433,
2538,
8,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
56,
52,
11731,
30272,
47,
1433,
796,
2488,
10116,
62,
47,
10426,
62,
37,
13752,
62,
12161,
7,
56,
52,
11731,
30272,
47,
1433,
12473,
11,
575,
52,
11731,
30272,
47,
1433,
2538,
8,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
34278,
57,
1065,
796,
2488,
10116,
62,
47,
10426,
62,
37,
13752,
62,
12161,
7,
34278,
57,
1065,
12473,
11,
41420,
57,
1065,
2538,
8,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
27159,
1238,
796,
2488,
10116,
62,
47,
10426,
62,
37,
13752,
62,
12161,
7,
27159,
1238,
12473,
11,
23973,
1238,
2538,
8,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
4792,
31667,
2414,
796,
2488,
10116,
62,
47,
10426,
62,
37,
13752,
62,
12161,
7,
4792,
31667,
2414,
12473,
11,
317,
56,
31667,
2414,
2538,
8,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
47,
20943,
796,
2488,
10116,
62,
47,
10426,
62,
37,
13752,
62,
12161,
7,
47,
20943,
12473,
11,
350,
20943,
2538,
8,
198,
9979,
14661,
62,
47,
10426,
62,
37,
13752,
62,
47,
27037,
796,
2488,
10116,
62,
47,
10426,
62,
37,
13752,
62,
12161,
7,
47,
27037,
12473,
11,
350,
27037,
2538,
8,
198,
198,
2,
2221,
33829,
14661,
10258,
23828,
3166,
198,
9979,
14661,
10258,
23828,
3166,
796,
471,
5317,
2624,
198,
9979,
14661,
25154,
62,
4805,
40,
62,
19535,
1137,
53,
1961,
15,
796,
657,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
25154,
62,
4805,
40,
62,
19313,
31495,
796,
352,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
25154,
62,
4805,
40,
62,
4944,
48451,
28343,
796,
362,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
25154,
62,
4805,
40,
62,
19535,
1137,
53,
1961,
796,
513,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
25154,
62,
4805,
40,
62,
19313,
27790,
44,
796,
604,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
25154,
62,
4805,
40,
62,
19313,
27790,
40469,
796,
642,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
25154,
62,
4805,
40,
62,
50,
7378,
9328,
17279,
44,
796,
718,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
25154,
62,
4805,
40,
62,
50,
7378,
9328,
16102,
44,
796,
767,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
25154,
62,
4805,
40,
62,
46700,
44,
796,
807,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
25154,
62,
4805,
40,
62,
19313,
42334,
796,
860,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
25154,
62,
4805,
40,
62,
50,
7378,
9328,
40173,
796,
838,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
25154,
62,
4805,
40,
62,
50,
7378,
51,
6465,
40173,
62,
16,
796,
838,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
25154,
62,
4805,
40,
62,
50,
7378,
9328,
50080,
796,
1367,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
25154,
62,
4805,
40,
62,
50,
7378,
9328,
45331,
796,
1105,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
25154,
62,
4805,
40,
62,
41,
1961,
2943,
62,
47,
1828,
796,
2534,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
25154,
62,
4805,
40,
62,
32819,
796,
2242,
930,
29,
471,
5317,
2624,
198,
2,
886,
33829,
14661,
10258,
23828,
3166,
198,
198,
2,
2221,
33829,
14661,
10258,
43260,
27275,
2569,
198,
9979,
14661,
10258,
43260,
27275,
2569,
796,
471,
5317,
2624,
198,
9979,
14661,
25154,
62,
5446,
34,
62,
19535,
1137,
53,
1961,
15,
796,
657,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
25154,
62,
5446,
34,
62,
19313,
31495,
796,
352,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
25154,
62,
5446,
34,
62,
4944,
48451,
28343,
796,
362,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
25154,
62,
5446,
34,
62,
19535,
1137,
53,
1961,
796,
513,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
25154,
62,
5446,
34,
62,
38,
2390,
5673,
1828,
796,
604,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
25154,
62,
5446,
34,
62,
38,
2390,
5673,
2078,
796,
642,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
25154,
62,
5446,
34,
62,
50,
7378,
9328,
17279,
44,
796,
718,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
25154,
62,
5446,
34,
62,
50,
7378,
9328,
16102,
44,
796,
767,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
25154,
62,
5446,
34,
62,
24027,
1503,
796,
807,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
25154,
62,
5446,
34,
62,
25294,
796,
860,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
25154,
62,
5446,
34,
62,
25294,
62,
50,
48,
14181,
796,
838,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
25154,
62,
5446,
34,
62,
40,
2943,
21,
44227,
62,
17,
62,
19,
796,
1367,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
25154,
62,
5446,
34,
62,
19313,
1485,
5333,
62,
2943,
38,
796,
1105,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
25154,
62,
5446,
34,
62,
40,
2943,
21,
44227,
62,
17,
62,
16,
796,
1511,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
25154,
62,
5446,
34,
62,
19313,
42334,
62,
940,
796,
1478,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
25154,
62,
5446,
34,
62,
19313,
42334,
62,
1065,
796,
1315,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
25154,
62,
5446,
34,
62,
50,
7378,
9328,
1238,
5705,
796,
1467,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
25154,
62,
5446,
34,
62,
50,
7378,
51,
6465,
1238,
5705,
796,
1467,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
25154,
62,
5446,
34,
62,
50,
7378,
9328,
40173,
796,
1596,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
25154,
62,
5446,
34,
62,
50,
7378,
51,
6465,
40173,
62,
16,
796,
1596,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
25154,
62,
5446,
34,
62,
1503,
9865,
62,
32147,
62,
33,
3134,
796,
1248,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
25154,
62,
5446,
34,
62,
32819,
796,
678,
930,
29,
471,
5317,
2624,
198,
2,
886,
33829,
14661,
10258,
43260,
27275,
2569,
198,
198,
2,
2221,
33829,
14661,
10258,
14106,
198,
9979,
14661,
10258,
14106,
796,
471,
5317,
2624,
198,
9979,
14661,
25154,
62,
4303,
34,
62,
36982,
796,
657,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
25154,
62,
4303,
34,
62,
19313,
31495,
796,
352,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
25154,
62,
4303,
34,
62,
4944,
48451,
28343,
796,
362,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
25154,
62,
4303,
34,
62,
19535,
1137,
53,
1961,
796,
513,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
25154,
62,
4303,
34,
62,
37,
4093,
796,
604,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
25154,
62,
4303,
34,
62,
19313,
27790,
40469,
796,
642,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
25154,
62,
4303,
34,
62,
50,
7378,
9328,
17279,
44,
796,
718,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
25154,
62,
4303,
34,
62,
50,
7378,
9328,
16102,
44,
796,
767,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
25154,
62,
4303,
34,
62,
56,
39816,
8220,
796,
807,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
25154,
62,
4303,
34,
62,
44816,
4503,
38,
796,
807,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
25154,
62,
4303,
34,
62,
19313,
42334,
62,
45,
5097,
796,
860,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
25154,
62,
4303,
34,
62,
19313,
42334,
62,
5097,
796,
838,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
25154,
62,
4303,
34,
62,
50,
7378,
9328,
1238,
5332,
796,
1367,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
25154,
62,
4303,
34,
62,
3398,
33676,
32,
62,
14418,
3824,
1961,
62,
45,
5097,
796,
1105,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
25154,
62,
4303,
34,
62,
3398,
33676,
32,
62,
14418,
3824,
1961,
62,
5097,
796,
1511,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
25154,
62,
4303,
34,
62,
2149,
4825,
47,
796,
1478,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
25154,
62,
4303,
34,
62,
32819,
796,
1315,
930,
29,
471,
5317,
2624,
198,
2,
886,
33829,
14661,
10258,
14106,
198,
198,
2,
2221,
33829,
14661,
10258,
17257,
198,
9979,
14661,
10258,
17257,
796,
471,
5317,
2624,
198,
9979,
14661,
25154,
62,
49,
27746,
62,
4944,
48451,
28343,
796,
657,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
25154,
62,
49,
27746,
62,
7378,
7156,
796,
352,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
25154,
62,
49,
27746,
62,
12889,
7156,
796,
362,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
25154,
62,
49,
27746,
62,
32819,
796,
513,
930,
29,
471,
5317,
2624,
198,
2,
886,
33829,
14661,
10258,
17257,
198,
198,
2,
2221,
33829,
14661,
1925,
42902,
14749,
198,
9979,
14661,
1925,
42902,
14749,
796,
471,
5317,
2624,
198,
9979,
14661,
3398,
33676,
32,
62,
29701,
62,
4944,
48451,
28343,
796,
657,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
3398,
33676,
32,
62,
29701,
62,
2538,
9792,
796,
352,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
3398,
33676,
32,
62,
29701,
62,
43960,
1137,
796,
362,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
3398,
33676,
32,
62,
29701,
62,
51,
34354,
9792,
796,
513,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
3398,
33676,
32,
62,
29701,
62,
35222,
796,
604,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
3398,
33676,
32,
62,
29701,
62,
33,
29089,
2662,
2538,
9792,
796,
642,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
3398,
33676,
32,
62,
29701,
62,
33,
29089,
2662,
796,
718,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
3398,
33676,
32,
62,
29701,
62,
32819,
796,
767,
930,
29,
471,
5317,
2624,
198,
2,
886,
33829,
14661,
1925,
42902,
14749,
198,
198,
2,
2221,
33829,
14661,
36674,
26227,
198,
9979,
14661,
36674,
26227,
796,
327,
600,
198,
9979,
14661,
62,
49302,
16437,
62,
37,
13752,
62,
45,
11651,
796,
532,
16,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
49302,
16437,
62,
37,
13752,
62,
52,
23,
796,
657,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
49302,
16437,
62,
37,
13752,
62,
50,
1433,
796,
352,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
49302,
16437,
62,
37,
13752,
62,
50,
2624,
796,
362,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
49302,
16437,
62,
37,
13752,
62,
3697,
51,
796,
513,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
49302,
16437,
62,
37,
13752,
62,
35,
9148,
796,
604,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
49302,
16437,
62,
37,
13752,
62,
52,
23,
47,
796,
642,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
49302,
16437,
62,
37,
13752,
62,
50,
1433,
47,
796,
718,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
49302,
16437,
62,
37,
13752,
62,
50,
2624,
47,
796,
767,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
49302,
16437,
62,
37,
13752,
62,
3697,
7250,
796,
807,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
49302,
16437,
62,
37,
13752,
62,
35,
9148,
47,
796,
860,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
49302,
16437,
62,
37,
13752,
62,
50,
2414,
796,
838,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
49302,
16437,
62,
37,
13752,
62,
50,
2414,
47,
796,
1367,
930,
29,
2558,
2624,
198,
9979,
14661,
62,
49302,
16437,
62,
37,
13752,
62,
32819,
796,
1105,
930,
29,
2558,
2624,
198,
2,
886,
33829,
14661,
36674,
26227,
198,
198,
2,
3661,
4501,
42755,
36621,
25,
14661,
62,
43717,
62,
12394,
357,
257,
837,
275,
837,
269,
1267,
357,
357,
257,
1267,
9959,
1467,
930,
357,
275,
1267,
9959,
807,
930,
357,
269,
1267,
1267,
198,
2,
3661,
4501,
42755,
36621,
25,
14661,
62,
43717,
62,
35,
2394,
357,
257,
837,
275,
837,
269,
1267,
257,
22492,
764,
22492,
275,
22492,
764,
22492,
269,
198,
2,
3661,
4501,
42755,
36621,
25,
14661,
62,
43717,
357,
257,
837,
275,
837,
269,
1267,
14661,
62,
43717,
62,
35,
2394,
357,
257,
837,
275,
837,
269,
1267,
198,
2,
3661,
4501,
42755,
36621,
25,
14661,
62,
43717,
62,
5673,
41,
1581,
357,
257,
1267,
357,
357,
257,
1267,
9609,
1467,
1267,
198,
2,
3661,
4501,
42755,
36621,
25,
14661,
62,
43717,
62,
23678,
1581,
357,
257,
1267,
357,
357,
357,
257,
1267,
1222,
657,
87,
405,
5777,
405,
1267,
9609,
807,
1267,
198,
2,
3661,
4501,
42755,
36621,
25,
14661,
62,
43717,
62,
49884,
13252,
357,
257,
1267,
357,
357,
257,
1267,
1222,
657,
87,
5777,
1267,
198,
198,
9979,
24653,
4339,
53,
3843,
4146,
62,
43717,
62,
5673,
41,
1581,
796,
7265,
198,
9979,
24653,
4339,
53,
3843,
4146,
62,
43717,
62,
23678,
1581,
796,
2534,
198,
9979,
24653,
4339,
53,
3843,
4146,
62,
43717,
62,
49884,
13252,
796,
1802,
198,
198,
2,
3661,
4501,
42755,
36621,
25,
24653,
4339,
53,
3843,
4146,
62,
43717,
62,
12394,
14661,
62,
43717,
62,
12394,
357,
24653,
4339,
53,
3843,
4146,
62,
43717,
62,
5673,
41,
1581,
837,
24653,
4339,
53,
3843,
4146,
62,
43717,
62,
23678,
1581,
837,
24653,
4339,
53,
3843,
4146,
62,
43717,
62,
49884,
13252,
1267,
198,
2,
3661,
4501,
42755,
36621,
25,
24653,
4339,
53,
3843,
4146,
62,
43717,
14661,
62,
43717,
357,
24653,
4339,
53,
3843,
4146,
62,
43717,
62,
5673,
41,
1581,
837,
24653,
4339,
53,
3843,
4146,
62,
43717,
62,
23678,
1581,
837,
24653,
4339,
53,
3843,
4146,
62,
43717,
62,
49884,
13252,
1267,
198,
198,
2,
1500,
24653,
4339,
53,
3843,
4146,
62,
19499,
26761,
796,
24653,
4339,
53,
3843,
4146,
62,
43717,
62,
12394,
198,
198,
2,
3661,
4501,
42755,
36621,
25,
24653,
4339,
53,
3843,
4146,
62,
25256,
366,
43,
615,
84,
1,
14661,
62,
18601,
2751,
5064,
56,
357,
24653,
4339,
53,
3843,
4146,
62,
43717,
1267,
198,
2,
3661,
4501,
42755,
36621,
25,
18402,
62,
17614,
62,
11731,
17614,
357,
24653,
4339,
53,
3843,
4146,
62,
43717,
62,
5673,
41,
1581,
1279,
7632,
1267,
198,
2,
3661,
4501,
42755,
36621,
25,
18402,
62,
17614,
62,
10913,
10067,
62,
48,
47,
357,
24653,
4339,
53,
3843,
4146,
62,
43717,
62,
5673,
41,
1581,
1279,
7632,
1267,
198,
2,
3661,
4501,
42755,
36621,
25,
18402,
62,
17614,
62,
6489,
2937,
16,
62,
23678,
2937,
16,
357,
24653,
4339,
53,
3843,
4146,
62,
43717,
62,
5673,
41,
1581,
1279,
7632,
1267,
198,
2,
3661,
4501,
42755,
36621,
25,
18402,
62,
17614,
62,
24908,
62,
10913,
10067,
357,
24653,
4339,
53,
3843,
4146,
62,
43717,
62,
5673,
41,
1581,
1279,
7632,
1267,
198,
2,
3661,
4501,
42755,
36621,
25,
18402,
62,
17614,
62,
40492,
51,
62,
47,
4694,
357,
24653,
4339,
53,
3843,
4146,
62,
43717,
62,
5673,
41,
1581,
1279,
7632,
1267,
198,
2,
3661,
4501,
42755,
36621,
25,
18402,
62,
17614,
62,
9419,
48232,
10468,
62,
33489,
62,
51,
357,
24653,
4339,
53,
3843,
4146,
62,
43717,
62,
5673,
41,
1581,
1279,
7632,
1267,
198,
2,
3661,
4501,
42755,
36621,
25,
18402,
62,
17614,
62,
10913,
10067,
62,
18851,
62,
28480,
357,
24653,
4339,
53,
3843,
4146,
62,
43717,
62,
5673,
41,
1581,
1279,
7632,
1267,
198,
2,
3661,
4501,
42755,
36621,
25,
18402,
62,
17614,
62,
3705,
36,
8322,
3185,
1847,
357,
24653,
4339,
53,
3843,
4146,
62,
43717,
62,
5673,
41,
1581,
1279,
7632,
1267,
198,
198,
9979,
34329,
62,
4177,
49,
62,
20373,
62,
33489,
796,
1467,
198,
9979,
34329,
62,
4177,
49,
62,
3824,
62,
33489,
796,
807,
198,
198,
7249,
317,
11731,
1546,
4177,
49,
198,
437,
198,
198,
7249,
317,
11731,
463,
952,
44403,
78,
198,
437,
198,
198,
7249,
14661,
34,
10067,
3069,
3539,
198,
437,
198,
198,
7249,
14661,
44647,
20,
198,
437,
198,
198,
9979,
14661,
62,
3398,
62,
10913,
35830,
62,
2538,
9792,
796,
657,
87,
10535,
486,
198,
9979,
14661,
62,
3398,
62,
10913,
35830,
62,
49,
9947,
796,
657,
87,
24598,
17,
198,
9979,
14661,
62,
3398,
62,
10913,
35830,
62,
43960,
1137,
796,
657,
87,
24598,
19,
198,
9979,
14661,
62,
3398,
62,
43,
3913,
62,
37,
2200,
10917,
45155,
796,
657,
87,
24598,
23,
198,
9979,
14661,
62,
3398,
62,
31098,
62,
2538,
9792,
796,
657,
87,
10535,
940,
198,
9979,
14661,
62,
3398,
62,
31098,
62,
49,
9947,
796,
657,
87,
10535,
1238,
198,
9979,
14661,
62,
3398,
62,
10913,
35830,
62,
2538,
9792,
62,
19238,
62,
43960,
1137,
796,
657,
87,
10535,
1821,
198,
9979,
14661,
62,
3398,
62,
10913,
35830,
62,
49,
9947,
62,
19238,
62,
43960,
1137,
796,
657,
87,
10535,
1795,
198,
9979,
14661,
62,
3398,
62,
31098,
62,
43960,
1137,
796,
657,
87,
2388,
39103,
198,
9979,
14661,
62,
3398,
62,
50,
14114,
62,
2538,
9792,
796,
657,
87,
20483,
2167,
198,
9979,
14661,
62,
3398,
62,
50,
14114,
62,
49,
9947,
796,
657,
87,
20483,
7029,
198,
9979,
14661,
62,
3398,
62,
35222,
62,
43960,
1137,
796,
657,
87,
20483,
7410,
198,
9979,
14661,
62,
3398,
62,
35222,
62,
10913,
35830,
62,
2538,
9792,
796,
657,
87,
2388,
12825,
198,
9979,
14661,
62,
3398,
62,
35222,
62,
10913,
35830,
62,
43960,
1137,
796,
657,
87,
2388,
11024,
198,
9979,
14661,
62,
3398,
62,
35222,
62,
10913,
35830,
62,
49,
9947,
796,
657,
87,
2388,
27559,
198,
9979,
14661,
62,
3398,
62,
35222,
62,
31098,
62,
2538,
9792,
796,
657,
87,
2388,
33942,
198,
9979,
14661,
62,
3398,
62,
35222,
62,
31098,
62,
43960,
1137,
796,
657,
87,
18005,
2388,
198,
9979,
14661,
62,
3398,
62,
35222,
62,
31098,
62,
49,
9947,
796,
657,
87,
830,
2167,
405,
198,
9979,
14661,
62,
3398,
62,
41809,
4720,
62,
2538,
9792,
796,
657,
87,
2167,
20483,
198,
9979,
14661,
62,
3398,
62,
41809,
4720,
62,
49,
9947,
796,
657,
87,
19,
24598,
198,
9979,
14661,
62,
3398,
62,
54,
14114,
62,
2538,
9792,
796,
471,
5317,
2414,
7,
15,
87,
8269,
23,
24598,
8,
198,
9979,
14661,
62,
3398,
62,
54,
14114,
62,
49,
9947,
796,
471,
5317,
2414,
7,
15,
87,
10535,
486,
8269,
8,
198,
9979,
14661,
62,
3398,
62,
50,
31302,
15919,
62,
17931,
23988,
62,
2538,
9792,
796,
471,
5317,
2414,
7,
15,
87,
24598,
2167,
10535,
8,
198,
9979,
14661,
62,
3398,
62,
50,
31302,
15919,
62,
17931,
23988,
62,
49,
9947,
796,
471,
5317,
2414,
7,
15,
87,
24598,
19,
8269,
8,
198,
9979,
14661,
62,
3398,
62,
43,
3913,
62,
37,
2200,
10917,
45155,
62,
17,
796,
471,
5317,
2414,
7,
15,
87,
24598,
23,
8269,
8,
198,
9979,
14661,
62,
3398,
62,
43,
4792,
12425,
62,
34259,
9306,
796,
471,
5317,
2414,
7,
15,
87,
23,
8269,
24598,
8,
198,
9979,
14661,
62,
3398,
62,
43,
4792,
12425,
62,
27857,
46,
796,
14661,
62,
3398,
62,
10913,
35830,
62,
43960,
1137,
198,
9979,
14661,
62,
3398,
62,
43,
4792,
12425,
62,
41809,
4720,
796,
14661,
62,
3398,
62,
10913,
35830,
62,
2538,
9792,
930,
14661,
62,
3398,
62,
10913,
35830,
62,
49,
9947,
198,
9979,
14661,
62,
3398,
62,
43,
4792,
12425,
62,
17,
16402,
12394,
16,
796,
14661,
62,
3398,
62,
43,
4792,
12425,
62,
41809,
4720,
930,
14661,
62,
3398,
62,
43,
3913,
62,
37,
2200,
10917,
45155,
198,
9979,
14661,
62,
3398,
62,
43,
4792,
12425,
62,
17,
62,
16,
796,
14661,
62,
3398,
62,
43,
4792,
12425,
62,
41809,
4720,
930,
14661,
62,
3398,
62,
31098,
62,
43960,
1137,
198,
9979,
14661,
62,
3398,
62,
43,
4792,
12425,
62,
50,
31302,
15919,
796,
14661,
62,
3398,
62,
43,
4792,
12425,
62,
41809,
4720,
930,
14661,
62,
3398,
62,
10913,
35830,
62,
43960,
1137,
198,
9979,
14661,
62,
3398,
62,
43,
4792,
12425,
62,
18,
16402,
12394,
16,
796,
14661,
62,
3398,
62,
43,
4792,
12425,
62,
50,
31302,
15919,
930,
14661,
62,
3398,
62,
43,
3913,
62,
37,
2200,
10917,
45155,
198,
9979,
14661,
62,
3398,
62,
43,
4792,
12425,
62,
19,
16402,
12394,
15,
796,
14661,
62,
3398,
62,
43,
4792,
12425,
62,
50,
31302,
15919,
930,
14661,
62,
3398,
62,
31098,
62,
43960,
1137,
198,
9979,
14661,
62,
3398,
62,
43,
4792,
12425,
62,
19,
16402,
12394,
16,
796,
14661,
62,
3398,
62,
43,
4792,
12425,
62,
19,
16402,
12394,
15,
930,
14661,
62,
3398,
62,
43,
3913,
62,
37,
2200,
10917,
45155,
198,
9979,
14661,
62,
3398,
62,
43,
4792,
12425,
62,
17,
62,
17,
796,
357,
10116,
62,
3398,
62,
43,
4792,
12425,
62,
41809,
4720,
930,
14661,
62,
3398,
62,
50,
14114,
62,
2538,
9792,
8,
930,
14661,
62,
3398,
62,
50,
14114,
62,
49,
9947,
198,
9979,
14661,
62,
3398,
62,
43,
4792,
12425,
62,
10917,
2885,
796,
357,
10116,
62,
3398,
62,
43,
4792,
12425,
62,
41809,
4720,
930,
14661,
62,
3398,
62,
31098,
62,
2538,
9792,
8,
930,
14661,
62,
3398,
62,
31098,
62,
49,
9947,
198,
9979,
14661,
62,
3398,
62,
43,
4792,
12425,
62,
20,
16402,
12394,
15,
796,
357,
10116,
62,
3398,
62,
43,
4792,
12425,
62,
50,
31302,
15919,
930,
14661,
62,
3398,
62,
50,
14114,
62,
2538,
9792,
8,
930,
14661,
62,
3398,
62,
50,
14114,
62,
49,
9947,
198,
9979,
14661,
62,
3398,
62,
43,
4792,
12425,
62,
20,
16402,
12394,
16,
796,
14661,
62,
3398,
62,
43,
4792,
12425,
62,
20,
16402,
12394,
15,
930,
14661,
62,
3398,
62,
43,
3913,
62,
37,
2200,
10917,
45155,
198,
9979,
14661,
62,
3398,
62,
43,
4792,
12425,
62,
20,
16402,
12394,
15,
62,
31098,
796,
357,
10116,
62,
3398,
62,
43,
4792,
12425,
62,
50,
31302,
15919,
930,
14661,
62,
3398,
62,
31098,
62,
2538,
9792,
8,
930,
14661,
62,
3398,
62,
31098,
62,
49,
9947,
198,
9979,
14661,
62,
3398,
62,
43,
4792,
12425,
62,
20,
16402,
12394,
16,
62,
31098,
796,
14661,
62,
3398,
62,
43,
4792,
12425,
62,
20,
16402,
12394,
15,
62,
31098,
930,
14661,
62,
3398,
62,
43,
3913,
62,
37,
2200,
10917,
45155,
198,
9979,
14661,
62,
3398,
62,
43,
4792,
12425,
62,
21,
16402,
12394,
15,
796,
14661,
62,
3398,
62,
43,
4792,
12425,
62,
20,
16402,
12394,
15,
930,
14661,
62,
3398,
62,
31098,
62,
43960,
1137,
198,
9979,
14661,
62,
3398,
62,
43,
4792,
12425,
62,
21,
16402,
12394,
15,
62,
10913,
35830,
796,
357,
10116,
62,
3398,
62,
43,
4792,
12425,
62,
17,
62,
17,
930,
14661,
62,
3398,
62,
10913,
35830,
62,
2538,
9792,
62,
19238,
62,
43960,
1137,
8,
930,
14661,
62,
3398,
62,
10913,
35830,
62,
49,
9947,
62,
19238,
62,
43960,
1137,
198,
9979,
14661,
62,
3398,
62,
43,
4792,
12425,
62,
39,
6369,
4760,
1340,
1847,
796,
14661,
62,
3398,
62,
43,
4792,
12425,
62,
20,
16402,
12394,
15,
62,
31098,
930,
14661,
62,
3398,
62,
31098,
62,
43960,
1137,
198,
9979,
14661,
62,
3398,
62,
43,
4792,
12425,
62,
21,
16402,
12394,
16,
796,
14661,
62,
3398,
62,
43,
4792,
12425,
62,
20,
16402,
12394,
16,
930,
14661,
62,
3398,
62,
31098,
62,
43960,
1137,
198,
9979,
14661,
62,
3398,
62,
43,
4792,
12425,
62,
21,
16402,
12394,
16,
62,
31098,
796,
14661,
62,
3398,
62,
43,
4792,
12425,
62,
20,
16402,
12394,
16,
62,
31098,
930,
14661,
62,
3398,
62,
31098,
62,
43960,
1137,
198,
9979,
14661,
62,
3398,
62,
43,
4792,
12425,
62,
21,
16402,
12394,
16,
62,
10913,
35830,
796,
14661,
62,
3398,
62,
43,
4792,
12425,
62,
21,
16402,
12394,
15,
62,
10913,
35830,
930,
14661,
62,
3398,
62,
43,
3913,
62,
37,
2200,
10917,
45155,
198,
9979,
14661,
62,
3398,
62,
43,
4792,
12425,
62,
22,
16402,
12394,
15,
796,
357,
10116,
62,
3398,
62,
43,
4792,
12425,
62,
20,
16402,
12394,
15,
930,
14661,
62,
3398,
62,
31098,
62,
2538,
9792,
8,
930,
14661,
62,
3398,
62,
31098,
62,
49,
9947,
198,
9979,
14661,
62,
3398,
62,
43,
4792,
12425,
62,
22,
16402,
12394,
15,
62,
10913,
35830,
796,
357,
10116,
62,
3398,
62,
43,
4792,
12425,
62,
20,
16402,
12394,
15,
930,
14661,
62,
3398,
62,
10913,
35830,
62,
2538,
9792,
62,
19238,
62,
43960,
1137,
8,
930,
14661,
62,
3398,
62,
10913,
35830,
62,
49,
9947,
62,
19238,
62,
43960,
1137,
198,
9979,
14661,
62,
3398,
62,
43,
4792,
12425,
62,
22,
16402,
12394,
16,
796,
357,
10116,
62,
3398,
62,
43,
4792,
12425,
62,
20,
16402,
12394,
16,
930,
14661,
62,
3398,
62,
31098,
62,
2538,
9792,
8,
930,
14661,
62,
3398,
62,
31098,
62,
49,
9947,
198,
9979,
14661,
62,
3398,
62,
43,
4792,
12425,
62,
22,
16402,
12394,
16,
62,
54,
14114,
796,
357,
10116,
62,
3398,
62,
43,
4792,
12425,
62,
20,
16402,
12394,
16,
930,
14661,
62,
3398,
62,
10913,
35830,
62,
2538,
9792,
62,
19238,
62,
43960,
1137,
8,
930,
14661,
62,
3398,
62,
10913,
35830,
62,
49,
9947,
62,
19238,
62,
43960,
1137,
198,
9979,
14661,
62,
3398,
62,
43,
4792,
12425,
62,
22,
16402,
12394,
16,
62,
54,
14114,
62,
31098,
796,
357,
10116,
62,
3398,
62,
43,
4792,
12425,
62,
20,
16402,
12394,
16,
62,
31098,
930,
14661,
62,
3398,
62,
10913,
35830,
62,
2538,
9792,
62,
19238,
62,
43960,
1137,
8,
930,
14661,
62,
3398,
62,
10913,
35830,
62,
49,
9947,
62,
19238,
62,
43960,
1137,
198,
9979,
14661,
62,
3398,
62,
43,
4792,
12425,
62,
46,
4177,
4760,
1340,
1847,
796,
14808,
10116,
62,
3398,
62,
43,
4792,
12425,
62,
20,
16402,
12394,
15,
930,
14661,
62,
3398,
62,
31098,
62,
2538,
9792,
8,
930,
14661,
62,
3398,
62,
31098,
62,
43960,
1137,
8,
930,
14661,
62,
3398,
62,
31098,
62,
49,
9947,
198,
9979,
14661,
62,
3398,
62,
43,
4792,
12425,
62,
39,
6369,
2885,
2943,
4760,
1340,
1847,
796,
14808,
19510,
19510,
7,
10116,
62,
3398,
62,
43,
4792,
12425,
62,
46,
4177,
4760,
1340,
1847,
930,
14661,
62,
3398,
62,
54,
14114,
62,
2538,
9792,
8,
930,
14661,
62,
3398,
62,
54,
14114,
62,
49,
9947,
8,
930,
14661,
62,
3398,
62,
35222,
62,
31098,
62,
2538,
9792,
8,
930,
14661,
62,
3398,
62,
35222,
62,
31098,
62,
49,
9947,
8,
930,
14661,
62,
3398,
62,
35222,
62,
31098,
62,
43960,
1137,
8,
930,
14661,
62,
3398,
62,
35222,
62,
10913,
35830,
62,
43960,
1137,
8,
930,
14661,
62,
3398,
62,
35222,
62,
10913,
35830,
62,
2538,
9792,
8,
930,
14661,
62,
3398,
62,
35222,
62,
10913,
35830,
62,
49,
9947,
198,
9979,
14661,
62,
3398,
62,
43,
4792,
12425,
62,
41809,
4720,
62,
41925,
8895,
55,
796,
14661,
62,
3398,
62,
41809,
4720,
62,
2538,
9792,
930,
14661,
62,
3398,
62,
41809,
4720,
62,
49,
9947,
198,
198,
2,
2221,
33829,
14661,
46912,
27195,
7656,
198,
9979,
14661,
46912,
27195,
7656,
796,
471,
5317,
2624,
198,
9979,
14661,
62,
41636,
7112,
55,
62,
24181,
3727,
2751,
62,
45,
11651,
796,
657,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
62,
41636,
7112,
55,
62,
24181,
3727,
2751,
62,
35,
3535,
17513,
796,
352,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
62,
41636,
7112,
55,
62,
24181,
3727,
2751,
62,
6322,
43,
3978,
796,
362,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
62,
41636,
7112,
55,
62,
24181,
3727,
2751,
62,
6322,
43,
3978,
55,
796,
513,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
62,
41636,
7112,
55,
62,
24181,
3727,
2751,
62,
6322,
43,
3978,
57,
796,
604,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
62,
41636,
7112,
55,
62,
24181,
3727,
2751,
62,
35,
3535,
17513,
6369,
796,
642,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
62,
41636,
7112,
55,
62,
24181,
3727,
2751,
62,
35,
3535,
17513,
37682,
11909,
11651,
796,
718,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
62,
41636,
7112,
55,
62,
24181,
3727,
2751,
62,
32819,
796,
767,
930,
29,
471,
5317,
2624,
198,
2,
886,
33829,
14661,
46912,
27195,
7656,
198,
198,
7249,
14661,
33,
18557,
198,
437,
198,
198,
7249,
317,
8898,
1546,
198,
220,
220,
220,
2835,
62,
13083,
3712,
11251,
29291,
90,
18,
11,
24563,
29291,
90,
1433,
11,
471,
5317,
2414,
11709,
198,
220,
220,
220,
15055,
62,
8906,
3712,
34,
600,
198,
437,
198,
198,
2,
2221,
33829,
14661,
8048,
19816,
6030,
198,
9979,
14661,
8048,
19816,
6030,
796,
471,
5317,
2624,
198,
9979,
14661,
62,
41925,
8895,
55,
62,
25216,
62,
4944,
44706,
796,
657,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
62,
41925,
8895,
55,
62,
25216,
62,
43,
1581,
46,
796,
352,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
62,
41925,
8895,
55,
62,
25216,
62,
43,
5446,
51,
796,
362,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
62,
41925,
8895,
55,
62,
25216,
62,
6322,
43,
3978,
796,
513,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
62,
41925,
8895,
55,
62,
25216,
62,
32819,
796,
604,
930,
29,
471,
5317,
2624,
198,
2,
886,
33829,
14661,
8048,
19816,
6030,
198,
198,
7249,
14661,
8048,
19816,
12360,
198,
220,
220,
220,
9871,
62,
2902,
19816,
62,
4906,
3712,
10116,
8048,
19816,
6030,
198,
220,
220,
220,
3641,
62,
19816,
62,
5715,
3712,
34,
23352,
198,
220,
220,
220,
3641,
62,
19816,
62,
5715,
62,
75,
2213,
83,
3712,
34,
23352,
198,
220,
220,
220,
4573,
62,
19816,
62,
5715,
3712,
34,
23352,
198,
220,
220,
220,
4573,
62,
19816,
62,
5715,
62,
75,
2213,
83,
3712,
34,
23352,
198,
220,
220,
220,
300,
5036,
62,
19816,
62,
5715,
3712,
34,
23352,
198,
437,
198,
198,
7249,
14661,
7004,
39873,
27195,
13168,
12360,
198,
220,
220,
220,
9881,
62,
1659,
62,
20063,
62,
7890,
3712,
52,
5317,
2624,
198,
220,
220,
220,
9881,
62,
1659,
62,
24326,
62,
7890,
3712,
52,
5317,
2624,
198,
437,
198,
198,
7249,
14661,
27195,
13168,
12360,
198,
220,
220,
220,
7791,
3712,
52,
5317,
2624,
198,
220,
220,
220,
8194,
62,
26327,
62,
9967,
3712,
52,
5317,
2624,
198,
220,
220,
220,
14267,
62,
26327,
62,
9967,
3712,
52,
5317,
2624,
198,
220,
220,
220,
1994,
62,
312,
3712,
46745,
90,
52,
5317,
23,
92,
198,
220,
220,
220,
1994,
62,
312,
62,
7857,
3712,
52,
5317,
2624,
198,
220,
220,
220,
21628,
3712,
46745,
90,
52,
5317,
23,
92,
198,
220,
220,
220,
21628,
62,
7857,
3712,
52,
5317,
2624,
198,
220,
220,
220,
6352,
12629,
3712,
46745,
90,
10116,
7004,
39873,
27195,
13168,
12360,
92,
198,
220,
220,
220,
6352,
1403,
62,
9127,
3712,
52,
5317,
2624,
198,
437,
198,
198,
7249,
14661,
27195,
13168,
31768,
12360,
198,
220,
220,
220,
1080,
62,
312,
3712,
46745,
90,
52,
5317,
23,
92,
198,
220,
220,
220,
1080,
62,
312,
62,
7857,
3712,
52,
5317,
2624,
198,
220,
220,
220,
1994,
62,
2340,
3712,
46745,
90,
46745,
90,
52,
5317,
23,
11709,
198,
220,
220,
220,
997,
62,
2539,
62,
2340,
3712,
52,
5317,
2624,
198,
220,
220,
220,
1994,
62,
312,
62,
7857,
3712,
52,
5317,
2624,
198,
220,
220,
220,
1366,
3712,
46745,
90,
52,
5317,
23,
92,
198,
220,
220,
220,
1366,
62,
7857,
3712,
52,
5317,
2624,
198,
220,
220,
220,
1306,
3712,
46745,
90,
10116,
27195,
13168,
31768,
12360,
92,
198,
437,
198,
198,
9979,
14661,
62,
39,
11211,
62,
22921,
62,
33489,
796,
5598,
198,
198,
7249,
14661,
26257,
21947,
198,
437,
198,
198,
2,
2221,
33829,
14661,
39,
54,
24728,
6030,
198,
9979,
14661,
39,
54,
24728,
6030,
796,
471,
5317,
2624,
198,
9979,
14661,
62,
39,
54,
7206,
27389,
62,
25216,
62,
45,
11651,
796,
657,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
62,
39,
54,
7206,
27389,
62,
25216,
62,
8898,
4537,
52,
796,
352,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
62,
39,
54,
7206,
27389,
62,
25216,
62,
43633,
5631,
796,
362,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
62,
39,
54,
7206,
27389,
62,
25216,
62,
11731,
17614,
796,
513,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
62,
39,
54,
7206,
27389,
62,
25216,
62,
36227,
11731,
17,
796,
604,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
62,
39,
54,
7206,
27389,
62,
25216,
62,
48,
50,
53,
796,
642,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
62,
39,
54,
7206,
27389,
62,
25216,
62,
11008,
36,
26631,
3535,
39758,
796,
718,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
62,
39,
54,
7206,
27389,
62,
25216,
62,
35,
18,
35,
1157,
11731,
796,
767,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
62,
39,
54,
7206,
27389,
62,
25216,
62,
7707,
44,
796,
807,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
62,
39,
54,
7206,
27389,
62,
25216,
62,
3185,
1677,
5097,
796,
860,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
62,
39,
54,
7206,
27389,
62,
25216,
62,
30733,
40,
2246,
3727,
2943,
796,
838,
930,
29,
471,
5317,
2624,
198,
2,
886,
33829,
14661,
39,
54,
24728,
6030,
198,
198,
7249,
14661,
39,
54,
24728,
37693,
198,
437,
198,
198,
7249,
14661,
39,
54,
24728,
21947,
198,
220,
220,
220,
1196,
62,
4871,
3712,
46745,
90,
10116,
9487,
92,
198,
220,
220,
220,
5387,
3712,
46745,
90,
10116,
39,
54,
24728,
37693,
92,
198,
220,
220,
220,
4808,
4906,
3712,
10116,
39,
54,
24728,
6030,
198,
220,
220,
220,
289,
86,
49464,
3712,
46745,
90,
34,
19382,
92,
198,
220,
220,
220,
1479,
3712,
46745,
90,
34,
19382,
92,
198,
220,
220,
220,
2836,
62,
404,
18251,
3712,
46745,
90,
34,
19382,
92,
198,
437,
198,
198,
7249,
14661,
39,
54,
35439,
37693,
198,
437,
198,
198,
7249,
14661,
39,
54,
35439,
21947,
198,
220,
220,
220,
1196,
62,
4871,
3712,
46745,
90,
10116,
9487,
92,
198,
220,
220,
220,
5387,
3712,
46745,
90,
10116,
39,
54,
35439,
37693,
92,
198,
220,
220,
220,
3335,
62,
5420,
3712,
46745,
90,
10116,
28632,
8134,
92,
198,
220,
220,
220,
3335,
62,
49464,
3712,
46745,
90,
10116,
39,
54,
24728,
21947,
92,
198,
220,
220,
220,
289,
86,
49464,
3712,
46745,
90,
34,
19382,
92,
198,
220,
220,
220,
1479,
3712,
46745,
90,
34,
19382,
92,
198,
220,
220,
220,
2836,
62,
404,
18251,
3712,
46745,
90,
34,
19382,
92,
198,
220,
220,
220,
5933,
3712,
46745,
90,
10116,
28632,
27201,
92,
198,
220,
220,
220,
4238,
62,
7742,
62,
7857,
3712,
34,
600,
198,
220,
220,
220,
5794,
3712,
32,
8859,
7168,
26227,
198,
220,
220,
220,
1509,
62,
18982,
3712,
32,
8859,
7168,
26227,
198,
220,
220,
220,
9647,
3712,
34,
600,
198,
220,
220,
220,
6001,
3712,
34,
600,
198,
437,
198,
198,
2,
2221,
33829,
14661,
39,
54,
19778,
43260,
35,
4154,
198,
9979,
14661,
39,
54,
19778,
43260,
35,
4154,
796,
471,
5317,
2624,
198,
9979,
14661,
62,
39,
54,
10913,
10067,
62,
5446,
15037,
24302,
62,
17931,
23988,
2849,
62,
10913,
2662,
796,
657,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
62,
39,
54,
10913,
10067,
62,
5446,
15037,
24302,
62,
17931,
23988,
2849,
62,
10468,
796,
352,
930,
29,
471,
5317,
2624,
198,
2,
886,
33829,
14661,
39,
54,
19778,
43260,
35,
4154,
198,
198,
7249,
14661,
39,
54,
35439,
3103,
2536,
6003,
198,
220,
220,
220,
4938,
62,
36599,
62,
687,
1381,
3712,
46745,
90,
32,
8859,
7168,
26227,
92,
198,
220,
220,
220,
4938,
62,
2032,
62,
687,
1381,
3712,
46745,
90,
32,
8859,
7168,
26227,
92,
198,
220,
220,
220,
949,
62,
10394,
3712,
34,
600,
198,
220,
220,
220,
949,
62,
17015,
3712,
34,
600,
198,
220,
220,
220,
3509,
62,
10394,
3712,
34,
600,
198,
220,
220,
220,
3509,
62,
17015,
3712,
34,
600,
198,
437,
198,
198,
2,
2221,
33829,
3537,
40508,
44,
20958,
62,
18,
198,
9979,
3537,
40508,
44,
20958,
62,
18,
796,
471,
5317,
2624,
198,
9979,
14661,
62,
39,
54,
10913,
10067,
62,
33767,
62,
15675,
796,
352,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
62,
39,
54,
10913,
10067,
62,
33767,
62,
18564,
12709,
796,
362,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
62,
39,
54,
10913,
10067,
62,
33767,
62,
41983,
18564,
12709,
796,
604,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
62,
39,
54,
10913,
10067,
62,
33767,
62,
17931,
23988,
796,
807,
930,
29,
471,
5317,
2624,
198,
2,
886,
33829,
3537,
40508,
44,
20958,
62,
18,
198,
198,
7249,
14661,
34,
8322,
2885,
1990,
501,
21947,
37693,
198,
437,
198,
198,
7249,
14661,
34,
8322,
2885,
1990,
501,
21947,
198,
220,
220,
220,
269,
15339,
62,
49464,
3712,
34,
600,
198,
220,
220,
220,
4269,
3712,
34,
600,
198,
220,
220,
220,
5387,
3712,
46745,
90,
10116,
34,
8322,
2885,
1990,
501,
21947,
37693,
92,
198,
437,
198,
198,
7249,
317,
8898,
18,
35,
1157,
53,
2885,
1990,
501,
21947,
198,
220,
220,
220,
3335,
3712,
46745,
90,
34,
600,
92,
198,
220,
220,
220,
3335,
62,
22866,
3712,
46745,
90,
34,
600,
92,
198,
220,
220,
220,
2008,
62,
25202,
3712,
46745,
90,
34,
600,
92,
198,
220,
220,
220,
2008,
62,
22866,
3712,
46745,
90,
34,
600,
92,
198,
220,
220,
220,
5793,
3712,
46745,
90,
34,
19382,
92,
198,
220,
220,
220,
12116,
3712,
46745,
90,
34,
19382,
92,
198,
220,
220,
220,
5793,
62,
49464,
3712,
46745,
90,
34,
19382,
92,
198,
437,
198,
198,
7249,
317,
8898,
18,
35,
1157,
19778,
24564,
1968,
273,
198,
220,
220,
220,
11743,
3712,
46745,
90,
34,
600,
92,
198,
220,
220,
220,
6376,
3712,
34,
600,
198,
437,
198,
198,
7249,
317,
8898,
18,
35,
1157,
53,
8579,
859,
274,
21947,
198,
220,
220,
220,
11743,
3712,
46745,
90,
34,
600,
92,
198,
220,
220,
220,
41211,
40053,
3712,
34,
600,
198,
220,
220,
220,
29882,
40053,
3712,
34,
600,
198,
437,
198,
198,
2,
2221,
33829,
3537,
40508,
44,
20958,
62,
19,
198,
9979,
3537,
40508,
44,
20958,
62,
19,
796,
471,
5317,
2624,
198,
9979,
14661,
62,
7707,
44,
62,
22921,
62,
6489,
1565,
1546,
796,
604,
930,
29,
471,
5317,
2624,
198,
2,
886,
33829,
3537,
40508,
44,
20958,
62,
19,
198,
198,
7249,
14661,
7707,
44,
10267,
24564,
1968,
273,
198,
220,
220,
220,
277,
67,
3712,
34,
600,
198,
220,
220,
220,
2546,
3712,
34,
7857,
62,
83,
198,
220,
220,
220,
5794,
62,
4666,
7483,
3712,
52,
5317,
2414,
198,
437,
198,
198,
7249,
14661,
7707,
44,
3646,
1531,
24564,
1968,
273,
198,
220,
220,
220,
2134,
62,
9630,
3712,
34,
600,
198,
220,
220,
220,
11677,
3712,
34,
457,
4372,
733,
62,
83,
198,
220,
220,
220,
7078,
3712,
34,
457,
4372,
733,
62,
83,
198,
437,
198,
198,
7249,
14661,
7707,
5805,
2794,
24564,
1968,
273,
198,
220,
220,
220,
5794,
3712,
52,
5317,
2624,
198,
220,
220,
220,
299,
65,
62,
22587,
3712,
34,
600,
198,
220,
220,
220,
13016,
3712,
11251,
29291,
90,
19,
11,
14661,
7707,
44,
3646,
1531,
24564,
1968,
273,
92,
198,
437,
198,
198,
7249,
14661,
7707,
44,
19778,
24564,
1968,
273,
198,
220,
220,
220,
299,
65,
62,
48205,
3712,
34,
600,
198,
220,
220,
220,
5563,
3712,
11251,
29291,
90,
19,
11,
14661,
7707,
44,
10267,
24564,
1968,
273,
92,
198,
220,
220,
220,
299,
65,
62,
75,
6962,
3712,
34,
600,
198,
220,
220,
220,
11685,
3712,
11251,
29291,
90,
19,
11,
14661,
7707,
5805,
2794,
24564,
1968,
273,
92,
198,
437,
198,
198,
7249,
14661,
7707,
12740,
1990,
501,
21947,
198,
220,
220,
220,
277,
67,
3712,
34,
600,
198,
437,
198,
198,
7249,
317,
8898,
55,
11731,
17,
24728,
21947,
198,
220,
220,
220,
1614,
76,
2164,
3712,
46745,
90,
34,
600,
92,
198,
437,
198,
198,
7249,
317,
8898,
55,
11731,
17,
35439,
21947,
198,
220,
220,
220,
4417,
62,
4906,
3712,
34,
600,
198,
220,
220,
220,
16649,
3712,
46745,
90,
46745,
90,
34,
600,
11709,
198,
220,
220,
220,
299,
65,
62,
11793,
32186,
3712,
34,
600,
198,
220,
220,
220,
875,
12342,
62,
1462,
62,
20979,
3712,
46745,
90,
34,
600,
92,
198,
437,
198,
198,
7249,
14661,
13152,
43806,
721,
24728,
21947,
198,
220,
220,
220,
4417,
3712,
46745,
90,
34,
19382,
92,
198,
437,
198,
198,
7249,
14661,
48,
50,
8898,
1990,
501,
21947,
198,
220,
220,
220,
6246,
3712,
34,
600,
198,
437,
198,
198,
7249,
14661,
48,
50,
53,
35439,
21947,
198,
220,
220,
220,
16649,
3712,
46745,
90,
34,
600,
92,
198,
220,
220,
220,
299,
65,
62,
11793,
32186,
3712,
34,
600,
198,
220,
220,
220,
5739,
62,
4906,
3712,
34,
600,
198,
437,
198,
198,
2,
2221,
33829,
3537,
40508,
44,
20958,
62,
20,
198,
9979,
3537,
40508,
44,
20958,
62,
20,
796,
471,
5317,
2624,
198,
9979,
14661,
62,
11731,
17614,
62,
7707,
38757,
62,
10917,
4663,
42,
62,
29904,
62,
28480,
796,
352,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
62,
11731,
17614,
62,
7707,
38757,
62,
10917,
4663,
42,
62,
49,
10619,
1137,
62,
27082,
2390,
62,
19499,
5777,
4877,
796,
362,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
62,
11731,
17614,
62,
7707,
38757,
62,
10917,
4663,
42,
62,
1404,
5446,
9865,
62,
44,
3620,
25216,
796,
604,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
62,
11731,
17614,
62,
7707,
38757,
62,
10917,
4663,
42,
62,
50,
4261,
49836,
62,
1404,
5446,
9865,
3843,
1546,
796,
807,
930,
29,
471,
5317,
2624,
198,
2,
886,
33829,
3537,
40508,
44,
20958,
62,
20,
198,
198,
2,
2878,
14661,
11731,
2969,
2389,
1990,
501,
21947,
198,
2,
220,
220,
220,
220,
3359,
3712,
53,
2885,
271,
1759,
198,
2,
220,
220,
220,
220,
4639,
62,
421,
343,
591,
3712,
52,
5317,
2624,
198,
2,
886,
198,
198,
2,
2878,
14661,
11731,
2969,
5064,
859,
274,
21947,
198,
2,
220,
220,
220,
220,
12608,
3712,
46745,
90,
53,
1921,
333,
2550,
8086,
822,
92,
198,
2,
220,
220,
220,
220,
299,
65,
62,
1078,
7657,
3712,
34,
600,
198,
2,
220,
220,
220,
220,
4417,
62,
2340,
3712,
46745,
90,
53,
1921,
333,
2550,
2389,
92,
198,
2,
220,
220,
220,
220,
299,
65,
62,
11793,
32186,
3712,
34,
600,
198,
2,
886,
198,
198,
2,
2878,
14661,
11731,
17614,
39,
54,
16934,
198,
2,
220,
220,
220,
220,
4566,
62,
312,
3712,
53,
2246,
261,
5647,
2389,
198,
2,
886,
198,
198,
2,
2878,
14661,
8898,
4537,
8322,
1990,
501,
21947,
198,
2,
220,
220,
220,
220,
3335,
3712,
53,
26059,
24728,
198,
2,
220,
220,
220,
220,
651,
62,
36942,
62,
21975,
3712,
46745,
90,
53,
26059,
3855,
2964,
66,
20231,
92,
198,
2,
886,
198,
198,
7249,
14661,
18254,
278,
23114,
9171,
14706,
198,
220,
220,
220,
3359,
62,
19795,
3166,
3712,
11251,
29291,
90,
18,
11,
24563,
29291,
90,
17,
11,
317,
13024,
864,
11709,
198,
220,
220,
220,
2330,
62,
4122,
3712,
11251,
29291,
90,
17,
11,
317,
13024,
864,
92,
198,
220,
220,
220,
949,
62,
75,
7230,
590,
3712,
10116,
49,
864,
198,
220,
220,
220,
3509,
62,
75,
7230,
590,
3712,
10116,
49,
864,
198,
220,
220,
220,
468,
62,
19795,
3166,
3712,
34,
600,
198,
220,
220,
220,
468,
62,
75,
7230,
590,
3712,
34,
600,
198,
437,
198,
198,
7249,
14661,
19746,
15047,
9171,
14706,
198,
220,
220,
220,
5436,
34,
3069,
3712,
52,
5317,
2624,
198,
220,
220,
220,
5436,
37,
7036,
3712,
52,
5317,
2624,
198,
437,
198,
198,
7249,
14661,
45740,
38469,
198,
220,
220,
220,
2723,
3712,
5317,
2624,
198,
220,
220,
220,
266,
3712,
52,
5317,
23,
198,
220,
220,
220,
289,
3712,
52,
5317,
23,
198,
220,
220,
220,
12351,
62,
87,
3712,
5317,
1433,
198,
220,
220,
220,
12351,
62,
88,
3712,
5317,
1433,
198,
220,
220,
220,
29636,
62,
87,
3712,
5317,
1433,
198,
220,
220,
220,
29636,
62,
88,
3712,
5317,
1433,
198,
220,
220,
220,
9701,
3712,
52,
5317,
2414,
198,
220,
220,
220,
6268,
62,
87,
3712,
5317,
2624,
198,
220,
220,
220,
6268,
62,
88,
3712,
5317,
2624,
198,
220,
220,
220,
6268,
62,
9888,
3712,
52,
5317,
1433,
198,
437,
198,
198,
9979,
14661,
62,
3185,
51,
62,
38948,
62,
24181,
3727,
2751,
62,
27082,
2390,
796,
352,
198,
9979,
14661,
62,
3185,
51,
62,
38948,
62,
41374,
3727,
2751,
62,
27082,
2390,
796,
362,
198,
9979,
14661,
62,
3185,
51,
62,
38948,
62,
48877,
9399,
62,
27082,
2390,
796,
807,
198,
9979,
14661,
62,
3185,
51,
62,
38948,
62,
42937,
62,
27082,
2390,
796,
1467,
198,
9979,
14661,
62,
3185,
51,
62,
38948,
62,
50,
10526,
49560,
2538,
62,
27082,
2390,
796,
3933,
198,
9979,
14661,
62,
3185,
51,
62,
38948,
62,
6369,
15490,
796,
5598,
198,
9979,
14661,
62,
3185,
51,
62,
38948,
62,
15675,
1340,
11319,
796,
13108,
198,
9979,
14661,
62,
3185,
51,
62,
38948,
62,
4462,
37,
62,
27082,
2390,
796,
352,
9959,
807,
198,
9979,
14661,
62,
3185,
51,
62,
38948,
62,
46700,
5781,
2751,
62,
27082,
2390,
796,
352,
9959,
1467,
198,
9979,
14661,
62,
3185,
51,
62,
38948,
62,
46162,
38827,
11617,
796,
352,
9959,
1596,
198,
9979,
14661,
62,
3185,
51,
62,
5188,
31315,
62,
3398,
4146,
7707,
1677,
796,
352,
9959,
657,
198,
9979,
14661,
62,
3185,
51,
62,
5188,
31315,
62,
7708,
7336,
62,
9864,
41,
796,
352,
9959,
352,
198,
9979,
14661,
62,
3185,
51,
62,
7036,
3913,
62,
33991,
796,
352,
9959,
362,
198,
9979,
14661,
62,
3185,
51,
62,
44,
16724,
40,
62,
9858,
47,
1340,
3525,
62,
49,
27746,
796,
352,
9959,
1105,
198,
198,
2,
3661,
4501,
42755,
36621,
25,
1196,
62,
8738,
62,
2617,
62,
600,
62,
4868,
357,
26181,
837,
1438,
837,
1188,
837,
3381,
837,
9701,
1267,
357,
1196,
62,
600,
62,
4868,
62,
13664,
357,
1188,
837,
3381,
1267,
1875,
17828,
62,
22921,
1220,
39364,
357,
1635,
357,
1188,
1267,
1267,
5633,
317,
5959,
16411,
357,
412,
1268,
23428,
1267,
1058,
1196,
62,
8738,
62,
2617,
62,
8800,
357,
26181,
837,
1438,
837,
357,
1500,
20398,
23,
62,
83,
1635,
1267,
357,
1188,
1267,
837,
1196,
62,
600,
62,
4868,
62,
13664,
357,
1188,
837,
3381,
1267,
1635,
39364,
357,
1635,
357,
1188,
1267,
1267,
837,
9701,
1267,
1267,
198,
198,
9979,
14661,
62,
3185,
51,
62,
35009,
12576,
35400,
62,
18831,
4061,
62,
7206,
7708,
35342,
796,
657,
87,
10535,
486,
198,
9979,
14661,
62,
3185,
51,
62,
35009,
12576,
35400,
62,
3185,
51,
62,
38948,
50,
62,
6369,
10659,
796,
657,
87,
24598,
17,
198,
198,
2,
2221,
33829,
3537,
40508,
44,
20958,
62,
21,
198,
9979,
3537,
40508,
44,
20958,
62,
21,
796,
471,
5317,
2624,
198,
9979,
14661,
62,
3185,
51,
62,
38948,
62,
3955,
31484,
2043,
62,
20373,
796,
352,
930,
29,
471,
5317,
2624,
198,
2,
886,
33829,
3537,
40508,
44,
20958,
62,
21,
198,
198,
9979,
1196,
62,
32515,
26791,
62,
82,
324,
62,
22184,
796,
350,
2213,
90,
34,
19382,
92,
198,
198,
7249,
14661,
7397,
19,
198,
220,
220,
220,
1181,
3712,
11251,
29291,
90,
11645,
11,
471,
5317,
23,
92,
198,
220,
220,
220,
2124,
3712,
34,
600,
198,
220,
220,
220,
331,
3712,
34,
600,
198,
437,
198,
198,
7249,
14661,
3041,
1759,
38,
391,
198,
220,
220,
220,
2610,
62,
48544,
3712,
5317,
2624,
198,
220,
220,
220,
2610,
62,
36729,
3712,
52,
5317,
2624,
198,
220,
220,
220,
5062,
62,
48544,
3712,
5317,
2624,
198,
220,
220,
220,
5062,
62,
36729,
3712,
52,
5317,
2624,
198,
437,
198,
198,
2,
2221,
33829,
14661,
4561,
37910,
16775,
295,
198,
9979,
14661,
4561,
37910,
16775,
295,
796,
471,
5317,
2624,
198,
9979,
14661,
62,
4303,
16879,
20151,
62,
36,
43702,
23988,
15567,
37232,
796,
657,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
62,
4303,
16879,
20151,
62,
34,
10526,
3620,
2969,
796,
352,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
62,
4303,
16879,
20151,
62,
36,
43702,
23988,
15567,
37232,
62,
25621,
2538,
796,
362,
930,
29,
471,
5317,
2624,
198,
2,
886,
33829,
14661,
4561,
37910,
16775,
295,
198,
198,
7249,
14661,
4561,
37910,
44,
5912,
198,
220,
220,
220,
20128,
3712,
10116,
4561,
37910,
16775,
295,
198,
220,
220,
220,
331,
707,
3712,
5317,
2624,
198,
220,
220,
220,
7078,
3712,
5317,
2624,
198,
220,
220,
220,
4836,
3712,
5317,
2624,
198,
220,
220,
220,
5421,
62,
9464,
3712,
52,
5317,
2624,
198,
220,
220,
220,
5421,
62,
4852,
3712,
52,
5317,
2624,
198,
220,
220,
220,
5421,
62,
3506,
3712,
52,
5317,
2624,
198,
220,
220,
220,
5421,
62,
22487,
3712,
52,
5317,
2624,
198,
220,
220,
220,
24511,
3712,
52,
5317,
2624,
198,
437,
198,
198,
9979,
14661,
62,
41809,
4720,
18,
35,
62,
38948,
62,
1268,
15858,
796,
352,
9959,
657,
198,
198,
2,
2221,
33829,
14661,
1273,
32934,
18,
35,
6030,
198,
9979,
14661,
1273,
32934,
18,
35,
6030,
796,
471,
5317,
2624,
198,
9979,
14661,
62,
41809,
4720,
18,
35,
62,
17,
35,
796,
657,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
62,
41809,
4720,
18,
35,
62,
50,
14114,
33,
16309,
14114,
796,
352,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
62,
41809,
4720,
18,
35,
62,
35222,
33,
29089,
2662,
796,
362,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
62,
41809,
4720,
18,
35,
62,
10913,
29559,
36,
10917,
18310,
796,
513,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
62,
41809,
4720,
18,
35,
62,
50084,
1137,
8202,
9795,
796,
604,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
62,
41809,
4720,
18,
35,
62,
50,
14114,
33,
16309,
14114,
62,
10917,
30158,
4944,
55,
796,
642,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
62,
41809,
4720,
18,
35,
62,
34509,
1546,
796,
718,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
62,
41809,
4720,
18,
35,
62,
25154,
5883,
8035,
796,
767,
930,
29,
471,
5317,
2624,
198,
2,
886,
33829,
14661,
1273,
32934,
18,
35,
6030,
198,
198,
2,
2221,
33829,
14661,
1273,
32934,
18,
35,
7680,
198,
9979,
14661,
1273,
32934,
18,
35,
7680,
796,
471,
5317,
2624,
198,
9979,
14661,
62,
41809,
4720,
18,
35,
62,
28206,
62,
47,
8120,
1961,
796,
657,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
62,
41809,
4720,
18,
35,
62,
28206,
62,
2538,
9792,
796,
352,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
62,
41809,
4720,
18,
35,
62,
28206,
62,
49,
9947,
796,
362,
930,
29,
471,
5317,
2624,
198,
2,
886,
33829,
14661,
1273,
32934,
18,
35,
7680,
198,
198,
7249,
14661,
1273,
32934,
18,
35,
198,
220,
220,
220,
4808,
4906,
3712,
10116,
1273,
32934,
18,
35,
6030,
198,
220,
220,
220,
9701,
3712,
34,
600,
198,
220,
220,
220,
1570,
3712,
10116,
1273,
32934,
18,
35,
7680,
198,
437,
198,
198,
7249,
14661,
9328,
32,
198,
437,
198,
198,
7249,
14661,
16818,
12837,
34991,
198,
437,
198,
198,
2,
2221,
33829,
14661,
16818,
12837,
40053,
198,
9979,
14661,
16818,
12837,
40053,
796,
471,
5317,
2624,
198,
9979,
14661,
62,
4221,
15675,
62,
44,
1546,
4090,
8264,
62,
45,
1340,
9148,
11290,
796,
352,
930,
29,
471,
5317,
2624,
198,
2,
886,
33829,
14661,
16818,
12837,
40053,
198,
198,
9979,
14661,
62,
51,
3955,
2943,
16820,
62,
18601,
62,
33489,
796,
2242,
198,
198,
2,
2221,
33829,
14661,
7575,
8189,
34227,
198,
9979,
14661,
7575,
8189,
34227,
796,
471,
5317,
2624,
198,
9979,
14661,
62,
51,
3955,
2943,
16820,
62,
38948,
62,
7707,
3185,
10913,
10067,
796,
352,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
62,
51,
3955,
2943,
16820,
62,
38948,
62,
1731,
46685,
6998,
22921,
796,
362,
930,
29,
471,
5317,
2624,
198,
9979,
14661,
62,
51,
3955,
2943,
16820,
62,
38948,
62,
7036,
14165,
7156,
37045,
796,
604,
930,
29,
471,
5317,
2624,
198,
2,
886,
33829,
14661,
7575,
8189,
34227,
198,
198,
9979,
14661,
7575,
8189,
796,
198,
198,
7249,
14661,
27660,
19667,
198,
437,
198,
198,
7249,
14661,
34551,
19238,
18422,
198,
437,
198,
198,
7249,
14661,
55,
9328,
32,
198,
220,
220,
220,
1994,
3712,
11251,
29291,
90,
1433,
11,
471,
5317,
2624,
92,
198,
437,
198
] | 1.97435 | 30,760 |
# This file is a part of TypeDBClient. License is MIT: https://github.com/Humans-of-Julia/TypeDBClient.jl/blob/main/LICENSE
abstract type AbstractTypeDBStub end
mutable struct Core_TypeDBStub <: AbstractTypeDBStub
blockingStub::Proto.TypeDBBlockingStub
asyncStub::Proto.TypeDBStub
end
function Core_TypeDBStub(channel::gRPCClient.gRPCChannel)
blockingStub = Proto.TypeDBBlockingStub(channel)
asyncStub = Proto.TypeDBStub(channel)
return Core_TypeDBStub(blockingStub,asyncStub)
end
mutable struct Cluster_TypeDBStub <: AbstractTypeDBStub
blockingStub::Proto.TypeDBBlockingStub
end
function Cluster_TypeDBStub(channel::gRPCClient.gRPCChannel)
blockingStub = Proto.TypeDBBlockingStub(channel)
return Cluster_TypeDBStub(blockingStub)
end
function ensure_connected(stub::T) where {T<:AbstractTypeDBStub}
throw(TypeDBClientException(GENERAL_UNKOWN_ERROR,"Isn't implemented yet"))
end
| [
2,
770,
2393,
318,
257,
636,
286,
5994,
11012,
11792,
13,
220,
13789,
318,
17168,
25,
3740,
1378,
12567,
13,
785,
14,
32661,
504,
12,
1659,
12,
16980,
544,
14,
6030,
11012,
11792,
13,
20362,
14,
2436,
672,
14,
12417,
14,
43,
2149,
24290,
198,
397,
8709,
2099,
27741,
6030,
11012,
1273,
549,
886,
198,
198,
76,
18187,
2878,
7231,
62,
6030,
11012,
1273,
549,
1279,
25,
27741,
6030,
11012,
1273,
549,
198,
220,
220,
220,
12013,
1273,
549,
3712,
2964,
1462,
13,
6030,
11012,
3629,
8629,
1273,
549,
198,
220,
220,
220,
30351,
1273,
549,
3712,
2964,
1462,
13,
6030,
11012,
1273,
549,
198,
437,
198,
198,
8818,
7231,
62,
6030,
11012,
1273,
549,
7,
17620,
3712,
70,
49,
5662,
11792,
13,
70,
49,
5662,
29239,
8,
198,
220,
220,
220,
12013,
1273,
549,
796,
45783,
13,
6030,
11012,
3629,
8629,
1273,
549,
7,
17620,
8,
198,
220,
220,
220,
30351,
1273,
549,
796,
45783,
13,
6030,
11012,
1273,
549,
7,
17620,
8,
198,
220,
220,
220,
1441,
7231,
62,
6030,
11012,
1273,
549,
7,
41938,
1273,
549,
11,
292,
13361,
1273,
549,
8,
198,
437,
198,
198,
76,
18187,
2878,
38279,
62,
6030,
11012,
1273,
549,
1279,
25,
27741,
6030,
11012,
1273,
549,
198,
220,
220,
220,
12013,
1273,
549,
3712,
2964,
1462,
13,
6030,
11012,
3629,
8629,
1273,
549,
198,
437,
198,
198,
8818,
38279,
62,
6030,
11012,
1273,
549,
7,
17620,
3712,
70,
49,
5662,
11792,
13,
70,
49,
5662,
29239,
8,
198,
220,
220,
220,
12013,
1273,
549,
796,
45783,
13,
6030,
11012,
3629,
8629,
1273,
549,
7,
17620,
8,
198,
220,
220,
220,
1441,
38279,
62,
6030,
11012,
1273,
549,
7,
41938,
1273,
549,
8,
198,
437,
198,
198,
8818,
4155,
62,
15236,
7,
301,
549,
3712,
51,
8,
810,
1391,
51,
27,
25,
23839,
6030,
11012,
1273,
549,
92,
198,
220,
220,
220,
3714,
7,
6030,
11012,
11792,
16922,
7,
35353,
27130,
62,
4944,
42,
14165,
62,
24908,
553,
41451,
470,
9177,
1865,
48774,
198,
437,
198
] | 2.754491 | 334 |
# Global method definition needs to be at top level in .7
"""
Takes a PowerSystems dictionary and return an array of PowerSystems struct for
Bus, Generator, Branch and load
"""
function ps_dict2ps_struct(data::Dict{String,Any})
generators = Array{G where {G<:Generator},1}()
storages = Array{S where {S<:Storage},1}()
buses = Array{Bus,1}()
branches = Array{B where {B<:Branch},1}()
loads = Array{E where {E<:ElectricLoad},1}()
shunts = Array{FixedAdmittance,1}()
loadZones = Array{D where {D<:Device},1}()
services = Array{S where {S<:Service},1}()
# TODO: should we raise an exception in the following?
if haskey(data, "bus")
buses = PowerSystems.bus_dict_parse(data["bus"])
else
@warn "key 'bus' not found in PowerSystems dictionary, this will result in an empty Bus array"
end
if haskey(data, "gen")
(generators, storage) = PowerSystems.gen_dict_parser(data["gen"])
else
@warn "key 'gen' not found in PowerSystems dictionary, this will result in an empty Generators and Storage array"
end
if haskey(data, "branch")
branches = PowerSystems.branch_dict_parser(data["branch"], branches)
else
@warn "key 'branch' not found in PowerSystems dictionary, this will result in an empty Branches array"
end
if haskey(data, "load")
loads = PowerSystems.load_dict_parser(data["load"])
else
@warn "key 'load' not found in PowerSystems dictionary, this will result in an empty Loads array"
end
if haskey(data, "loadzone")
loadZones = PowerSystems.loadzone_dict_parser(data["loadzone"])
else
@warn "key 'loadzone' not found in PowerSystems dictionary, this will result in an empty LoadZones array"
end
if haskey(data, "shunt")
shunts = PowerSystems.shunt_dict_parser(data["shunt"])
else
@warn "key 'shunt' not found in PowerSystems dictionary, this will result in an empty Shunts array"
end
if haskey(data, "dcline")
branches = PowerSystems.dclines_dict_parser(data["dcline"], branches)
else
@warn "key 'dcline' not found in PowerSystems dictionary, this will result in an empty DCLines array"
end
if haskey(data, "services")
services = PowerSystems.services_dict_parser(data["services"],generators)
else
@warn "key 'services' not found in PowerSystems dictionary, this will result in an empty services array"
end
return sort!(buses, by = x -> x.number), generators, storage, sort!(branches, by = x -> x.connectionpoints.from.number), loads, loadZones, shunts, services
end
function _retrieve(dict::T, key_of_interest::String, output = Dict(), path = []) where T<:AbstractDict
iter_result = Base.iterate(dict)
last_element = length(path)
while iter_result !== nothing
((key,value), state) = iter_result
if key == key_of_interest
output[value] = !haskey(output,value) ? path[1:end] : push!(output[value],path[1:end])
end
if value isa AbstractDict
push!(path,key)
_retrieve(value, key_of_interest, output, path)
path = path[1:last_element]
end
iter_result = Base.iterate(dict, state)
end
return output
end
function _retrieve(dict::T, type_of_interest, output = Dict(), path = []) where T<:AbstractDict
iter_result = Base.iterate(dict)
last_element = length(path)
while iter_result !== nothing
((key,value), state) = iter_result
if typeof(value) <: type_of_interest
output[key] = !haskey(output,value) ? path[1:end] : push!(output[value],path[1:end])
end
if value isa AbstractDict
push!(path,key)
_retrieve(value, type_of_interest, output, path)
path = path[1:last_element]
end
iter_result = Base.iterate(dict, state)
end
return output
end
function _access(nesteddict::T,keylist) where T<:AbstractDict
if !haskey(nesteddict,keylist[1])
@error "$(keylist[1]) not found in dict"
end
if length(keylist) > 1
nesteddict = _access(nesteddict[keylist[1]],keylist[2:end])
else
nesteddict = nesteddict[keylist[1]]
end
end
function _get_device(name, collection, devices = [])
if isa(collection,Array)
fn = fieldnames(typeof(collection[1]))
if :name in fn
[push!(devices,d) for d in collection if d.name == name]
end
else
fn = fieldnames(typeof(collection))
for f in fn
_get_device(name,getfield(collection,f),devices)
end
end
return devices
end
"""
Arg:
Dataframes which includes a timerseries columns of either:
Year, Month, Day, Period
or
DateTime
or
nothing (creates a today referenced DateTime Column)
Returns:
Dataframe with a DateTime columns
"""
function read_datetime(df; kwargs...)
if [c for c in [:Year,:Month,:Day,:Period] if c in names(df)] == [:Year,:Month,:Day,:Period]
if Dates.Hour(DataFrames.maximum(df[:Period])) <= Dates.Hour(25)
df[:DateTime] = collect(Dates.DateTime(df[1,:Year],df[1,:Month],df[1,:Day],(df[1,:Period]-1)) :Dates.Hour(1) :
Dates.DateTime(df[end,:Year],df[end,:Month],df[end,:Day],(df[end,:Period]-1)))
elseif (Dates.Minute(5) * DataFrames.maximum(df[:Period]) >= Dates.Minute(1440))& (Dates.Minute(5) * DataFrames.maximum(df[:Period]) <= Dates.Minute(1500))
df[:DateTime] = collect(Dates.DateTime(df[1,:Year],df[1,:Month],df[1,:Day],floor(df[1,:Period]/12),Int(df[1,:Period])-1) :Dates.Minute(5) :
Dates.DateTime(df[end,:Year],df[end,:Month],df[end,:Day],floor(df[end,:Period]/12)-1,5*(Int(df[end,:Period])-(floor(df[end,:Period]/12)-1)*12) -5))
else
@error "I don't know what the period length is, reformat timeseries"
end
DataFrames.deletecols!(df, [:Year,:Month,:Day,:Period])
elseif :DateTime in names(df)
df[:DateTime] = Dates.DateTime(df[:DateTime])
else
if :startdatetime in keys(kwargs)
startdatetime = kwargs[:startdatetime]
else
@warn "No reference date given, assuming today"
startdatetime = Dates.today()
end
df[:DateTime] = collect(Dates.DateTime(startdatetime):Dates.Hour(1):Dates.DateTime(startdatetime)+Dates.Hour(size(df)[1]-1))
end
return df
end
"""
Arg:
Device dictionary - Generators
Dataframe contains device Realtime/Forecast TimeSeries
Returns:
Device dictionary with timeseries added
"""
function add_time_series(Device_dict::Dict{String,Any}, df::DataFrames.DataFrame)
for (device_key,device) in Device_dict
if device_key in map(string, names(df))
ts_raw = df[Symbol(device_key)]
if maximum(ts_raw) <= 1.0
@info "assumed time series is a scaling factor for $device_key"
Device_dict[device_key]["scalingfactor"] = TimeSeries.TimeArray(df[:DateTime],ts_raw)
else
@info "assumed time series is MW for $device_key"
Device_dict[device_key]["scalingfactor"] = TimeSeries.TimeArray(df[:DateTime],ts_raw/device["tech"]["installedcapacity"])
end
end
end
return Device_dict
end
function add_time_series(Device_dict::Dict{String,Any}, ts_raw::TimeSeries.TimeArray)
"""
Arg:
Device dictionary - Generators
Dict contains device Realtime/Forecast TimeSeries.TimeArray
Returns:
Device dictionary with timeseries added
"""
name = get(Device_dict, "name", "")
if name == ""
throw(DataFormatError("input dict to add_time_series in wrong format"))
end
if maximum(values(ts_raw)) > 1.0
@warn "Time series for $name has values > 1.0, expected values in range {0.0,1.0}"
end
Device_dict["scalingfactor"] = ts_raw
return Device_dict
end
"""
Arg:
Load dictionary
LoadZones dictionary
Dataframe contains device Realtime/Forecast TimeSeries
Returns:
Device dictionary with timeseries added
"""
function add_time_series_load(data::Dict{String,Any}, df::DataFrames.DataFrame)
load_dict = data["load"]
load_names = [string(l["name"]) for (k,l) in load_dict]
ts_names = [string(n) for n in names(df) if n != :DateTime]
write_sf_by_lz = false
lzkey = [k for k in ["loadzone","load_zone"] if haskey(data,k)][1]
if lzkey in keys(data)
load_zone_dict = data[lzkey]
z_names = [string(z["name"]) for (k,z) in load_zone_dict]
if length([n for n in z_names if n in ts_names]) > 0
write_sf_by_lz = true
end
end
assigned_loads = []
if write_sf_by_lz
@info "assigning load scaling factors by load_zone"
# TODO: make this faster/better
for (l_key,l) in load_dict
for (lz_key,lz) in load_zone_dict
if l["bus"] in lz["buses"]
ts_raw = df[lz_key]/lz["maxactivepower"]
load_dict[l_key]["scalingfactor"] = TimeSeries.TimeArray(df[:DateTime],ts_raw)
push!(assigned_loads,l_key)
end
end
end
else
@info "assigning load scaling factors by bus"
for (l_key,l) in load_dict
load_dict[l_key]["scalingfactor"] = TimeSeries.TimeArray(df[:DateTime],df[Symbol(l["name"])])
push!(assigned_loads,l["name"])
end
end
for l in [l for l in load_names if !(l in assigned_loads)]
@warn "No load scaling factor assigned for $l" maxlog=PS_MAX_LOG
end
return load_dict
end
## - Parse Dict to Struct
function bus_dict_parse(dict::Dict{Int,Any})
Buses = [Bus(b["number"],b["name"], b["bustype"],b["angle"],b["voltage"],b["voltagelimits"],b["basevoltage"]) for (k_b,b) in dict ]
return Buses
end
## - Parse Dict to Array
function gen_dict_parser(dict::Dict{String,Any})
Generators = Array{G where {G<:Generator},1}()
Storage_gen = Array{S where {S<:Storage},1}()
for (gen_type_key,gen_type_dict) in dict
if gen_type_key =="Thermal"
for (thermal_key,thermal_dict) in gen_type_dict
push!(Generators,ThermalDispatch(string(thermal_dict["name"]),
Bool(thermal_dict["available"]),
thermal_dict["bus"],
TechThermal(thermal_dict["tech"]["activepower"],
thermal_dict["tech"]["activepowerlimits"],
thermal_dict["tech"]["reactivepower"],
thermal_dict["tech"]["reactivepowerlimits"],
thermal_dict["tech"]["ramplimits"],
thermal_dict["tech"]["timelimits"]),
EconThermal(thermal_dict["econ"]["capacity"],
thermal_dict["econ"]["variablecost"],
thermal_dict["econ"]["fixedcost"],
thermal_dict["econ"]["startupcost"],
thermal_dict["econ"]["shutdncost"],
thermal_dict["econ"]["annualcapacityfactor"])
))
end
elseif gen_type_key =="Hydro"
for (hydro_key,hydro_dict) in gen_type_dict
push!(Generators,HydroCurtailment(string(hydro_dict["name"]),
hydro_dict["available"],
hydro_dict["bus"],
TechHydro( hydro_dict["tech"]["installedcapacity"],
hydro_dict["tech"]["activepower"],
hydro_dict["tech"]["activepowerlimits"],
hydro_dict["tech"]["reactivepower"],
hydro_dict["tech"]["reactivepowerlimits"],
hydro_dict["tech"]["ramplimits"],
hydro_dict["tech"]["timelimits"]),
hydro_dict["econ"]["curtailcost"],
hydro_dict["scalingfactor"]
))
end
elseif gen_type_key =="Renewable"
for (ren_key,ren_dict) in gen_type_dict
if ren_key == "PV"
for (pv_key,pv_dict) in ren_dict
push!(Generators,RenewableCurtailment(string(pv_dict["name"]),
Bool( pv_dict["available"]),
pv_dict["bus"],
pv_dict["tech"]["installedcapacity"],
EconRenewable(pv_dict["econ"]["curtailcost"],
pv_dict["econ"]["interruptioncost"]),
pv_dict["scalingfactor"]
))
end
elseif ren_key == "RTPV"
for (rtpv_key,rtpv_dict) in ren_dict
push!(Generators,RenewableFix(string(rtpv_dict["name"]),
Bool(rtpv_dict["available"]),
rtpv_dict["bus"],
rtpv_dict["tech"]["installedcapacity"],
rtpv_dict["scalingfactor"]
))
end
elseif ren_key == "WIND"
for (wind_key,wind_dict) in ren_dict
push!(Generators,RenewableCurtailment(string(wind_dict["name"]),
Bool(wind_dict["available"]),
wind_dict["bus"],
wind_dict["tech"]["installedcapacity"],
EconRenewable(wind_dict["econ"]["curtailcost"],
wind_dict["econ"]["interruptioncost"]),
wind_dict["scalingfactor"]
))
end
end
end
elseif gen_type_key =="Storage"
for (storage_key,storage_dict) in gen_type_dict
push!(Storage_gen,GenericBattery(string(storage_dict["name"]),
Bool(storage_dict["available"]),
storage_dict["bus"],
storage_dict["energy"],
storage_dict["capacity"],
storage_dict["activepower"],
storage_dict["inputactivepowerlimits"],
storage_dict["outputactivepowerlimits"],
storage_dict["efficiency"],
storage_dict["reactivepower"],
storage_dict["reactivepowerlimits"]
))
end
end
end
return (Generators, Storage_gen)
end
# - Parse Dict to Array
function branch_dict_parser(dict::Dict{String,Any},Branches::Array{B,1}) where {B<:Branch}
for (branch_key,branch_dict) in dict
if branch_key == "Transformers"
for (trans_key,trans_dict) in branch_dict
if trans_dict["tap"] ==1.0
push!(Branches,Transformer2W(string(trans_dict["name"]),
Bool(trans_dict["available"]),
trans_dict["connectionpoints"],
trans_dict["r"],
trans_dict["x"],
trans_dict["primaryshunt"],
trans_dict["rate"]
))
elseif trans_dict["tap"] !=1.0
alpha = "α" in keys(trans_dict) ? trans_dict["α"] : 0.0
if alpha !=0.0 #TODO : 3W Transformer
push!(Branches,PhaseShiftingTransformer(string(trans_dict["name"]),
Bool(trans_dict["available"]),
trans_dict["connectionpoints"],
trans_dict["r"],
trans_dict["x"],
trans_dict["primaryshunt"],
trans_dict["tap"],
trans_dict["α"],
trans_dict["rate"]
))
else
push!(Branches,TapTransformer(string(trans_dict["name"]),
Bool(trans_dict["available"]),
trans_dict["connectionpoints"],
trans_dict["r"],
trans_dict["x"],
trans_dict["primaryshunt"],
trans_dict["tap"],
trans_dict["rate"]
))
end
end
end
else branch_key == "Lines"
for (line_key,line_dict) in branch_dict
push!(Branches,Line(string(line_dict["name"]),
Bool(line_dict["available"]),
line_dict["connectionpoints"],
line_dict["r"],
line_dict["x"],
line_dict["b"],
float(line_dict["rate"]),
line_dict["anglelimits"]
))
end
end
end
return Branches
end
function load_dict_parser(dict::Dict{String,Any})
Loads =Array{L where {L<:ElectricLoad},1}()
for (load_key,load_dict) in dict
push!(Loads,PowerLoad(string(load_dict["name"]),
Bool(load_dict["available"]),
load_dict["bus"],
load_dict["maxactivepower"],
load_dict["maxreactivepower"],
load_dict["scalingfactor"]
))
end
return Loads
end
function loadzone_dict_parser(dict::Dict{Int64,Any})
LoadZs =Array{D where {D<:Device},1}()
for (lz_key,lz_dict) in dict
push!(LoadZs,LoadZones(lz_dict["number"],
string(lz_dict["name"]),
lz_dict["buses"],
lz_dict["maxactivepower"],
lz_dict["maxreactivepower"]
))
end
return LoadZs
end
function shunt_dict_parser(dict::Dict{String,Any})
Shunts = Array{FixedAdmittance,1}()
for (s_key,s_dict) in dict
push!(Shunts,FixedAdmittance(string(s_dict["name"]),
Bool(s_dict["available"]),
s_dict["bus"],
s_dict["Y"]
)
)
end
return Shunts
end
function dclines_dict_parser(dict::Dict{String,Any},Branches::Array{Branch,1})
for (dct_key,dct_dict) in dict
if dct_key == "HVDCLine"
for (dcl_key,dcl_dict) in dct_dict
push!(Branches,HVDCLine(string(dcl_dict["name"]),
Bool(dcl_dict["available"]),
dcl_dict["connectionpoints"],
dcl_dict["activepowerlimits_from"],
dcl_dict["activepowerlimits_to"],
dcl_dict["reactivepowerlimits_from"],
dcl_dict["reactivepowerlimits_to"],
dcl_dict["loss"]
))
end
elseif dct_key == "VSCDCLine"
for (dcl_key,dcl_dict) in dct_dict
push!(Branches,VSCDCLine(string(dcl_dict["name"]),
Bool(dcl_dict["available"]),
dcl_dict["connectionpoints"],
dcl_dict["rectifier_taplimits"],
dcl_dict["rectifier_xrc"],
dcl_dict["rectifier_firingangle"],
dcl_dict["inverter_taplimits"],
dcl_dict["inverter_xrc"],
dcl_dict["inverter_firingangle"]
))
end
end
end
return Branches
end
function services_dict_parser(dict::Dict{String,Any},generators::Array{Generator,1})
Services = Array{D where {D <: Service},1}()
for (k,d) in dict
contributingdevices = Array{D where {D<:PowerSystems.Device},1}()
[PowerSystems._get_device(dev,generators) for dev in d["contributingdevices"]] |> (x->[push!(contributingdevices,d[1]) for d in x if length(d)==1])
push!(Services,ProportionalReserve(d["name"],
contributingdevices,
Float64(d["timeframe"]),
TimeSeries.TimeArray(Dates.today(),ones(1)) #TODO : fix requirement
))
end
return Services
end
| [
2,
8060,
2446,
6770,
2476,
284,
307,
379,
1353,
1241,
287,
764,
22,
198,
198,
37811,
198,
51,
1124,
257,
4333,
11964,
82,
22155,
290,
1441,
281,
7177,
286,
4333,
11964,
82,
2878,
329,
198,
16286,
11,
35986,
11,
20551,
290,
3440,
198,
37811,
198,
8818,
26692,
62,
11600,
17,
862,
62,
7249,
7,
7890,
3712,
35,
713,
90,
10100,
11,
7149,
30072,
198,
220,
220,
220,
27298,
796,
15690,
90,
38,
810,
1391,
38,
27,
25,
8645,
1352,
5512,
16,
92,
3419,
198,
220,
220,
220,
336,
273,
1095,
796,
15690,
90,
50,
810,
1391,
50,
27,
25,
31425,
5512,
16,
92,
3419,
198,
220,
220,
220,
16893,
796,
15690,
90,
16286,
11,
16,
92,
3419,
198,
220,
220,
220,
13737,
796,
15690,
90,
33,
810,
1391,
33,
27,
25,
33,
25642,
5512,
16,
92,
3419,
198,
220,
220,
220,
15989,
796,
15690,
90,
36,
810,
1391,
36,
27,
25,
44132,
8912,
5512,
16,
92,
3419,
198,
220,
220,
220,
32814,
912,
796,
15690,
90,
13715,
2782,
20124,
590,
11,
16,
92,
3419,
198,
220,
220,
220,
3440,
57,
1952,
796,
15690,
90,
35,
810,
1391,
35,
27,
25,
24728,
5512,
16,
92,
3419,
198,
220,
220,
220,
2594,
796,
15690,
90,
50,
810,
1391,
50,
27,
25,
16177,
5512,
16,
92,
3419,
628,
220,
220,
220,
1303,
16926,
46,
25,
815,
356,
5298,
281,
6631,
287,
262,
1708,
30,
628,
220,
220,
220,
611,
468,
2539,
7,
7890,
11,
366,
10885,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
16893,
796,
4333,
11964,
82,
13,
10885,
62,
11600,
62,
29572,
7,
7890,
14692,
10885,
8973,
8,
198,
220,
220,
220,
2073,
198,
220,
220,
220,
220,
220,
220,
220,
2488,
40539,
366,
2539,
705,
10885,
6,
407,
1043,
287,
4333,
11964,
82,
22155,
11,
428,
481,
1255,
287,
281,
6565,
5869,
7177,
1,
198,
220,
220,
220,
886,
198,
220,
220,
220,
611,
468,
2539,
7,
7890,
11,
366,
5235,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
357,
8612,
2024,
11,
6143,
8,
796,
4333,
11964,
82,
13,
5235,
62,
11600,
62,
48610,
7,
7890,
14692,
5235,
8973,
8,
198,
220,
220,
220,
2073,
198,
220,
220,
220,
220,
220,
220,
220,
2488,
40539,
366,
2539,
705,
5235,
6,
407,
1043,
287,
4333,
11964,
82,
22155,
11,
428,
481,
1255,
287,
281,
6565,
2980,
2024,
290,
20514,
7177,
1,
198,
220,
220,
220,
886,
198,
220,
220,
220,
611,
468,
2539,
7,
7890,
11,
366,
1671,
3702,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
13737,
796,
4333,
11964,
82,
13,
1671,
3702,
62,
11600,
62,
48610,
7,
7890,
14692,
1671,
3702,
33116,
13737,
8,
198,
220,
220,
220,
2073,
198,
220,
220,
220,
220,
220,
220,
220,
2488,
40539,
366,
2539,
705,
1671,
3702,
6,
407,
1043,
287,
4333,
11964,
82,
22155,
11,
428,
481,
1255,
287,
281,
6565,
1709,
12140,
7177,
1,
198,
220,
220,
220,
886,
198,
220,
220,
220,
611,
468,
2539,
7,
7890,
11,
366,
2220,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
15989,
796,
4333,
11964,
82,
13,
2220,
62,
11600,
62,
48610,
7,
7890,
14692,
2220,
8973,
8,
198,
220,
220,
220,
2073,
198,
220,
220,
220,
220,
220,
220,
220,
2488,
40539,
366,
2539,
705,
2220,
6,
407,
1043,
287,
4333,
11964,
82,
22155,
11,
428,
481,
1255,
287,
281,
6565,
8778,
82,
7177,
1,
198,
220,
220,
220,
886,
198,
220,
220,
220,
611,
468,
2539,
7,
7890,
11,
366,
2220,
11340,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
3440,
57,
1952,
796,
4333,
11964,
82,
13,
2220,
11340,
62,
11600,
62,
48610,
7,
7890,
14692,
2220,
11340,
8973,
8,
198,
220,
220,
220,
2073,
198,
220,
220,
220,
220,
220,
220,
220,
2488,
40539,
366,
2539,
705,
2220,
11340,
6,
407,
1043,
287,
4333,
11964,
82,
22155,
11,
428,
481,
1255,
287,
281,
6565,
8778,
57,
1952,
7177,
1,
198,
220,
220,
220,
886,
198,
220,
220,
220,
611,
468,
2539,
7,
7890,
11,
366,
1477,
2797,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
32814,
912,
796,
4333,
11964,
82,
13,
1477,
2797,
62,
11600,
62,
48610,
7,
7890,
14692,
1477,
2797,
8973,
8,
198,
220,
220,
220,
2073,
198,
220,
220,
220,
220,
220,
220,
220,
2488,
40539,
366,
2539,
705,
1477,
2797,
6,
407,
1043,
287,
4333,
11964,
82,
22155,
11,
428,
481,
1255,
287,
281,
6565,
911,
34115,
7177,
1,
198,
220,
220,
220,
886,
198,
220,
220,
220,
611,
468,
2539,
7,
7890,
11,
366,
67,
565,
500,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
13737,
796,
4333,
11964,
82,
13,
67,
565,
1127,
62,
11600,
62,
48610,
7,
7890,
14692,
67,
565,
500,
33116,
13737,
8,
198,
220,
220,
220,
2073,
198,
220,
220,
220,
220,
220,
220,
220,
2488,
40539,
366,
2539,
705,
67,
565,
500,
6,
407,
1043,
287,
4333,
11964,
82,
22155,
11,
428,
481,
1255,
287,
281,
6565,
360,
5097,
1127,
7177,
1,
198,
220,
220,
220,
886,
198,
220,
220,
220,
611,
468,
2539,
7,
7890,
11,
366,
30416,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
2594,
796,
4333,
11964,
82,
13,
30416,
62,
11600,
62,
48610,
7,
7890,
14692,
30416,
33116,
8612,
2024,
8,
198,
220,
220,
220,
2073,
198,
220,
220,
220,
220,
220,
220,
220,
2488,
40539,
366,
2539,
705,
30416,
6,
407,
1043,
287,
4333,
11964,
82,
22155,
11,
428,
481,
1255,
287,
281,
6565,
2594,
7177,
1,
198,
220,
220,
220,
886,
628,
220,
220,
220,
1441,
3297,
0,
7,
65,
2664,
11,
416,
796,
2124,
4613,
2124,
13,
17618,
828,
27298,
11,
6143,
11,
220,
3297,
0,
7,
1671,
12140,
11,
416,
796,
2124,
4613,
2124,
13,
38659,
13033,
13,
6738,
13,
17618,
828,
15989,
11,
3440,
57,
1952,
11,
32814,
912,
11,
2594,
198,
198,
437,
628,
198,
8818,
4808,
1186,
30227,
7,
11600,
3712,
51,
11,
1994,
62,
1659,
62,
9446,
3712,
10100,
11,
5072,
796,
360,
713,
22784,
3108,
796,
685,
12962,
810,
309,
27,
25,
23839,
35,
713,
198,
220,
220,
220,
11629,
62,
20274,
796,
7308,
13,
2676,
378,
7,
11600,
8,
198,
220,
220,
220,
938,
62,
30854,
796,
4129,
7,
6978,
8,
198,
220,
220,
220,
981,
11629,
62,
20274,
5145,
855,
2147,
198,
220,
220,
220,
220,
220,
220,
220,
14808,
2539,
11,
8367,
828,
1181,
8,
796,
11629,
62,
20274,
198,
220,
220,
220,
220,
220,
220,
220,
611,
1994,
6624,
1994,
62,
1659,
62,
9446,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5072,
58,
8367,
60,
796,
5145,
10134,
2539,
7,
22915,
11,
8367,
8,
5633,
3108,
58,
16,
25,
437,
60,
1058,
4574,
0,
7,
22915,
58,
8367,
4357,
6978,
58,
16,
25,
437,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
886,
198,
220,
220,
220,
220,
220,
220,
220,
611,
1988,
318,
64,
27741,
35,
713,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4574,
0,
7,
6978,
11,
2539,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4808,
1186,
30227,
7,
8367,
11,
1994,
62,
1659,
62,
9446,
11,
5072,
11,
3108,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3108,
796,
3108,
58,
16,
25,
12957,
62,
30854,
60,
198,
220,
220,
220,
220,
220,
220,
220,
886,
198,
220,
220,
220,
220,
220,
220,
220,
11629,
62,
20274,
796,
7308,
13,
2676,
378,
7,
11600,
11,
1181,
8,
198,
220,
220,
220,
886,
198,
220,
220,
220,
1441,
5072,
198,
437,
198,
198,
8818,
4808,
1186,
30227,
7,
11600,
3712,
51,
11,
2099,
62,
1659,
62,
9446,
11,
5072,
796,
360,
713,
22784,
3108,
796,
685,
12962,
810,
309,
27,
25,
23839,
35,
713,
198,
220,
220,
220,
11629,
62,
20274,
796,
7308,
13,
2676,
378,
7,
11600,
8,
198,
220,
220,
220,
938,
62,
30854,
796,
4129,
7,
6978,
8,
198,
220,
220,
220,
981,
11629,
62,
20274,
5145,
855,
2147,
198,
220,
220,
220,
220,
220,
220,
220,
14808,
2539,
11,
8367,
828,
1181,
8,
796,
11629,
62,
20274,
198,
220,
220,
220,
220,
220,
220,
220,
611,
2099,
1659,
7,
8367,
8,
1279,
25,
2099,
62,
1659,
62,
9446,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5072,
58,
2539,
60,
796,
5145,
10134,
2539,
7,
22915,
11,
8367,
8,
5633,
3108,
58,
16,
25,
437,
60,
1058,
4574,
0,
7,
22915,
58,
8367,
4357,
6978,
58,
16,
25,
437,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
886,
198,
220,
220,
220,
220,
220,
220,
220,
611,
1988,
318,
64,
27741,
35,
713,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4574,
0,
7,
6978,
11,
2539,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4808,
1186,
30227,
7,
8367,
11,
2099,
62,
1659,
62,
9446,
11,
5072,
11,
3108,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3108,
796,
3108,
58,
16,
25,
12957,
62,
30854,
60,
198,
220,
220,
220,
220,
220,
220,
220,
886,
198,
220,
220,
220,
220,
220,
220,
220,
11629,
62,
20274,
796,
7308,
13,
2676,
378,
7,
11600,
11,
1181,
8,
198,
220,
220,
220,
886,
198,
220,
220,
220,
1441,
5072,
198,
437,
198,
198,
8818,
4808,
15526,
7,
77,
395,
6048,
713,
3712,
51,
11,
2539,
4868,
8,
810,
309,
27,
25,
23839,
35,
713,
198,
220,
220,
220,
611,
5145,
10134,
2539,
7,
77,
395,
6048,
713,
11,
2539,
4868,
58,
16,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
2488,
18224,
17971,
7,
2539,
4868,
58,
16,
12962,
407,
1043,
287,
8633,
1,
198,
220,
220,
220,
886,
198,
220,
220,
220,
611,
4129,
7,
2539,
4868,
8,
1875,
352,
198,
220,
220,
220,
220,
220,
220,
220,
16343,
6048,
713,
796,
4808,
15526,
7,
77,
395,
6048,
713,
58,
2539,
4868,
58,
16,
60,
4357,
2539,
4868,
58,
17,
25,
437,
12962,
198,
220,
220,
220,
2073,
198,
220,
220,
220,
220,
220,
220,
220,
16343,
6048,
713,
796,
16343,
6048,
713,
58,
2539,
4868,
58,
16,
11907,
198,
220,
220,
220,
886,
198,
437,
198,
198,
8818,
4808,
1136,
62,
25202,
7,
3672,
11,
4947,
11,
4410,
796,
685,
12962,
198,
220,
220,
220,
611,
318,
64,
7,
43681,
11,
19182,
8,
198,
220,
220,
220,
220,
220,
220,
220,
24714,
796,
2214,
14933,
7,
4906,
1659,
7,
43681,
58,
16,
60,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
611,
1058,
3672,
287,
24714,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
685,
14689,
0,
7,
42034,
11,
67,
8,
329,
288,
287,
4947,
611,
288,
13,
3672,
6624,
1438,
60,
198,
220,
220,
220,
220,
220,
220,
220,
886,
198,
220,
220,
220,
2073,
198,
220,
220,
220,
220,
220,
220,
220,
24714,
796,
2214,
14933,
7,
4906,
1659,
7,
43681,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
329,
277,
287,
24714,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4808,
1136,
62,
25202,
7,
3672,
11,
1136,
3245,
7,
43681,
11,
69,
828,
42034,
8,
198,
220,
220,
220,
220,
220,
220,
220,
886,
198,
220,
220,
220,
886,
198,
220,
220,
220,
1441,
4410,
198,
437,
628,
198,
37811,
198,
28100,
25,
198,
220,
220,
220,
6060,
37805,
543,
3407,
257,
48085,
10640,
15180,
286,
2035,
25,
198,
220,
220,
220,
220,
220,
220,
220,
6280,
11,
16061,
11,
3596,
11,
18581,
198,
220,
220,
220,
220,
220,
393,
198,
220,
220,
220,
220,
220,
220,
220,
7536,
7575,
198,
220,
220,
220,
220,
220,
393,
198,
220,
220,
220,
220,
220,
220,
220,
2147,
357,
20123,
274,
257,
1909,
20717,
7536,
7575,
29201,
8,
198,
35561,
25,
198,
220,
220,
220,
6060,
14535,
351,
257,
7536,
7575,
15180,
198,
37811,
198,
8818,
1100,
62,
19608,
8079,
7,
7568,
26,
479,
86,
22046,
23029,
198,
220,
220,
220,
611,
685,
66,
329,
269,
287,
685,
25,
17688,
11,
25,
31948,
11,
25,
12393,
11,
25,
5990,
2101,
60,
611,
269,
287,
3891,
7,
7568,
15437,
6624,
685,
25,
17688,
11,
25,
31948,
11,
25,
12393,
11,
25,
5990,
2101,
60,
198,
220,
220,
220,
220,
220,
220,
220,
611,
44712,
13,
43223,
7,
6601,
35439,
13,
47033,
7,
7568,
58,
25,
5990,
2101,
60,
4008,
19841,
44712,
13,
43223,
7,
1495,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
47764,
58,
25,
10430,
7575,
60,
796,
2824,
7,
35,
689,
13,
10430,
7575,
7,
7568,
58,
16,
11,
25,
17688,
4357,
7568,
58,
16,
11,
25,
31948,
4357,
7568,
58,
16,
11,
25,
12393,
4357,
7,
7568,
58,
16,
11,
25,
5990,
2101,
45297,
16,
4008,
1058,
35,
689,
13,
43223,
7,
16,
8,
1058,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
44712,
13,
10430,
7575,
7,
7568,
58,
437,
11,
25,
17688,
4357,
7568,
58,
437,
11,
25,
31948,
4357,
7568,
58,
437,
11,
25,
12393,
4357,
7,
7568,
58,
437,
11,
25,
5990,
2101,
45297,
16,
22305,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
361,
357,
35,
689,
13,
9452,
1133,
7,
20,
8,
1635,
6060,
35439,
13,
47033,
7,
7568,
58,
25,
5990,
2101,
12962,
18189,
44712,
13,
9452,
1133,
7,
1415,
1821,
4008,
5,
357,
35,
689,
13,
9452,
1133,
7,
20,
8,
1635,
6060,
35439,
13,
47033,
7,
7568,
58,
25,
5990,
2101,
12962,
19841,
44712,
13,
9452,
1133,
7,
33698,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
47764,
58,
25,
10430,
7575,
60,
796,
2824,
7,
35,
689,
13,
10430,
7575,
7,
7568,
58,
16,
11,
25,
17688,
4357,
7568,
58,
16,
11,
25,
31948,
4357,
7568,
58,
16,
11,
25,
12393,
4357,
28300,
7,
7568,
58,
16,
11,
25,
5990,
2101,
60,
14,
1065,
828,
5317,
7,
7568,
58,
16,
11,
25,
5990,
2101,
12962,
12,
16,
8,
1058,
35,
689,
13,
9452,
1133,
7,
20,
8,
1058,
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,
44712,
13,
10430,
7575,
7,
7568,
58,
437,
11,
25,
17688,
4357,
7568,
58,
437,
11,
25,
31948,
4357,
7568,
58,
437,
11,
25,
12393,
4357,
28300,
7,
7568,
58,
437,
11,
25,
5990,
2101,
60,
14,
1065,
13219,
16,
11,
20,
9,
7,
5317,
7,
7568,
58,
437,
11,
25,
5990,
2101,
12962,
30420,
28300,
7,
7568,
58,
437,
11,
25,
5990,
2101,
60,
14,
1065,
13219,
16,
27493,
1065,
8,
532,
20,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2488,
18224,
366,
40,
836,
470,
760,
644,
262,
2278,
4129,
318,
11,
4975,
265,
1661,
10640,
1,
198,
220,
220,
220,
220,
220,
220,
220,
886,
198,
220,
220,
220,
220,
220,
220,
220,
6060,
35439,
13,
33678,
4033,
82,
0,
7,
7568,
11,
685,
25,
17688,
11,
25,
31948,
11,
25,
12393,
11,
25,
5990,
2101,
12962,
628,
220,
220,
220,
2073,
361,
1058,
10430,
7575,
287,
3891,
7,
7568,
8,
198,
220,
220,
220,
220,
220,
220,
220,
47764,
58,
25,
10430,
7575,
60,
796,
44712,
13,
10430,
7575,
7,
7568,
58,
25,
10430,
7575,
12962,
198,
220,
220,
220,
2073,
198,
220,
220,
220,
220,
220,
220,
220,
611,
1058,
9688,
19608,
8079,
287,
8251,
7,
46265,
22046,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
923,
19608,
8079,
796,
479,
86,
22046,
58,
25,
9688,
19608,
8079,
60,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2488,
40539,
366,
2949,
4941,
3128,
1813,
11,
13148,
1909,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
923,
19608,
8079,
796,
44712,
13,
40838,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
886,
198,
220,
220,
220,
220,
220,
220,
220,
47764,
58,
25,
10430,
7575,
60,
796,
2824,
7,
35,
689,
13,
10430,
7575,
7,
9688,
19608,
8079,
2599,
35,
689,
13,
43223,
7,
16,
2599,
35,
689,
13,
10430,
7575,
7,
9688,
19608,
8079,
47762,
35,
689,
13,
43223,
7,
7857,
7,
7568,
38381,
16,
45297,
16,
4008,
198,
220,
220,
220,
886,
198,
220,
220,
220,
1441,
47764,
198,
437,
198,
198,
37811,
198,
28100,
25,
198,
220,
220,
220,
16232,
22155,
532,
2980,
2024,
198,
220,
220,
220,
6060,
14535,
4909,
3335,
6416,
2435,
14,
16351,
2701,
3862,
27996,
198,
35561,
25,
198,
220,
220,
220,
16232,
22155,
351,
1661,
10640,
2087,
198,
37811,
198,
8818,
751,
62,
2435,
62,
25076,
7,
24728,
62,
11600,
3712,
35,
713,
90,
10100,
11,
7149,
5512,
47764,
3712,
6601,
35439,
13,
6601,
19778,
8,
198,
220,
220,
220,
329,
357,
25202,
62,
2539,
11,
25202,
8,
287,
16232,
62,
11600,
198,
220,
220,
220,
220,
220,
220,
220,
611,
3335,
62,
2539,
287,
3975,
7,
8841,
11,
3891,
7,
7568,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
40379,
62,
1831,
796,
47764,
58,
13940,
23650,
7,
25202,
62,
2539,
15437,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
5415,
7,
912,
62,
1831,
8,
19841,
352,
13,
15,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2488,
10951,
366,
562,
18940,
640,
2168,
318,
257,
20796,
5766,
329,
720,
25202,
62,
2539,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
16232,
62,
11600,
58,
25202,
62,
2539,
7131,
1,
1416,
4272,
31412,
8973,
796,
3862,
27996,
13,
7575,
19182,
7,
7568,
58,
25,
10430,
7575,
4357,
912,
62,
1831,
8,
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,
2488,
10951,
366,
562,
18940,
640,
2168,
318,
29961,
329,
720,
25202,
62,
2539,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
16232,
62,
11600,
58,
25202,
62,
2539,
7131,
1,
1416,
4272,
31412,
8973,
796,
3862,
27996,
13,
7575,
19182,
7,
7568,
58,
25,
10430,
7575,
4357,
912,
62,
1831,
14,
25202,
14692,
13670,
1,
7131,
1,
37050,
42404,
8973,
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,
220,
220,
220,
1441,
16232,
62,
11600,
198,
437,
198,
198,
8818,
751,
62,
2435,
62,
25076,
7,
24728,
62,
11600,
3712,
35,
713,
90,
10100,
11,
7149,
5512,
40379,
62,
1831,
3712,
7575,
27996,
13,
7575,
19182,
8,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
20559,
25,
198,
220,
220,
220,
220,
220,
220,
220,
16232,
22155,
532,
2980,
2024,
198,
220,
220,
220,
220,
220,
220,
220,
360,
713,
4909,
3335,
6416,
2435,
14,
16351,
2701,
3862,
27996,
13,
7575,
19182,
198,
220,
220,
220,
16409,
25,
198,
220,
220,
220,
220,
220,
220,
220,
16232,
22155,
351,
1661,
10640,
2087,
198,
220,
220,
220,
37227,
628,
220,
220,
220,
1438,
796,
651,
7,
24728,
62,
11600,
11,
366,
3672,
1600,
366,
4943,
198,
220,
220,
220,
611,
1438,
6624,
13538,
198,
220,
220,
220,
220,
220,
220,
220,
3714,
7,
6601,
26227,
12331,
7203,
15414,
8633,
284,
751,
62,
2435,
62,
25076,
287,
2642,
5794,
48774,
198,
220,
220,
220,
886,
628,
220,
220,
220,
611,
5415,
7,
27160,
7,
912,
62,
1831,
4008,
1875,
352,
13,
15,
198,
220,
220,
220,
220,
220,
220,
220,
2488,
40539,
366,
7575,
2168,
329,
720,
3672,
468,
3815,
1875,
352,
13,
15,
11,
2938,
3815,
287,
2837,
1391,
15,
13,
15,
11,
16,
13,
15,
36786,
198,
220,
220,
220,
886,
198,
220,
220,
220,
16232,
62,
11600,
14692,
1416,
4272,
31412,
8973,
796,
40379,
62,
1831,
628,
198,
220,
220,
220,
1441,
16232,
62,
11600,
198,
437,
198,
198,
37811,
198,
28100,
25,
198,
220,
220,
220,
8778,
22155,
198,
220,
220,
220,
8778,
57,
1952,
22155,
198,
220,
220,
220,
6060,
14535,
4909,
3335,
6416,
2435,
14,
16351,
2701,
3862,
27996,
198,
35561,
25,
198,
220,
220,
220,
16232,
22155,
351,
1661,
10640,
2087,
198,
37811,
198,
8818,
751,
62,
2435,
62,
25076,
62,
2220,
7,
7890,
3712,
35,
713,
90,
10100,
11,
7149,
5512,
47764,
3712,
6601,
35439,
13,
6601,
19778,
8,
198,
220,
220,
220,
3440,
62,
11600,
796,
1366,
14692,
2220,
8973,
628,
220,
220,
220,
3440,
62,
14933,
796,
685,
8841,
7,
75,
14692,
3672,
8973,
8,
329,
357,
74,
11,
75,
8,
287,
3440,
62,
11600,
60,
198,
220,
220,
220,
40379,
62,
14933,
796,
685,
8841,
7,
77,
8,
329,
299,
287,
3891,
7,
7568,
8,
611,
299,
14512,
1058,
10430,
7575,
60,
628,
220,
220,
220,
3551,
62,
28202,
62,
1525,
62,
75,
89,
796,
3991,
198,
220,
220,
220,
300,
89,
2539,
796,
685,
74,
329,
479,
287,
14631,
2220,
11340,
2430,
2220,
62,
11340,
8973,
611,
468,
2539,
7,
7890,
11,
74,
8,
7131,
16,
60,
198,
220,
220,
220,
611,
300,
89,
2539,
287,
8251,
7,
7890,
8,
198,
220,
220,
220,
220,
220,
220,
220,
3440,
62,
11340,
62,
11600,
796,
1366,
58,
75,
89,
2539,
60,
198,
220,
220,
220,
220,
220,
220,
220,
1976,
62,
14933,
796,
685,
8841,
7,
89,
14692,
3672,
8973,
8,
329,
357,
74,
11,
89,
8,
287,
3440,
62,
11340,
62,
11600,
60,
198,
220,
220,
220,
220,
220,
220,
220,
611,
4129,
26933,
77,
329,
299,
287,
1976,
62,
14933,
611,
299,
287,
40379,
62,
14933,
12962,
1875,
657,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3551,
62,
28202,
62,
1525,
62,
75,
89,
796,
2081,
198,
220,
220,
220,
220,
220,
220,
220,
886,
198,
220,
220,
220,
886,
628,
220,
220,
220,
8686,
62,
46030,
796,
17635,
198,
220,
220,
220,
611,
3551,
62,
28202,
62,
1525,
62,
75,
89,
198,
220,
220,
220,
220,
220,
220,
220,
2488,
10951,
366,
562,
38944,
3440,
20796,
5087,
416,
3440,
62,
11340,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
16926,
46,
25,
787,
428,
5443,
14,
27903,
198,
220,
220,
220,
220,
220,
220,
220,
329,
357,
75,
62,
2539,
11,
75,
8,
287,
3440,
62,
11600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
357,
75,
89,
62,
2539,
11,
75,
89,
8,
287,
3440,
62,
11340,
62,
11600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
300,
14692,
10885,
8973,
287,
300,
89,
14692,
65,
2664,
8973,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
40379,
62,
1831,
796,
47764,
58,
75,
89,
62,
2539,
60,
14,
75,
89,
14692,
9806,
5275,
6477,
8973,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3440,
62,
11600,
58,
75,
62,
2539,
7131,
1,
1416,
4272,
31412,
8973,
796,
3862,
27996,
13,
7575,
19182,
7,
7568,
58,
25,
10430,
7575,
4357,
912,
62,
1831,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4574,
0,
7,
562,
3916,
62,
46030,
11,
75,
62,
2539,
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,
886,
628,
220,
220,
220,
220,
220,
220,
220,
886,
198,
220,
220,
220,
2073,
198,
220,
220,
220,
220,
220,
220,
220,
2488,
10951,
366,
562,
38944,
3440,
20796,
5087,
416,
1323,
1,
198,
220,
220,
220,
220,
220,
220,
220,
329,
357,
75,
62,
2539,
11,
75,
8,
287,
3440,
62,
11600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3440,
62,
11600,
58,
75,
62,
2539,
7131,
1,
1416,
4272,
31412,
8973,
796,
3862,
27996,
13,
7575,
19182,
7,
7568,
58,
25,
10430,
7575,
4357,
7568,
58,
13940,
23650,
7,
75,
14692,
3672,
8973,
8,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4574,
0,
7,
562,
3916,
62,
46030,
11,
75,
14692,
3672,
8973,
8,
198,
220,
220,
220,
220,
220,
220,
220,
886,
628,
220,
220,
220,
886,
628,
220,
220,
220,
329,
300,
287,
685,
75,
329,
300,
287,
3440,
62,
14933,
611,
5145,
7,
75,
287,
8686,
62,
46030,
15437,
198,
220,
220,
220,
220,
220,
220,
220,
2488,
40539,
366,
2949,
3440,
20796,
5766,
8686,
329,
720,
75,
1,
3509,
6404,
28,
3705,
62,
22921,
62,
25294,
198,
220,
220,
220,
886,
628,
220,
220,
220,
1441,
3440,
62,
11600,
198,
437,
198,
198,
2235,
532,
2547,
325,
360,
713,
284,
32112,
198,
8818,
1323,
62,
11600,
62,
29572,
7,
11600,
3712,
35,
713,
90,
5317,
11,
7149,
30072,
198,
220,
220,
220,
347,
2664,
796,
685,
16286,
7,
65,
14692,
17618,
33116,
65,
14692,
3672,
33116,
275,
14692,
65,
436,
2981,
33116,
65,
14692,
9248,
33116,
65,
14692,
37764,
496,
33116,
65,
14692,
37764,
363,
417,
320,
896,
33116,
65,
14692,
8692,
37764,
496,
8973,
8,
329,
357,
74,
62,
65,
11,
65,
8,
287,
8633,
2361,
198,
220,
220,
220,
1441,
347,
2664,
198,
437,
628,
198,
2235,
532,
2547,
325,
360,
713,
284,
15690,
198,
8818,
2429,
62,
11600,
62,
48610,
7,
11600,
3712,
35,
713,
90,
10100,
11,
7149,
30072,
198,
220,
220,
220,
2980,
2024,
796,
15690,
90,
38,
810,
1391,
38,
27,
25,
8645,
1352,
5512,
16,
92,
3419,
198,
220,
220,
220,
20514,
62,
5235,
796,
15690,
90,
50,
810,
1391,
50,
27,
25,
31425,
5512,
16,
92,
3419,
198,
220,
220,
220,
329,
357,
5235,
62,
4906,
62,
2539,
11,
5235,
62,
4906,
62,
11600,
8,
287,
8633,
198,
220,
220,
220,
220,
220,
220,
220,
611,
2429,
62,
4906,
62,
2539,
796,
2625,
35048,
7617,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
357,
490,
7617,
62,
2539,
11,
490,
7617,
62,
11600,
8,
287,
2429,
62,
4906,
62,
11600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4574,
0,
7,
8645,
2024,
11,
35048,
7617,
49354,
7,
8841,
7,
490,
7617,
62,
11600,
14692,
3672,
8973,
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,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
347,
970,
7,
490,
7617,
62,
11600,
14692,
15182,
8973,
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,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
18411,
62,
11600,
14692,
10885,
33116,
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,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
9634,
35048,
7617,
7,
490,
7617,
62,
11600,
14692,
13670,
1,
7131,
1,
5275,
6477,
33116,
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,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
18411,
62,
11600,
14692,
13670,
1,
7131,
1,
5275,
6477,
49196,
33116,
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,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
18411,
62,
11600,
14692,
13670,
1,
7131,
1,
260,
5275,
6477,
33116,
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,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
18411,
62,
11600,
14692,
13670,
1,
7131,
1,
260,
5275,
6477,
49196,
33116,
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,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
18411,
62,
11600,
14692,
13670,
1,
7131,
1,
859,
489,
320,
896,
33116,
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,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
18411,
62,
11600,
14692,
13670,
1,
7131,
1,
16514,
417,
320,
896,
8973,
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,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
412,
1102,
35048,
7617,
7,
490,
7617,
62,
11600,
14692,
721,
261,
1,
7131,
1,
42404,
33116,
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,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
18411,
62,
11600,
14692,
721,
261,
1,
7131,
1,
45286,
15805,
33116,
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,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
18411,
62,
11600,
14692,
721,
261,
1,
7131,
1,
34021,
15805,
33116,
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,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
18411,
62,
11600,
14692,
721,
261,
1,
7131,
1,
9688,
929,
15805,
33116,
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,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
18411,
62,
11600,
14692,
721,
261,
1,
7131,
1,
49625,
67,
10782,
455,
33116,
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,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
18411,
62,
11600,
14692,
721,
261,
1,
7131,
1,
1236,
723,
42404,
31412,
8973,
8,
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,
15306,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
886,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
361,
2429,
62,
4906,
62,
2539,
796,
2625,
40436,
305,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
357,
15511,
305,
62,
2539,
11,
15511,
305,
62,
11600,
8,
287,
2429,
62,
4906,
62,
11600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4574,
0,
7,
8645,
2024,
11,
40436,
305,
34,
3325,
603,
434,
7,
8841,
7,
15511,
305,
62,
11600,
14692,
3672,
8973,
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,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
17173,
62,
11600,
14692,
15182,
33116,
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,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
17173,
62,
11600,
14692,
10885,
33116,
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,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
9634,
40436,
305,
7,
220,
17173,
62,
11600,
14692,
13670,
1,
7131,
1,
37050,
42404,
33116,
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,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
17173,
62,
11600,
14692,
13670,
1,
7131,
1,
5275,
6477,
33116,
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,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
17173,
62,
11600,
14692,
13670,
1,
7131,
1,
5275,
6477,
49196,
33116,
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,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
17173,
62,
11600,
14692,
13670,
1,
7131,
1,
260,
5275,
6477,
33116,
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,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
17173,
62,
11600,
14692,
13670,
1,
7131,
1,
260,
5275,
6477,
49196,
33116,
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,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
17173,
62,
11600,
14692,
13670,
1,
7131,
1,
859,
489,
320,
896,
33116,
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,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
17173,
62,
11600,
14692,
13670,
1,
7131,
1,
16514,
417,
320,
896,
8973,
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,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
17173,
62,
11600,
14692,
721,
261,
1,
7131,
1,
66,
3325,
603,
15805,
33116,
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,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
17173,
62,
11600,
14692,
1416,
4272,
31412,
8973,
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,
15306,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
886,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
361,
2429,
62,
4906,
62,
2539,
796,
2625,
26764,
413,
540,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
357,
918,
62,
2539,
11,
918,
62,
11600,
8,
287,
220,
2429,
62,
4906,
62,
11600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
8851,
62,
2539,
6624,
366,
47,
53,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
357,
79,
85,
62,
2539,
11,
79,
85,
62,
11600,
8,
287,
8851,
62,
11600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4574,
0,
7,
8645,
2024,
11,
26764,
413,
540,
34,
3325,
603,
434,
7,
8841,
7,
79,
85,
62,
11600,
14692,
3672,
8973,
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,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
347,
970,
7,
279,
85,
62,
11600,
14692,
15182,
8973,
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,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
279,
85,
62,
11600,
14692,
10885,
33116,
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,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
279,
85,
62,
11600,
14692,
13670,
1,
7131,
1,
37050,
42404,
33116,
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,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
412,
1102,
26764,
413,
540,
7,
79,
85,
62,
11600,
14692,
721,
261,
1,
7131,
1,
66,
3325,
603,
15805,
33116,
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,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
279,
85,
62,
11600,
14692,
721,
261,
1,
7131,
1,
3849,
6417,
15805,
8973,
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,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
279,
85,
62,
11600,
14692,
1416,
4272,
31412,
8973,
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,
15306,
198,
220,
220,
220,
220,
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,
220,
220,
220,
220,
2073,
361,
8851,
62,
2539,
6624,
366,
49,
7250,
53,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
357,
17034,
79,
85,
62,
2539,
11,
17034,
79,
85,
62,
11600,
8,
287,
8851,
62,
11600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4574,
0,
7,
8645,
2024,
11,
26764,
413,
540,
22743,
7,
8841,
7,
17034,
79,
85,
62,
11600,
14692,
3672,
8973,
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,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
347,
970,
7,
17034,
79,
85,
62,
11600,
14692,
15182,
8973,
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,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
374,
34788,
85,
62,
11600,
14692,
10885,
33116,
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,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
374,
34788,
85,
62,
11600,
14692,
13670,
1,
7131,
1,
37050,
42404,
33116,
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,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
374,
34788,
85,
62,
11600,
14692,
1416,
4272,
31412,
8973,
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,
15306,
198,
220,
220,
220,
220,
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,
220,
220,
220,
220,
2073,
361,
8851,
62,
2539,
6624,
366,
28929,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
357,
7972,
62,
2539,
11,
7972,
62,
11600,
8,
287,
8851,
62,
11600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4574,
0,
7,
8645,
2024,
11,
26764,
413,
540,
34,
3325,
603,
434,
7,
8841,
7,
7972,
62,
11600,
14692,
3672,
8973,
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,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
347,
970,
7,
7972,
62,
11600,
14692,
15182,
8973,
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,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2344,
62,
11600,
14692,
10885,
33116,
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,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2344,
62,
11600,
14692,
13670,
1,
7131,
1,
37050,
42404,
33116,
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,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
412,
1102,
26764,
413,
540,
7,
7972,
62,
11600,
14692,
721,
261,
1,
7131,
1,
66,
3325,
603,
15805,
33116,
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,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2344,
62,
11600,
14692,
721,
261,
1,
7131,
1,
3849,
6417,
15805,
8973,
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,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2344,
62,
11600,
14692,
1416,
4272,
31412,
8973,
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,
15306,
198,
220,
220,
220,
220,
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,
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,
361,
2429,
62,
4906,
62,
2539,
796,
2625,
31425,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
357,
35350,
62,
2539,
11,
35350,
62,
11600,
8,
287,
220,
2429,
62,
4906,
62,
11600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4574,
0,
7,
31425,
62,
5235,
11,
46189,
47006,
7,
8841,
7,
35350,
62,
11600,
14692,
3672,
8973,
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,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
347,
970,
7,
35350,
62,
11600,
14692,
15182,
8973,
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,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6143,
62,
11600,
14692,
10885,
33116,
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,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6143,
62,
11600,
14692,
22554,
33116,
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,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6143,
62,
11600,
14692,
42404,
33116,
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,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6143,
62,
11600,
14692,
5275,
6477,
33116,
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,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6143,
62,
11600,
14692,
15414,
5275,
6477,
49196,
33116,
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,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6143,
62,
11600,
14692,
22915,
5275,
6477,
49196,
33116,
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,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6143,
62,
11600,
14692,
45888,
33116,
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,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6143,
62,
11600,
14692,
260,
5275,
6477,
33116,
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,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6143,
62,
11600,
14692,
260,
5275,
6477,
49196,
8973,
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,
15306,
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,
220,
220,
220,
1441,
357,
8645,
2024,
11,
20514,
62,
5235,
8,
198,
437,
198,
198,
2,
532,
2547,
325,
360,
713,
284,
15690,
198,
198,
8818,
8478,
62,
11600,
62,
48610,
7,
11600,
3712,
35,
713,
90,
10100,
11,
7149,
5512,
9414,
12140,
3712,
19182,
90,
33,
11,
16,
30072,
810,
1391,
33,
27,
25,
33,
25642,
92,
198,
220,
220,
220,
329,
357,
1671,
3702,
62,
2539,
11,
1671,
3702,
62,
11600,
8,
287,
8633,
198,
220,
220,
220,
220,
220,
220,
220,
611,
8478,
62,
2539,
6624,
366,
41762,
364,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
357,
7645,
62,
2539,
11,
7645,
62,
11600,
8,
287,
8478,
62,
11600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
1007,
62,
11600,
14692,
44335,
8973,
6624,
16,
13,
15,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4574,
0,
7,
9414,
12140,
11,
8291,
16354,
17,
54,
7,
8841,
7,
7645,
62,
11600,
14692,
3672,
8973,
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,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
347,
970,
7,
7645,
62,
11600,
14692,
15182,
8973,
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,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1007,
62,
11600,
14692,
38659,
13033,
33116,
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,
220,
220,
220,
220,
220,
220,
220,
1007,
62,
11600,
14692,
81,
33116,
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,
220,
220,
220,
220,
220,
220,
220,
1007,
62,
11600,
14692,
87,
33116,
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,
220,
220,
220,
220,
220,
220,
220,
1007,
62,
11600,
14692,
39754,
1477,
2797,
33116,
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,
220,
220,
220,
220,
220,
220,
220,
1007,
62,
11600,
14692,
4873,
8973,
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,
220,
220,
220,
220,
220,
220,
220,
15306,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2073,
361,
1007,
62,
11600,
14692,
44335,
8973,
14512,
16,
13,
15,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
17130,
796,
366,
17394,
1,
287,
8251,
7,
7645,
62,
11600,
8,
5633,
1007,
62,
11600,
14692,
17394,
8973,
1058,
657,
13,
15,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
17130,
14512,
15,
13,
15,
1303,
51,
3727,
46,
1058,
513,
54,
3602,
16354,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4574,
0,
7,
9414,
12140,
11,
35645,
2484,
13309,
8291,
16354,
7,
8841,
7,
7645,
62,
11600,
14692,
3672,
8973,
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,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
347,
970,
7,
7645,
62,
11600,
14692,
15182,
8973,
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,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1007,
62,
11600,
14692,
38659,
13033,
33116,
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,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1007,
62,
11600,
14692,
81,
33116,
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,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1007,
62,
11600,
14692,
87,
33116,
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,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1007,
62,
11600,
14692,
39754,
1477,
2797,
33116,
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,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1007,
62,
11600,
14692,
44335,
33116,
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,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1007,
62,
11600,
14692,
17394,
33116,
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,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1007,
62,
11600,
14692,
4873,
8973,
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,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
15306,
198,
220,
220,
220,
220,
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,
220,
220,
220,
220,
4574,
0,
7,
9414,
12140,
11,
45081,
8291,
16354,
7,
8841,
7,
7645,
62,
11600,
14692,
3672,
8973,
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,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
347,
970,
7,
7645,
62,
11600,
14692,
15182,
8973,
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,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1007,
62,
11600,
14692,
38659,
13033,
33116,
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,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1007,
62,
11600,
14692,
81,
33116,
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,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1007,
62,
11600,
14692,
87,
33116,
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,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1007,
62,
11600,
14692,
39754,
1477,
2797,
33116,
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,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1007,
62,
11600,
14692,
44335,
33116,
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,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1007,
62,
11600,
14692,
4873,
8973,
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,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
15306,
198,
220,
220,
220,
220,
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,
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,
8478,
62,
2539,
6624,
366,
43,
1127,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
357,
1370,
62,
2539,
11,
1370,
62,
11600,
8,
287,
8478,
62,
11600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4574,
0,
7,
9414,
12140,
11,
13949,
7,
8841,
7,
1370,
62,
11600,
14692,
3672,
8973,
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,
220,
220,
347,
970,
7,
1370,
62,
11600,
14692,
15182,
8973,
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,
220,
220,
1627,
62,
11600,
14692,
38659,
13033,
33116,
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,
1627,
62,
11600,
14692,
81,
33116,
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,
1627,
62,
11600,
14692,
87,
33116,
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,
1627,
62,
11600,
14692,
65,
33116,
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,
12178,
7,
1370,
62,
11600,
14692,
4873,
8973,
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,
220,
220,
1627,
62,
11600,
14692,
9248,
49196,
8973,
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,
15306,
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,
220,
220,
220,
1441,
1709,
12140,
198,
437,
628,
198,
8818,
3440,
62,
11600,
62,
48610,
7,
11600,
3712,
35,
713,
90,
10100,
11,
7149,
30072,
198,
220,
220,
220,
8778,
82,
796,
19182,
90,
43,
810,
1391,
43,
27,
25,
44132,
8912,
5512,
16,
92,
3419,
198,
220,
220,
220,
329,
357,
2220,
62,
2539,
11,
2220,
62,
11600,
8,
287,
8633,
198,
220,
220,
220,
220,
220,
220,
220,
4574,
0,
7,
8912,
82,
11,
13434,
8912,
7,
8841,
7,
2220,
62,
11600,
14692,
3672,
8973,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
347,
970,
7,
2220,
62,
11600,
14692,
15182,
8973,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3440,
62,
11600,
14692,
10885,
33116,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3440,
62,
11600,
14692,
9806,
5275,
6477,
33116,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3440,
62,
11600,
14692,
9806,
260,
5275,
6477,
33116,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3440,
62,
11600,
14692,
1416,
4272,
31412,
8973,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
15306,
198,
220,
220,
220,
886,
198,
220,
220,
220,
1441,
8778,
82,
198,
437,
198,
198,
8818,
3440,
11340,
62,
11600,
62,
48610,
7,
11600,
3712,
35,
713,
90,
5317,
2414,
11,
7149,
30072,
198,
220,
220,
220,
8778,
57,
82,
796,
19182,
90,
35,
810,
1391,
35,
27,
25,
24728,
5512,
16,
92,
3419,
198,
220,
220,
220,
329,
357,
75,
89,
62,
2539,
11,
75,
89,
62,
11600,
8,
287,
8633,
198,
220,
220,
220,
220,
220,
220,
220,
4574,
0,
7,
8912,
57,
82,
11,
8912,
57,
1952,
7,
75,
89,
62,
11600,
14692,
17618,
33116,
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,
4731,
7,
75,
89,
62,
11600,
14692,
3672,
8973,
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,
300,
89,
62,
11600,
14692,
65,
2664,
33116,
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,
300,
89,
62,
11600,
14692,
9806,
5275,
6477,
33116,
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,
300,
89,
62,
11600,
14692,
9806,
260,
5275,
6477,
8973,
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,
15306,
198,
220,
220,
220,
886,
198,
220,
220,
220,
1441,
8778,
57,
82,
198,
437,
198,
198,
8818,
427,
2797,
62,
11600,
62,
48610,
7,
11600,
3712,
35,
713,
90,
10100,
11,
7149,
30072,
198,
220,
220,
220,
911,
34115,
796,
15690,
90,
13715,
2782,
20124,
590,
11,
16,
92,
3419,
198,
220,
220,
220,
329,
357,
82,
62,
2539,
11,
82,
62,
11600,
8,
287,
8633,
198,
220,
220,
220,
220,
220,
220,
220,
4574,
0,
7,
2484,
34115,
11,
13715,
2782,
20124,
590,
7,
8841,
7,
82,
62,
11600,
14692,
3672,
8973,
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,
347,
970,
7,
82,
62,
11600,
14692,
15182,
8973,
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,
264,
62,
11600,
14692,
10885,
33116,
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,
264,
62,
11600,
14692,
56,
8973,
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,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
886,
198,
220,
220,
220,
1441,
911,
34115,
198,
437,
628,
198,
8818,
288,
565,
1127,
62,
11600,
62,
48610,
7,
11600,
3712,
35,
713,
90,
10100,
11,
7149,
5512,
9414,
12140,
3712,
19182,
90,
33,
25642,
11,
16,
30072,
198,
220,
220,
220,
329,
357,
67,
310,
62,
2539,
11,
67,
310,
62,
11600,
8,
287,
8633,
198,
220,
220,
220,
220,
220,
220,
220,
611,
288,
310,
62,
2539,
6624,
366,
39,
8898,
5097,
500,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
357,
67,
565,
62,
2539,
11,
67,
565,
62,
11600,
8,
287,
288,
310,
62,
11600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4574,
0,
7,
9414,
12140,
11,
39,
8898,
5097,
500,
7,
8841,
7,
67,
565,
62,
11600,
14692,
3672,
8973,
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,
220,
220,
347,
970,
7,
67,
565,
62,
11600,
14692,
15182,
8973,
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,
220,
220,
288,
565,
62,
11600,
14692,
38659,
13033,
33116,
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,
288,
565,
62,
11600,
14692,
5275,
6477,
49196,
62,
6738,
33116,
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,
288,
565,
62,
11600,
14692,
5275,
6477,
49196,
62,
1462,
33116,
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,
288,
565,
62,
11600,
14692,
260,
5275,
6477,
49196,
62,
6738,
33116,
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,
288,
565,
62,
11600,
14692,
260,
5275,
6477,
49196,
62,
1462,
33116,
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,
288,
565,
62,
11600,
14692,
22462,
8973,
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,
15306,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
886,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
361,
288,
310,
62,
2539,
6624,
366,
53,
6173,
35,
5097,
500,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
357,
67,
565,
62,
2539,
11,
67,
565,
62,
11600,
8,
287,
288,
310,
62,
11600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4574,
0,
7,
9414,
12140,
11,
53,
6173,
35,
5097,
500,
7,
8841,
7,
67,
565,
62,
11600,
14692,
3672,
8973,
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,
220,
220,
347,
970,
7,
67,
565,
62,
11600,
14692,
15182,
8973,
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,
220,
220,
288,
565,
62,
11600,
14692,
38659,
13033,
33116,
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,
288,
565,
62,
11600,
14692,
2554,
7483,
62,
8326,
489,
320,
896,
33116,
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,
288,
565,
62,
11600,
14692,
2554,
7483,
62,
87,
6015,
33116,
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,
288,
565,
62,
11600,
14692,
2554,
7483,
62,
69,
3428,
9248,
33116,
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,
288,
565,
62,
11600,
14692,
259,
332,
353,
62,
8326,
489,
320,
896,
33116,
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,
288,
565,
62,
11600,
14692,
259,
332,
353,
62,
87,
6015,
33116,
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,
288,
565,
62,
11600,
14692,
259,
332,
353,
62,
69,
3428,
9248,
8973,
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,
15306,
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,
220,
220,
220,
1441,
1709,
12140,
198,
437,
628,
198,
8818,
2594,
62,
11600,
62,
48610,
7,
11600,
3712,
35,
713,
90,
10100,
11,
7149,
5512,
8612,
2024,
3712,
19182,
90,
8645,
1352,
11,
16,
30072,
198,
220,
220,
220,
6168,
796,
15690,
90,
35,
810,
1391,
35,
1279,
25,
4809,
5512,
16,
92,
3419,
628,
220,
220,
220,
329,
357,
74,
11,
67,
8,
287,
8633,
198,
220,
220,
220,
220,
220,
220,
220,
14329,
42034,
796,
15690,
90,
35,
810,
1391,
35,
27,
25,
13434,
11964,
82,
13,
24728,
5512,
16,
92,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
685,
13434,
11964,
82,
13557,
1136,
62,
25202,
7,
7959,
11,
8612,
2024,
8,
329,
1614,
287,
288,
14692,
3642,
2455,
278,
42034,
8973,
60,
930,
29,
357,
87,
3784,
58,
14689,
0,
7,
3642,
2455,
278,
42034,
11,
67,
58,
16,
12962,
329,
288,
287,
2124,
611,
4129,
7,
67,
8,
855,
16,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
4574,
0,
7,
31007,
11,
2964,
634,
1538,
4965,
3760,
7,
67,
14692,
3672,
33116,
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,
14329,
42034,
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,
48436,
2414,
7,
67,
14692,
2435,
14535,
8973,
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,
3862,
27996,
13,
7575,
19182,
7,
35,
689,
13,
40838,
22784,
1952,
7,
16,
4008,
220,
1303,
51,
3727,
46,
1058,
4259,
9079,
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,
15306,
198,
220,
220,
220,
886,
198,
220,
220,
220,
1441,
6168,
198,
437,
198
] | 1.723714 | 13,743 |
using Gadfly
VTR = readdlm("VTR.dat")
# Central wave number for incoming wave packet
k = 200
# Theoretically predicted transmission and reflection coefficients
T = (V0) -> k^2 < 2V0 ? 0.0 : 4k*√(k^2 - 2V0) / (k+√(k^2 - 2V0))^2
R = (V0) -> k^2 < 2V0 ? 1.0 : (k-√(k^2 - 2V0))^2 / (k+√(k^2 - 2V0))^2
Vs = [5e3:100:5e4]
p = plot(
layer(
x = VTR[:,1],
y = VTR[:,2],
Geom.line,
Geom.point,
color = ["Transmission Probability, Experimental"]
),
layer(
x = VTR[:,1],
y = VTR[:,3],
Geom.line,
Geom.point,
color = ["Reflection Probability, Experimental"]
),
layer(
x = Vs,
y = map(T, Vs),
Geom.line,
color = ["Transmission Probability, Theoretical"]
),
layer(
x = Vs,
y = map(R, Vs),
Geom.line,
color = ["Reflection Probability, Theoretical"]
),
Guide.xlabel("Potential Energy at Step Function"),
Guide.ylabel("Probability"),
Guide.title("Transmission probability across step potential vs. magnitude of potential for k = 200, σ = 0.05")
)
draw(SVG("VTR.svg", 20cm, 12cm), p)
| [
3500,
20925,
12254,
198,
198,
53,
5446,
796,
1100,
25404,
76,
7203,
53,
5446,
13,
19608,
4943,
198,
198,
2,
5694,
6769,
1271,
329,
15619,
6769,
19638,
198,
74,
796,
939,
198,
198,
2,
383,
9997,
1146,
11001,
11478,
290,
14580,
44036,
198,
51,
796,
357,
53,
15,
8,
4613,
479,
61,
17,
1279,
362,
53,
15,
5633,
657,
13,
15,
1058,
604,
74,
9,
24861,
248,
7,
74,
61,
17,
532,
362,
53,
15,
8,
1220,
357,
74,
10,
24861,
248,
7,
74,
61,
17,
532,
362,
53,
15,
4008,
61,
17,
198,
49,
796,
357,
53,
15,
8,
4613,
479,
61,
17,
1279,
362,
53,
15,
5633,
352,
13,
15,
1058,
357,
74,
12,
24861,
248,
7,
74,
61,
17,
532,
362,
53,
15,
4008,
61,
17,
1220,
357,
74,
10,
24861,
248,
7,
74,
61,
17,
532,
362,
53,
15,
4008,
61,
17,
198,
198,
23266,
796,
685,
20,
68,
18,
25,
3064,
25,
20,
68,
19,
60,
198,
198,
79,
796,
7110,
7,
198,
220,
220,
220,
7679,
7,
198,
220,
220,
220,
220,
220,
220,
220,
2124,
796,
569,
5446,
58,
45299,
16,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
331,
796,
569,
5446,
58,
45299,
17,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
2269,
296,
13,
1370,
11,
198,
220,
220,
220,
220,
220,
220,
220,
2269,
296,
13,
4122,
11,
198,
220,
220,
220,
220,
220,
220,
220,
3124,
796,
14631,
8291,
3411,
30873,
1799,
11,
32286,
8973,
198,
220,
220,
220,
10612,
198,
220,
220,
220,
7679,
7,
198,
220,
220,
220,
220,
220,
220,
220,
2124,
796,
569,
5446,
58,
45299,
16,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
331,
796,
569,
5446,
58,
45299,
18,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
2269,
296,
13,
1370,
11,
198,
220,
220,
220,
220,
220,
220,
220,
2269,
296,
13,
4122,
11,
198,
220,
220,
220,
220,
220,
220,
220,
3124,
796,
14631,
8134,
1564,
30873,
1799,
11,
32286,
8973,
198,
220,
220,
220,
10612,
198,
220,
220,
220,
7679,
7,
198,
220,
220,
220,
220,
220,
220,
220,
2124,
796,
31280,
11,
198,
220,
220,
220,
220,
220,
220,
220,
331,
796,
3975,
7,
51,
11,
31280,
828,
198,
220,
220,
220,
220,
220,
220,
220,
2269,
296,
13,
1370,
11,
198,
220,
220,
220,
220,
220,
220,
220,
3124,
796,
14631,
8291,
3411,
30873,
1799,
11,
383,
9997,
605,
8973,
198,
220,
220,
220,
10612,
198,
220,
220,
220,
7679,
7,
198,
220,
220,
220,
220,
220,
220,
220,
2124,
796,
31280,
11,
198,
220,
220,
220,
220,
220,
220,
220,
331,
796,
3975,
7,
49,
11,
31280,
828,
198,
220,
220,
220,
220,
220,
220,
220,
2269,
296,
13,
1370,
11,
198,
220,
220,
220,
220,
220,
220,
220,
3124,
796,
14631,
8134,
1564,
30873,
1799,
11,
383,
9997,
605,
8973,
198,
220,
220,
220,
10612,
198,
220,
220,
220,
10005,
13,
87,
18242,
7203,
25396,
1843,
6682,
379,
5012,
15553,
12340,
198,
220,
220,
220,
10005,
13,
2645,
9608,
7203,
2964,
65,
1799,
12340,
198,
220,
220,
220,
10005,
13,
7839,
7203,
8291,
3411,
12867,
1973,
2239,
2785,
3691,
13,
14735,
286,
2785,
329,
479,
796,
939,
11,
18074,
225,
796,
657,
13,
2713,
4943,
198,
8,
198,
198,
19334,
7,
50,
43490,
7203,
53,
5446,
13,
21370,
70,
1600,
1160,
11215,
11,
1105,
11215,
828,
279,
8,
198
] | 2.036907 | 569 |
using Gadfly
using BlackBoxOptimizationBenchmarking
const BBOB = BlackBoxOptimizationBenchmarking
##
function plot_fun(f)
r = 5
c, n, nline = Geom.contour(levels=exp10.(range(-6, stop=10, length=40))), 800, 1000
if any(f .== [BBOB.F16,BBOB.F17,BBOB.F18,BBOB.F19])
c, n, nline = Geom.contour(levels=exp10.(range(-6, stop=8, length=20))), 500, 1000
end
p1 = plot(
layer(x=[f.x_opt[1]],y=[f.x_opt[2]],Geom.point,Theme(default_color=colorant"red")),
layer(
z=(x,y)->f([x,y])-f.f_opt, x=range(-r, stop=r, length=n), y=range(-r, stop=r, length=n),
c,
),
Coord.cartesian(xmin=-r,xmax=r,ymin=-r,ymax=r),
Guide.title(string(f))
)
# line plot
x = collect(range(-r, stop=r, length=nline))
p2 = plot(
layer(x=x,y=[ f([xi,f.x_opt[2],f.x_opt[3]]) for xi in x]-f.f_opt, Geom.line),
layer(x=x,y=[ f([f.x_opt[1],xi,f.x_opt[3]]) for xi in x]-f.f_opt, Geom.line,Theme(default_color=colorant"orange")),
layer(x=x,y=[ f([f.x_opt[1],f.x_opt[2],xi]) for xi in x]-f.f_opt, Geom.line,Theme(default_color=colorant"red")),
Coord.cartesian(xmin=-r,xmax=r),
Guide.title(string(f)),
Scale.y_log10
)
p1,p2
end
outdir = joinpath(Pkg.dir(),"BBOB","data","plots","functions")
for i in 20:length(enumerate(BBOB.BBOBFunction))
f = getfield(BBOB,Symbol("F$i"))
info(f)
p1,p2 = plot_fun(f)
draw(PDF(joinpath(outdir,"F$i.pdf"),16cm,16cm),p1)
draw(SVG(joinpath(outdir,"F$i.svg"),16cm,16cm),p1)
draw(PDF(joinpath(outdir,"1D","F$i.pdf"),16cm,12cm),p2)
draw(SVG(joinpath(outdir,"1D","F$i.svg"),16cm,12cm),p2)
end
## | [
3500,
20925,
12254,
198,
198,
3500,
2619,
14253,
27871,
320,
1634,
44199,
4102,
278,
198,
9979,
347,
8202,
33,
796,
2619,
14253,
27871,
320,
1634,
44199,
4102,
278,
198,
198,
2235,
198,
198,
8818,
7110,
62,
12543,
7,
69,
8,
198,
220,
220,
220,
374,
796,
642,
198,
220,
220,
220,
220,
198,
220,
220,
220,
269,
11,
299,
11,
299,
1370,
796,
2269,
296,
13,
3642,
454,
7,
46170,
28,
11201,
940,
12195,
9521,
32590,
21,
11,
2245,
28,
940,
11,
4129,
28,
1821,
4008,
828,
10460,
11,
8576,
198,
220,
220,
220,
611,
597,
7,
69,
764,
855,
685,
33,
8202,
33,
13,
37,
1433,
11,
33,
8202,
33,
13,
37,
1558,
11,
33,
8202,
33,
13,
37,
1507,
11,
33,
8202,
33,
13,
37,
1129,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
269,
11,
299,
11,
299,
1370,
796,
2269,
296,
13,
3642,
454,
7,
46170,
28,
11201,
940,
12195,
9521,
32590,
21,
11,
2245,
28,
23,
11,
4129,
28,
1238,
4008,
828,
5323,
11,
8576,
198,
220,
220,
220,
886,
628,
220,
220,
220,
279,
16,
796,
7110,
7,
198,
220,
220,
220,
220,
220,
220,
220,
7679,
7,
87,
41888,
69,
13,
87,
62,
8738,
58,
16,
60,
4357,
88,
41888,
69,
13,
87,
62,
8738,
58,
17,
60,
4357,
10082,
296,
13,
4122,
11,
47863,
7,
12286,
62,
8043,
28,
8043,
415,
1,
445,
4943,
828,
198,
220,
220,
220,
220,
220,
220,
220,
7679,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1976,
16193,
87,
11,
88,
8,
3784,
69,
26933,
87,
11,
88,
12962,
12,
69,
13,
69,
62,
8738,
11,
2124,
28,
9521,
32590,
81,
11,
2245,
28,
81,
11,
4129,
28,
77,
828,
331,
28,
9521,
32590,
81,
11,
2245,
28,
81,
11,
4129,
28,
77,
828,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
269,
11,
198,
220,
220,
220,
220,
220,
220,
220,
10612,
198,
220,
220,
220,
220,
220,
220,
220,
22819,
13,
26674,
35610,
7,
87,
1084,
10779,
81,
11,
87,
9806,
28,
81,
11,
88,
1084,
10779,
81,
11,
4948,
897,
28,
81,
828,
198,
220,
220,
220,
220,
220,
220,
220,
10005,
13,
7839,
7,
8841,
7,
69,
4008,
198,
220,
220,
220,
1267,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
1627,
7110,
198,
220,
220,
220,
2124,
796,
2824,
7,
9521,
32590,
81,
11,
2245,
28,
81,
11,
4129,
28,
77,
1370,
4008,
198,
220,
220,
220,
220,
198,
220,
220,
220,
279,
17,
796,
7110,
7,
198,
220,
220,
220,
220,
220,
220,
220,
7679,
7,
87,
28,
87,
11,
88,
41888,
277,
26933,
29992,
11,
69,
13,
87,
62,
8738,
58,
17,
4357,
69,
13,
87,
62,
8738,
58,
18,
11907,
8,
329,
2124,
72,
287,
2124,
45297,
69,
13,
69,
62,
8738,
11,
2269,
296,
13,
1370,
828,
198,
220,
220,
220,
220,
220,
220,
220,
7679,
7,
87,
28,
87,
11,
88,
41888,
277,
26933,
69,
13,
87,
62,
8738,
58,
16,
4357,
29992,
11,
69,
13,
87,
62,
8738,
58,
18,
11907,
8,
329,
2124,
72,
287,
2124,
45297,
69,
13,
69,
62,
8738,
11,
2269,
296,
13,
1370,
11,
47863,
7,
12286,
62,
8043,
28,
8043,
415,
1,
43745,
4943,
828,
198,
220,
220,
220,
220,
220,
220,
220,
7679,
7,
87,
28,
87,
11,
88,
41888,
277,
26933,
69,
13,
87,
62,
8738,
58,
16,
4357,
69,
13,
87,
62,
8738,
58,
17,
4357,
29992,
12962,
329,
2124,
72,
287,
2124,
45297,
69,
13,
69,
62,
8738,
11,
2269,
296,
13,
1370,
11,
47863,
7,
12286,
62,
8043,
28,
8043,
415,
1,
445,
4943,
828,
198,
220,
220,
220,
220,
220,
220,
220,
22819,
13,
26674,
35610,
7,
87,
1084,
10779,
81,
11,
87,
9806,
28,
81,
828,
198,
220,
220,
220,
220,
220,
220,
220,
10005,
13,
7839,
7,
8841,
7,
69,
36911,
198,
220,
220,
220,
220,
220,
220,
220,
21589,
13,
88,
62,
6404,
940,
198,
220,
220,
220,
1267,
198,
220,
220,
220,
279,
16,
11,
79,
17,
198,
437,
198,
198,
448,
15908,
796,
4654,
6978,
7,
47,
10025,
13,
15908,
3419,
553,
33,
8202,
33,
2430,
7890,
2430,
489,
1747,
2430,
12543,
2733,
4943,
198,
198,
1640,
1312,
287,
1160,
25,
13664,
7,
268,
6975,
378,
7,
33,
8202,
33,
13,
33,
8202,
33,
22203,
4008,
198,
220,
220,
220,
220,
198,
220,
220,
220,
277,
796,
651,
3245,
7,
33,
8202,
33,
11,
13940,
23650,
7203,
37,
3,
72,
48774,
220,
220,
220,
220,
198,
220,
220,
220,
7508,
7,
69,
8,
198,
220,
220,
220,
279,
16,
11,
79,
17,
796,
7110,
62,
12543,
7,
69,
8,
628,
220,
220,
220,
3197,
7,
20456,
7,
22179,
6978,
7,
448,
15908,
553,
37,
3,
72,
13,
12315,
12340,
1433,
11215,
11,
1433,
11215,
828,
79,
16,
8,
198,
220,
220,
220,
3197,
7,
50,
43490,
7,
22179,
6978,
7,
448,
15908,
553,
37,
3,
72,
13,
21370,
70,
12340,
1433,
11215,
11,
1433,
11215,
828,
79,
16,
8,
198,
220,
220,
220,
3197,
7,
20456,
7,
22179,
6978,
7,
448,
15908,
553,
16,
35,
2430,
37,
3,
72,
13,
12315,
12340,
1433,
11215,
11,
1065,
11215,
828,
79,
17,
8,
198,
220,
220,
220,
3197,
7,
50,
43490,
7,
22179,
6978,
7,
448,
15908,
553,
16,
35,
2430,
37,
3,
72,
13,
21370,
70,
12340,
1433,
11215,
11,
1065,
11215,
828,
79,
17,
8,
198,
437,
198,
198,
2235
] | 1.854645 | 915 |
### A Pluto.jl notebook ###
# v0.12.21
using Markdown
using InteractiveUtils
# This Pluto notebook uses @bind for interactivity. When running this notebook outside of Pluto, the following 'mock version' of @bind gives bound variables a default value (instead of an error).
macro bind(def, element)
quote
local el = $(esc(element))
global $(esc(def)) = Core.applicable(Base.get, el) ? Base.get(el) : missing
el
end
end
# ╔═╡ 4c148672-8b79-11eb-0133-6de14d906224
using HeroIcons, PlutoUI
# ╔═╡ 39d69132-8b7a-11eb-06cf-bfa0618705d8
begin
opts = map(x -> replace(x, ".svg" => ""), readdir(
joinpath(@__DIR__, "..", "deps", "heroicons-0.4.2", "optimized", "outline")
))
md"""
# Choose an Icon to View
$(@bind icon Select(opts))
"""
end
# ╔═╡ 4c30529a-8b7d-11eb-314d-1ba4c5db4103
HeroIcon(icon, css="height:3em; width:3em")
# ╔═╡ 555361a0-8b7d-11eb-189e-31e44fd4fd2d
md"# In HTML"
# ╔═╡ a3b68f84-8b7d-11eb-0562-1911d449f75d
let
s = repr("text/html", HeroIcon(icon, css="height:1em; width:1em; display:inline-block;"))
HTML("""<h4>$s This is inside an H4 Tag</h4>""")
end
# ╔═╡ 9355cd84-8b7e-11eb-0278-05736b4c3983
md"# In Markdown"
# ╔═╡ 9792e224-8b7e-11eb-2816-f767eac59cf4
md"""
$(HeroIcon(icon, css="height: 2em; width:2em"))
"""
# ╔═╡ Cell order:
# ╠═4c148672-8b79-11eb-0133-6de14d906224
# ╟─39d69132-8b7a-11eb-06cf-bfa0618705d8
# ╟─4c30529a-8b7d-11eb-314d-1ba4c5db4103
# ╟─555361a0-8b7d-11eb-189e-31e44fd4fd2d
# ╠═a3b68f84-8b7d-11eb-0562-1911d449f75d
# ╟─9355cd84-8b7e-11eb-0278-05736b4c3983
# ╠═9792e224-8b7e-11eb-2816-f767eac59cf4
| [
21017,
317,
32217,
13,
20362,
20922,
44386,
198,
2,
410,
15,
13,
1065,
13,
2481,
198,
198,
3500,
2940,
2902,
198,
3500,
21365,
18274,
4487,
198,
198,
2,
770,
32217,
20922,
3544,
2488,
21653,
329,
9427,
3458,
13,
1649,
2491,
428,
20922,
2354,
286,
32217,
11,
262,
1708,
705,
76,
735,
2196,
6,
286,
2488,
21653,
3607,
5421,
9633,
257,
4277,
1988,
357,
38070,
286,
281,
4049,
737,
198,
20285,
305,
11007,
7,
4299,
11,
5002,
8,
198,
220,
220,
220,
9577,
198,
220,
220,
220,
220,
220,
220,
220,
1957,
1288,
796,
29568,
3798,
7,
30854,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
3298,
29568,
3798,
7,
4299,
4008,
796,
7231,
13,
1324,
677,
540,
7,
14881,
13,
1136,
11,
1288,
8,
5633,
7308,
13,
1136,
7,
417,
8,
1058,
4814,
198,
220,
220,
220,
220,
220,
220,
220,
1288,
198,
220,
220,
220,
886,
198,
437,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
604,
66,
18294,
43864,
12,
23,
65,
3720,
12,
1157,
1765,
12,
486,
2091,
12,
21,
2934,
1415,
67,
24,
3312,
24137,
198,
3500,
8757,
40,
5936,
11,
32217,
10080,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
5014,
67,
3388,
19924,
12,
23,
65,
22,
64,
12,
1157,
1765,
12,
3312,
12993,
12,
65,
13331,
3312,
1507,
34801,
67,
23,
198,
27471,
198,
197,
404,
912,
796,
3975,
7,
87,
4613,
6330,
7,
87,
11,
27071,
21370,
70,
1,
5218,
366,
12340,
1100,
15908,
7,
198,
197,
197,
22179,
6978,
7,
31,
834,
34720,
834,
11,
366,
492,
1600,
366,
10378,
82,
1600,
366,
11718,
34280,
12,
15,
13,
19,
13,
17,
1600,
366,
40085,
1143,
1600,
366,
448,
1370,
4943,
198,
197,
4008,
198,
197,
198,
197,
9132,
37811,
198,
197,
2,
17489,
281,
26544,
284,
3582,
198,
197,
3,
7,
31,
21653,
7196,
9683,
7,
404,
912,
4008,
198,
197,
37811,
198,
437,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
604,
66,
22515,
1959,
64,
12,
23,
65,
22,
67,
12,
1157,
1765,
12,
33638,
67,
12,
16,
7012,
19,
66,
20,
9945,
19,
15197,
198,
30411,
19578,
7,
4749,
11,
269,
824,
2625,
17015,
25,
18,
368,
26,
9647,
25,
18,
368,
4943,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
44717,
35195,
64,
15,
12,
23,
65,
22,
67,
12,
1157,
1765,
12,
23362,
68,
12,
3132,
68,
2598,
16344,
19,
16344,
17,
67,
198,
9132,
1,
2,
554,
11532,
1,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
257,
18,
65,
3104,
69,
5705,
12,
23,
65,
22,
67,
12,
1157,
1765,
12,
2713,
5237,
12,
1129,
1157,
67,
31911,
69,
2425,
67,
198,
1616,
220,
198,
197,
82,
796,
41575,
7203,
5239,
14,
6494,
1600,
8757,
19578,
7,
4749,
11,
269,
824,
2625,
17015,
25,
16,
368,
26,
9647,
25,
16,
368,
26,
3359,
25,
45145,
12,
9967,
26033,
4008,
198,
197,
28656,
7203,
15931,
27,
71,
19,
29,
3,
82,
770,
318,
2641,
281,
367,
19,
17467,
3556,
71,
19,
29,
15931,
4943,
198,
437,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
860,
28567,
10210,
5705,
12,
23,
65,
22,
68,
12,
1157,
1765,
12,
15,
25870,
12,
43526,
2623,
65,
19,
66,
2670,
5999,
198,
9132,
1,
2,
554,
2940,
2902,
1,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
860,
48156,
68,
24137,
12,
23,
65,
22,
68,
12,
1157,
1765,
12,
2078,
1433,
12,
69,
32059,
68,
330,
3270,
12993,
19,
198,
9132,
37811,
198,
3,
7,
30411,
19578,
7,
4749,
11,
269,
824,
2625,
17015,
25,
362,
368,
26,
9647,
25,
17,
368,
48774,
198,
37811,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
12440,
1502,
25,
198,
2,
2343,
243,
254,
28670,
19,
66,
18294,
43864,
12,
23,
65,
3720,
12,
1157,
1765,
12,
486,
2091,
12,
21,
2934,
1415,
67,
24,
3312,
24137,
198,
2,
2343,
243,
253,
7280,
2670,
67,
3388,
19924,
12,
23,
65,
22,
64,
12,
1157,
1765,
12,
3312,
12993,
12,
65,
13331,
3312,
1507,
34801,
67,
23,
198,
2,
2343,
243,
253,
7280,
19,
66,
22515,
1959,
64,
12,
23,
65,
22,
67,
12,
1157,
1765,
12,
33638,
67,
12,
16,
7012,
19,
66,
20,
9945,
19,
15197,
198,
2,
2343,
243,
253,
7280,
31046,
35195,
64,
15,
12,
23,
65,
22,
67,
12,
1157,
1765,
12,
23362,
68,
12,
3132,
68,
2598,
16344,
19,
16344,
17,
67,
198,
2,
2343,
243,
254,
28670,
64,
18,
65,
3104,
69,
5705,
12,
23,
65,
22,
67,
12,
1157,
1765,
12,
2713,
5237,
12,
1129,
1157,
67,
31911,
69,
2425,
67,
198,
2,
2343,
243,
253,
7280,
24,
28567,
10210,
5705,
12,
23,
65,
22,
68,
12,
1157,
1765,
12,
15,
25870,
12,
43526,
2623,
65,
19,
66,
2670,
5999,
198,
2,
2343,
243,
254,
28670,
24,
48156,
68,
24137,
12,
23,
65,
22,
68,
12,
1157,
1765,
12,
2078,
1433,
12,
69,
32059,
68,
330,
3270,
12993,
19,
198
] | 1.923636 | 825 |
#_______________________________________________________________________________
# Writting results
# requirements fulfillement
RequirSheet = getSheet( CPworkbook, "Requirements" )
if RequirSheet.ptr === Ptr{Void}( 0 )
RequirSheet = createSheet( CPworkbook, "Requirements" )
end
rowIdx = 0
Row = createRow(RequirSheet, rowIdx)
rowIdx += 1
cellIdx = 1
for i in 1:length(MPObjectives)
obj = ""
for j in 1:length(MPObjectives[i].Objectives)
obj = obj * MPObjectives[i].Objectives[j]
end
Cell=createCell(Row, cellIdx); setCellValue(Cell, obj)
cellIdx += 1
end
for i in 1:NBYears
Row = createRow(RequirSheet, rowIdx)
rowIdx += 1
cellIdx = 0
Cell=createCell(Row, cellIdx); setCellValue(Cell, i)
cellIdx += 1
for j in 1:length(MPObjectives)
Cell=createCell(Row, cellIdx); setCellValue(Cell, round(Int, RequirementFulfillment[i, j]))
cellIdx += 1
end
end
# Initial manpower distribution
InitDistSheet = getSheet( CPworkbook, "Initial distribution" )
if InitDistSheet.ptr === Ptr{Void}( 0 )
InitDistSheet = createSheet( CPworkbook, "Initial distribution" )
end
rowIdx = 0
Row = createRow(InitDistSheet, rowIdx)
rowIdx += 1
cellIdx = 2
#for i in 1:length(GuyCareerPaths)
# Cell=createCell(Row, cellIdx); setCellValue(Cell, i)
# cellIdx += 1
#end
index = 1
for i in 1:length(InitManpower)
Row = createRow(InitDistSheet, rowIdx)
rowIdx += 1
cellIdx = 0
Cell=createCell(Row, cellIdx); setCellValue(Cell, InitManpower[i].Academiclvl)
cellIdx += 1
Cell=createCell(Row, cellIdx); setCellValue(Cell, InitManpower[i].Seniority)
cellIdx += 1
for j in 1:length(GuyCareerPaths)
if j in InitMPPartCP[i]
if sol.sol[index] != 0
Cell=createCell(Row, cellIdx); setCellValue(Cell, j); cellIdx += 1
Cell=createCell(Row, cellIdx); setCellValue(Cell, sol.sol[index]); cellIdx += 1
end
index += 1
end
# Cell=createCell(Row, cellIdx);
# if j in InitMPPartCP[i]
# setCellValue(Cell, sol.sol[index])
# index += 1
# else
# setCellValue(Cell, 0)
end
end
# Annual Recruitment
RecruitmentSheet = getSheet( CPworkbook, "Perforemed Recruitment" )
if RecruitmentSheet.ptr === Ptr{Void}( 0 )
RecruitmentSheet = createSheet( CPworkbook, "Perforemed Recruitment" )
end
rowIdx = 0
#Row = createRow(RecruitmentSheet, rowIdx)
rowIdx += 1
#cellIdx = 1
#for i in 1:length(GuyCareerPaths)
# Cell=createCell(Row, cellIdx); setCellValue(Cell, i)
# cellIdx += 1
#end
#Cell=createCell(Row, cellIdx); setCellValue(Cell, "sum")
for i in 1:NBYears
sum = 0
Row = createRow(RecruitmentSheet, rowIdx)
rowIdx += 1
cellIdx = 0
Cell=createCell(Row, cellIdx); setCellValue(Cell, i)
cellIdx += 2
for j in 1:length(GuyCareerPaths)
if sol.sol[InitMPDivisionNb + (i - 1)*length(GuyCareerPaths) + j] != 0
sum += sol.sol[InitMPDivisionNb + (i - 1)*length(GuyCareerPaths) + j]
Cell=createCell(Row, cellIdx); setCellValue(Cell, j)
cellIdx += 1
Cell=createCell(Row, cellIdx); setCellValue(Cell, sol.sol[InitMPDivisionNb + (i - 1)*length(GuyCareerPaths) + j])
cellIdx += 1
end
end
Cell=createCell(Row, 1); setCellValue(Cell, sum)
cellIdx += 1
end
# rectuirment Variables
# rectuirmentVariables = getSheet( CPworkbook, "rectuirmentVariables" )
# if rectuirmentVariables.ptr === Ptr{Void}( 0 )
# rectuirmentVariables = createSheet( CPworkbook, "rectuirmentVariables" )
# end
# Deviation Variables
DeviationVariables = getSheet( CPworkbook, "DeviationVariables" )
if DeviationVariables.ptr === Ptr{Void}( 0 )
DeviationVariables = createSheet( CPworkbook, "DeviationVariables" )
end
rowIdx = 0
Row = createRow(DeviationVariables, rowIdx)
rowIdx += 1
cellIdx = 0
Cell=createCell(Row, cellIdx); setCellValue(Cell, rowIdx)
cellIdx += 1
for i in 1:(length(GuyCareerPaths) * NBYears)
Cell=createCell(Row, cellIdx); setCellValue(Cell, sol.sol[InitMPDivisionNb + i])
cellIdx += 1
if i%length(GuyCareerPaths) == 0
Row = createRow(DeviationVariables, rowIdx)
rowIdx += 1
cellIdx = 0
Cell=createCell(Row, cellIdx); setCellValue(Cell, rowIdx)
cellIdx += 1
end
end
#Positive deviation
rowIdx = 0
Row = createRow(DeviationVariables, rowIdx)
rowIdx += 1
cellIdx = 0
Cell=createCell(Row, cellIdx); setCellValue(Cell, rowIdx)
cellIdx += 1
for i in 1:(length(MPObjectives) * NBYears)
Cell=createCell(Row, cellIdx); setCellValue(Cell, sol.sol[InitMPDivisionNb + AnnualRecDivNb + i])
cellIdx += 1
if i%length(MPObjectives) == 0
Row = createRow(DeviationVariables, rowIdx)
rowIdx += 1
cellIdx = 0
Cell=createCell(Row, cellIdx); setCellValue(Cell, rowIdx)
cellIdx += 1
end
end
# Negative deviation
rowIdx += 2
Row = createRow(DeviationVariables, rowIdx)
rowIdx += 1
cellIdx = 0
Cell=createCell(Row, cellIdx); setCellValue(Cell, rowIdx)
cellIdx += 1
for i in 1:(length(MPObjectives) * NBYears)
Cell=createCell(Row, cellIdx); setCellValue(Cell, sol.sol[InitMPDivisionNb + AnnualRecDivNb + (length(MPObjectives) * NBYears) + i])
cellIdx += 1
if i%length(MPObjectives) == 0
Row = createRow(DeviationVariables, rowIdx)
rowIdx += 1
cellIdx = 0
Cell=createCell(Row, cellIdx); setCellValue(Cell, rowIdx)
cellIdx += 1
end
end
#try rm(joinpath( dirname( Base.source_path() ), "..", "..", "..", "GuyCPResultsAll.xlsx" )) end
write(joinpath( dirname( Base.source_path() ), "..", "..", "..", "GuyCPResultsAllPop.xlsx" ), CPworkbook)
| [
2,
27193,
2602,
37405,
198,
2,
15634,
2535,
2482,
628,
220,
220,
220,
1303,
5359,
32363,
1732,
198,
16844,
343,
3347,
316,
796,
651,
3347,
316,
7,
16932,
1818,
2070,
11,
366,
42249,
1,
1267,
198,
361,
9394,
343,
3347,
316,
13,
20692,
24844,
350,
2213,
90,
53,
1868,
92,
7,
657,
1267,
198,
220,
220,
220,
9394,
343,
3347,
316,
796,
2251,
3347,
316,
7,
16932,
1818,
2070,
11,
366,
42249,
1,
1267,
198,
437,
198,
198,
808,
7390,
87,
796,
657,
198,
25166,
796,
2251,
25166,
7,
16844,
343,
3347,
316,
11,
5752,
7390,
87,
8,
198,
808,
7390,
87,
15853,
352,
198,
198,
3846,
7390,
87,
796,
352,
198,
1640,
1312,
287,
352,
25,
13664,
7,
7378,
10267,
1083,
8,
198,
220,
220,
220,
26181,
796,
13538,
198,
220,
220,
220,
329,
474,
287,
352,
25,
13664,
7,
7378,
10267,
1083,
58,
72,
4083,
10267,
1083,
8,
198,
220,
220,
220,
220,
220,
220,
220,
26181,
796,
26181,
1635,
4904,
10267,
1083,
58,
72,
4083,
10267,
1083,
58,
73,
60,
198,
220,
220,
220,
886,
198,
220,
220,
220,
12440,
28,
17953,
28780,
7,
25166,
11,
2685,
7390,
87,
1776,
900,
28780,
11395,
7,
28780,
11,
26181,
8,
198,
220,
220,
220,
2685,
7390,
87,
15853,
352,
198,
437,
198,
1640,
1312,
287,
352,
25,
45,
17513,
4127,
198,
220,
220,
220,
11314,
796,
2251,
25166,
7,
16844,
343,
3347,
316,
11,
5752,
7390,
87,
8,
198,
220,
220,
220,
5752,
7390,
87,
15853,
352,
198,
220,
220,
220,
2685,
7390,
87,
796,
657,
198,
220,
220,
220,
12440,
28,
17953,
28780,
7,
25166,
11,
2685,
7390,
87,
1776,
900,
28780,
11395,
7,
28780,
11,
1312,
8,
198,
220,
220,
220,
2685,
7390,
87,
15853,
352,
198,
220,
220,
220,
329,
474,
287,
352,
25,
13664,
7,
7378,
10267,
1083,
8,
198,
220,
220,
220,
220,
220,
220,
220,
12440,
28,
17953,
28780,
7,
25166,
11,
2685,
7390,
87,
1776,
900,
28780,
11395,
7,
28780,
11,
2835,
7,
5317,
11,
9394,
24615,
37,
4754,
359,
434,
58,
72,
11,
474,
60,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
2685,
7390,
87,
15853,
352,
198,
220,
220,
220,
886,
198,
437,
628,
198,
220,
220,
220,
1303,
20768,
44803,
6082,
198,
31768,
20344,
3347,
316,
796,
651,
3347,
316,
7,
16932,
1818,
2070,
11,
366,
24243,
6082,
1,
1267,
198,
361,
44707,
20344,
3347,
316,
13,
20692,
24844,
350,
2213,
90,
53,
1868,
92,
7,
657,
1267,
198,
220,
220,
220,
44707,
20344,
3347,
316,
796,
2251,
3347,
316,
7,
16932,
1818,
2070,
11,
366,
24243,
6082,
1,
1267,
198,
437,
198,
198,
808,
7390,
87,
796,
657,
198,
25166,
796,
2251,
25166,
7,
31768,
20344,
3347,
316,
11,
5752,
7390,
87,
8,
198,
808,
7390,
87,
15853,
352,
198,
198,
3846,
7390,
87,
796,
362,
198,
2,
1640,
1312,
287,
352,
25,
13664,
7,
31080,
17784,
263,
15235,
82,
8,
198,
2,
220,
220,
220,
12440,
28,
17953,
28780,
7,
25166,
11,
2685,
7390,
87,
1776,
900,
28780,
11395,
7,
28780,
11,
1312,
8,
198,
2,
220,
220,
220,
2685,
7390,
87,
15853,
352,
198,
2,
437,
198,
198,
9630,
796,
352,
198,
1640,
1312,
287,
352,
25,
13664,
7,
31768,
5124,
6477,
8,
198,
220,
220,
220,
11314,
796,
2251,
25166,
7,
31768,
20344,
3347,
316,
11,
5752,
7390,
87,
8,
198,
220,
220,
220,
5752,
7390,
87,
15853,
352,
198,
220,
220,
220,
2685,
7390,
87,
796,
657,
198,
220,
220,
220,
12440,
28,
17953,
28780,
7,
25166,
11,
2685,
7390,
87,
1776,
900,
28780,
11395,
7,
28780,
11,
44707,
5124,
6477,
58,
72,
4083,
12832,
49113,
47147,
8,
198,
220,
220,
220,
2685,
7390,
87,
15853,
352,
198,
220,
220,
220,
12440,
28,
17953,
28780,
7,
25166,
11,
2685,
7390,
87,
1776,
900,
28780,
11395,
7,
28780,
11,
44707,
5124,
6477,
58,
72,
4083,
31224,
414,
8,
198,
220,
220,
220,
2685,
7390,
87,
15853,
352,
198,
220,
220,
220,
329,
474,
287,
352,
25,
13664,
7,
31080,
17784,
263,
15235,
82,
8,
198,
220,
220,
220,
220,
220,
220,
220,
611,
474,
287,
44707,
7378,
7841,
8697,
58,
72,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
1540,
13,
34453,
58,
9630,
60,
14512,
657,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
12440,
28,
17953,
28780,
7,
25166,
11,
2685,
7390,
87,
1776,
900,
28780,
11395,
7,
28780,
11,
474,
1776,
2685,
7390,
87,
15853,
352,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
12440,
28,
17953,
28780,
7,
25166,
11,
2685,
7390,
87,
1776,
900,
28780,
11395,
7,
28780,
11,
1540,
13,
34453,
58,
9630,
36563,
2685,
7390,
87,
15853,
352,
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,
6376,
15853,
352,
198,
220,
220,
220,
220,
220,
220,
220,
886,
198,
2,
220,
220,
220,
220,
220,
220,
220,
12440,
28,
17953,
28780,
7,
25166,
11,
2685,
7390,
87,
1776,
198,
198,
2,
220,
220,
220,
220,
220,
220,
220,
611,
474,
287,
44707,
7378,
7841,
8697,
58,
72,
60,
198,
2,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
900,
28780,
11395,
7,
28780,
11,
1540,
13,
34453,
58,
9630,
12962,
198,
2,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6376,
15853,
352,
198,
2,
220,
220,
220,
220,
220,
220,
220,
2073,
198,
2,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
900,
28780,
11395,
7,
28780,
11,
657,
8,
198,
220,
220,
220,
886,
198,
437,
628,
220,
220,
220,
1303,
16328,
3311,
4872,
434,
198,
6690,
4872,
434,
3347,
316,
796,
651,
3347,
316,
7,
16932,
1818,
2070,
11,
366,
5990,
754,
1150,
3311,
4872,
434,
1,
1267,
198,
361,
3311,
4872,
434,
3347,
316,
13,
20692,
24844,
350,
2213,
90,
53,
1868,
92,
7,
657,
1267,
198,
220,
220,
220,
3311,
4872,
434,
3347,
316,
796,
2251,
3347,
316,
7,
16932,
1818,
2070,
11,
366,
5990,
754,
1150,
3311,
4872,
434,
1,
1267,
198,
437,
198,
198,
808,
7390,
87,
796,
657,
198,
2,
25166,
796,
2251,
25166,
7,
6690,
4872,
434,
3347,
316,
11,
5752,
7390,
87,
8,
198,
808,
7390,
87,
15853,
352,
198,
198,
2,
3846,
7390,
87,
796,
352,
198,
2,
1640,
1312,
287,
352,
25,
13664,
7,
31080,
17784,
263,
15235,
82,
8,
198,
2,
220,
220,
220,
12440,
28,
17953,
28780,
7,
25166,
11,
2685,
7390,
87,
1776,
900,
28780,
11395,
7,
28780,
11,
1312,
8,
198,
2,
220,
220,
220,
2685,
7390,
87,
15853,
352,
198,
2,
437,
198,
2,
28780,
28,
17953,
28780,
7,
25166,
11,
2685,
7390,
87,
1776,
900,
28780,
11395,
7,
28780,
11,
366,
16345,
4943,
198,
198,
1640,
1312,
287,
352,
25,
45,
17513,
4127,
198,
220,
220,
220,
2160,
796,
657,
198,
220,
220,
220,
11314,
796,
2251,
25166,
7,
6690,
4872,
434,
3347,
316,
11,
5752,
7390,
87,
8,
198,
220,
220,
220,
5752,
7390,
87,
15853,
352,
198,
220,
220,
220,
2685,
7390,
87,
796,
657,
198,
220,
220,
220,
12440,
28,
17953,
28780,
7,
25166,
11,
2685,
7390,
87,
1776,
900,
28780,
11395,
7,
28780,
11,
1312,
8,
198,
220,
220,
220,
2685,
7390,
87,
15853,
362,
198,
220,
220,
220,
329,
474,
287,
352,
25,
13664,
7,
31080,
17784,
263,
15235,
82,
8,
198,
220,
220,
220,
220,
220,
220,
220,
611,
1540,
13,
34453,
58,
31768,
44,
5760,
452,
1166,
45,
65,
1343,
357,
72,
532,
352,
27493,
13664,
7,
31080,
17784,
263,
15235,
82,
8,
1343,
474,
60,
14512,
657,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2160,
15853,
1540,
13,
34453,
58,
31768,
44,
5760,
452,
1166,
45,
65,
1343,
357,
72,
532,
352,
27493,
13664,
7,
31080,
17784,
263,
15235,
82,
8,
1343,
474,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
12440,
28,
17953,
28780,
7,
25166,
11,
2685,
7390,
87,
1776,
900,
28780,
11395,
7,
28780,
11,
474,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2685,
7390,
87,
15853,
352,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
12440,
28,
17953,
28780,
7,
25166,
11,
2685,
7390,
87,
1776,
900,
28780,
11395,
7,
28780,
11,
1540,
13,
34453,
58,
31768,
44,
5760,
452,
1166,
45,
65,
1343,
357,
72,
532,
352,
27493,
13664,
7,
31080,
17784,
263,
15235,
82,
8,
1343,
474,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2685,
7390,
87,
15853,
352,
198,
220,
220,
220,
220,
220,
220,
220,
886,
198,
220,
220,
220,
886,
198,
220,
220,
220,
12440,
28,
17953,
28780,
7,
25166,
11,
352,
1776,
900,
28780,
11395,
7,
28780,
11,
2160,
8,
198,
220,
220,
220,
2685,
7390,
87,
15853,
352,
198,
437,
628,
220,
220,
220,
1303,
13621,
84,
343,
434,
15965,
2977,
198,
198,
2,
13621,
84,
343,
434,
23907,
2977,
796,
651,
3347,
316,
7,
16932,
1818,
2070,
11,
366,
2554,
84,
343,
434,
23907,
2977,
1,
1267,
198,
2,
611,
13621,
84,
343,
434,
23907,
2977,
13,
20692,
24844,
350,
2213,
90,
53,
1868,
92,
7,
657,
1267,
198,
2,
220,
220,
220,
220,
13621,
84,
343,
434,
23907,
2977,
796,
2251,
3347,
316,
7,
16932,
1818,
2070,
11,
366,
2554,
84,
343,
434,
23907,
2977,
1,
1267,
198,
2,
886,
628,
220,
220,
220,
1303,
6245,
3920,
15965,
2977,
198,
198,
13603,
3920,
23907,
2977,
796,
651,
3347,
316,
7,
16932,
1818,
2070,
11,
366,
13603,
3920,
23907,
2977,
1,
1267,
198,
361,
6245,
3920,
23907,
2977,
13,
20692,
24844,
350,
2213,
90,
53,
1868,
92,
7,
657,
1267,
198,
220,
220,
220,
6245,
3920,
23907,
2977,
796,
2251,
3347,
316,
7,
16932,
1818,
2070,
11,
366,
13603,
3920,
23907,
2977,
1,
1267,
198,
437,
198,
198,
808,
7390,
87,
796,
657,
198,
25166,
796,
2251,
25166,
7,
13603,
3920,
23907,
2977,
11,
5752,
7390,
87,
8,
198,
808,
7390,
87,
15853,
352,
198,
198,
3846,
7390,
87,
796,
657,
198,
28780,
28,
17953,
28780,
7,
25166,
11,
2685,
7390,
87,
1776,
900,
28780,
11395,
7,
28780,
11,
5752,
7390,
87,
8,
198,
3846,
7390,
87,
15853,
352,
198,
1640,
1312,
287,
352,
37498,
13664,
7,
31080,
17784,
263,
15235,
82,
8,
1635,
399,
17513,
4127,
8,
628,
220,
220,
220,
12440,
28,
17953,
28780,
7,
25166,
11,
2685,
7390,
87,
1776,
900,
28780,
11395,
7,
28780,
11,
1540,
13,
34453,
58,
31768,
44,
5760,
452,
1166,
45,
65,
1343,
1312,
12962,
198,
220,
220,
220,
2685,
7390,
87,
15853,
352,
198,
220,
220,
220,
611,
1312,
4,
13664,
7,
31080,
17784,
263,
15235,
82,
8,
6624,
657,
198,
220,
220,
220,
220,
220,
220,
220,
11314,
796,
2251,
25166,
7,
13603,
3920,
23907,
2977,
11,
5752,
7390,
87,
8,
198,
220,
220,
220,
220,
220,
220,
220,
5752,
7390,
87,
15853,
352,
628,
220,
220,
220,
220,
220,
220,
220,
2685,
7390,
87,
796,
657,
198,
220,
220,
220,
220,
220,
220,
220,
12440,
28,
17953,
28780,
7,
25166,
11,
2685,
7390,
87,
1776,
900,
28780,
11395,
7,
28780,
11,
5752,
7390,
87,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2685,
7390,
87,
15853,
352,
198,
220,
220,
220,
886,
198,
437,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
21604,
1800,
28833,
198,
808,
7390,
87,
796,
657,
198,
25166,
796,
2251,
25166,
7,
13603,
3920,
23907,
2977,
11,
5752,
7390,
87,
8,
198,
808,
7390,
87,
15853,
352,
198,
198,
3846,
7390,
87,
796,
657,
198,
28780,
28,
17953,
28780,
7,
25166,
11,
2685,
7390,
87,
1776,
900,
28780,
11395,
7,
28780,
11,
5752,
7390,
87,
8,
198,
3846,
7390,
87,
15853,
352,
198,
1640,
1312,
287,
352,
37498,
13664,
7,
7378,
10267,
1083,
8,
1635,
399,
17513,
4127,
8,
628,
220,
220,
220,
12440,
28,
17953,
28780,
7,
25166,
11,
2685,
7390,
87,
1776,
900,
28780,
11395,
7,
28780,
11,
1540,
13,
34453,
58,
31768,
44,
5760,
452,
1166,
45,
65,
1343,
16328,
6690,
24095,
45,
65,
1343,
1312,
12962,
198,
220,
220,
220,
2685,
7390,
87,
15853,
352,
198,
220,
220,
220,
611,
1312,
4,
13664,
7,
7378,
10267,
1083,
8,
6624,
657,
198,
220,
220,
220,
220,
220,
220,
220,
11314,
796,
2251,
25166,
7,
13603,
3920,
23907,
2977,
11,
5752,
7390,
87,
8,
198,
220,
220,
220,
220,
220,
220,
220,
5752,
7390,
87,
15853,
352,
628,
220,
220,
220,
220,
220,
220,
220,
2685,
7390,
87,
796,
657,
198,
220,
220,
220,
220,
220,
220,
220,
12440,
28,
17953,
28780,
7,
25166,
11,
2685,
7390,
87,
1776,
900,
28780,
11395,
7,
28780,
11,
5752,
7390,
87,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2685,
7390,
87,
15853,
352,
198,
220,
220,
220,
886,
198,
437,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
36183,
28833,
198,
808,
7390,
87,
15853,
362,
198,
25166,
796,
2251,
25166,
7,
13603,
3920,
23907,
2977,
11,
5752,
7390,
87,
8,
198,
808,
7390,
87,
15853,
352,
198,
198,
3846,
7390,
87,
796,
657,
198,
28780,
28,
17953,
28780,
7,
25166,
11,
2685,
7390,
87,
1776,
900,
28780,
11395,
7,
28780,
11,
5752,
7390,
87,
8,
198,
3846,
7390,
87,
15853,
352,
198,
1640,
1312,
287,
352,
37498,
13664,
7,
7378,
10267,
1083,
8,
1635,
399,
17513,
4127,
8,
628,
220,
220,
220,
12440,
28,
17953,
28780,
7,
25166,
11,
2685,
7390,
87,
1776,
900,
28780,
11395,
7,
28780,
11,
1540,
13,
34453,
58,
31768,
44,
5760,
452,
1166,
45,
65,
1343,
16328,
6690,
24095,
45,
65,
1343,
357,
13664,
7,
7378,
10267,
1083,
8,
1635,
399,
17513,
4127,
8,
1343,
1312,
12962,
198,
220,
220,
220,
2685,
7390,
87,
15853,
352,
198,
220,
220,
220,
611,
1312,
4,
13664,
7,
7378,
10267,
1083,
8,
6624,
657,
198,
220,
220,
220,
220,
220,
220,
220,
11314,
796,
2251,
25166,
7,
13603,
3920,
23907,
2977,
11,
5752,
7390,
87,
8,
198,
220,
220,
220,
220,
220,
220,
220,
5752,
7390,
87,
15853,
352,
628,
220,
220,
220,
220,
220,
220,
220,
2685,
7390,
87,
796,
657,
198,
220,
220,
220,
220,
220,
220,
220,
12440,
28,
17953,
28780,
7,
25166,
11,
2685,
7390,
87,
1776,
900,
28780,
11395,
7,
28780,
11,
5752,
7390,
87,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2685,
7390,
87,
15853,
352,
198,
220,
220,
220,
886,
198,
437,
198,
198,
2,
28311,
42721,
7,
22179,
6978,
7,
26672,
3672,
7,
7308,
13,
10459,
62,
6978,
3419,
10612,
366,
492,
1600,
366,
492,
1600,
366,
492,
1600,
366,
31080,
34,
4805,
274,
8376,
3237,
13,
87,
7278,
87,
1,
15306,
886,
198,
13564,
7,
22179,
6978,
7,
26672,
3672,
7,
7308,
13,
10459,
62,
6978,
3419,
10612,
366,
492,
1600,
366,
492,
1600,
366,
492,
1600,
366,
31080,
34,
4805,
274,
8376,
3237,
16979,
13,
87,
7278,
87,
1,
10612,
16932,
1818,
2070,
8,
198
] | 2.293296 | 2,506 |
# This file was generated by the Julia Swagger Code Generator
# Do not modify this file directly. Modify the swagger specification instead.
mutable struct AzureReachabilityReport <: SwaggerModel
aggregationLevel::Any # spec type: Union{ Nothing, String } # spec name: aggregationLevel
providerLocation::Any # spec type: Union{ Nothing, AzureReachabilityReportLocation } # spec name: providerLocation
reachabilityReport::Any # spec type: Union{ Nothing, Vector{AzureReachabilityReportItem} } # spec name: reachabilityReport
function AzureReachabilityReport(;aggregationLevel=nothing, providerLocation=nothing, reachabilityReport=nothing)
o = new()
validate_property(AzureReachabilityReport, Symbol("aggregationLevel"), aggregationLevel)
setfield!(o, Symbol("aggregationLevel"), aggregationLevel)
validate_property(AzureReachabilityReport, Symbol("providerLocation"), providerLocation)
setfield!(o, Symbol("providerLocation"), providerLocation)
validate_property(AzureReachabilityReport, Symbol("reachabilityReport"), reachabilityReport)
setfield!(o, Symbol("reachabilityReport"), reachabilityReport)
o
end
end # type AzureReachabilityReport
const _property_map_AzureReachabilityReport = Dict{Symbol,Symbol}(Symbol("aggregationLevel")=>Symbol("aggregationLevel"), Symbol("providerLocation")=>Symbol("providerLocation"), Symbol("reachabilityReport")=>Symbol("reachabilityReport"))
const _property_types_AzureReachabilityReport = Dict{Symbol,String}(Symbol("aggregationLevel")=>"String", Symbol("providerLocation")=>"AzureReachabilityReportLocation", Symbol("reachabilityReport")=>"Vector{AzureReachabilityReportItem}")
Base.propertynames(::Type{ AzureReachabilityReport }) = collect(keys(_property_map_AzureReachabilityReport))
Swagger.property_type(::Type{ AzureReachabilityReport }, name::Symbol) = Union{Nothing,eval(Base.Meta.parse(_property_types_AzureReachabilityReport[name]))}
Swagger.field_name(::Type{ AzureReachabilityReport }, property_name::Symbol) = _property_map_AzureReachabilityReport[property_name]
function check_required(o::AzureReachabilityReport)
(getproperty(o, Symbol("aggregationLevel")) === nothing) && (return false)
(getproperty(o, Symbol("providerLocation")) === nothing) && (return false)
(getproperty(o, Symbol("reachabilityReport")) === nothing) && (return false)
true
end
function validate_property(::Type{ AzureReachabilityReport }, name::Symbol, val)
end
| [
2,
770,
2393,
373,
7560,
416,
262,
22300,
2451,
7928,
6127,
35986,
198,
2,
2141,
407,
13096,
428,
2393,
3264,
13,
3401,
1958,
262,
1509,
7928,
20855,
2427,
13,
628,
198,
76,
18187,
2878,
22134,
3041,
620,
1799,
19100,
1279,
25,
2451,
7928,
17633,
198,
220,
220,
220,
46500,
4971,
3712,
7149,
1303,
1020,
2099,
25,
4479,
90,
10528,
11,
10903,
1782,
1303,
1020,
1438,
25,
46500,
4971,
198,
220,
220,
220,
10131,
14749,
3712,
7149,
1303,
1020,
2099,
25,
4479,
90,
10528,
11,
22134,
3041,
620,
1799,
19100,
14749,
1782,
1303,
1020,
1438,
25,
10131,
14749,
198,
220,
220,
220,
3151,
1799,
19100,
3712,
7149,
1303,
1020,
2099,
25,
4479,
90,
10528,
11,
20650,
90,
26903,
495,
3041,
620,
1799,
19100,
7449,
92,
1782,
1303,
1020,
1438,
25,
3151,
1799,
19100,
628,
220,
220,
220,
2163,
22134,
3041,
620,
1799,
19100,
7,
26,
9460,
43068,
4971,
28,
22366,
11,
10131,
14749,
28,
22366,
11,
3151,
1799,
19100,
28,
22366,
8,
198,
220,
220,
220,
220,
220,
220,
220,
267,
796,
649,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
26571,
62,
26745,
7,
26903,
495,
3041,
620,
1799,
19100,
11,
38357,
7203,
9460,
43068,
4971,
12340,
46500,
4971,
8,
198,
220,
220,
220,
220,
220,
220,
220,
900,
3245,
0,
7,
78,
11,
38357,
7203,
9460,
43068,
4971,
12340,
46500,
4971,
8,
198,
220,
220,
220,
220,
220,
220,
220,
26571,
62,
26745,
7,
26903,
495,
3041,
620,
1799,
19100,
11,
38357,
7203,
15234,
1304,
14749,
12340,
10131,
14749,
8,
198,
220,
220,
220,
220,
220,
220,
220,
900,
3245,
0,
7,
78,
11,
38357,
7203,
15234,
1304,
14749,
12340,
10131,
14749,
8,
198,
220,
220,
220,
220,
220,
220,
220,
26571,
62,
26745,
7,
26903,
495,
3041,
620,
1799,
19100,
11,
38357,
7203,
16250,
1799,
19100,
12340,
3151,
1799,
19100,
8,
198,
220,
220,
220,
220,
220,
220,
220,
900,
3245,
0,
7,
78,
11,
38357,
7203,
16250,
1799,
19100,
12340,
3151,
1799,
19100,
8,
198,
220,
220,
220,
220,
220,
220,
220,
267,
198,
220,
220,
220,
886,
198,
437,
1303,
2099,
22134,
3041,
620,
1799,
19100,
198,
198,
9979,
4808,
26745,
62,
8899,
62,
26903,
495,
3041,
620,
1799,
19100,
796,
360,
713,
90,
13940,
23650,
11,
13940,
23650,
92,
7,
13940,
23650,
7203,
9460,
43068,
4971,
4943,
14804,
13940,
23650,
7203,
9460,
43068,
4971,
12340,
38357,
7203,
15234,
1304,
14749,
4943,
14804,
13940,
23650,
7203,
15234,
1304,
14749,
12340,
38357,
7203,
16250,
1799,
19100,
4943,
14804,
13940,
23650,
7203,
16250,
1799,
19100,
48774,
198,
9979,
4808,
26745,
62,
19199,
62,
26903,
495,
3041,
620,
1799,
19100,
796,
360,
713,
90,
13940,
23650,
11,
10100,
92,
7,
13940,
23650,
7203,
9460,
43068,
4971,
4943,
14804,
1,
10100,
1600,
38357,
7203,
15234,
1304,
14749,
4943,
14804,
1,
26903,
495,
3041,
620,
1799,
19100,
14749,
1600,
38357,
7203,
16250,
1799,
19100,
4943,
14804,
1,
38469,
90,
26903,
495,
3041,
620,
1799,
19100,
7449,
92,
4943,
198,
14881,
13,
26745,
14933,
7,
3712,
6030,
90,
22134,
3041,
620,
1799,
19100,
32092,
796,
2824,
7,
13083,
28264,
26745,
62,
8899,
62,
26903,
495,
3041,
620,
1799,
19100,
4008,
198,
10462,
7928,
13,
26745,
62,
4906,
7,
3712,
6030,
90,
22134,
3041,
620,
1799,
19100,
8964,
1438,
3712,
13940,
23650,
8,
796,
4479,
90,
18465,
11,
18206,
7,
14881,
13,
48526,
13,
29572,
28264,
26745,
62,
19199,
62,
26903,
495,
3041,
620,
1799,
19100,
58,
3672,
60,
4008,
92,
198,
10462,
7928,
13,
3245,
62,
3672,
7,
3712,
6030,
90,
22134,
3041,
620,
1799,
19100,
8964,
3119,
62,
3672,
3712,
13940,
23650,
8,
796,
220,
4808,
26745,
62,
8899,
62,
26903,
495,
3041,
620,
1799,
19100,
58,
26745,
62,
3672,
60,
198,
198,
8818,
2198,
62,
35827,
7,
78,
3712,
26903,
495,
3041,
620,
1799,
19100,
8,
198,
220,
220,
220,
357,
1136,
26745,
7,
78,
11,
38357,
7203,
9460,
43068,
4971,
48774,
24844,
2147,
8,
11405,
357,
7783,
3991,
8,
198,
220,
220,
220,
357,
1136,
26745,
7,
78,
11,
38357,
7203,
15234,
1304,
14749,
48774,
24844,
2147,
8,
11405,
357,
7783,
3991,
8,
198,
220,
220,
220,
357,
1136,
26745,
7,
78,
11,
38357,
7203,
16250,
1799,
19100,
48774,
24844,
2147,
8,
11405,
357,
7783,
3991,
8,
198,
220,
220,
220,
2081,
198,
437,
198,
198,
8818,
26571,
62,
26745,
7,
3712,
6030,
90,
22134,
3041,
620,
1799,
19100,
8964,
1438,
3712,
13940,
23650,
11,
1188,
8,
198,
437,
198
] | 3.407104 | 732 |
"
SelectionOperator represents the method that selects a portion of the population
for crossover and mutation.
# Fields
- `_method::Function`: selection method between individuals.
- `_nSelectedParents::Real`: number of selected individuals. Its values can either
be an integer number, which directly represents the number of individuals that
are going to be picked for selection, or a floating point number, which then
represents the percentage of the population that is going to be selected.
- `needsComparison::Bool = true`: tells wether the user wants the system to compare
between the individuals in order to select between them.
- `_samplingWithRep::Bool`: tells wether the user wants the system to perform the
selection with replacement (`true`) or not (`false`).
- `_varArgs::Array{Any}`: arguments of the selection method, if necessary.
"
struct SelectionOperator
_method::Function
_nSelectedParents::Real
_needsComparison::Bool
_samplingWithRep::Bool
_varArgs::Array{Any}
end # struct
"""
getMethod(selector::SelectionOperator)::Function
Returns the method for select the parents.
"""
getMethod(selector::SelectionOperator)::Function = selector._method
# function
"""
needsComparison(selector::SelectionOperator)::Bool
Indicates wether the selection method needs to compare between individuals
or not.
"""
needsComparison(selector::SelectionOperator)::Bool = selector._needsComparison
# function
"""
getDefaultSelector()::Tuple{Function, Array}
Returns the default selection method, which is [`tournamentSelector`](@ref) between
4 individuals.
"""
function getDefaultSelector()::Tuple{Function, Array}
return tournamentSelector, [4]
end # function
"""
getNParents(selector::SelectionOperator)::Real
Returns the attribute that represents the number of parents that are going to be selected.
"""
getNSelectedParents(selector::SelectionOperator)::Real = selector._nSelectedParents
# function
"""
samplingWithReplacement(selector::SelectionOperator)::Bool
"""
samplingWithReplacement(selector::SelectionOperator)::Bool = selector._samplingWithRep
# function
"""
getFunctionArgs(selector::SelectionOperator)::Array
Obtains the aditional arguments associated to selector method.
"""
getFunctionArgs(selector::SelectionOperator)::Array = selector._varArgs
# function
"""
selectParentsWithReplacement(selector::SelectionOperator, population::Array{Individual},
evaluator::Evaluator, rng::Random.AbstractRNG)::Array{Individual}
Performs a selection between individuals with replacement using the comparison
function of the `Evaluator`.
"""
function selectParentsWithReplacement(selector::SelectionOperator, population::Array{Individual},
evaluator::Evaluator, rng::Random.AbstractRNG)::Array{Individual}
nSelectedParents = getNSelectedParents(selector)
compare = getCompareFunction(evaluator)
popSize = length(population)
parents = Array{Individual}(undef, nSelectedParents)
method = getMethod(selector)
functionArgs = getFunctionArgs(selector)
for i=eachindex(parents)
if needsComparison(selector)
index = method(population, compare, rng, functionArgs...)
else
index = method(population, rng, functionArgs...)
end
parents[i] = population[index]
end
return parents
end # function
"""
selectParentsWithoutReplacement(selector::SelectionOperator,
population::Array{Individual},
evaluator::Evaluator,
rng::Random.AbstractRNG)::Array{Individual}
Performs a selection between individuals without replacement using the comparison
function of the `Evaluator`.
"""
function selectParentsWithoutReplacement(selector::SelectionOperator,
population::Array{Individual},
evaluator::Evaluator,
rng::Random.AbstractRNG)::Array{Individual}
nSelectedParents = getNSelectedParents(selector)
compare = getCompareFunction(evaluator)
popSize = length(population)
copyPopulation = copyPop(population)
indexes = collect(1:popSize)
method = getMethod(selector)
functionArgs = getFunctionArgs(selector)
for i=1:nSelectedParents
if needsComparison(selector)
index = method(copyPopulation, compare, rng, functionArgs...)
else
index = method(copyPopulation, rng, functionArgs...)
end
copyPopulation[index] = copyPopulation[end]
pop!(copyPopulation)
indexes[index], indexes[end-i+1] = indexes[end-i+1], indexes[index]
end
parents = population[indexes[end-nSelectedParents+1:end]]
return parents
end # function
"""
selectParents_(selector::SelectionOperator, population::Array{Individual},
evaluator::Evaluator, rng::Random.AbstractRNG)
Performs the selection of individuals given by the selection method and using
the comparison function between individuals of the `Evaluator`.
"""
function selectParents_(selector::SelectionOperator, population::Array{Individual},
evaluator::Evaluator, rng::Random.AbstractRNG)
if samplingWithReplacement(selector)
selectParentsWithReplacement(selector, population, evaluator, rng)
else
selectParentsWithoutReplacement(selector, population, evaluator, rng)
end
end # function
"""
randomSelector(population::Array{Individual}, rng::Random.AbstractRNG)
Performs a random selection between the individuals of a population.
# Mandatory Arguments
- `population::Array{Individual}`: population of individuals that are going to
be selected.
- `rng::Random.AbstractRNG`: random number generator of the experiment.
# Returns
The index of the selected individual.
See also: [`setSelector`](@ref)
"""
function randomSelector(population::Array{Individual}, rng::Random.AbstractRNG)
rand(rng, UInt16)%(length(population)) + 1
end # function
"""
tournamentSelector(population::Array{Individual}, compare::Function,
rng::Random.AbstractRNG, k::Integer)
Performs a tournament selection between the individuals of a population.
# Mandatory Arguments
- `population::Array{Individual}`: population of individuals that are going to
be selected.
- `compare::Function`: `Evaluator`'s comparison method between individuals to
decide which ones win the tournament.
- `rng::Random.AbstractRNG`: random number generator of the experiment.
# Arguments
- `k::Integer`: number of individuals that compete in the tournament. If `k`
equals 1, it will be a random selection between the individuals (see
[`randomSelector`](@ref)).
# Returns
The index of the selected individual.
See also: [`setSelector`](@ref)
"""
function tournamentSelector(population::Array{Individual}, compare::Function,
rng::Random.AbstractRNG, k::Integer)
nInd = length(population) # Number of individuals of the population
bestIndex = rand(rng, UInt16) % nInd + 1
best = population[bestIndex]
for i=2:k
currentIndex = rand(rng, UInt16) % nInd + 1
current = population[currentIndex]
bestIndex = compare(best, current) ? bestIndex : currentIndex
best = population[bestIndex]
end
return bestIndex
end # function
"""
function tournamentSelector(fitnesses::Array, compare::Function, rng::Random.AbstractRNG, k::Integer)
nInd = length(fitnesses) # Number of individuals of the population
bestIndex = rand(rng, UInt) % nInd + 1
best = fitnesses[bestIndex]
for i=2:k
currentIndex = rand(rng, UInt) % nInd + 1
current = fitnesses[currentIndex]
bestIndex = compare(best, current) ? bestIndex : currentIndex
best = fitnesses[bestIndex]
end
return bestIndex
end
"""
function rouletteSelector(fitnesses::Array, compare::Function, rng::Random.AbstractRNG, k::Integer=-1)
minimize = compare(1,2)
popSize = length(fitnesses)
if minimize
max = maximum(fitnesses)
fitnesses = map(x->abs(x-max), fitnesses)
end
if k < 0
k = popSize
indexes = collect(1:popSize)
else
if k < 50
indexes = randomIndexSelection(popSize, k, rng)
else
indexes = randomIndexSelection2(popSize, k, rng)
end
fitnesses = fitnesses[indexes]
end
sumFitness = sum(fitnesses)
selected = 1
random = rand(rng, 0:sumFitness)
random -= fitnesses[1]
while random >= 0
selected += 1
random -= fitnesses[selected]
end
return indexes[selected]
end
function rankingSelector(fitnesses::Array, compare::Function, rng::Random.AbstractRNG, k::Integer=-1)
minimize = compare(1,2)
popSize = length(fitnesses)
if minimize
newFitnesses = copy(fitnesses)
max = maximum(newFitnesses)
newFitnesses = map(x->abs(x-max), newFitnesses)
end
if k < 0
k = popSize
indexes = collect(1:popSize)
newFitnesses = fitnesses
else
if k < 50
indexes = randomIndexSelection(popSize, k, rng)
else
indexes = randomIndexSelection2(popSize, k, rng)
end
newFitnesses = fitnesses[indexes]
end
sumFitness = sum(fitnesses)
selected = 1
random = rand(rng, 0:sumFitness)
random -= fitnesses[1]
while random >= 0
selected += 1
random -= fitnesses[selected]
end
return indexes[selected]
end
"""
function selectParentsWithoutReplacement(selector::SelectionOperator,
population::Array{Individual},
nParents::Integer, evaluator::Evaluator, rng::Random.AbstractRNG)
nSelectedParents = getNSelectedParents(selector)
compare = getCompareFitness(evaluator)
popSize = length(population)
if !(typeof(nSelectedParents) <: Integer)
nSelectedParents = convert(Integer, round(nSelectedParents * popSize))
remainder = nSelectedParents % nParents
if remainder != 0
nSelectedParents = nSelectedParents + nParents - remainder
end
if nSelectedParents > popSize
nSelectedParents -= nParents
end
end
indexes = collect(1:popSize)
if selector._individualMode == "fitness"
fitnesses = getFitness(population)
for i=1:nSelectedParents
if needsComparison(selector)
index = selector._method(fitnesses, compare, rng, selector._varArgs...)
fitnesses[index] = fitnesses[end]
pop!(fitnesses)
indexes[index], indexes[end-i+1] = indexes[end-i+1], indexes[index]
else
index = selector._method(fitnesses, rng, selector._varArgs...)
fitnesses[index] = fitnesses[end]
pop!(fitnesses)
indexes[index], indexes[end-i+1] = indexes[end-i+1], indexes[index]
end
end
elseif selector._individualMode == "representation"
indReps = getGenotype(population)
for i=1:nSelectedParents
if needsComparison(selector)
index = selector._method(indReps, compare, rng, selector._varArgs...)
indReps[index] = indReps[end]
pop!(indReps)
indexes[index], indexes[end-i+1] = indexes[end-i+1], indexes[index]
else
index = selector._method(indReps, rng, selector._varArgs...)
indReps[index] = indReps[end]
pop!(indReps)
indexes[index], indexes[end-i+1] = indexes[end-i+1], indexes[index]
end
end
else
fitnesses = getFitness(population)
indReps = getGenotype(population)
for i=1:nSelectedParents
if needsComparison(selector)
index = selector._method(indReps, fitnesses, compare, rng, selector._varArgs...)
indReps[index] = indReps[end]
pop!(indReps)
fitnesses[index] = fitnesses[end]
pop!(fitnesses)
indexes[index], indexes[end-i+1] = indexes[end-i+1], indexes[index]
else
index = selector._method(indReps, fitnesses, rng, selector._varArgs...)
indReps[index] = indReps[end]
pop!(indReps)
fitnesses[index] = fitnesses[end]
pop!(fitnesses)
indexes[index], indexes[end-i+1] = indexes[end-i+1], indexes[index]
end
end
end
parents = deepcopy(population[indexes[end-nParents+1:end]])
return parents
end # function
"""
| [
1,
198,
4653,
1564,
18843,
1352,
6870,
262,
2446,
326,
40573,
257,
6903,
286,
262,
3265,
198,
1640,
27668,
290,
15148,
13,
198,
198,
2,
23948,
198,
12,
4600,
62,
24396,
3712,
22203,
63,
25,
6356,
2446,
1022,
3925,
13,
198,
12,
4600,
62,
77,
4653,
12609,
42969,
3712,
15633,
63,
25,
1271,
286,
6163,
3925,
13,
6363,
3815,
460,
2035,
198,
220,
220,
220,
307,
281,
18253,
1271,
11,
543,
3264,
6870,
262,
1271,
286,
3925,
326,
198,
220,
220,
220,
389,
1016,
284,
307,
6497,
329,
6356,
11,
393,
257,
12462,
966,
1271,
11,
543,
788,
198,
220,
220,
220,
6870,
262,
5873,
286,
262,
3265,
326,
318,
1016,
284,
307,
6163,
13,
198,
12,
4600,
50032,
50249,
1653,
3712,
33,
970,
796,
2081,
63,
25,
4952,
266,
6750,
262,
2836,
3382,
262,
1080,
284,
8996,
198,
220,
220,
220,
1022,
262,
3925,
287,
1502,
284,
2922,
1022,
606,
13,
198,
12,
4600,
62,
37687,
11347,
3152,
6207,
3712,
33,
970,
63,
25,
4952,
266,
6750,
262,
2836,
3382,
262,
1080,
284,
1620,
262,
198,
220,
220,
220,
6356,
351,
9014,
357,
63,
7942,
63,
8,
393,
407,
357,
63,
9562,
63,
737,
198,
12,
4600,
62,
7785,
42035,
3712,
19182,
90,
7149,
92,
63,
25,
7159,
286,
262,
6356,
2446,
11,
611,
3306,
13,
198,
1,
198,
7249,
29538,
18843,
1352,
198,
220,
220,
220,
4808,
24396,
3712,
22203,
198,
220,
220,
220,
4808,
77,
4653,
12609,
42969,
3712,
15633,
198,
220,
220,
220,
4808,
50032,
50249,
1653,
3712,
33,
970,
198,
220,
220,
220,
4808,
37687,
11347,
3152,
6207,
3712,
33,
970,
198,
220,
220,
220,
4808,
7785,
42035,
3712,
19182,
90,
7149,
92,
198,
437,
1303,
2878,
628,
198,
198,
37811,
198,
220,
220,
220,
651,
17410,
7,
19738,
273,
3712,
4653,
1564,
18843,
1352,
2599,
25,
22203,
198,
198,
35561,
262,
2446,
329,
2922,
262,
3397,
13,
198,
37811,
198,
1136,
17410,
7,
19738,
273,
3712,
4653,
1564,
18843,
1352,
2599,
25,
22203,
796,
31870,
13557,
24396,
198,
2,
2163,
628,
198,
198,
37811,
198,
220,
220,
220,
2476,
50249,
1653,
7,
19738,
273,
3712,
4653,
1564,
18843,
1352,
2599,
25,
33,
970,
198,
198,
5497,
16856,
266,
6750,
262,
6356,
2446,
2476,
284,
8996,
1022,
3925,
198,
273,
407,
13,
198,
37811,
198,
50032,
50249,
1653,
7,
19738,
273,
3712,
4653,
1564,
18843,
1352,
2599,
25,
33,
970,
796,
31870,
13557,
50032,
50249,
1653,
198,
2,
2163,
628,
198,
198,
37811,
198,
220,
220,
220,
651,
19463,
17563,
273,
33529,
25,
51,
29291,
90,
22203,
11,
15690,
92,
198,
198,
35561,
262,
4277,
6356,
2446,
11,
543,
318,
685,
63,
83,
5138,
17563,
273,
63,
16151,
31,
5420,
8,
1022,
198,
19,
3925,
13,
198,
37811,
198,
8818,
651,
19463,
17563,
273,
33529,
25,
51,
29291,
90,
22203,
11,
15690,
92,
198,
220,
220,
220,
1441,
7756,
17563,
273,
11,
685,
19,
60,
198,
437,
1303,
2163,
628,
198,
198,
37811,
628,
220,
220,
220,
651,
22182,
1580,
82,
7,
19738,
273,
3712,
4653,
1564,
18843,
1352,
2599,
25,
15633,
198,
198,
35561,
262,
11688,
326,
6870,
262,
1271,
286,
3397,
326,
389,
1016,
284,
307,
6163,
13,
198,
37811,
198,
1136,
45,
4653,
12609,
42969,
7,
19738,
273,
3712,
4653,
1564,
18843,
1352,
2599,
25,
15633,
796,
31870,
13557,
77,
4653,
12609,
42969,
198,
2,
2163,
628,
198,
198,
37811,
628,
220,
220,
220,
19232,
3152,
39232,
5592,
7,
19738,
273,
3712,
4653,
1564,
18843,
1352,
2599,
25,
33,
970,
198,
198,
37811,
198,
37687,
11347,
3152,
39232,
5592,
7,
19738,
273,
3712,
4653,
1564,
18843,
1352,
2599,
25,
33,
970,
796,
31870,
13557,
37687,
11347,
3152,
6207,
198,
2,
2163,
628,
198,
198,
37811,
628,
220,
220,
220,
651,
22203,
42035,
7,
19738,
273,
3712,
4653,
1564,
18843,
1352,
2599,
25,
19182,
198,
198,
5944,
12143,
262,
512,
1859,
7159,
3917,
284,
31870,
2446,
13,
198,
37811,
198,
1136,
22203,
42035,
7,
19738,
273,
3712,
4653,
1564,
18843,
1352,
2599,
25,
19182,
796,
31870,
13557,
7785,
42035,
198,
2,
2163,
628,
198,
198,
37811,
198,
220,
220,
220,
2922,
42969,
3152,
39232,
5592,
7,
19738,
273,
3712,
4653,
1564,
18843,
1352,
11,
3265,
3712,
19182,
90,
35392,
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,
5418,
84,
1352,
3712,
36,
2100,
84,
1352,
11,
374,
782,
3712,
29531,
13,
23839,
49,
10503,
2599,
25,
19182,
90,
35392,
92,
198,
198,
5990,
23914,
257,
6356,
1022,
3925,
351,
9014,
1262,
262,
7208,
198,
8818,
286,
262,
4600,
36,
2100,
84,
1352,
44646,
198,
37811,
198,
8818,
2922,
42969,
3152,
39232,
5592,
7,
19738,
273,
3712,
4653,
1564,
18843,
1352,
11,
3265,
3712,
19182,
90,
35392,
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,
5418,
84,
1352,
3712,
36,
2100,
84,
1352,
11,
374,
782,
3712,
29531,
13,
23839,
49,
10503,
2599,
25,
19182,
90,
35392,
92,
628,
220,
220,
220,
299,
4653,
12609,
42969,
796,
651,
45,
4653,
12609,
42969,
7,
19738,
273,
8,
198,
220,
220,
220,
8996,
796,
651,
41488,
22203,
7,
18206,
84,
1352,
8,
198,
220,
220,
220,
1461,
10699,
796,
4129,
7,
39748,
8,
628,
220,
220,
220,
3397,
796,
15690,
90,
35392,
92,
7,
917,
891,
11,
299,
4653,
12609,
42969,
8,
628,
220,
220,
220,
2446,
796,
651,
17410,
7,
19738,
273,
8,
628,
220,
220,
220,
2163,
42035,
796,
651,
22203,
42035,
7,
19738,
273,
8,
628,
198,
220,
220,
220,
329,
1312,
28,
27379,
9630,
7,
23743,
8,
198,
220,
220,
220,
220,
220,
220,
220,
611,
2476,
50249,
1653,
7,
19738,
273,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6376,
796,
2446,
7,
39748,
11,
8996,
11,
374,
782,
11,
2163,
42035,
23029,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6376,
796,
2446,
7,
39748,
11,
374,
782,
11,
2163,
42035,
23029,
198,
220,
220,
220,
220,
220,
220,
220,
886,
198,
220,
220,
220,
220,
220,
220,
220,
3397,
58,
72,
60,
796,
3265,
58,
9630,
60,
198,
220,
220,
220,
886,
628,
220,
220,
220,
1441,
3397,
198,
437,
1303,
2163,
628,
198,
198,
37811,
198,
220,
220,
220,
2922,
42969,
16249,
39232,
5592,
7,
19738,
273,
3712,
4653,
1564,
18843,
1352,
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,
220,
220,
220,
220,
3265,
3712,
19182,
90,
35392,
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,
5418,
84,
1352,
3712,
36,
2100,
84,
1352,
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,
220,
220,
220,
220,
374,
782,
3712,
29531,
13,
23839,
49,
10503,
2599,
25,
19182,
90,
35392,
92,
198,
198,
5990,
23914,
257,
6356,
1022,
3925,
1231,
9014,
1262,
262,
7208,
198,
8818,
286,
262,
4600,
36,
2100,
84,
1352,
44646,
198,
37811,
198,
8818,
2922,
42969,
16249,
39232,
5592,
7,
19738,
273,
3712,
4653,
1564,
18843,
1352,
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,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3265,
3712,
19182,
90,
35392,
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,
5418,
84,
1352,
3712,
36,
2100,
84,
1352,
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,
220,
220,
220,
220,
220,
220,
220,
220,
220,
374,
782,
3712,
29531,
13,
23839,
49,
10503,
2599,
25,
19182,
90,
35392,
92,
628,
220,
220,
220,
299,
4653,
12609,
42969,
796,
651,
45,
4653,
12609,
42969,
7,
19738,
273,
8,
198,
220,
220,
220,
8996,
796,
651,
41488,
22203,
7,
18206,
84,
1352,
8,
198,
220,
220,
220,
1461,
10699,
796,
4129,
7,
39748,
8,
628,
220,
220,
220,
4866,
45251,
796,
4866,
16979,
7,
39748,
8,
198,
220,
220,
220,
39199,
796,
2824,
7,
16,
25,
12924,
10699,
8,
628,
220,
220,
220,
2446,
796,
651,
17410,
7,
19738,
273,
8,
198,
220,
220,
220,
2163,
42035,
796,
651,
22203,
42035,
7,
19738,
273,
8,
628,
220,
220,
220,
329,
1312,
28,
16,
25,
77,
4653,
12609,
42969,
198,
220,
220,
220,
220,
220,
220,
220,
611,
2476,
50249,
1653,
7,
19738,
273,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6376,
796,
2446,
7,
30073,
45251,
11,
8996,
11,
374,
782,
11,
2163,
42035,
23029,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6376,
796,
2446,
7,
30073,
45251,
11,
374,
782,
11,
2163,
42035,
23029,
198,
220,
220,
220,
220,
220,
220,
220,
886,
198,
220,
220,
220,
220,
220,
220,
220,
4866,
45251,
58,
9630,
60,
796,
4866,
45251,
58,
437,
60,
198,
220,
220,
220,
220,
220,
220,
220,
1461,
0,
7,
30073,
45251,
8,
198,
220,
220,
220,
220,
220,
220,
220,
39199,
58,
9630,
4357,
39199,
58,
437,
12,
72,
10,
16,
60,
796,
39199,
58,
437,
12,
72,
10,
16,
4357,
39199,
58,
9630,
60,
198,
220,
220,
220,
886,
628,
220,
220,
220,
3397,
796,
3265,
58,
9630,
274,
58,
437,
12,
77,
4653,
12609,
42969,
10,
16,
25,
437,
11907,
628,
220,
220,
220,
1441,
3397,
198,
437,
1303,
2163,
628,
198,
198,
37811,
198,
220,
220,
220,
2922,
42969,
41052,
19738,
273,
3712,
4653,
1564,
18843,
1352,
11,
3265,
3712,
19182,
90,
35392,
5512,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5418,
84,
1352,
3712,
36,
2100,
84,
1352,
11,
374,
782,
3712,
29531,
13,
23839,
49,
10503,
8,
198,
198,
5990,
23914,
262,
6356,
286,
3925,
1813,
416,
262,
6356,
2446,
290,
1262,
198,
1169,
7208,
2163,
1022,
3925,
286,
262,
4600,
36,
2100,
84,
1352,
44646,
198,
37811,
198,
8818,
2922,
42969,
41052,
19738,
273,
3712,
4653,
1564,
18843,
1352,
11,
3265,
3712,
19182,
90,
35392,
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,
5418,
84,
1352,
3712,
36,
2100,
84,
1352,
11,
374,
782,
3712,
29531,
13,
23839,
49,
10503,
8,
628,
220,
220,
220,
611,
19232,
3152,
39232,
5592,
7,
19738,
273,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2922,
42969,
3152,
39232,
5592,
7,
19738,
273,
11,
3265,
11,
5418,
84,
1352,
11,
374,
782,
8,
198,
220,
220,
220,
2073,
198,
220,
220,
220,
220,
220,
220,
220,
2922,
42969,
16249,
39232,
5592,
7,
19738,
273,
11,
3265,
11,
5418,
84,
1352,
11,
374,
782,
8,
198,
220,
220,
220,
886,
198,
437,
1303,
2163,
628,
198,
198,
37811,
198,
220,
220,
220,
4738,
17563,
273,
7,
39748,
3712,
19182,
90,
35392,
5512,
374,
782,
3712,
29531,
13,
23839,
49,
10503,
8,
198,
198,
5990,
23914,
257,
4738,
6356,
1022,
262,
3925,
286,
257,
3265,
13,
198,
198,
2,
47018,
20559,
2886,
198,
12,
4600,
39748,
3712,
19182,
90,
35392,
92,
63,
25,
3265,
286,
3925,
326,
389,
1016,
284,
198,
220,
220,
220,
307,
6163,
13,
198,
12,
4600,
81,
782,
3712,
29531,
13,
23839,
49,
10503,
63,
25,
4738,
1271,
17301,
286,
262,
6306,
13,
198,
198,
2,
16409,
198,
464,
6376,
286,
262,
6163,
1981,
13,
198,
198,
6214,
635,
25,
685,
63,
2617,
17563,
273,
63,
16151,
31,
5420,
8,
198,
37811,
198,
8818,
4738,
17563,
273,
7,
39748,
3712,
19182,
90,
35392,
5512,
374,
782,
3712,
29531,
13,
23839,
49,
10503,
8,
198,
220,
220,
220,
43720,
7,
81,
782,
11,
471,
5317,
1433,
8,
4,
7,
13664,
7,
39748,
4008,
1343,
352,
198,
437,
1303,
2163,
628,
198,
198,
37811,
198,
220,
220,
220,
7756,
17563,
273,
7,
39748,
3712,
19182,
90,
35392,
5512,
8996,
3712,
22203,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
374,
782,
3712,
29531,
13,
23839,
49,
10503,
11,
479,
3712,
46541,
8,
198,
198,
5990,
23914,
257,
7756,
6356,
1022,
262,
3925,
286,
257,
3265,
13,
198,
198,
2,
47018,
20559,
2886,
198,
12,
4600,
39748,
3712,
19182,
90,
35392,
92,
63,
25,
3265,
286,
3925,
326,
389,
1016,
284,
198,
220,
220,
220,
307,
6163,
13,
198,
12,
4600,
5589,
533,
3712,
22203,
63,
25,
4600,
36,
2100,
84,
1352,
63,
6,
82,
7208,
2446,
1022,
3925,
284,
198,
220,
220,
220,
5409,
543,
3392,
1592,
262,
7756,
13,
198,
12,
4600,
81,
782,
3712,
29531,
13,
23839,
49,
10503,
63,
25,
4738,
1271,
17301,
286,
262,
6306,
13,
198,
198,
2,
20559,
2886,
198,
12,
4600,
74,
3712,
46541,
63,
25,
1271,
286,
3925,
326,
9320,
287,
262,
7756,
13,
1002,
4600,
74,
63,
198,
220,
220,
220,
21767,
352,
11,
340,
481,
307,
257,
4738,
6356,
1022,
262,
3925,
357,
3826,
198,
220,
220,
220,
685,
63,
25120,
17563,
273,
63,
16151,
31,
5420,
29720,
198,
198,
2,
16409,
198,
464,
6376,
286,
262,
6163,
1981,
13,
198,
198,
6214,
635,
25,
685,
63,
2617,
17563,
273,
63,
16151,
31,
5420,
8,
198,
37811,
198,
8818,
7756,
17563,
273,
7,
39748,
3712,
19182,
90,
35392,
5512,
8996,
3712,
22203,
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,
374,
782,
3712,
29531,
13,
23839,
49,
10503,
11,
479,
3712,
46541,
8,
198,
220,
220,
220,
299,
5497,
796,
4129,
7,
39748,
8,
1303,
7913,
286,
3925,
286,
262,
3265,
198,
220,
220,
220,
1266,
15732,
796,
43720,
7,
81,
782,
11,
471,
5317,
1433,
8,
4064,
299,
5497,
1343,
352,
198,
220,
220,
220,
1266,
796,
3265,
58,
13466,
15732,
60,
628,
220,
220,
220,
329,
1312,
28,
17,
25,
74,
198,
220,
220,
220,
220,
220,
220,
220,
1459,
15732,
796,
43720,
7,
81,
782,
11,
471,
5317,
1433,
8,
4064,
299,
5497,
1343,
352,
198,
220,
220,
220,
220,
220,
220,
220,
1459,
796,
3265,
58,
14421,
15732,
60,
198,
220,
220,
220,
220,
220,
220,
220,
1266,
15732,
796,
8996,
7,
13466,
11,
1459,
8,
5633,
1266,
15732,
1058,
1459,
15732,
198,
220,
220,
220,
220,
220,
220,
220,
1266,
796,
3265,
58,
13466,
15732,
60,
198,
220,
220,
220,
886,
628,
220,
220,
220,
1441,
1266,
15732,
198,
437,
1303,
2163,
628,
628,
198,
37811,
198,
8818,
7756,
17563,
273,
7,
69,
3659,
274,
3712,
19182,
11,
8996,
3712,
22203,
11,
374,
782,
3712,
29531,
13,
23839,
49,
10503,
11,
479,
3712,
46541,
8,
198,
220,
220,
220,
299,
5497,
796,
4129,
7,
69,
3659,
274,
8,
1303,
7913,
286,
3925,
286,
262,
3265,
198,
220,
220,
220,
1266,
15732,
796,
43720,
7,
81,
782,
11,
471,
5317,
8,
4064,
299,
5497,
1343,
352,
198,
220,
220,
220,
1266,
796,
13547,
274,
58,
13466,
15732,
60,
628,
220,
220,
220,
329,
1312,
28,
17,
25,
74,
198,
220,
220,
220,
220,
220,
220,
220,
1459,
15732,
796,
43720,
7,
81,
782,
11,
471,
5317,
8,
4064,
299,
5497,
1343,
352,
198,
220,
220,
220,
220,
220,
220,
220,
1459,
796,
13547,
274,
58,
14421,
15732,
60,
198,
220,
220,
220,
220,
220,
220,
220,
1266,
15732,
796,
8996,
7,
13466,
11,
1459,
8,
5633,
1266,
15732,
1058,
1459,
15732,
198,
220,
220,
220,
220,
220,
220,
220,
1266,
796,
13547,
274,
58,
13466,
15732,
60,
198,
220,
220,
220,
886,
628,
220,
220,
220,
1441,
1266,
15732,
198,
437,
198,
37811,
198,
198,
8818,
13805,
21348,
17563,
273,
7,
69,
3659,
274,
3712,
19182,
11,
8996,
3712,
22203,
11,
374,
782,
3712,
29531,
13,
23839,
49,
10503,
11,
479,
3712,
46541,
10779,
16,
8,
628,
220,
220,
220,
17775,
796,
8996,
7,
16,
11,
17,
8,
198,
220,
220,
220,
1461,
10699,
796,
4129,
7,
69,
3659,
274,
8,
198,
220,
220,
220,
611,
17775,
198,
220,
220,
220,
220,
220,
220,
220,
3509,
796,
5415,
7,
69,
3659,
274,
8,
198,
220,
220,
220,
220,
220,
220,
220,
13547,
274,
796,
3975,
7,
87,
3784,
8937,
7,
87,
12,
9806,
828,
13547,
274,
8,
198,
220,
220,
220,
886,
628,
220,
220,
220,
611,
479,
1279,
657,
198,
220,
220,
220,
220,
220,
220,
220,
479,
796,
1461,
10699,
198,
220,
220,
220,
220,
220,
220,
220,
39199,
796,
2824,
7,
16,
25,
12924,
10699,
8,
198,
220,
220,
220,
2073,
198,
220,
220,
220,
220,
220,
220,
220,
611,
479,
1279,
2026,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
39199,
796,
4738,
15732,
4653,
1564,
7,
12924,
10699,
11,
479,
11,
374,
782,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
39199,
796,
4738,
15732,
4653,
1564,
17,
7,
12924,
10699,
11,
479,
11,
374,
782,
8,
198,
220,
220,
220,
220,
220,
220,
220,
886,
198,
220,
220,
220,
220,
220,
220,
220,
13547,
274,
796,
13547,
274,
58,
9630,
274,
60,
198,
220,
220,
220,
886,
628,
220,
220,
220,
2160,
37,
3659,
796,
2160,
7,
69,
3659,
274,
8,
628,
220,
220,
220,
6163,
796,
352,
198,
220,
220,
220,
4738,
796,
43720,
7,
81,
782,
11,
657,
25,
16345,
37,
3659,
8,
198,
220,
220,
220,
4738,
48185,
13547,
274,
58,
16,
60,
628,
198,
220,
220,
220,
981,
4738,
18189,
657,
198,
220,
220,
220,
220,
220,
220,
220,
6163,
15853,
352,
198,
220,
220,
220,
220,
220,
220,
220,
4738,
48185,
13547,
274,
58,
34213,
60,
198,
220,
220,
220,
886,
628,
220,
220,
220,
1441,
39199,
58,
34213,
60,
198,
437,
628,
198,
8818,
12759,
17563,
273,
7,
69,
3659,
274,
3712,
19182,
11,
8996,
3712,
22203,
11,
374,
782,
3712,
29531,
13,
23839,
49,
10503,
11,
479,
3712,
46541,
10779,
16,
8,
628,
220,
220,
220,
17775,
796,
8996,
7,
16,
11,
17,
8,
198,
220,
220,
220,
1461,
10699,
796,
4129,
7,
69,
3659,
274,
8,
198,
220,
220,
220,
611,
17775,
198,
220,
220,
220,
220,
220,
220,
220,
649,
37,
3659,
274,
796,
4866,
7,
69,
3659,
274,
8,
198,
220,
220,
220,
220,
220,
220,
220,
3509,
796,
5415,
7,
3605,
37,
3659,
274,
8,
198,
220,
220,
220,
220,
220,
220,
220,
649,
37,
3659,
274,
796,
3975,
7,
87,
3784,
8937,
7,
87,
12,
9806,
828,
649,
37,
3659,
274,
8,
198,
220,
220,
220,
886,
628,
220,
220,
220,
611,
479,
1279,
657,
198,
220,
220,
220,
220,
220,
220,
220,
479,
796,
1461,
10699,
198,
220,
220,
220,
220,
220,
220,
220,
39199,
796,
2824,
7,
16,
25,
12924,
10699,
8,
198,
220,
220,
220,
220,
220,
220,
220,
649,
37,
3659,
274,
796,
13547,
274,
198,
220,
220,
220,
2073,
198,
220,
220,
220,
220,
220,
220,
220,
611,
479,
1279,
2026,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
39199,
796,
4738,
15732,
4653,
1564,
7,
12924,
10699,
11,
479,
11,
374,
782,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
39199,
796,
4738,
15732,
4653,
1564,
17,
7,
12924,
10699,
11,
479,
11,
374,
782,
8,
198,
220,
220,
220,
220,
220,
220,
220,
886,
198,
220,
220,
220,
220,
220,
220,
220,
649,
37,
3659,
274,
796,
13547,
274,
58,
9630,
274,
60,
198,
220,
220,
220,
886,
628,
220,
220,
220,
2160,
37,
3659,
796,
2160,
7,
69,
3659,
274,
8,
628,
220,
220,
220,
6163,
796,
352,
198,
220,
220,
220,
4738,
796,
43720,
7,
81,
782,
11,
657,
25,
16345,
37,
3659,
8,
198,
220,
220,
220,
4738,
48185,
13547,
274,
58,
16,
60,
628,
198,
220,
220,
220,
981,
4738,
18189,
657,
198,
220,
220,
220,
220,
220,
220,
220,
6163,
15853,
352,
198,
220,
220,
220,
220,
220,
220,
220,
4738,
48185,
13547,
274,
58,
34213,
60,
198,
220,
220,
220,
886,
628,
220,
220,
220,
1441,
39199,
58,
34213,
60,
198,
437,
628,
628,
198,
37811,
198,
8818,
2922,
42969,
16249,
39232,
5592,
7,
19738,
273,
3712,
4653,
1564,
18843,
1352,
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,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3265,
3712,
19182,
90,
35392,
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,
299,
42969,
3712,
46541,
11,
5418,
84,
1352,
3712,
36,
2100,
84,
1352,
11,
374,
782,
3712,
29531,
13,
23839,
49,
10503,
8,
628,
220,
220,
220,
299,
4653,
12609,
42969,
796,
651,
45,
4653,
12609,
42969,
7,
19738,
273,
8,
198,
220,
220,
220,
8996,
796,
651,
41488,
37,
3659,
7,
18206,
84,
1352,
8,
198,
220,
220,
220,
1461,
10699,
796,
4129,
7,
39748,
8,
628,
220,
220,
220,
611,
5145,
7,
4906,
1659,
7,
77,
4653,
12609,
42969,
8,
1279,
25,
34142,
8,
198,
220,
220,
220,
220,
220,
220,
220,
299,
4653,
12609,
42969,
796,
10385,
7,
46541,
11,
2835,
7,
77,
4653,
12609,
42969,
1635,
1461,
10699,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
17675,
796,
299,
4653,
12609,
42969,
4064,
299,
42969,
628,
220,
220,
220,
220,
220,
220,
220,
611,
17675,
14512,
657,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
299,
4653,
12609,
42969,
796,
299,
4653,
12609,
42969,
1343,
299,
42969,
532,
17675,
198,
220,
220,
220,
220,
220,
220,
220,
886,
628,
220,
220,
220,
220,
220,
220,
220,
611,
299,
4653,
12609,
42969,
1875,
1461,
10699,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
299,
4653,
12609,
42969,
48185,
299,
42969,
198,
220,
220,
220,
220,
220,
220,
220,
886,
198,
220,
220,
220,
886,
628,
220,
220,
220,
39199,
796,
2824,
7,
16,
25,
12924,
10699,
8,
628,
220,
220,
220,
611,
31870,
13557,
43129,
19076,
6624,
366,
69,
3659,
1,
198,
220,
220,
220,
220,
220,
220,
220,
13547,
274,
796,
651,
37,
3659,
7,
39748,
8,
628,
220,
220,
220,
220,
220,
220,
220,
329,
1312,
28,
16,
25,
77,
4653,
12609,
42969,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
2476,
50249,
1653,
7,
19738,
273,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6376,
796,
31870,
13557,
24396,
7,
69,
3659,
274,
11,
8996,
11,
374,
782,
11,
31870,
13557,
7785,
42035,
23029,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
13547,
274,
58,
9630,
60,
796,
13547,
274,
58,
437,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1461,
0,
7,
69,
3659,
274,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
39199,
58,
9630,
4357,
39199,
58,
437,
12,
72,
10,
16,
60,
796,
39199,
58,
437,
12,
72,
10,
16,
4357,
39199,
58,
9630,
60,
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,
6376,
796,
31870,
13557,
24396,
7,
69,
3659,
274,
11,
374,
782,
11,
31870,
13557,
7785,
42035,
23029,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
13547,
274,
58,
9630,
60,
796,
13547,
274,
58,
437,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1461,
0,
7,
69,
3659,
274,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
39199,
58,
9630,
4357,
39199,
58,
437,
12,
72,
10,
16,
60,
796,
39199,
58,
437,
12,
72,
10,
16,
4357,
39199,
58,
9630,
60,
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,
31870,
13557,
43129,
19076,
6624,
366,
15603,
341,
1,
198,
220,
220,
220,
220,
220,
220,
220,
773,
6207,
82,
796,
651,
13746,
8690,
7,
39748,
8,
198,
220,
220,
220,
220,
220,
220,
220,
329,
1312,
28,
16,
25,
77,
4653,
12609,
42969,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
2476,
50249,
1653,
7,
19738,
273,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6376,
796,
31870,
13557,
24396,
7,
521,
6207,
82,
11,
8996,
11,
374,
782,
11,
31870,
13557,
7785,
42035,
23029,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
773,
6207,
82,
58,
9630,
60,
796,
773,
6207,
82,
58,
437,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1461,
0,
7,
521,
6207,
82,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
39199,
58,
9630,
4357,
39199,
58,
437,
12,
72,
10,
16,
60,
796,
39199,
58,
437,
12,
72,
10,
16,
4357,
39199,
58,
9630,
60,
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,
6376,
796,
31870,
13557,
24396,
7,
521,
6207,
82,
11,
374,
782,
11,
31870,
13557,
7785,
42035,
23029,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
773,
6207,
82,
58,
9630,
60,
796,
773,
6207,
82,
58,
437,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1461,
0,
7,
521,
6207,
82,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
39199,
58,
9630,
4357,
39199,
58,
437,
12,
72,
10,
16,
60,
796,
39199,
58,
437,
12,
72,
10,
16,
4357,
39199,
58,
9630,
60,
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,
13547,
274,
796,
651,
37,
3659,
7,
39748,
8,
198,
220,
220,
220,
220,
220,
220,
220,
773,
6207,
82,
796,
651,
13746,
8690,
7,
39748,
8,
198,
220,
220,
220,
220,
220,
220,
220,
329,
1312,
28,
16,
25,
77,
4653,
12609,
42969,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
2476,
50249,
1653,
7,
19738,
273,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6376,
796,
31870,
13557,
24396,
7,
521,
6207,
82,
11,
13547,
274,
11,
8996,
11,
374,
782,
11,
31870,
13557,
7785,
42035,
23029,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
773,
6207,
82,
58,
9630,
60,
796,
773,
6207,
82,
58,
437,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1461,
0,
7,
521,
6207,
82,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
13547,
274,
58,
9630,
60,
796,
13547,
274,
58,
437,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1461,
0,
7,
69,
3659,
274,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
39199,
58,
9630,
4357,
39199,
58,
437,
12,
72,
10,
16,
60,
796,
39199,
58,
437,
12,
72,
10,
16,
4357,
39199,
58,
9630,
60,
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,
6376,
796,
31870,
13557,
24396,
7,
521,
6207,
82,
11,
13547,
274,
11,
374,
782,
11,
31870,
13557,
7785,
42035,
23029,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
773,
6207,
82,
58,
9630,
60,
796,
773,
6207,
82,
58,
437,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1461,
0,
7,
521,
6207,
82,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
13547,
274,
58,
9630,
60,
796,
13547,
274,
58,
437,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1461,
0,
7,
69,
3659,
274,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
39199,
58,
9630,
4357,
39199,
58,
437,
12,
72,
10,
16,
60,
796,
39199,
58,
437,
12,
72,
10,
16,
4357,
39199,
58,
9630,
60,
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,
3397,
796,
2769,
30073,
7,
39748,
58,
9630,
274,
58,
437,
12,
77,
42969,
10,
16,
25,
437,
11907,
8,
628,
220,
220,
220,
1441,
3397,
198,
437,
1303,
2163,
198,
37811,
198
] | 2.534091 | 5,104 |
module Trajectory
include("minimumjerk.jl")
end # module
| [
21412,
4759,
752,
652,
198,
198,
17256,
7203,
39504,
73,
9587,
13,
20362,
4943,
198,
198,
437,
1303,
8265,
198
] | 2.95 | 20 |
function lol()
e3::Int32 = 0
e3 = 0
end | [
8818,
19462,
3419,
198,
197,
68,
18,
3712,
5317,
2624,
796,
657,
198,
197,
68,
18,
796,
657,
198,
437
] | 2.05 | 20 |
function interaction_distance(M::Array{Float64},data1::DataFrame,data2::DataFrame,ndim::Int64)
k=length(data1[1])
l=length(data2[1])
sum = 0.0
maxs = zeros(ndim)
for i in 1:ndim
maxs[i] = maximum(M[i,:])
end
for one in 1:k
for two in 1:k
prod=1.0
for i in 1:ndim
prod=prod*(maxs[i]-max(data1[one,i],data1[two,i]))
end
sum=sum+(1/k^2)*prod
end
end
for one in 1:k
for two in 1:l
prod=1.0
for i in 1:ndim
prod=prod*(maxs[i]-max(data1[one,i],data2[two,i]))
end
sum=sum-(2/(k*l))*prod
end
end
for one in 1:l
for two in 1:l
prod=1.0
for i in 1:ndim
prod=prod*(maxs[i]-max(data2[one,1],data2[two,1]))
end
sum=sum+(1/l^2)*prod
end
end
return(abs(sum)^(1/2))
end
# dim_i: current dimension
function get_IDS_largeI(M::Array{Float64},B::DataFrame,labels::Array{Int64},ndim::Int64,dim_i::Int64)
ids = zeros(length(labels)-1)
M_temp = deepcopy(M[1:end .!= dim_i, 1:end])
for i in 1:length(labels)-1
data1_arr=[]
data2_arr=[]
for j in 1:ndim-1
push!(data1_arr,M_temp[j,:][B[:,1] .== labels[i]])
push!(data2_arr,M_temp[j,:][B[:,1] .== labels[i+1]])
end
data1 = DataFrame(data1_arr)
data2 = DataFrame(data2_arr)
ids[i]=interaction_distance(M_temp,data1,data2,ndim-1)
end
return(ids)
end
function largeI(bin::Array{Int64},interaction_distances::Array{Float64}, threshold::Float64)
sum = 0
if length(bin)>1
for x in 1:length(bin)-1
if interaction_distances[bin[x]]>=threshold
sum = sum+1
end
end
end
return(sum)
end
function determine_threshold(interaction_distances::Array{Float64},T::Int64,limit::Int64)
tert=max(1,Int(round((T-1)/limit)))
return(sort(interaction_distances)[tert])
end
function logstar(x::Int64)
y=deepcopy(x)
res = 0.0
while log2(y)>0
y=log2(y)
res = res+y
end
return(res)
end
function LN(z::Int64)
return(logstar(z)+log2(2.8654))
end
function encode_disc(T::Int64,k::Int64)
return(LN(k)+log2(binomial(T-1,k-1)))
end
function Lbid(merges::Array{Any},T::Int64)
sum = 0
for bin in merges
sum = sum+LN(length(bin))-(1+length(bin))*log2(length(bin)/T)
end
return(sum)
end
function Lmh(merges::Array{Any},interaction_distances::Array{Float64},threshold::Float64)
sum = 0.0
I = 0
for bin in merges
I = largeI(bin,interaction_distances,threshold)
if I>0
sum = sum + LN(I) + I*log2(length(bin)-1)
end
end
return(sum)
end
function encode_discrete_data(merges::Array{Any},interaction_distances::Array{Float64},T::Int64,threshold::Float64)
return(Lbid(merges,T)+Lmh(merges,interaction_distances,threshold))
end
function encode_error(merges::Array{Any})
sum=0
for bin in merges
sum = sum+length(bin)*log2(length(bin))
end
return(sum)
end
# M: original data
# B: Micro binned data
# merges: array of array that form the macro bins
# k: number of macro bins
# t: threshold
# ndim: number of dimensions
# T: nnumber of micro bins
function practical_score(M::Array{Float64},B::DataFrame,merges::Array{Any}, k::Int64, threshold::Float64, ndim::Int64,T::Int64, interaction_distances::Array{Float64})
return(encode_error(merges)+encode_discrete_data(merges,interaction_distances,T,threshold)+encode_disc(T,k))
end
#### --------------------------------------------------------------------------------------------------------------------------------------------------####
#### --------------------------------------------------------------------------------------------------------------------------------------------------####
# Input for greedy_IPD_v2:
#M: data
# nm: number of micro bins
# ndim: number of dimension
function greedy_IPD(M::Array{Float64},ndim::Int64,T::Int64,disc=:km,skip=[],limit=10)
results = DataFrame()
#cuts = DataFrame()
#results_arr=[]
#results = zeros(size(M))
for i in setdiff(1:ndim,skip)
if mod(i,100)==0
print("\n")
print("dimension ")
print(i)
end
micro_binned = DataFrame();
# label for results in dataframe
# label = string("dimension"," ",string(i))
# start by uniform discretization for micro bins, seperate per dimension !!!
if length(unique(M[i,:]))<=5
res_temp = zeros(length(M[i,:]))
for u in 1:length(unique(M[i,:]))
res_temp[M[i,:] .== unique(M[i,:])[u]] .= u
end
results[!,i] = res_temp
else
if length(unique(M[i,:]))<=T
T=length(unique(M[i,:]))
end
if disc==:km
R = kmeans(vec(M[i,:])',T)
cutpoints=zeros(T+1)
cutpoints[1]=minimum(M[i,:])
cutpoints[T+1]=maximum(M[i,:])
centers = sort(R.centers,dims=2)
[cutpoints[i] = (centers[i-1]+centers[i])/2 for i in 2:T]
# discretize the data
lindisc = LinearDiscretizer(sort(cutpoints))
micro_binned[!, :1] = [encode(lindisc,one) for one in M[i,:]]
else
lindisc = LinearDiscretizer(binedges(DiscretizeUniformWidth(T), M[i,:]))
micro_binned[!, :1] = [encode(lindisc,one) for one in M[i,:]]
end
#get the lables
labels_micro = sort(unique(micro_binned[:,:1]))
#initialize number of macro bins
k=T
# determine the interaction distances
int_dists = get_IDS_largeI(M,micro_binned,labels_micro,ndim,i)
# determine threshlod for largeI
t=determine_threshold(int_dists,T,limit)
merges=[]
for j in labels_micro
push!(merges,[j])
end
scores=[]
# practical score at the beginning
MDL_ref=practical_score(M,micro_binned,merges,k-1,t,ndim,T,int_dists)
append!(scores,MDL_ref)
while minimum(scores)<=MDL_ref
optimal_merge = 0
if length(merges)>1
for j in 1:length(merges)-1
temp_merges = deepcopy(merges)
append!(temp_merges[j],temp_merges[j+1])
deleteat!(temp_merges, j+1)
mdl = practical_score(M,micro_binned,temp_merges,k-1,t,ndim,T,int_dists)
# check if the current tuple is the best so far
if mdl < minimum(scores)
optimal_merge = j
push!(scores,mdl)
end
end
end
if optimal_merge != 0
append!(merges[optimal_merge],merges[optimal_merge+1])
deleteat!(merges, optimal_merge+1)
MDL_ref = minimum(scores)
k=k-1
else
MDL_ref=minimum(scores)-1
end
end
results_dim = zeros(length(M[i,:]))
for index in 1:length(merges)
macrobin = merges[index]
for id in macrobin
results_dim[micro_binned[!,:1] .== id] .= index
end
end
results[!,i] = results_dim
#results[i,:] = results_dim
end
end
return(results)
end
function greedy_IPD_cutpoints(M::Array{Float64},ndim::Int64,T::Int64,disc=:km)
#results = DataFrame()
results = zeros(size(M))
#cuts = []
#results_arr=[]
for i in 1:ndim
if mod(i,100)==0
print("\n")
print("dimension ")
print(i)
end
dimension = "i"
micro_binned = DataFrame();
# label for results in dataframe
#label = string("dimension"," ",string(i))
# start by uniform discretization for micro bins, seperate per dimension !!!
if length(unique(M[i,:]))>5
if length(unique(M[i,:]))<=T
T=length(unique(M[i,:]))
end
if disc==:km
R = kmeans(vec(M[i,:])',T)
cutpoints=zeros(T+1)
cutpoints[1]=minimum(M[i,:])
cutpoints[T+1]=maximum(M[i,:])
centers = sort(R.centers,dims=2)
[cutpoints[i] = (centers[i-1]+centers[i])/2 for i in 2:T]
# discretize the data
lindisc = LinearDiscretizer(sort(cutpoints))
micro_binned[!, :1] = [encode(lindisc,one) for one in M[i,:]]
else
lindisc = LinearDiscretizer(binedges(DiscretizeUniformWidth(T), M[i,:]))
micro_binned[!, :1] = [encode(lindisc,one) for one in M[i,:]]
end
#push!(cuts,cutpoints)
#get the lables
labels_micro = sort(unique(micro_binned[:,:1]))
#initialize number of macro bins
k=T
# determine the interaction distances
int_dists = get_IDS_largeI(M,micro_binned,labels_micro,ndim,i)
# determine threshlod for largeI
t=determine_threshold(int_dists,T)
merges=[]
for j in labels_micro
push!(merges,[j])
end
scores=[]
# practical score at the beginning
MDL_ref=practical_score(M,micro_binned,merges,k-1,t,ndim,T,int_dists)
append!(scores,MDL_ref)
while minimum(scores)<=MDL_ref
optimal_merge = 0
if length(merges)>1
for j in 1:length(merges)-1
temp_merges = deepcopy(merges)
append!(temp_merges[j],temp_merges[j+1])
deleteat!(temp_merges, j+1)
mdl = practical_score(M,micro_binned,temp_merges,k-1,t,ndim,T,int_dists)
# check if the current tuple is the best so far
if mdl < minimum(scores)
optimal_merge = j
push!(scores,mdl)
end
end
end
if optimal_merge != 0
append!(merges[optimal_merge],merges[optimal_merge+1])
deleteat!(merges, optimal_merge+1)
MDL_ref = minimum(scores)
k=k-1
else
MDL_ref=minimum(scores)-1
end
end
results_dim = zeros(length(M[i,:]))
for index in 1:length(merges)
macrobin = merges[index]
maxpoint = maximum(macrobin)
minpoint = minimum(macrobin)
# print("\n")
# print(cuts)
# print("\n")
# print(maxpoint)
for id in macrobin
results_dim[micro_binned[!,:1] .== id] .= (cutpoints[maxpoint]-cutpoints[minpoint])/2
end
end
results[i,:] = results_dim
end
end
return(results)
end
function greedy_IPD_clustered(M::Array{Float64},ndim::Int64,T::Int64,c::Int64,disc=:km)
results = zeros(size(M))
SPC = 1/2*(I-corspearman(M'))
clust = hclust(SPC,linkage=:ward_presquared)
clustered_data = cutree(clust;k=c)
for i in 1:c
selector = clustered_data .== i
data = M[selector,:]
res = greedy_IPD(data,size(data)[1],15,:km)
#print("\n")
#print(typeof(res))
results[selector,:] .= Array(res)'
end
return(DataFrame(results))
end
| [
8818,
10375,
62,
30246,
7,
44,
3712,
19182,
90,
43879,
2414,
5512,
7890,
16,
3712,
6601,
19778,
11,
7890,
17,
3712,
6601,
19778,
11,
358,
320,
3712,
5317,
2414,
8,
628,
220,
220,
220,
479,
28,
13664,
7,
7890,
16,
58,
16,
12962,
198,
220,
220,
220,
300,
28,
13664,
7,
7890,
17,
58,
16,
12962,
628,
220,
220,
220,
2160,
796,
657,
13,
15,
198,
220,
220,
220,
3509,
82,
796,
1976,
27498,
7,
358,
320,
8,
198,
220,
220,
220,
329,
1312,
287,
352,
25,
358,
320,
198,
220,
220,
220,
220,
220,
220,
220,
3509,
82,
58,
72,
60,
796,
5415,
7,
44,
58,
72,
11,
25,
12962,
198,
220,
220,
220,
886,
628,
220,
220,
220,
329,
530,
287,
352,
25,
74,
198,
220,
220,
220,
220,
220,
220,
220,
329,
734,
287,
352,
25,
74,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
40426,
28,
16,
13,
15,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
1312,
287,
352,
25,
358,
320,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
40426,
28,
1676,
67,
9,
7,
9806,
82,
58,
72,
45297,
9806,
7,
7890,
16,
58,
505,
11,
72,
4357,
7890,
16,
58,
11545,
11,
72,
60,
4008,
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,
2160,
28,
16345,
33747,
16,
14,
74,
61,
17,
27493,
1676,
67,
628,
220,
220,
220,
220,
220,
220,
220,
886,
198,
220,
220,
220,
886,
628,
220,
220,
220,
329,
530,
287,
352,
25,
74,
198,
220,
220,
220,
220,
220,
220,
220,
329,
734,
287,
352,
25,
75,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
40426,
28,
16,
13,
15,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
1312,
287,
352,
25,
358,
320,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
40426,
28,
1676,
67,
9,
7,
9806,
82,
58,
72,
45297,
9806,
7,
7890,
16,
58,
505,
11,
72,
4357,
7890,
17,
58,
11545,
11,
72,
60,
4008,
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,
2160,
28,
16345,
30420,
17,
29006,
74,
9,
75,
4008,
9,
1676,
67,
198,
220,
220,
220,
220,
220,
220,
220,
886,
198,
220,
220,
220,
886,
628,
220,
220,
220,
329,
530,
287,
352,
25,
75,
198,
220,
220,
220,
220,
220,
220,
220,
329,
734,
287,
352,
25,
75,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
40426,
28,
16,
13,
15,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
1312,
287,
352,
25,
358,
320,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
40426,
28,
1676,
67,
9,
7,
9806,
82,
58,
72,
45297,
9806,
7,
7890,
17,
58,
505,
11,
16,
4357,
7890,
17,
58,
11545,
11,
16,
60,
4008,
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,
2160,
28,
16345,
33747,
16,
14,
75,
61,
17,
27493,
1676,
67,
198,
220,
220,
220,
220,
220,
220,
220,
886,
198,
220,
220,
220,
886,
628,
220,
220,
220,
1441,
7,
8937,
7,
16345,
8,
61,
7,
16,
14,
17,
4008,
198,
437,
198,
198,
2,
5391,
62,
72,
25,
1459,
15793,
198,
8818,
651,
62,
14255,
62,
11664,
40,
7,
44,
3712,
19182,
90,
43879,
2414,
5512,
33,
3712,
6601,
19778,
11,
23912,
1424,
3712,
19182,
90,
5317,
2414,
5512,
358,
320,
3712,
5317,
2414,
11,
27740,
62,
72,
3712,
5317,
2414,
8,
628,
220,
220,
220,
220,
2340,
796,
1976,
27498,
7,
13664,
7,
23912,
1424,
13219,
16,
8,
198,
220,
220,
220,
337,
62,
29510,
796,
2769,
30073,
7,
44,
58,
16,
25,
437,
764,
0,
28,
5391,
62,
72,
11,
352,
25,
437,
12962,
628,
220,
220,
220,
329,
1312,
287,
352,
25,
13664,
7,
23912,
1424,
13219,
16,
628,
220,
220,
220,
220,
220,
220,
220,
1366,
16,
62,
3258,
28,
21737,
198,
220,
220,
220,
220,
220,
220,
220,
1366,
17,
62,
3258,
28,
21737,
628,
220,
220,
220,
220,
220,
220,
220,
329,
474,
287,
352,
25,
358,
320,
12,
16,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4574,
0,
7,
7890,
16,
62,
3258,
11,
44,
62,
29510,
58,
73,
11,
25,
7131,
33,
58,
45299,
16,
60,
764,
855,
14722,
58,
72,
11907,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4574,
0,
7,
7890,
17,
62,
3258,
11,
44,
62,
29510,
58,
73,
11,
25,
7131,
33,
58,
45299,
16,
60,
764,
855,
14722,
58,
72,
10,
16,
11907,
8,
198,
220,
220,
220,
220,
220,
220,
220,
886,
628,
220,
220,
220,
220,
220,
220,
220,
1366,
16,
796,
6060,
19778,
7,
7890,
16,
62,
3258,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1366,
17,
796,
6060,
19778,
7,
7890,
17,
62,
3258,
8,
628,
220,
220,
220,
220,
220,
220,
220,
220,
2340,
58,
72,
22241,
3849,
2673,
62,
30246,
7,
44,
62,
29510,
11,
7890,
16,
11,
7890,
17,
11,
358,
320,
12,
16,
8,
628,
220,
220,
220,
886,
628,
220,
220,
220,
1441,
7,
2340,
8,
198,
198,
437,
198,
198,
8818,
1588,
40,
7,
8800,
3712,
19182,
90,
5317,
2414,
5512,
3849,
2673,
62,
17080,
1817,
3712,
19182,
90,
43879,
2414,
5512,
11387,
3712,
43879,
2414,
8,
628,
220,
220,
220,
2160,
796,
657,
628,
220,
220,
220,
611,
4129,
7,
8800,
8,
29,
16,
198,
220,
220,
220,
220,
220,
220,
220,
329,
2124,
287,
352,
25,
13664,
7,
8800,
13219,
16,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
10375,
62,
17080,
1817,
58,
8800,
58,
87,
11907,
29,
28,
400,
10126,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2160,
796,
2160,
10,
16,
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,
7,
16345,
8,
198,
198,
437,
198,
198,
8818,
5004,
62,
400,
10126,
7,
3849,
2673,
62,
17080,
1817,
3712,
19182,
90,
43879,
2414,
5512,
51,
3712,
5317,
2414,
11,
32374,
3712,
5317,
2414,
8,
628,
220,
220,
220,
48358,
28,
9806,
7,
16,
11,
5317,
7,
744,
19510,
51,
12,
16,
20679,
32374,
22305,
628,
220,
220,
220,
1441,
7,
30619,
7,
3849,
2673,
62,
17080,
1817,
38381,
353,
83,
12962,
198,
198,
437,
198,
198,
8818,
2604,
7364,
7,
87,
3712,
5317,
2414,
8,
628,
220,
220,
220,
331,
28,
22089,
30073,
7,
87,
8,
198,
220,
220,
220,
581,
796,
657,
13,
15,
628,
220,
220,
220,
981,
2604,
17,
7,
88,
8,
29,
15,
198,
220,
220,
220,
220,
220,
220,
220,
331,
28,
6404,
17,
7,
88,
8,
198,
220,
220,
220,
220,
220,
220,
220,
581,
796,
581,
10,
88,
198,
220,
220,
220,
886,
628,
220,
220,
220,
1441,
7,
411,
8,
198,
437,
198,
198,
8818,
406,
45,
7,
89,
3712,
5317,
2414,
8,
198,
220,
220,
220,
1441,
7,
6404,
7364,
7,
89,
47762,
6404,
17,
7,
17,
13,
23,
39111,
4008,
198,
437,
198,
198,
8818,
37773,
62,
15410,
7,
51,
3712,
5317,
2414,
11,
74,
3712,
5317,
2414,
8,
198,
220,
220,
220,
1441,
7,
43,
45,
7,
74,
47762,
6404,
17,
7,
8800,
49070,
7,
51,
12,
16,
11,
74,
12,
16,
22305,
198,
437,
628,
198,
8818,
406,
14065,
7,
647,
3212,
3712,
19182,
90,
7149,
5512,
51,
3712,
5317,
2414,
8,
628,
220,
220,
220,
2160,
796,
657,
198,
220,
220,
220,
329,
9874,
287,
4017,
3212,
628,
220,
220,
220,
220,
220,
220,
220,
2160,
796,
2160,
10,
43,
45,
7,
13664,
7,
8800,
4008,
30420,
16,
10,
13664,
7,
8800,
4008,
9,
6404,
17,
7,
13664,
7,
8800,
20679,
51,
8,
628,
220,
220,
220,
886,
628,
220,
220,
220,
1441,
7,
16345,
8,
198,
437,
198,
198,
8818,
406,
76,
71,
7,
647,
3212,
3712,
19182,
90,
7149,
5512,
3849,
2673,
62,
17080,
1817,
3712,
19182,
90,
43879,
2414,
5512,
400,
10126,
3712,
43879,
2414,
8,
628,
220,
220,
220,
2160,
796,
657,
13,
15,
198,
220,
220,
220,
314,
796,
657,
628,
220,
220,
220,
329,
9874,
287,
4017,
3212,
628,
220,
220,
220,
220,
220,
220,
220,
314,
796,
1588,
40,
7,
8800,
11,
3849,
2673,
62,
17080,
1817,
11,
400,
10126,
8,
198,
220,
220,
220,
220,
220,
220,
220,
611,
314,
29,
15,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2160,
796,
2160,
1343,
406,
45,
7,
40,
8,
1343,
314,
9,
6404,
17,
7,
13664,
7,
8800,
13219,
16,
8,
198,
220,
220,
220,
220,
220,
220,
220,
886,
628,
220,
220,
220,
886,
628,
220,
220,
220,
1441,
7,
16345,
8,
198,
198,
437,
198,
198,
8818,
37773,
62,
15410,
8374,
62,
7890,
7,
647,
3212,
3712,
19182,
90,
7149,
5512,
3849,
2673,
62,
17080,
1817,
3712,
19182,
90,
43879,
2414,
5512,
51,
3712,
5317,
2414,
11,
400,
10126,
3712,
43879,
2414,
8,
198,
220,
220,
220,
1441,
7,
43,
14065,
7,
647,
3212,
11,
51,
47762,
43,
76,
71,
7,
647,
3212,
11,
3849,
2673,
62,
17080,
1817,
11,
400,
10126,
4008,
198,
437,
198,
198,
8818,
37773,
62,
18224,
7,
647,
3212,
3712,
19182,
90,
7149,
30072,
198,
220,
220,
220,
2160,
28,
15,
198,
220,
220,
220,
329,
9874,
287,
4017,
3212,
198,
220,
220,
220,
220,
220,
220,
220,
2160,
796,
2160,
10,
13664,
7,
8800,
27493,
6404,
17,
7,
13664,
7,
8800,
4008,
198,
220,
220,
220,
886,
628,
220,
220,
220,
1441,
7,
16345,
8,
198,
198,
437,
628,
198,
2,
337,
25,
2656,
1366,
198,
2,
347,
25,
4527,
9874,
2817,
1366,
198,
2,
4017,
3212,
25,
7177,
286,
7177,
326,
1296,
262,
15021,
41701,
198,
2,
479,
25,
1271,
286,
15021,
41701,
198,
2,
256,
25,
11387,
198,
2,
299,
27740,
25,
1271,
286,
15225,
198,
2,
309,
25,
299,
17618,
286,
4580,
41701,
198,
8818,
8472,
62,
26675,
7,
44,
3712,
19182,
90,
43879,
2414,
5512,
33,
3712,
6601,
19778,
11,
647,
3212,
3712,
19182,
90,
7149,
5512,
479,
3712,
5317,
2414,
11,
11387,
3712,
43879,
2414,
11,
299,
27740,
3712,
5317,
2414,
11,
51,
3712,
5317,
2414,
11,
10375,
62,
17080,
1817,
3712,
19182,
90,
43879,
2414,
30072,
628,
220,
220,
220,
1441,
7,
268,
8189,
62,
18224,
7,
647,
3212,
47762,
268,
8189,
62,
15410,
8374,
62,
7890,
7,
647,
3212,
11,
3849,
2673,
62,
17080,
1817,
11,
51,
11,
400,
10126,
47762,
268,
8189,
62,
15410,
7,
51,
11,
74,
4008,
198,
198,
437,
628,
198,
198,
4242,
16529,
10097,
1783,
438,
4242,
198,
4242,
16529,
10097,
1783,
438,
4242,
198,
198,
2,
23412,
329,
31828,
62,
4061,
35,
62,
85,
17,
25,
198,
2,
44,
25,
1366,
198,
2,
28642,
25,
1271,
286,
4580,
41701,
198,
2,
299,
27740,
25,
1271,
286,
15793,
198,
8818,
31828,
62,
4061,
35,
7,
44,
3712,
19182,
90,
43879,
2414,
5512,
358,
320,
3712,
5317,
2414,
11,
51,
3712,
5317,
2414,
11,
15410,
28,
25,
13276,
11,
48267,
41888,
4357,
32374,
28,
940,
8,
628,
220,
220,
220,
2482,
796,
6060,
19778,
3419,
198,
220,
220,
220,
1303,
23779,
796,
6060,
19778,
3419,
198,
220,
220,
220,
1303,
43420,
62,
3258,
28,
21737,
198,
220,
220,
220,
1303,
43420,
796,
1976,
27498,
7,
7857,
7,
44,
4008,
628,
220,
220,
220,
329,
1312,
287,
900,
26069,
7,
16,
25,
358,
320,
11,
48267,
8,
628,
220,
220,
220,
220,
220,
220,
220,
611,
953,
7,
72,
11,
3064,
8,
855,
15,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3601,
7203,
59,
77,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3601,
7203,
46156,
366,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3601,
7,
72,
8,
198,
220,
220,
220,
220,
220,
220,
220,
886,
628,
220,
220,
220,
220,
220,
220,
220,
4580,
62,
8800,
2817,
796,
6060,
19778,
9783,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
6167,
329,
2482,
287,
1366,
14535,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
6167,
796,
4731,
7203,
46156,
2430,
33172,
8841,
7,
72,
4008,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
923,
416,
8187,
1221,
1186,
1634,
329,
4580,
41701,
11,
384,
30052,
583,
15793,
220,
10185,
628,
220,
220,
220,
220,
220,
220,
220,
611,
4129,
7,
34642,
7,
44,
58,
72,
11,
47715,
4008,
27,
28,
20,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
581,
62,
29510,
796,
1976,
27498,
7,
13664,
7,
44,
58,
72,
11,
47715,
4008,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
334,
287,
352,
25,
13664,
7,
34642,
7,
44,
58,
72,
11,
47715,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
581,
62,
29510,
58,
44,
58,
72,
11,
47715,
764,
855,
3748,
7,
44,
58,
72,
11,
25,
12962,
58,
84,
11907,
764,
28,
334,
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,
2482,
58,
28265,
72,
60,
796,
581,
62,
29510,
628,
220,
220,
220,
220,
220,
220,
220,
2073,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
4129,
7,
34642,
7,
44,
58,
72,
11,
47715,
4008,
27,
28,
51,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
309,
28,
13664,
7,
34642,
7,
44,
58,
72,
11,
47715,
4008,
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,
611,
1221,
855,
25,
13276,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
371,
796,
479,
1326,
504,
7,
35138,
7,
44,
58,
72,
11,
25,
12962,
3256,
51,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2005,
13033,
28,
9107,
418,
7,
51,
10,
16,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2005,
13033,
58,
16,
22241,
39504,
7,
44,
58,
72,
11,
25,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2005,
13033,
58,
51,
10,
16,
22241,
47033,
7,
44,
58,
72,
11,
25,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10399,
796,
3297,
7,
49,
13,
1087,
364,
11,
67,
12078,
28,
17,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
685,
8968,
13033,
58,
72,
60,
796,
357,
1087,
364,
58,
72,
12,
16,
48688,
1087,
364,
58,
72,
12962,
14,
17,
329,
1312,
287,
362,
25,
51,
60,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
1221,
1186,
1096,
262,
1366,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
300,
521,
2304,
796,
44800,
15642,
1186,
7509,
7,
30619,
7,
8968,
13033,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4580,
62,
8800,
2817,
58,
28265,
1058,
16,
60,
796,
685,
268,
8189,
7,
75,
521,
2304,
11,
505,
8,
329,
530,
287,
337,
58,
72,
11,
25,
11907,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2073,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
300,
521,
2304,
796,
44800,
15642,
1186,
7509,
7,
65,
1389,
3212,
7,
15642,
1186,
1096,
3118,
6933,
30916,
7,
51,
828,
337,
58,
72,
11,
47715,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4580,
62,
8800,
2817,
58,
28265,
1058,
16,
60,
796,
685,
268,
8189,
7,
75,
521,
2304,
11,
505,
8,
329,
530,
287,
337,
58,
72,
11,
25,
11907,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
886,
628,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
1136,
262,
2248,
829,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
14722,
62,
24055,
796,
3297,
7,
34642,
7,
24055,
62,
8800,
2817,
58,
45299,
25,
16,
60,
4008,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
36733,
1096,
1271,
286,
15021,
41701,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
479,
28,
51,
628,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
5004,
262,
10375,
18868,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
493,
62,
67,
1023,
796,
651,
62,
14255,
62,
11664,
40,
7,
44,
11,
24055,
62,
8800,
2817,
11,
23912,
1424,
62,
24055,
11,
358,
320,
11,
72,
8,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
5004,
294,
3447,
75,
375,
329,
1588,
40,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
256,
28,
67,
2357,
3810,
62,
400,
10126,
7,
600,
62,
67,
1023,
11,
51,
11,
32374,
8,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4017,
3212,
28,
21737,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
474,
287,
14722,
62,
24055,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4574,
0,
7,
647,
3212,
17414,
73,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
886,
628,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8198,
28,
21737,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
8472,
4776,
379,
262,
3726,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10670,
43,
62,
5420,
28,
29152,
605,
62,
26675,
7,
44,
11,
24055,
62,
8800,
2817,
11,
647,
3212,
11,
74,
12,
16,
11,
83,
11,
358,
320,
11,
51,
11,
600,
62,
67,
1023,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
24443,
0,
7,
1416,
2850,
11,
12740,
43,
62,
5420,
8,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
981,
5288,
7,
1416,
2850,
8,
27,
28,
12740,
43,
62,
5420,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
16586,
62,
647,
469,
796,
657,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
4129,
7,
647,
3212,
8,
29,
16,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
474,
287,
352,
25,
13664,
7,
647,
3212,
13219,
16,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
20218,
62,
647,
3212,
796,
2769,
30073,
7,
647,
3212,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
24443,
0,
7,
29510,
62,
647,
3212,
58,
73,
4357,
29510,
62,
647,
3212,
58,
73,
10,
16,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
12233,
265,
0,
7,
29510,
62,
647,
3212,
11,
474,
10,
16,
8,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
285,
25404,
796,
8472,
62,
26675,
7,
44,
11,
24055,
62,
8800,
2817,
11,
29510,
62,
647,
3212,
11,
74,
12,
16,
11,
83,
11,
358,
320,
11,
51,
11,
600,
62,
67,
1023,
8,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
2198,
611,
262,
1459,
46545,
318,
262,
1266,
523,
1290,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
285,
25404,
1279,
5288,
7,
1416,
2850,
8,
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,
16586,
62,
647,
469,
796,
474,
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,
4574,
0,
7,
1416,
2850,
11,
9132,
75,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
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,
220,
220,
220,
220,
886,
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,
16586,
62,
647,
469,
14512,
657,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
24443,
0,
7,
647,
3212,
58,
8738,
4402,
62,
647,
469,
4357,
647,
3212,
58,
8738,
4402,
62,
647,
469,
10,
16,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
12233,
265,
0,
7,
647,
3212,
11,
16586,
62,
647,
469,
10,
16,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10670,
43,
62,
5420,
796,
5288,
7,
1416,
2850,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
479,
28,
74,
12,
16,
628,
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,
10670,
43,
62,
5420,
28,
39504,
7,
1416,
2850,
13219,
16,
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,
886,
628,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2482,
62,
27740,
796,
1976,
27498,
7,
13664,
7,
44,
58,
72,
11,
47715,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
6376,
287,
352,
25,
13664,
7,
647,
3212,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
15021,
8800,
796,
4017,
3212,
58,
9630,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
4686,
287,
15021,
8800,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2482,
62,
27740,
58,
24055,
62,
8800,
2817,
58,
28265,
25,
16,
60,
764,
855,
4686,
60,
764,
28,
6376,
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,
886,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2482,
58,
28265,
72,
60,
796,
2482,
62,
27740,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
43420,
58,
72,
11,
47715,
796,
2482,
62,
27740,
198,
220,
220,
220,
220,
220,
220,
220,
886,
628,
220,
220,
220,
886,
628,
220,
220,
220,
1441,
7,
43420,
8,
198,
198,
437,
628,
628,
198,
8818,
31828,
62,
4061,
35,
62,
8968,
13033,
7,
44,
3712,
19182,
90,
43879,
2414,
5512,
358,
320,
3712,
5317,
2414,
11,
51,
3712,
5317,
2414,
11,
15410,
28,
25,
13276,
8,
628,
220,
220,
220,
1303,
43420,
796,
6060,
19778,
3419,
198,
220,
220,
220,
2482,
796,
1976,
27498,
7,
7857,
7,
44,
4008,
198,
220,
220,
220,
1303,
23779,
796,
17635,
198,
220,
220,
220,
1303,
43420,
62,
3258,
28,
21737,
628,
220,
220,
220,
329,
1312,
287,
352,
25,
358,
320,
628,
220,
220,
220,
220,
220,
220,
220,
611,
953,
7,
72,
11,
3064,
8,
855,
15,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3601,
7203,
59,
77,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3601,
7203,
46156,
366,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3601,
7,
72,
8,
198,
220,
220,
220,
220,
220,
220,
220,
886,
628,
220,
220,
220,
220,
220,
220,
220,
15793,
796,
366,
72,
1,
628,
220,
220,
220,
220,
220,
220,
220,
4580,
62,
8800,
2817,
796,
6060,
19778,
9783,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
6167,
329,
2482,
287,
1366,
14535,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
18242,
796,
4731,
7203,
46156,
2430,
33172,
8841,
7,
72,
4008,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
923,
416,
8187,
1221,
1186,
1634,
329,
4580,
41701,
11,
384,
30052,
583,
15793,
220,
10185,
628,
220,
220,
220,
220,
220,
220,
220,
611,
4129,
7,
34642,
7,
44,
58,
72,
11,
47715,
4008,
29,
20,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
4129,
7,
34642,
7,
44,
58,
72,
11,
47715,
4008,
27,
28,
51,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
309,
28,
13664,
7,
34642,
7,
44,
58,
72,
11,
47715,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
886,
628,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
1221,
855,
25,
13276,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
371,
796,
479,
1326,
504,
7,
35138,
7,
44,
58,
72,
11,
25,
12962,
3256,
51,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2005,
13033,
28,
9107,
418,
7,
51,
10,
16,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2005,
13033,
58,
16,
22241,
39504,
7,
44,
58,
72,
11,
25,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2005,
13033,
58,
51,
10,
16,
22241,
47033,
7,
44,
58,
72,
11,
25,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10399,
796,
3297,
7,
49,
13,
1087,
364,
11,
67,
12078,
28,
17,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
685,
8968,
13033,
58,
72,
60,
796,
357,
1087,
364,
58,
72,
12,
16,
48688,
1087,
364,
58,
72,
12962,
14,
17,
329,
1312,
287,
362,
25,
51,
60,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
1221,
1186,
1096,
262,
1366,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
300,
521,
2304,
796,
44800,
15642,
1186,
7509,
7,
30619,
7,
8968,
13033,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4580,
62,
8800,
2817,
58,
28265,
1058,
16,
60,
796,
685,
268,
8189,
7,
75,
521,
2304,
11,
505,
8,
329,
530,
287,
337,
58,
72,
11,
25,
11907,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2073,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
300,
521,
2304,
796,
44800,
15642,
1186,
7509,
7,
65,
1389,
3212,
7,
15642,
1186,
1096,
3118,
6933,
30916,
7,
51,
828,
337,
58,
72,
11,
47715,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4580,
62,
8800,
2817,
58,
28265,
1058,
16,
60,
796,
685,
268,
8189,
7,
75,
521,
2304,
11,
505,
8,
329,
530,
287,
337,
58,
72,
11,
25,
11907,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
886,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
14689,
0,
7,
23779,
11,
8968,
13033,
8,
628,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
1136,
262,
2248,
829,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
14722,
62,
24055,
796,
3297,
7,
34642,
7,
24055,
62,
8800,
2817,
58,
45299,
25,
16,
60,
4008,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
36733,
1096,
1271,
286,
15021,
41701,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
479,
28,
51,
628,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
5004,
262,
10375,
18868,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
493,
62,
67,
1023,
796,
651,
62,
14255,
62,
11664,
40,
7,
44,
11,
24055,
62,
8800,
2817,
11,
23912,
1424,
62,
24055,
11,
358,
320,
11,
72,
8,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
5004,
294,
3447,
75,
375,
329,
1588,
40,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
256,
28,
67,
2357,
3810,
62,
400,
10126,
7,
600,
62,
67,
1023,
11,
51,
8,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4017,
3212,
28,
21737,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
474,
287,
14722,
62,
24055,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4574,
0,
7,
647,
3212,
17414,
73,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
886,
628,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8198,
28,
21737,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
8472,
4776,
379,
262,
3726,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10670,
43,
62,
5420,
28,
29152,
605,
62,
26675,
7,
44,
11,
24055,
62,
8800,
2817,
11,
647,
3212,
11,
74,
12,
16,
11,
83,
11,
358,
320,
11,
51,
11,
600,
62,
67,
1023,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
24443,
0,
7,
1416,
2850,
11,
12740,
43,
62,
5420,
8,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
981,
5288,
7,
1416,
2850,
8,
27,
28,
12740,
43,
62,
5420,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
16586,
62,
647,
469,
796,
657,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
4129,
7,
647,
3212,
8,
29,
16,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
474,
287,
352,
25,
13664,
7,
647,
3212,
13219,
16,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
20218,
62,
647,
3212,
796,
2769,
30073,
7,
647,
3212,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
24443,
0,
7,
29510,
62,
647,
3212,
58,
73,
4357,
29510,
62,
647,
3212,
58,
73,
10,
16,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
12233,
265,
0,
7,
29510,
62,
647,
3212,
11,
474,
10,
16,
8,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
285,
25404,
796,
8472,
62,
26675,
7,
44,
11,
24055,
62,
8800,
2817,
11,
29510,
62,
647,
3212,
11,
74,
12,
16,
11,
83,
11,
358,
320,
11,
51,
11,
600,
62,
67,
1023,
8,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
2198,
611,
262,
1459,
46545,
318,
262,
1266,
523,
1290,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
285,
25404,
1279,
5288,
7,
1416,
2850,
8,
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,
16586,
62,
647,
469,
796,
474,
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,
4574,
0,
7,
1416,
2850,
11,
9132,
75,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
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,
220,
220,
220,
220,
886,
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,
16586,
62,
647,
469,
14512,
657,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
24443,
0,
7,
647,
3212,
58,
8738,
4402,
62,
647,
469,
4357,
647,
3212,
58,
8738,
4402,
62,
647,
469,
10,
16,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
12233,
265,
0,
7,
647,
3212,
11,
16586,
62,
647,
469,
10,
16,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10670,
43,
62,
5420,
796,
5288,
7,
1416,
2850,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
479,
28,
74,
12,
16,
628,
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,
10670,
43,
62,
5420,
28,
39504,
7,
1416,
2850,
13219,
16,
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,
886,
628,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2482,
62,
27740,
796,
1976,
27498,
7,
13664,
7,
44,
58,
72,
11,
47715,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
6376,
287,
352,
25,
13664,
7,
647,
3212,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
15021,
8800,
796,
4017,
3212,
58,
9630,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3509,
4122,
796,
5415,
7,
20285,
305,
8800,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
949,
4122,
796,
5288,
7,
20285,
305,
8800,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
3601,
7203,
59,
77,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
3601,
7,
23779,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
3601,
7203,
59,
77,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
3601,
7,
9806,
4122,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
4686,
287,
15021,
8800,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2482,
62,
27740,
58,
24055,
62,
8800,
2817,
58,
28265,
25,
16,
60,
764,
855,
4686,
60,
764,
28,
357,
8968,
13033,
58,
9806,
4122,
45297,
8968,
13033,
58,
1084,
4122,
12962,
14,
17,
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,
886,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2482,
58,
72,
11,
47715,
796,
2482,
62,
27740,
198,
220,
220,
220,
220,
220,
220,
220,
886,
628,
220,
220,
220,
886,
628,
220,
220,
220,
1441,
7,
43420,
8,
198,
198,
437,
628,
198,
8818,
31828,
62,
4061,
35,
62,
565,
436,
1068,
7,
44,
3712,
19182,
90,
43879,
2414,
5512,
358,
320,
3712,
5317,
2414,
11,
51,
3712,
5317,
2414,
11,
66,
3712,
5317,
2414,
11,
15410,
28,
25,
13276,
8,
628,
220,
220,
220,
2482,
796,
1976,
27498,
7,
7857,
7,
44,
4008,
198,
220,
220,
220,
311,
5662,
796,
352,
14,
17,
9,
7,
40,
12,
66,
669,
431,
283,
805,
7,
44,
6,
4008,
198,
220,
220,
220,
32966,
796,
289,
565,
436,
7,
4303,
34,
11,
8726,
496,
28,
25,
904,
62,
18302,
421,
1144,
8,
198,
220,
220,
220,
49480,
62,
7890,
796,
2005,
631,
7,
565,
436,
26,
74,
28,
66,
8,
628,
220,
220,
220,
329,
1312,
287,
352,
25,
66,
198,
220,
220,
220,
220,
220,
220,
220,
31870,
796,
49480,
62,
7890,
764,
855,
1312,
198,
220,
220,
220,
220,
220,
220,
220,
1366,
796,
337,
58,
19738,
273,
11,
47715,
198,
220,
220,
220,
220,
220,
220,
220,
581,
796,
31828,
62,
4061,
35,
7,
7890,
11,
7857,
7,
7890,
38381,
16,
4357,
1314,
11,
25,
13276,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
4798,
7203,
59,
77,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
4798,
7,
4906,
1659,
7,
411,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
2482,
58,
19738,
273,
11,
47715,
764,
28,
15690,
7,
411,
33047,
198,
220,
220,
220,
886,
628,
220,
220,
220,
1441,
7,
6601,
19778,
7,
43420,
4008,
198,
437,
198
] | 1.842185 | 6,590 |
"""
OVGCriterion
Otten-van Ginneken adaptive stop criterion.
Parameters
==========
threshold
Reference
=========
Varanelli, eq. 2.47.
"""
@with_kw struct OVGCriterion{T}
energy_reference::T
threshold::T = 0.001
end
function (criterion::OVGCriterion)(state::AnnealingState)
σ = std(state.energies)
dμ = criterion.energy_reference - mean(state.energies)
σ == 0 && return true
if dμ >= 0
stop_measure = σ^2/(state.temperature*dμ)
else
stop_measure = Inf
end
return stop_measure < criterion.threshold
end
"""
SSVCriterion
Sechen and Sangiovanni-Vincentelli stop criterion. Stops if the same energy
appears a given amount of time at the end of Markov chains.
Parameters
==========
maximum_repeat: maximum number of time the same BSF energy can be repeated.
Reference
=========
Varanelli, p. 26.
"""
@with_kw mutable struct SSVCriterion{T}
maximum_repeat::Int = 3
last_energy::T = Inf
repeat_count::Int = 1
end
function (criterion::SSVCriterion)(state::AnnealingState)
if state.bsf_energy == criterion.last_energy
criterion.repeat_count += 1
else
criterion.last_energy = state.bsf_energy
criterion.repeat_count = 1
end
return criterion.repeat_count == criterion.maximum_repeat
end | [
37811,
198,
220,
220,
220,
440,
53,
15916,
799,
28019,
198,
198,
46,
32407,
12,
10438,
21444,
710,
3464,
29605,
2245,
34054,
13,
198,
198,
48944,
198,
2559,
855,
198,
400,
10126,
198,
198,
26687,
198,
2559,
28,
198,
53,
19173,
23225,
11,
37430,
13,
362,
13,
2857,
13,
198,
37811,
198,
31,
4480,
62,
46265,
2878,
440,
53,
15916,
799,
28019,
90,
51,
92,
198,
220,
220,
220,
2568,
62,
35790,
3712,
51,
198,
220,
220,
220,
11387,
3712,
51,
796,
657,
13,
8298,
198,
437,
198,
198,
8818,
357,
22213,
28019,
3712,
8874,
15916,
799,
28019,
5769,
5219,
3712,
43227,
4272,
9012,
8,
198,
220,
220,
220,
18074,
225,
796,
14367,
7,
5219,
13,
877,
70,
444,
8,
198,
220,
220,
220,
288,
34703,
796,
34054,
13,
22554,
62,
35790,
532,
1612,
7,
5219,
13,
877,
70,
444,
8,
628,
220,
220,
220,
18074,
225,
6624,
657,
11405,
1441,
2081,
198,
220,
220,
220,
220,
198,
220,
220,
220,
611,
288,
34703,
18189,
657,
198,
220,
220,
220,
220,
220,
220,
220,
2245,
62,
1326,
5015,
796,
18074,
225,
61,
17,
29006,
5219,
13,
11498,
21069,
9,
67,
34703,
8,
198,
220,
220,
220,
2073,
198,
220,
220,
220,
220,
220,
220,
220,
2245,
62,
1326,
5015,
796,
4806,
198,
220,
220,
220,
886,
628,
220,
220,
220,
1441,
2245,
62,
1326,
5015,
1279,
34054,
13,
400,
10126,
198,
437,
628,
198,
37811,
198,
220,
220,
220,
6723,
15922,
799,
28019,
198,
198,
6558,
831,
290,
30043,
16664,
31296,
12,
53,
42816,
23225,
2245,
34054,
13,
520,
2840,
611,
262,
976,
2568,
198,
1324,
4127,
257,
1813,
2033,
286,
640,
379,
262,
886,
286,
2940,
709,
14659,
13,
198,
198,
48944,
198,
2559,
855,
198,
47033,
62,
44754,
25,
5415,
1271,
286,
640,
262,
976,
347,
20802,
2568,
460,
307,
5100,
13,
198,
198,
26687,
198,
2559,
28,
198,
53,
19173,
23225,
11,
279,
13,
2608,
13,
198,
37811,
198,
31,
4480,
62,
46265,
4517,
540,
2878,
6723,
15922,
799,
28019,
90,
51,
92,
198,
220,
220,
220,
5415,
62,
44754,
3712,
5317,
796,
513,
198,
220,
220,
220,
938,
62,
22554,
3712,
51,
796,
4806,
198,
220,
220,
220,
9585,
62,
9127,
3712,
5317,
796,
352,
198,
437,
198,
198,
8818,
357,
22213,
28019,
3712,
5432,
15922,
799,
28019,
5769,
5219,
3712,
43227,
4272,
9012,
8,
198,
220,
220,
220,
611,
1181,
13,
1443,
69,
62,
22554,
6624,
34054,
13,
12957,
62,
22554,
198,
220,
220,
220,
220,
220,
220,
220,
34054,
13,
44754,
62,
9127,
15853,
352,
198,
220,
220,
220,
2073,
198,
220,
220,
220,
220,
220,
220,
220,
34054,
13,
12957,
62,
22554,
796,
1181,
13,
1443,
69,
62,
22554,
198,
220,
220,
220,
220,
220,
220,
220,
34054,
13,
44754,
62,
9127,
796,
352,
198,
220,
220,
220,
886,
198,
220,
220,
220,
1441,
34054,
13,
44754,
62,
9127,
6624,
34054,
13,
47033,
62,
44754,
198,
437
] | 2.692149 | 484 |
function JuliaBenchSIMD( operationMode )
allFunctions = [MatrixAddition, MatrixMultiplication, ElementWiseOperations]; # only SIMD functions to run
allFunctionsString = [ "Matrix Addition", "Matrix Multiplication", "Element Wise Operations"];
if (operationMode == 1) # partial benchmark
vMatrixSize = dropdims(readdlm(joinpath("Inputs","vMatrixSizePartial.csv"), ',',Int64), dims=1);
numIterations = dropdims(readdlm(joinpath("Inputs","numIterationsPartial.csv"), ',',Int64), dims=1);
elseif (operationMode == 2) # full benchmark
vMatrixSize = dropdims(readdlm(joinpath("Inputs","vMatrixSizeFull.csv"), ',',Int64), dims=1);
numIterations = dropdims(readdlm(joinpath("Inputs","numIterationsFull.csv"), ',',Int64), dims=1);
elseif (operationMode == 0) # Test benchmark
vMatrixSize = 2;
numIterations = 1;
end
numIterations = numIterations[1]; # It is 1x1 Array -> Scalar
mRunTime = zeros(length(vMatrixSize), length(allFunctions), numIterations);
tRunTime= Array{Any}(undef,length(allFunctions)+1,length(vMatrixSize)+1)# a table containing all the information
tRunTime[1,1]="FunctionName\\MatrixSize";
for ii = 1:length(vMatrixSize)
matrixSize = vMatrixSize[ii];
mX = randn(matrixSize, matrixSize);
mY = randn(matrixSize, matrixSize);
println("Matrix Size - $matrixSize");
jj=1;
for fun in allFunctions
println("Processing $(allFunctionsString[jj]) - MatrixSize= $matrixSize");
for kk = 1:numIterations;
benchIJK =@benchmark $fun($matrixSize, $mX, $mY)
# t =@benchmarkable $fun($matrixSize, $mX, $mY);
# tune!(t)
# run(t)
mRunTime[ii, jj, kk]=median(benchIJK).time/1e3;
# println("$(mRunTime[ii, jj, kk])")
end
tRunTime[jj+1,1]="$(allFunctionsString[jj])";
tRunTime[1,ii+1]="$matrixSize";
tRunTime[jj+1,ii+1]=mean(mRunTime[ii, jj,:]);
jj+=1;
end
end
return tRunTime, mRunTime;
end
#=
function MatrixGeneration( matrixSize, mX, mY )
mA = randn(matrixSize, matrixSize);
mB = rand(matrixSize, matrixSize);
return mA;
end
=#
function MatrixAddition( matrixSize, mX, mY )
scalarA = rand();
scalarB = rand();
# mA = (scalarA .* mX) .+ (scalarB .* mY);
mA = Array{Float64}(undef, matrixSize, matrixSize);
@simd for ii = 1:(matrixSize * matrixSize)
@inbounds mA[ii] = (scalarA * mX[ii]) + (scalarB * mY[ii]);
end
return mA;
end
function MatrixMultiplication( matrixSize, mX, mY )
scalarA = rand();
scalarB = rand();
# mA = (scalarA .+ mX) * (scalarB .+ mY);
mA = Array{Float64}(undef, matrixSize, matrixSize);
@simd for ii = 1:(matrixSize * matrixSize)
@inbounds mA[ii] = (scalarA + mX[ii]) * (scalarB + mY[ii]);
end
return mA;
end
#=
function MatrixQuadraticForm( matrixSize, mX, mY )
vX = randn(matrixSize);
vB = randn(matrixSize);
sacalrC = rand();
mA = (transpose(mX * vX) * (mX * vX)) .+ (transpose(vB) * vX) .+ sacalrC;
return mA;
end
function MatrixReductions( matrixSize, mX, mY )
mA = sum(mX, dims=1) .+ minimum(mY, dims=2); #Broadcasting
return mA;
end
=#
function ElementWiseOperations( matrixSize, mX, mY )
mA = rand(matrixSize, matrixSize);
mB = 3 .+ rand(matrixSize, matrixSize);
mC = rand(matrixSize, matrixSize);
# mD = abs.(mA) .+ sin.(mA);
mD = Array{Float64}(undef, matrixSize, matrixSize);
@simd for ii = 1:(matrixSize * matrixSize)
@inbounds mD[ii] = abs(mA[ii]) + sin(mA[ii]);
end
# mE = exp.(-(mA .^ 2));
mE = Array{Float64}(undef, matrixSize, matrixSize);
@simd for ii = 1:(matrixSize * matrixSize)
@inbounds mE[ii] = exp(- (mA[ii] * mA[ii]));
end
# mF = (-mB .+ sqrt.((mB .^ 2) .- (4 .* mA .* mC))) ./ (2 .* mA);
mF = Array{Float64}(undef, matrixSize, matrixSize);
@simd for ii = 1:(matrixSize * matrixSize)
@inbounds mF[ii] = (-mB[ii] + sqrt( (mB[ii] * mB[ii]) - (4 * mA[ii] * mC[ii]) )) ./ (2 * mA[ii]);
end
mA = mD .+ mE .+ mF;
return mA;
end
#=
function MatrixExp( matrixSize, mX, mY )
mA = exp(mX);
return mA;
end
function MatrixSqrt( matrixSize, mX, mY )
mY = transpose(mX) * mX;
mA = sqrt(mY);
return mA;
end
function Svd( matrixSize, mX, mY )
F = svd(mX, full = false); # F is SVD object
mU, mS, mV = F;
return mA=0;
end
function Eig( matrixSize, mX, mY )
F = eigen(mX); # F is eigen object
mD, mV = F;
return mA=0;
end
function CholDec( matrixSize, mX, mY )
mY = transpose(mX) * mX;
mA = cholesky(mY);
return mA;
end
function MatInv( matrixSize, mX, mY )
mY = transpose(mX) * mX;
mA = inv(mY);
mB = pinv(mX);
mA = mA .+ mB;
return mA;
end
function LinearSystem( matrixSize, mX, mY )
mB = randn(matrixSize, matrixSize);
vB = randn(matrixSize);
vA = mX \ vB;
mA = mX \ mB;
mA = mA .+ vA;
return mA;
end
function LeastSquares( matrixSize, mX, mY )
mB = randn(matrixSize, matrixSize);
vB = randn(matrixSize);
vA = (transpose(mX) * mX) \ (transpose(mX) * vB);
mA = (transpose(mX) * mX) \ (transpose(mX) * mB);
mA = mA .+ vA;
return mA;
end
function CalcDistanceMatrix( matrixSize, mX, mY )
mY = randn(matrixSize, matrixSize);
mA = transpose(sum(mX .^ 2, dims=1)) .- (2 .* transpose(mX) * mY) .+ sum(mY .^ 2, dims=1);
return mA;
end
function KMeans( matrixSize, mX, mY )
# Assuming Samples are slong Columns (Rows are features)
numClusters = Int64( max( round(matrixSize / 100), 1 ) ); # % max between 1 and round(...)
numIterations = 10;
# http://stackoverflow.com/questions/36047516/julia-generating-unique-random-integer-array
mA = mX[:, randperm(matrixSize)[1:numClusters]]; #<! Cluster Centroids
for ii = 1:numIterations
vMinDist, mClusterId = findmin( transpose(sum(mA .^ 2, dims=1)) .- (2 .* transpose(mA)* mX), dims=1); #<! Is there a `~` equivalent in Julia?
vClusterId = LinearIndices( dropdims(mClusterId, dims=1) ); # to be able to access it later
for jj = 1:numClusters
mA[:, jj] = mean( mX[:, vClusterId .== jj ], dims=2 );
end
end
mA = mA[:, 1] .+ transpose(mA[:, end]);
return mA;
end
=#
| [
8818,
22300,
44199,
48913,
35,
7,
4905,
19076,
1267,
628,
220,
220,
220,
477,
24629,
2733,
796,
685,
46912,
4550,
653,
11,
24936,
15205,
24705,
3299,
11,
11703,
54,
786,
18843,
602,
11208,
1303,
691,
23749,
35,
5499,
284,
1057,
628,
198,
220,
220,
220,
477,
24629,
2733,
10100,
796,
685,
366,
46912,
3060,
653,
1600,
366,
46912,
15237,
489,
3299,
1600,
366,
20180,
28908,
16205,
8973,
26,
628,
197,
361,
357,
27184,
19076,
6624,
352,
8,
1303,
13027,
18335,
198,
197,
197,
85,
46912,
10699,
796,
220,
4268,
67,
12078,
7,
961,
25404,
76,
7,
22179,
6978,
7203,
20560,
82,
2430,
85,
46912,
10699,
7841,
498,
13,
40664,
12340,
46083,
3256,
5317,
2414,
828,
5391,
82,
28,
16,
1776,
198,
197,
197,
22510,
29993,
602,
796,
4268,
67,
12078,
7,
961,
25404,
76,
7,
22179,
6978,
7203,
20560,
82,
2430,
22510,
29993,
602,
7841,
498,
13,
40664,
12340,
46083,
3256,
5317,
2414,
828,
5391,
82,
28,
16,
1776,
628,
197,
17772,
361,
357,
27184,
19076,
6624,
362,
8,
1303,
1336,
18335,
198,
197,
197,
85,
46912,
10699,
796,
4268,
67,
12078,
7,
961,
25404,
76,
7,
22179,
6978,
7203,
20560,
82,
2430,
85,
46912,
10699,
13295,
13,
40664,
12340,
46083,
3256,
5317,
2414,
828,
5391,
82,
28,
16,
1776,
198,
197,
197,
22510,
29993,
602,
796,
220,
4268,
67,
12078,
7,
961,
25404,
76,
7,
22179,
6978,
7203,
20560,
82,
2430,
22510,
29993,
602,
13295,
13,
40664,
12340,
46083,
3256,
5317,
2414,
828,
5391,
82,
28,
16,
1776,
628,
197,
17772,
361,
357,
27184,
19076,
6624,
657,
8,
1303,
6208,
18335,
198,
197,
197,
85,
46912,
10699,
796,
362,
26,
198,
197,
197,
22510,
29993,
602,
796,
220,
352,
26,
628,
197,
437,
628,
198,
220,
220,
220,
997,
29993,
602,
796,
997,
29993,
602,
58,
16,
11208,
1303,
632,
318,
352,
87,
16,
15690,
4613,
34529,
283,
628,
220,
220,
220,
285,
10987,
7575,
796,
1976,
27498,
7,
13664,
7,
85,
46912,
10699,
828,
4129,
7,
439,
24629,
2733,
828,
997,
29993,
602,
1776,
198,
220,
220,
220,
256,
10987,
7575,
28,
15690,
90,
7149,
92,
7,
917,
891,
11,
13664,
7,
439,
24629,
2733,
47762,
16,
11,
13664,
7,
85,
46912,
10699,
47762,
16,
8,
2,
257,
3084,
7268,
477,
262,
1321,
198,
197,
83,
10987,
7575,
58,
16,
11,
16,
60,
2625,
22203,
5376,
6852,
46912,
10699,
8172,
628,
220,
220,
220,
329,
21065,
796,
352,
25,
13664,
7,
85,
46912,
10699,
8,
198,
220,
220,
220,
220,
220,
220,
220,
17593,
10699,
796,
410,
46912,
10699,
58,
4178,
11208,
198,
220,
220,
220,
220,
220,
220,
220,
285,
55,
796,
43720,
77,
7,
6759,
8609,
10699,
11,
17593,
10699,
1776,
198,
220,
220,
220,
220,
220,
220,
220,
285,
56,
796,
43720,
77,
7,
6759,
8609,
10699,
11,
17593,
10699,
1776,
198,
220,
220,
220,
220,
220,
220,
220,
44872,
7203,
46912,
12849,
532,
720,
6759,
8609,
10699,
15341,
628,
220,
220,
220,
220,
220,
220,
220,
474,
73,
28,
16,
26,
198,
220,
220,
220,
220,
220,
220,
220,
329,
1257,
287,
477,
24629,
2733,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
44872,
7203,
18709,
278,
29568,
439,
24629,
2733,
10100,
58,
41098,
12962,
532,
24936,
10699,
28,
720,
6759,
8609,
10699,
15341,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
479,
74,
796,
352,
25,
22510,
29993,
602,
26,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7624,
23852,
42,
796,
31,
26968,
4102,
720,
12543,
16763,
6759,
8609,
10699,
11,
720,
76,
55,
11,
720,
76,
56,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
256,
796,
31,
26968,
4102,
540,
720,
12543,
16763,
6759,
8609,
10699,
11,
720,
76,
55,
11,
720,
76,
56,
1776,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
14009,
0,
7,
83,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
1057,
7,
83,
8,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
285,
10987,
7575,
58,
4178,
11,
474,
73,
11,
479,
74,
22241,
1150,
666,
7,
26968,
23852,
42,
737,
2435,
14,
16,
68,
18,
26,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
44872,
7203,
3,
7,
76,
10987,
7575,
58,
4178,
11,
474,
73,
11,
479,
74,
12962,
4943,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
886,
198,
197,
197,
197,
83,
10987,
7575,
58,
41098,
10,
16,
11,
16,
60,
2625,
3,
7,
439,
24629,
2733,
10100,
58,
41098,
12962,
8172,
198,
197,
197,
197,
83,
10987,
7575,
58,
16,
11,
4178,
10,
16,
60,
2625,
3,
6759,
8609,
10699,
8172,
198,
197,
197,
197,
83,
10987,
7575,
58,
41098,
10,
16,
11,
4178,
10,
16,
22241,
32604,
7,
76,
10987,
7575,
58,
4178,
11,
474,
73,
11,
25,
36563,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
474,
73,
47932,
16,
26,
198,
220,
220,
220,
220,
220,
220,
220,
886,
628,
220,
220,
220,
886,
628,
220,
220,
220,
1441,
256,
10987,
7575,
11,
285,
10987,
7575,
26,
198,
437,
198,
198,
2,
28,
198,
8818,
24936,
8645,
341,
7,
17593,
10699,
11,
285,
55,
11,
285,
56,
1267,
628,
220,
285,
32,
796,
43720,
77,
7,
6759,
8609,
10699,
11,
17593,
10699,
1776,
198,
220,
285,
33,
796,
43720,
7,
6759,
8609,
10699,
11,
17593,
10699,
1776,
628,
220,
1441,
285,
32,
26,
198,
437,
198,
46249,
198,
8818,
24936,
4550,
653,
7,
17593,
10699,
11,
285,
55,
11,
285,
56,
1267,
628,
220,
16578,
283,
32,
796,
43720,
9783,
198,
220,
16578,
283,
33,
796,
43720,
9783,
628,
220,
1303,
285,
32,
796,
357,
1416,
282,
283,
32,
764,
9,
285,
55,
8,
764,
10,
357,
1416,
282,
283,
33,
764,
9,
285,
56,
1776,
198,
220,
285,
32,
796,
15690,
90,
43879,
2414,
92,
7,
917,
891,
11,
17593,
10699,
11,
17593,
10699,
1776,
198,
220,
2488,
14323,
67,
329,
21065,
796,
352,
37498,
6759,
8609,
10699,
1635,
17593,
10699,
8,
198,
220,
220,
220,
2488,
259,
65,
3733,
285,
32,
58,
4178,
60,
796,
357,
1416,
282,
283,
32,
1635,
285,
55,
58,
4178,
12962,
1343,
357,
1416,
282,
283,
33,
1635,
285,
56,
58,
4178,
36563,
198,
220,
886,
628,
220,
1441,
285,
32,
26,
198,
437,
198,
198,
8818,
24936,
15205,
24705,
3299,
7,
17593,
10699,
11,
285,
55,
11,
285,
56,
1267,
628,
220,
16578,
283,
32,
796,
43720,
9783,
198,
220,
16578,
283,
33,
796,
43720,
9783,
628,
220,
1303,
285,
32,
796,
357,
1416,
282,
283,
32,
764,
10,
285,
55,
8,
1635,
357,
1416,
282,
283,
33,
764,
10,
285,
56,
1776,
198,
220,
285,
32,
796,
15690,
90,
43879,
2414,
92,
7,
917,
891,
11,
17593,
10699,
11,
17593,
10699,
1776,
198,
220,
2488,
14323,
67,
329,
21065,
796,
352,
37498,
6759,
8609,
10699,
1635,
17593,
10699,
8,
198,
220,
220,
220,
2488,
259,
65,
3733,
285,
32,
58,
4178,
60,
796,
357,
1416,
282,
283,
32,
1343,
285,
55,
58,
4178,
12962,
1635,
357,
1416,
282,
283,
33,
1343,
285,
56,
58,
4178,
36563,
198,
220,
886,
628,
220,
1441,
285,
32,
26,
198,
437,
198,
2,
28,
198,
8818,
24936,
4507,
41909,
1512,
8479,
7,
17593,
10699,
11,
285,
55,
11,
285,
56,
1267,
628,
220,
410,
55,
796,
43720,
77,
7,
6759,
8609,
10699,
1776,
198,
220,
410,
33,
796,
43720,
77,
7,
6759,
8609,
10699,
1776,
198,
220,
5360,
282,
81,
34,
796,
43720,
9783,
628,
220,
285,
32,
796,
357,
7645,
3455,
7,
76,
55,
1635,
410,
55,
8,
1635,
357,
76,
55,
1635,
410,
55,
4008,
764,
10,
357,
7645,
3455,
7,
85,
33,
8,
1635,
410,
55,
8,
764,
10,
5360,
282,
81,
34,
26,
628,
220,
1441,
285,
32,
26,
198,
437,
198,
198,
8818,
24936,
7738,
20847,
7,
17593,
10699,
11,
285,
55,
11,
285,
56,
1267,
628,
220,
285,
32,
796,
2160,
7,
76,
55,
11,
5391,
82,
28,
16,
8,
764,
10,
5288,
7,
76,
56,
11,
5391,
82,
28,
17,
1776,
1303,
30507,
19913,
628,
220,
1441,
285,
32,
26,
198,
437,
198,
46249,
198,
8818,
11703,
54,
786,
18843,
602,
7,
17593,
10699,
11,
285,
55,
11,
285,
56,
1267,
628,
220,
285,
32,
796,
43720,
7,
6759,
8609,
10699,
11,
17593,
10699,
1776,
198,
220,
285,
33,
796,
513,
764,
10,
43720,
7,
6759,
8609,
10699,
11,
17593,
10699,
1776,
198,
220,
285,
34,
796,
43720,
7,
6759,
8609,
10699,
11,
17593,
10699,
1776,
628,
220,
1303,
285,
35,
796,
2352,
12195,
42646,
8,
764,
10,
7813,
12195,
42646,
1776,
198,
220,
285,
35,
796,
15690,
90,
43879,
2414,
92,
7,
917,
891,
11,
17593,
10699,
11,
17593,
10699,
1776,
198,
220,
2488,
14323,
67,
329,
21065,
796,
352,
37498,
6759,
8609,
10699,
1635,
17593,
10699,
8,
198,
220,
220,
220,
2488,
259,
65,
3733,
285,
35,
58,
4178,
60,
796,
2352,
7,
42646,
58,
4178,
12962,
1343,
7813,
7,
42646,
58,
4178,
36563,
198,
220,
886,
628,
220,
1303,
285,
36,
796,
1033,
12195,
30420,
42646,
764,
61,
362,
18125,
198,
220,
285,
36,
796,
15690,
90,
43879,
2414,
92,
7,
917,
891,
11,
17593,
10699,
11,
17593,
10699,
1776,
198,
220,
2488,
14323,
67,
329,
21065,
796,
352,
37498,
6759,
8609,
10699,
1635,
17593,
10699,
8,
198,
220,
220,
220,
2488,
259,
65,
3733,
285,
36,
58,
4178,
60,
796,
1033,
32590,
357,
42646,
58,
4178,
60,
1635,
285,
32,
58,
4178,
12962,
1776,
198,
220,
886,
628,
220,
1303,
285,
37,
796,
13841,
76,
33,
764,
10,
19862,
17034,
12195,
7,
76,
33,
764,
61,
362,
8,
764,
12,
357,
19,
764,
9,
285,
32,
764,
9,
285,
34,
22305,
24457,
357,
17,
764,
9,
285,
32,
1776,
198,
220,
285,
37,
796,
15690,
90,
43879,
2414,
92,
7,
917,
891,
11,
17593,
10699,
11,
17593,
10699,
1776,
198,
220,
2488,
14323,
67,
329,
21065,
796,
352,
37498,
6759,
8609,
10699,
1635,
17593,
10699,
8,
198,
220,
220,
220,
2488,
259,
65,
3733,
285,
37,
58,
4178,
60,
796,
13841,
76,
33,
58,
4178,
60,
1343,
19862,
17034,
7,
357,
76,
33,
58,
4178,
60,
1635,
285,
33,
58,
4178,
12962,
532,
357,
19,
1635,
285,
32,
58,
4178,
60,
1635,
285,
34,
58,
4178,
12962,
15306,
24457,
357,
17,
1635,
285,
32,
58,
4178,
36563,
198,
220,
886,
628,
220,
285,
32,
796,
285,
35,
764,
10,
285,
36,
764,
10,
285,
37,
26,
628,
220,
1441,
285,
32,
26,
198,
437,
198,
198,
2,
28,
198,
8818,
24936,
16870,
7,
17593,
10699,
11,
285,
55,
11,
285,
56,
1267,
628,
220,
220,
220,
285,
32,
796,
1033,
7,
76,
55,
1776,
628,
220,
220,
220,
1441,
285,
32,
26,
198,
437,
198,
198,
8818,
24936,
50,
80,
17034,
7,
17593,
10699,
11,
285,
55,
11,
285,
56,
1267,
628,
198,
220,
220,
220,
285,
56,
796,
1007,
3455,
7,
76,
55,
8,
1635,
285,
55,
26,
628,
220,
220,
220,
285,
32,
796,
19862,
17034,
7,
76,
56,
1776,
628,
198,
220,
1441,
285,
32,
26,
198,
437,
198,
198,
8818,
311,
20306,
7,
17593,
10699,
11,
285,
55,
11,
285,
56,
1267,
628,
220,
220,
220,
376,
796,
264,
20306,
7,
76,
55,
11,
1336,
796,
3991,
1776,
1303,
376,
318,
311,
8898,
2134,
198,
220,
220,
220,
285,
52,
11,
285,
50,
11,
285,
53,
796,
376,
26,
628,
220,
220,
220,
1441,
285,
32,
28,
15,
26,
198,
437,
198,
198,
8818,
412,
328,
7,
17593,
10699,
11,
285,
55,
11,
285,
56,
1267,
628,
220,
220,
220,
376,
220,
796,
304,
9324,
7,
76,
55,
1776,
1303,
376,
318,
304,
9324,
2134,
198,
220,
220,
220,
285,
35,
11,
285,
53,
796,
376,
26,
628,
220,
220,
220,
1441,
285,
32,
28,
15,
26,
198,
437,
198,
198,
8818,
609,
349,
10707,
7,
17593,
10699,
11,
285,
55,
11,
285,
56,
1267,
628,
220,
285,
56,
796,
1007,
3455,
7,
76,
55,
8,
1635,
285,
55,
26,
628,
220,
285,
32,
796,
442,
4316,
2584,
7,
76,
56,
1776,
628,
220,
1441,
285,
32,
26,
198,
437,
198,
198,
8818,
6550,
19904,
7,
17593,
10699,
11,
285,
55,
11,
285,
56,
1267,
628,
220,
285,
56,
796,
1007,
3455,
7,
76,
55,
8,
1635,
285,
55,
26,
628,
220,
285,
32,
796,
800,
7,
76,
56,
1776,
198,
220,
285,
33,
796,
6757,
85,
7,
76,
55,
1776,
628,
220,
285,
32,
796,
285,
32,
764,
10,
285,
33,
26,
628,
220,
1441,
285,
32,
26,
198,
437,
198,
198,
8818,
44800,
11964,
7,
17593,
10699,
11,
285,
55,
11,
285,
56,
1267,
628,
220,
285,
33,
796,
43720,
77,
7,
6759,
8609,
10699,
11,
17593,
10699,
1776,
198,
220,
410,
33,
796,
43720,
77,
7,
6759,
8609,
10699,
1776,
628,
220,
410,
32,
796,
285,
55,
3467,
410,
33,
26,
198,
220,
285,
32,
796,
285,
55,
3467,
285,
33,
26,
628,
220,
285,
32,
796,
285,
32,
764,
10,
410,
32,
26,
628,
220,
1441,
285,
32,
26,
198,
437,
198,
198,
8818,
1004,
459,
22266,
3565,
7,
17593,
10699,
11,
285,
55,
11,
285,
56,
1267,
628,
220,
285,
33,
796,
43720,
77,
7,
6759,
8609,
10699,
11,
17593,
10699,
1776,
198,
220,
410,
33,
796,
43720,
77,
7,
6759,
8609,
10699,
1776,
628,
220,
410,
32,
796,
357,
7645,
3455,
7,
76,
55,
8,
1635,
285,
55,
8,
3467,
357,
7645,
3455,
7,
76,
55,
8,
1635,
410,
33,
1776,
198,
220,
285,
32,
796,
357,
7645,
3455,
7,
76,
55,
8,
1635,
285,
55,
8,
3467,
357,
7645,
3455,
7,
76,
55,
8,
1635,
285,
33,
1776,
628,
220,
285,
32,
796,
285,
32,
764,
10,
410,
32,
26,
628,
220,
1441,
285,
32,
26,
198,
437,
198,
198,
8818,
2199,
66,
45767,
46912,
7,
17593,
10699,
11,
285,
55,
11,
285,
56,
1267,
628,
220,
285,
56,
796,
43720,
77,
7,
6759,
8609,
10699,
11,
17593,
10699,
1776,
628,
220,
285,
32,
796,
1007,
3455,
7,
16345,
7,
76,
55,
764,
61,
362,
11,
5391,
82,
28,
16,
4008,
764,
12,
357,
17,
764,
9,
1007,
3455,
7,
76,
55,
8,
1635,
285,
56,
8,
764,
10,
2160,
7,
76,
56,
764,
61,
362,
11,
5391,
82,
28,
16,
1776,
628,
220,
1441,
285,
32,
26,
198,
437,
198,
198,
8818,
509,
5308,
504,
7,
17593,
10699,
11,
285,
55,
11,
285,
56,
1267,
628,
220,
220,
220,
1303,
33238,
3409,
2374,
389,
1017,
506,
29201,
82,
357,
49,
1666,
389,
3033,
8,
198,
220,
220,
220,
997,
2601,
13654,
220,
796,
2558,
2414,
7,
3509,
7,
2835,
7,
6759,
8609,
10699,
1220,
1802,
828,
352,
1267,
5619,
1303,
4064,
3509,
1022,
352,
290,
2835,
7,
23029,
198,
220,
220,
220,
997,
29993,
602,
796,
838,
26,
628,
220,
220,
220,
1303,
2638,
1378,
25558,
2502,
11125,
13,
785,
14,
6138,
507,
14,
15277,
32576,
1433,
14,
73,
43640,
12,
8612,
803,
12,
34642,
12,
25120,
12,
41433,
12,
18747,
198,
220,
220,
220,
285,
32,
796,
285,
55,
58,
45299,
43720,
16321,
7,
6759,
8609,
10699,
38381,
16,
25,
22510,
2601,
13654,
60,
11208,
1303,
27,
0,
38279,
1979,
305,
2340,
628,
220,
220,
220,
329,
21065,
796,
352,
25,
22510,
29993,
602,
198,
220,
220,
220,
220,
220,
220,
220,
410,
9452,
20344,
11,
285,
2601,
5819,
7390,
796,
1064,
1084,
7,
1007,
3455,
7,
16345,
7,
42646,
764,
61,
362,
11,
5391,
82,
28,
16,
4008,
764,
12,
357,
17,
764,
9,
1007,
3455,
7,
42646,
27493,
285,
55,
828,
5391,
82,
28,
16,
1776,
1303,
27,
0,
1148,
612,
257,
4600,
93,
63,
7548,
287,
22300,
30,
198,
220,
220,
220,
220,
220,
220,
220,
410,
2601,
5819,
7390,
796,
44800,
5497,
1063,
7,
4268,
67,
12078,
7,
76,
2601,
5819,
7390,
11,
5391,
82,
28,
16,
8,
5619,
1303,
284,
307,
1498,
284,
1895,
340,
1568,
628,
220,
220,
220,
220,
220,
220,
220,
329,
474,
73,
796,
352,
25,
22510,
2601,
13654,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
285,
32,
58,
45299,
474,
73,
60,
796,
1612,
7,
285,
55,
58,
45299,
410,
2601,
5819,
7390,
764,
855,
474,
73,
16589,
5391,
82,
28,
17,
5619,
198,
220,
220,
220,
220,
220,
220,
220,
886,
198,
220,
220,
220,
886,
628,
220,
220,
220,
285,
32,
796,
285,
32,
58,
45299,
352,
60,
764,
10,
1007,
3455,
7,
42646,
58,
45299,
886,
36563,
628,
220,
1441,
285,
32,
26,
198,
437,
198,
46249,
198
] | 2.228653 | 2,799 |
using BeamformerRecipes
using RadioInterferometry
using YAML
"""
TelInfo(yaml::Dict{Symbol,Any})
Create a `TelInfo` instance based on `yaml` which was loaded from a "telinfo.yml"
file.
"""
function BeamformerRecipes.TelInfo(yaml::Dict{Symbol,Any})
ti = BeamformerRecipes.TelInfo()
# Populate the easy fields first
ti.antenna_position_frame = string(get(yaml, :antenna_position_frame, nothing))
ti.latitude = dms2d(get(yaml, :latitude, NaN))
ti.longitude = dms2d(get(yaml, :longitude, NaN))
ti.altitude = Float64(get(yaml, :altitude, NaN))
ti.telescope_name = string(get(yaml, :telescope_name, "Unknown"))
# Now do antenna specific fields
ants = yaml[:antennas]
diam = get(yaml, :antenna_diameter, 0.0)
ti.antenna_names = map(a->string(a[:name]), ants)
ti.antenna_numbers = map(a->Int(a[:number]), ants)
ti.antenna_positions = mapreduce(a->convert(Vector{Float64}, a[:position]), hcat, ants)
ti.antenna_diameters = map(a->Float64(get(a, :diameter, diam)), ants)
# Validate that antenna positions are 3 dimensional
@assert size(ti.antenna_positions, 1) == 3 "antenna positions are not 3D"
ti
end
"""
TelInfo(yaml::AbstractString)
Create a `TelInfo` instance based on a "telinfo.yml" file named by `yaml`.
"""
function BeamformerRecipes.TelInfo(yaml::AbstractString)
BeamformerRecipes.TelInfo(YAML.load_file(yaml, dicttype=Dict{Symbol,Any}))
end
"""
antpos_topo_xyz(telinfo::TelInfo)
Return `telinfo.antenna_positions` from meters in given frame to nanoseconds in
topocentric XYZ frame.
"""
function antpos_topo_xyz(telinfo::TelInfo)
# If telinfo frame is nothing, assume enu
inframe = something(telinfo.antenna_position_frame, "enu")
if inframe == "enu"
antpos = enu2xyz(telinfo.antenna_positions, deg2rad(telinfo.latitude), 0)
else
error("unsupported antenna position frame: $inframe")
end
end
| [
3500,
25855,
16354,
6690,
18636,
198,
3500,
8829,
9492,
2232,
15748,
198,
3500,
575,
2390,
43,
198,
198,
37811,
198,
220,
220,
220,
12088,
12360,
7,
88,
43695,
3712,
35,
713,
90,
13940,
23650,
11,
7149,
30072,
198,
198,
16447,
257,
4600,
33317,
12360,
63,
4554,
1912,
319,
4600,
88,
43695,
63,
543,
373,
9639,
422,
257,
366,
37524,
10951,
13,
88,
4029,
1,
198,
7753,
13,
198,
37811,
198,
8818,
25855,
16354,
6690,
18636,
13,
33317,
12360,
7,
88,
43695,
3712,
35,
713,
90,
13940,
23650,
11,
7149,
30072,
198,
220,
220,
220,
46668,
796,
25855,
16354,
6690,
18636,
13,
33317,
12360,
3419,
198,
220,
220,
220,
1303,
8099,
5039,
262,
2562,
7032,
717,
198,
220,
220,
220,
46668,
13,
415,
13713,
62,
9150,
62,
14535,
796,
4731,
7,
1136,
7,
88,
43695,
11,
1058,
415,
13713,
62,
9150,
62,
14535,
11,
2147,
4008,
198,
220,
220,
220,
46668,
13,
15460,
3984,
796,
288,
907,
17,
67,
7,
1136,
7,
88,
43695,
11,
1058,
15460,
3984,
11,
11013,
45,
4008,
198,
220,
220,
220,
46668,
13,
6511,
3984,
796,
288,
907,
17,
67,
7,
1136,
7,
88,
43695,
11,
1058,
6511,
3984,
11,
11013,
45,
4008,
198,
220,
220,
220,
46668,
13,
2501,
3984,
796,
48436,
2414,
7,
1136,
7,
88,
43695,
11,
1058,
2501,
3984,
11,
11013,
45,
4008,
198,
220,
220,
220,
46668,
13,
37524,
3798,
3008,
62,
3672,
796,
4731,
7,
1136,
7,
88,
43695,
11,
1058,
37524,
3798,
3008,
62,
3672,
11,
366,
20035,
48774,
628,
220,
220,
220,
1303,
2735,
466,
20509,
2176,
7032,
198,
220,
220,
220,
27842,
796,
331,
43695,
58,
25,
415,
1697,
292,
60,
198,
220,
220,
220,
48428,
796,
651,
7,
88,
43695,
11,
1058,
415,
13713,
62,
67,
13173,
11,
657,
13,
15,
8,
198,
220,
220,
220,
46668,
13,
415,
13713,
62,
14933,
796,
3975,
7,
64,
3784,
8841,
7,
64,
58,
25,
3672,
46570,
27842,
8,
198,
220,
220,
220,
46668,
13,
415,
13713,
62,
77,
17024,
796,
3975,
7,
64,
3784,
5317,
7,
64,
58,
25,
17618,
46570,
27842,
8,
198,
220,
220,
220,
46668,
13,
415,
13713,
62,
1930,
1756,
796,
3975,
445,
7234,
7,
64,
3784,
1102,
1851,
7,
38469,
90,
43879,
2414,
5512,
257,
58,
25,
9150,
46570,
289,
9246,
11,
27842,
8,
198,
220,
220,
220,
46668,
13,
415,
13713,
62,
67,
1789,
7307,
796,
3975,
7,
64,
3784,
43879,
2414,
7,
1136,
7,
64,
11,
1058,
67,
13173,
11,
48428,
36911,
27842,
8,
628,
220,
220,
220,
1303,
3254,
20540,
326,
20509,
6116,
389,
513,
38517,
198,
220,
220,
220,
2488,
30493,
2546,
7,
20259,
13,
415,
13713,
62,
1930,
1756,
11,
352,
8,
6624,
513,
366,
415,
13713,
6116,
389,
407,
513,
35,
1,
628,
220,
220,
220,
46668,
198,
437,
198,
198,
37811,
198,
220,
220,
220,
12088,
12360,
7,
88,
43695,
3712,
23839,
10100,
8,
198,
198,
16447,
257,
4600,
33317,
12360,
63,
4554,
1912,
319,
257,
366,
37524,
10951,
13,
88,
4029,
1,
2393,
3706,
416,
4600,
88,
43695,
44646,
198,
37811,
198,
8818,
25855,
16354,
6690,
18636,
13,
33317,
12360,
7,
88,
43695,
3712,
23839,
10100,
8,
198,
220,
220,
220,
25855,
16354,
6690,
18636,
13,
33317,
12360,
7,
56,
2390,
43,
13,
2220,
62,
7753,
7,
88,
43695,
11,
8633,
4906,
28,
35,
713,
90,
13940,
23650,
11,
7149,
92,
4008,
198,
437,
198,
198,
37811,
198,
220,
220,
220,
1885,
1930,
62,
4852,
78,
62,
5431,
89,
7,
37524,
10951,
3712,
33317,
12360,
8,
198,
198,
13615,
4600,
37524,
10951,
13,
415,
13713,
62,
1930,
1756,
63,
422,
10700,
287,
1813,
5739,
284,
15709,
577,
17561,
82,
287,
198,
4852,
420,
22317,
41420,
57,
5739,
13,
198,
37811,
198,
8818,
1885,
1930,
62,
4852,
78,
62,
5431,
89,
7,
37524,
10951,
3712,
33317,
12360,
8,
198,
220,
220,
220,
1303,
1002,
13632,
10951,
5739,
318,
2147,
11,
7048,
551,
84,
198,
220,
220,
220,
1167,
28073,
796,
1223,
7,
37524,
10951,
13,
415,
13713,
62,
9150,
62,
14535,
11,
366,
268,
84,
4943,
198,
220,
220,
220,
611,
1167,
28073,
6624,
366,
268,
84,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1885,
1930,
796,
551,
84,
17,
5431,
89,
7,
37524,
10951,
13,
415,
13713,
62,
1930,
1756,
11,
3396,
17,
6335,
7,
37524,
10951,
13,
15460,
3984,
828,
657,
8,
198,
220,
220,
220,
2073,
198,
220,
220,
220,
220,
220,
220,
220,
4049,
7203,
403,
15999,
20509,
2292,
5739,
25,
720,
259,
14535,
4943,
198,
220,
220,
220,
886,
198,
437,
198
] | 2.552457 | 753 |
# abstract type AbstractPlanarPoint{T} <: StaticArrays.FieldVector{2, T} end
# abstract type AbstractPlanarVector{T} <: StaticArrays.FieldVector{2, T} end
#
# struct PlanarPoint{T} <: AbstractPlanarPoint{T}
# u::T
# v::T
# end
"""
struct CartesianPoint{T} <: AbstractCoordinatePoint{T, Cartesian}
Describes a three-dimensional point in Cartesian coordinates.
## Fields
* `x`: x-coordinate (in m).
* `y`: y-coordinate (in m).
* `z`: z-coordinate (in m).
See also [`CylindricalPoint`](@ref).
"""
struct CartesianPoint{T} <: AbstractCoordinatePoint{T, Cartesian}
x::T
y::T
z::T
end
zero(PT::Type{<:AbstractCoordinatePoint{T}}) where {T} = PT(zero(T),zero(T),zero(T))
"""
struct CylindricalPoint{T} <: AbstractCoordinatePoint{T, Cylindrical}
Describes a three-dimensional point in cylindrical coordinates.
## Fields
* `r`: Radius (in m).
* `φ`: Polar angle (in rad).
* `z`: `z`-coordinate (in m).
!!! note
`φ == 0` corresponds to the `x`-axis in the Cartesian coordinate system.
See also [`CartesianPoint`](@ref).
"""
struct CylindricalPoint{T} <: AbstractCoordinatePoint{T, Cylindrical}
r::T
φ::T
z::T
CylindricalPoint{T}(r::T, φ::T, z::T) where {T} = new(r, mod(φ,T(2π)), z)
CylindricalPoint{T}(r::Real, φ::Real, z::Real) where {T} = new(T(r), mod(T(φ),T(2π)), T(z))
end
function CylindricalPoint(pt::CartesianPoint{T})::CylindricalPoint{T} where {T}
return CylindricalPoint{T}(hypot(pt.x, pt.y), atan(pt.y, pt.x), pt.z)
end
function CartesianPoint(pt::CylindricalPoint{T})::CartesianPoint{T} where {T}
sφ::T, cφ::T = sincos(pt.φ)
return CartesianPoint{T}(pt.r * cφ, pt.r * sφ, pt.z)
end
@inline CylindricalPoint(pt::CylindricalPoint) = pt
@inline CartesianPoint(pt::CartesianPoint) = pt
@inline _convert_point(pt::AbstractCoordinatePoint, ::Type{Cylindrical}) = CylindricalPoint(pt)
@inline _convert_point(pt::AbstractCoordinatePoint, ::Type{Cartesian}) = CartesianPoint(pt)
# function _Δφ(φ1::T, φ2::T)::T where {T}
# δφ = mod(φ2 - φ1, T(2π))
# min(δφ, T(2π) - δφ)
# end
#
# _φNear(φ::Real, φMin::T, φMax::T) where {T} = _Δφ(T(φ),φMin) ≤ _Δφ(T(φ),φMax) ? φMin : φMax
| [
2,
12531,
2099,
27741,
20854,
283,
12727,
90,
51,
92,
1279,
25,
36125,
3163,
20477,
13,
15878,
38469,
90,
17,
11,
309,
92,
886,
198,
2,
12531,
2099,
27741,
20854,
283,
38469,
90,
51,
92,
1279,
25,
36125,
3163,
20477,
13,
15878,
38469,
90,
17,
11,
309,
92,
886,
198,
2,
220,
198,
2,
2878,
5224,
283,
12727,
90,
51,
92,
1279,
25,
27741,
20854,
283,
12727,
90,
51,
92,
198,
2,
220,
220,
220,
220,
334,
3712,
51,
198,
2,
220,
220,
220,
220,
410,
3712,
51,
198,
2,
886,
198,
198,
37811,
198,
220,
220,
220,
2878,
13690,
35610,
12727,
90,
51,
92,
1279,
25,
27741,
7222,
45480,
12727,
90,
51,
11,
13690,
35610,
92,
198,
198,
24564,
22090,
257,
1115,
12,
19577,
966,
287,
13690,
35610,
22715,
13,
198,
198,
2235,
23948,
220,
198,
9,
4600,
87,
63,
25,
2124,
12,
37652,
4559,
357,
259,
285,
737,
198,
9,
4600,
88,
63,
25,
331,
12,
37652,
4559,
357,
259,
285,
737,
198,
9,
4600,
89,
63,
25,
1976,
12,
37652,
4559,
357,
259,
285,
737,
198,
198,
6214,
635,
685,
63,
34,
2645,
521,
8143,
12727,
63,
16151,
31,
5420,
737,
198,
37811,
198,
7249,
13690,
35610,
12727,
90,
51,
92,
1279,
25,
27741,
7222,
45480,
12727,
90,
51,
11,
13690,
35610,
92,
198,
220,
220,
220,
2124,
3712,
51,
198,
220,
220,
220,
331,
3712,
51,
198,
220,
220,
220,
1976,
3712,
51,
198,
437,
198,
198,
22570,
7,
11571,
3712,
6030,
90,
27,
25,
23839,
7222,
45480,
12727,
90,
51,
11709,
8,
810,
1391,
51,
92,
796,
19310,
7,
22570,
7,
51,
828,
22570,
7,
51,
828,
22570,
7,
51,
4008,
198,
198,
37811,
198,
220,
220,
220,
2878,
327,
2645,
521,
8143,
12727,
90,
51,
92,
1279,
25,
27741,
7222,
45480,
12727,
90,
51,
11,
327,
2645,
521,
8143,
92,
198,
198,
24564,
22090,
257,
1115,
12,
19577,
966,
287,
17327,
521,
8143,
22715,
13,
220,
198,
198,
2235,
23948,
198,
9,
4600,
81,
63,
25,
48838,
357,
259,
285,
737,
198,
9,
4600,
139,
228,
63,
25,
32909,
9848,
357,
259,
2511,
737,
198,
9,
4600,
89,
63,
25,
4600,
89,
63,
12,
37652,
4559,
357,
259,
285,
737,
198,
198,
10185,
3465,
220,
198,
220,
220,
220,
4600,
139,
228,
6624,
657,
63,
24866,
284,
262,
4600,
87,
63,
12,
22704,
287,
262,
13690,
35610,
20435,
1080,
13,
198,
220,
220,
220,
220,
198,
6214,
635,
685,
63,
43476,
35610,
12727,
63,
16151,
31,
5420,
737,
198,
37811,
198,
7249,
327,
2645,
521,
8143,
12727,
90,
51,
92,
1279,
25,
27741,
7222,
45480,
12727,
90,
51,
11,
327,
2645,
521,
8143,
92,
198,
220,
220,
220,
374,
3712,
51,
198,
220,
220,
220,
18074,
228,
3712,
51,
198,
220,
220,
220,
1976,
3712,
51,
198,
220,
220,
220,
327,
2645,
521,
8143,
12727,
90,
51,
92,
7,
81,
3712,
51,
11,
18074,
228,
3712,
51,
11,
1976,
3712,
51,
8,
810,
1391,
51,
92,
796,
649,
7,
81,
11,
953,
7,
139,
228,
11,
51,
7,
17,
46582,
36911,
1976,
8,
198,
220,
220,
220,
327,
2645,
521,
8143,
12727,
90,
51,
92,
7,
81,
3712,
15633,
11,
18074,
228,
3712,
15633,
11,
1976,
3712,
15633,
8,
810,
1391,
51,
92,
796,
649,
7,
51,
7,
81,
828,
953,
7,
51,
7,
139,
228,
828,
51,
7,
17,
46582,
36911,
309,
7,
89,
4008,
198,
437,
198,
198,
8818,
327,
2645,
521,
8143,
12727,
7,
457,
3712,
43476,
35610,
12727,
90,
51,
92,
2599,
25,
34,
2645,
521,
8143,
12727,
90,
51,
92,
810,
1391,
51,
92,
198,
220,
220,
220,
1441,
327,
2645,
521,
8143,
12727,
90,
51,
92,
7,
36362,
313,
7,
457,
13,
87,
11,
42975,
13,
88,
828,
379,
272,
7,
457,
13,
88,
11,
42975,
13,
87,
828,
42975,
13,
89,
8,
198,
437,
198,
198,
8818,
13690,
35610,
12727,
7,
457,
3712,
34,
2645,
521,
8143,
12727,
90,
51,
92,
2599,
25,
43476,
35610,
12727,
90,
51,
92,
810,
1391,
51,
92,
198,
220,
220,
220,
264,
139,
228,
3712,
51,
11,
269,
139,
228,
3712,
51,
796,
264,
1939,
418,
7,
457,
13,
139,
228,
8,
198,
220,
220,
220,
1441,
13690,
35610,
12727,
90,
51,
92,
7,
457,
13,
81,
1635,
269,
139,
228,
11,
42975,
13,
81,
1635,
264,
139,
228,
11,
42975,
13,
89,
8,
198,
437,
198,
198,
31,
45145,
327,
2645,
521,
8143,
12727,
7,
457,
3712,
34,
2645,
521,
8143,
12727,
8,
796,
42975,
198,
31,
45145,
13690,
35610,
12727,
7,
457,
3712,
43476,
35610,
12727,
8,
796,
42975,
198,
198,
31,
45145,
4808,
1102,
1851,
62,
4122,
7,
457,
3712,
23839,
7222,
45480,
12727,
11,
7904,
6030,
90,
34,
2645,
521,
8143,
30072,
796,
327,
2645,
521,
8143,
12727,
7,
457,
8,
198,
31,
45145,
4808,
1102,
1851,
62,
4122,
7,
457,
3712,
23839,
7222,
45480,
12727,
11,
7904,
6030,
90,
43476,
35610,
30072,
796,
13690,
35610,
12727,
7,
457,
8,
198,
198,
2,
2163,
4808,
138,
242,
139,
228,
7,
139,
228,
16,
3712,
51,
11,
18074,
228,
17,
3712,
51,
2599,
25,
51,
810,
1391,
51,
92,
198,
2,
220,
220,
220,
220,
7377,
112,
139,
228,
796,
953,
7,
139,
228,
17,
532,
18074,
228,
16,
11,
309,
7,
17,
46582,
4008,
198,
2,
220,
220,
220,
220,
949,
7,
138,
112,
139,
228,
11,
309,
7,
17,
46582,
8,
532,
7377,
112,
139,
228,
8,
198,
2,
886,
198,
2,
220,
198,
2,
4808,
139,
228,
40640,
7,
139,
228,
3712,
15633,
11,
18074,
228,
9452,
3712,
51,
11,
18074,
228,
11518,
3712,
51,
8,
810,
1391,
51,
92,
796,
4808,
138,
242,
139,
228,
7,
51,
7,
139,
228,
828,
139,
228,
9452,
8,
41305,
4808,
138,
242,
139,
228,
7,
51,
7,
139,
228,
828,
139,
228,
11518,
8,
5633,
18074,
228,
9452,
1058,
18074,
228,
11518,
198
] | 2.216189 | 976 |
Flux.trainable(bn::Flux.BatchNorm) = (bn.β, bn.γ, bn.μ, bn.σ²)
struct Shortcut
shortcut
end
Flux.@functor Shortcut
function (shortcut::Shortcut)(mx::T, x::T) where T
mx + shortcut.shortcut(x)
end
struct ResNetModel
entry::Chain
encoder::Chain
head::Chain
end
Flux.@functor ResNetModel
function (model::ResNetModel)(x::T) where T
x |> model.entry |> model.encoder |> model.head
end
function BasicBlock(
in_filters::Int, out_filters::Int, stride::Int = 1, connection = +,
)::Chain
layer = Chain(
Conv((3, 3), in_filters => out_filters, stride=stride, pad=1, bias=Flux.Zeros(Float32)),
BatchNorm(out_filters, relu),
Conv((3, 3), out_filters => out_filters, pad=1, bias=Flux.Zeros(Float32)),
BatchNorm(out_filters),
)
Chain(SkipConnection(layer, connection), x -> relu.(x))
end
function Bottleneck(
in_filters::Int, out_filters::Int, stride::Int = 1, connection = +,
expansion::Int = 4,
)::Chain
layer = Chain(
Conv((1, 1), in_filters => out_filters, bias=Flux.Zeros(Float32)),
BatchNorm(out_filters, relu),
Conv((3, 3), out_filters => out_filters, stride=stride, pad=1, bias=Flux.Zeros(Float32)),
BatchNorm(out_filters, relu),
Conv((1, 1), out_filters => out_filters * expansion, bias=Flux.Zeros(Float32)),
BatchNorm(out_filters * expansion),
)
Chain(SkipConnection(layer, connection), x -> relu.(x))
end
function make_connection(in_filters::Int, out_filters::Int, stride::Int)
if stride == 1 && in_filters == out_filters
return +
end
Shortcut(Chain(
Conv((1, 1), in_filters => out_filters, stride=stride, bias=Flux.Zeros(Float32)),
BatchNorm(out_filters)
))
end
function make_layer(
in_filters::Int, out_filters::Int, repeat::Int,
block, expansion::Int, stride::Int = 1,
)::Chain
connection = make_connection(in_filters, out_filters * expansion, stride)
layer = [block(in_filters, out_filters, stride, connection)]
in_filters = out_filters * expansion
for i in 2:repeat
push!(layer, block(in_filters, out_filters))
end
Chain(layer...)
end
"""
```julia
resnet(size::Int = 18, classes::Int = 1000)
```
Construct ResNet model.
# Parameters
- `size::Int = 18`: Size of the ResNet model.
Available sizes are `18, 34, 50, 101, 152`.
- `classes::Int = 1000`: Number of classes in the last dense layer.
"""
function resnet(size::Int = 18, classes::Int = 1000)::ResNetModel
filters = [64, 128, 256, 512]
strides = [1, 2, 2, 2]
repeats, block, expansion = Dict(
18 => ([2, 2, 2, 2], BasicBlock, 1),
34 => ([3, 4, 6, 3], BasicBlock, 1),
50 => ([3, 4, 6, 3], Bottleneck, 4),
101 => ([3, 4, 23, 3], Bottleneck, 4),
152 => ([3, 8, 36, 3], Bottleneck, 4),
)[size]
entry = Chain(
Conv((7, 7), 3 => 64, pad=(3, 3), stride=(2, 2), bias=Flux.Zeros(Float32)),
BatchNorm(64, relu),
MaxPool((3, 3), pad=(1, 1), stride=(2, 2)),
)
head = Chain(MeanPool((7, 7)), flatten, Dense(512 * expansion, classes))
encoder = []
in_filters = 64
for (out_filters, repeat, stride) in zip(filters, repeats, strides)
layer = make_layer(in_filters, out_filters, repeat, block, expansion, stride)
push!(encoder, layer)
in_filters = out_filters * expansion
end
ResNetModel(entry, Chain(encoder...), head)
end
| [
37,
22564,
13,
27432,
540,
7,
9374,
3712,
37,
22564,
13,
33,
963,
35393,
8,
796,
357,
9374,
13,
26638,
11,
275,
77,
13,
42063,
11,
275,
77,
13,
34703,
11,
275,
77,
13,
38392,
31185,
8,
198,
198,
7249,
10073,
8968,
198,
220,
220,
220,
29401,
198,
437,
198,
37,
22564,
13,
31,
12543,
2715,
10073,
8968,
198,
198,
8818,
357,
19509,
8968,
3712,
16438,
8968,
5769,
36802,
3712,
51,
11,
2124,
3712,
51,
8,
810,
309,
198,
220,
220,
220,
285,
87,
1343,
29401,
13,
19509,
8968,
7,
87,
8,
198,
437,
198,
198,
7249,
1874,
7934,
17633,
198,
220,
220,
220,
5726,
3712,
35491,
198,
220,
220,
220,
2207,
12342,
3712,
35491,
198,
220,
220,
220,
1182,
3712,
35491,
198,
437,
198,
37,
22564,
13,
31,
12543,
2715,
1874,
7934,
17633,
198,
198,
8818,
357,
19849,
3712,
4965,
7934,
17633,
5769,
87,
3712,
51,
8,
810,
309,
198,
220,
220,
220,
2124,
930,
29,
2746,
13,
13000,
930,
29,
2746,
13,
12685,
12342,
930,
29,
2746,
13,
2256,
198,
437,
198,
198,
8818,
14392,
12235,
7,
198,
220,
220,
220,
287,
62,
10379,
1010,
3712,
5317,
11,
503,
62,
10379,
1010,
3712,
5317,
11,
33769,
3712,
5317,
796,
352,
11,
4637,
796,
1343,
11,
198,
2599,
25,
35491,
198,
220,
220,
220,
7679,
796,
21853,
7,
198,
220,
220,
220,
220,
220,
220,
220,
34872,
19510,
18,
11,
513,
828,
287,
62,
10379,
1010,
5218,
503,
62,
10379,
1010,
11,
33769,
28,
2536,
485,
11,
14841,
28,
16,
11,
10690,
28,
37,
22564,
13,
57,
27498,
7,
43879,
2624,
36911,
198,
220,
220,
220,
220,
220,
220,
220,
347,
963,
35393,
7,
448,
62,
10379,
1010,
11,
823,
84,
828,
198,
220,
220,
220,
220,
220,
220,
220,
34872,
19510,
18,
11,
513,
828,
503,
62,
10379,
1010,
5218,
503,
62,
10379,
1010,
11,
14841,
28,
16,
11,
10690,
28,
37,
22564,
13,
57,
27498,
7,
43879,
2624,
36911,
198,
220,
220,
220,
220,
220,
220,
220,
347,
963,
35393,
7,
448,
62,
10379,
1010,
828,
198,
220,
220,
220,
1267,
198,
220,
220,
220,
21853,
7,
50232,
32048,
7,
29289,
11,
4637,
828,
2124,
4613,
823,
84,
12195,
87,
4008,
198,
437,
198,
198,
8818,
14835,
43163,
7,
198,
220,
220,
220,
287,
62,
10379,
1010,
3712,
5317,
11,
503,
62,
10379,
1010,
3712,
5317,
11,
33769,
3712,
5317,
796,
352,
11,
4637,
796,
1343,
11,
198,
220,
220,
220,
7118,
3712,
5317,
796,
604,
11,
198,
2599,
25,
35491,
198,
220,
220,
220,
7679,
796,
21853,
7,
198,
220,
220,
220,
220,
220,
220,
220,
34872,
19510,
16,
11,
352,
828,
287,
62,
10379,
1010,
5218,
503,
62,
10379,
1010,
11,
10690,
28,
37,
22564,
13,
57,
27498,
7,
43879,
2624,
36911,
198,
220,
220,
220,
220,
220,
220,
220,
347,
963,
35393,
7,
448,
62,
10379,
1010,
11,
823,
84,
828,
198,
220,
220,
220,
220,
220,
220,
220,
34872,
19510,
18,
11,
513,
828,
503,
62,
10379,
1010,
5218,
503,
62,
10379,
1010,
11,
33769,
28,
2536,
485,
11,
14841,
28,
16,
11,
10690,
28,
37,
22564,
13,
57,
27498,
7,
43879,
2624,
36911,
198,
220,
220,
220,
220,
220,
220,
220,
347,
963,
35393,
7,
448,
62,
10379,
1010,
11,
823,
84,
828,
198,
220,
220,
220,
220,
220,
220,
220,
34872,
19510,
16,
11,
352,
828,
503,
62,
10379,
1010,
5218,
503,
62,
10379,
1010,
1635,
7118,
11,
10690,
28,
37,
22564,
13,
57,
27498,
7,
43879,
2624,
36911,
198,
220,
220,
220,
220,
220,
220,
220,
347,
963,
35393,
7,
448,
62,
10379,
1010,
1635,
7118,
828,
198,
220,
220,
220,
1267,
198,
220,
220,
220,
21853,
7,
50232,
32048,
7,
29289,
11,
4637,
828,
2124,
4613,
823,
84,
12195,
87,
4008,
198,
437,
198,
198,
8818,
787,
62,
38659,
7,
259,
62,
10379,
1010,
3712,
5317,
11,
503,
62,
10379,
1010,
3712,
5317,
11,
33769,
3712,
5317,
8,
198,
220,
220,
220,
611,
33769,
6624,
352,
11405,
287,
62,
10379,
1010,
6624,
503,
62,
10379,
1010,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
1343,
198,
220,
220,
220,
886,
198,
220,
220,
220,
10073,
8968,
7,
35491,
7,
198,
220,
220,
220,
220,
220,
220,
220,
34872,
19510,
16,
11,
352,
828,
287,
62,
10379,
1010,
5218,
503,
62,
10379,
1010,
11,
33769,
28,
2536,
485,
11,
10690,
28,
37,
22564,
13,
57,
27498,
7,
43879,
2624,
36911,
198,
220,
220,
220,
220,
220,
220,
220,
347,
963,
35393,
7,
448,
62,
10379,
1010,
8,
198,
220,
220,
220,
15306,
198,
437,
198,
198,
8818,
787,
62,
29289,
7,
198,
220,
220,
220,
287,
62,
10379,
1010,
3712,
5317,
11,
503,
62,
10379,
1010,
3712,
5317,
11,
9585,
3712,
5317,
11,
198,
220,
220,
220,
2512,
11,
7118,
3712,
5317,
11,
33769,
3712,
5317,
796,
352,
11,
198,
2599,
25,
35491,
198,
220,
220,
220,
4637,
796,
787,
62,
38659,
7,
259,
62,
10379,
1010,
11,
503,
62,
10379,
1010,
1635,
7118,
11,
33769,
8,
198,
220,
220,
220,
7679,
796,
685,
9967,
7,
259,
62,
10379,
1010,
11,
503,
62,
10379,
1010,
11,
33769,
11,
4637,
15437,
198,
220,
220,
220,
287,
62,
10379,
1010,
796,
503,
62,
10379,
1010,
1635,
7118,
198,
220,
220,
220,
329,
1312,
287,
362,
25,
44754,
198,
220,
220,
220,
220,
220,
220,
220,
4574,
0,
7,
29289,
11,
2512,
7,
259,
62,
10379,
1010,
11,
503,
62,
10379,
1010,
4008,
198,
220,
220,
220,
886,
198,
220,
220,
220,
21853,
7,
29289,
23029,
198,
437,
198,
198,
37811,
198,
15506,
63,
73,
43640,
198,
411,
3262,
7,
7857,
3712,
5317,
796,
1248,
11,
6097,
3712,
5317,
796,
8576,
8,
198,
15506,
63,
198,
198,
42316,
1874,
7934,
2746,
13,
198,
198,
2,
40117,
198,
12,
4600,
7857,
3712,
5317,
796,
1248,
63,
25,
12849,
286,
262,
1874,
7934,
2746,
13,
198,
220,
14898,
10620,
389,
4600,
1507,
11,
4974,
11,
2026,
11,
8949,
11,
24848,
44646,
198,
12,
4600,
37724,
3712,
5317,
796,
8576,
63,
25,
7913,
286,
6097,
287,
262,
938,
15715,
7679,
13,
198,
37811,
198,
8818,
581,
3262,
7,
7857,
3712,
5317,
796,
1248,
11,
6097,
3712,
5317,
796,
8576,
2599,
25,
4965,
7934,
17633,
198,
220,
220,
220,
16628,
796,
685,
2414,
11,
13108,
11,
17759,
11,
22243,
60,
198,
220,
220,
220,
35002,
796,
685,
16,
11,
362,
11,
362,
11,
362,
60,
198,
220,
220,
220,
29819,
11,
2512,
11,
7118,
796,
360,
713,
7,
198,
220,
220,
220,
220,
220,
220,
220,
1248,
5218,
29565,
17,
11,
362,
11,
362,
11,
362,
4357,
14392,
12235,
11,
352,
828,
198,
220,
220,
220,
220,
220,
220,
220,
4974,
5218,
29565,
18,
11,
604,
11,
718,
11,
513,
4357,
14392,
12235,
11,
352,
828,
198,
220,
220,
220,
220,
220,
220,
220,
2026,
5218,
29565,
18,
11,
604,
11,
718,
11,
513,
4357,
14835,
43163,
11,
604,
828,
198,
220,
220,
220,
220,
220,
220,
220,
8949,
5218,
29565,
18,
11,
604,
11,
2242,
11,
513,
4357,
14835,
43163,
11,
604,
828,
198,
220,
220,
220,
220,
220,
220,
220,
24848,
5218,
29565,
18,
11,
807,
11,
4570,
11,
513,
4357,
14835,
43163,
11,
604,
828,
198,
220,
220,
220,
1267,
58,
7857,
60,
628,
220,
220,
220,
5726,
796,
21853,
7,
198,
220,
220,
220,
220,
220,
220,
220,
34872,
19510,
22,
11,
767,
828,
513,
5218,
5598,
11,
14841,
16193,
18,
11,
513,
828,
33769,
16193,
17,
11,
362,
828,
10690,
28,
37,
22564,
13,
57,
27498,
7,
43879,
2624,
36911,
198,
220,
220,
220,
220,
220,
220,
220,
347,
963,
35393,
7,
2414,
11,
823,
84,
828,
198,
220,
220,
220,
220,
220,
220,
220,
5436,
27201,
19510,
18,
11,
513,
828,
14841,
16193,
16,
11,
352,
828,
33769,
16193,
17,
11,
362,
36911,
198,
220,
220,
220,
1267,
198,
220,
220,
220,
1182,
796,
21853,
7,
5308,
272,
27201,
19510,
22,
11,
767,
36911,
27172,
268,
11,
360,
1072,
7,
25836,
1635,
7118,
11,
6097,
4008,
628,
220,
220,
220,
2207,
12342,
796,
17635,
198,
220,
220,
220,
287,
62,
10379,
1010,
796,
5598,
198,
220,
220,
220,
329,
357,
448,
62,
10379,
1010,
11,
9585,
11,
33769,
8,
287,
19974,
7,
10379,
1010,
11,
29819,
11,
35002,
8,
198,
220,
220,
220,
220,
220,
220,
220,
7679,
796,
787,
62,
29289,
7,
259,
62,
10379,
1010,
11,
503,
62,
10379,
1010,
11,
9585,
11,
2512,
11,
7118,
11,
33769,
8,
198,
220,
220,
220,
220,
220,
220,
220,
4574,
0,
7,
12685,
12342,
11,
7679,
8,
198,
220,
220,
220,
220,
220,
220,
220,
287,
62,
10379,
1010,
796,
503,
62,
10379,
1010,
1635,
7118,
198,
220,
220,
220,
886,
198,
220,
220,
220,
1874,
7934,
17633,
7,
13000,
11,
21853,
7,
12685,
12342,
986,
828,
1182,
8,
198,
437,
198
] | 2.349521 | 1,462 |
# Use baremodule to shave off a few KB from the serialized `.ji` file
baremodule CUDA_jll
using Base
using Base: UUID
import JLLWrappers
JLLWrappers.@generate_main_file_header("CUDA")
JLLWrappers.@generate_main_file("CUDA", UUID("e9e359dc-d701-5aa8-82ae-09bbf812ea83"))
end # module CUDA_jll
| [
2,
5765,
6247,
21412,
284,
34494,
572,
257,
1178,
14204,
422,
262,
11389,
1143,
4600,
13,
7285,
63,
2393,
198,
49382,
21412,
29369,
5631,
62,
73,
297,
198,
3500,
7308,
198,
3500,
7308,
25,
471,
27586,
198,
11748,
449,
3069,
36918,
11799,
198,
198,
41,
3069,
36918,
11799,
13,
31,
8612,
378,
62,
12417,
62,
7753,
62,
25677,
7203,
43633,
5631,
4943,
198,
41,
3069,
36918,
11799,
13,
31,
8612,
378,
62,
12417,
62,
7753,
7203,
43633,
5631,
1600,
471,
27586,
7203,
68,
24,
68,
30743,
17896,
12,
67,
41583,
12,
20,
7252,
23,
12,
6469,
3609,
12,
2931,
11848,
69,
23,
1065,
18213,
5999,
48774,
198,
437,
220,
1303,
8265,
29369,
5631,
62,
73,
297,
198
] | 2.512821 | 117 |
using EngEconomics
costA = 15000
omA = 55
benefitA = 450
costB = 10000
omB = 35
benefitB = 200
n = 30
i = 0.05
# Consider do nothing option and pick best from b/c analysis
# 1.) Rank options by smallest initial cost to biggest initial cost
# (1) B
# (2) A
# 2.) Compare 1 and 2
ΔEUAB_21 = (benefitB - benefitA) - (omB - omA)
ΔEUAC_21 = (costB - costA) * capitalRecoveryFactor(i, n)
ΔBCRatio_21 = ΔEUAB_21 / ΔEUAC_21
if ΔBCRatio_21 >= 1
println("Pick the one with the bigger initial cost, i.e. B")
else
println("Pick the one with the smaller initial cost, i.e. Do Nothing")
end
disbenefitA = 400
disbenefitB = 500
ΔEUAB_21 = (benefitB - benefitA) - (omB - omA) - (disbenefitB - disbenefitA)
ΔEUAC_21 = (costB - costA) * capitalRecoveryFactor(i, n)
ΔBCRatio_21 = ΔEUAB_21 / ΔEUAC_21
if ΔBCRatio_21 >= 1
println("Pick the one with the bigger initial cost, i.e. B")
else
println("Pick the one with the smaller initial cost, i.e. Do Nothing")
end
| [
3500,
1985,
28489,
873,
198,
198,
15805,
32,
796,
1315,
830,
198,
296,
32,
796,
5996,
198,
48649,
32,
796,
18523,
198,
15805,
33,
796,
33028,
198,
296,
33,
796,
3439,
198,
48649,
33,
796,
939,
198,
77,
796,
1542,
198,
72,
796,
657,
13,
2713,
198,
198,
2,
12642,
466,
2147,
3038,
290,
2298,
1266,
422,
275,
14,
66,
3781,
198,
2,
352,
2014,
10916,
3689,
416,
18197,
4238,
1575,
284,
4094,
4238,
1575,
198,
2,
220,
220,
220,
220,
357,
16,
8,
347,
198,
2,
220,
220,
220,
220,
357,
17,
8,
317,
198,
2,
362,
2014,
27814,
352,
290,
362,
198,
138,
242,
19684,
6242,
62,
2481,
796,
357,
48649,
33,
532,
4414,
32,
8,
532,
357,
296,
33,
532,
39030,
32,
8,
198,
138,
242,
19684,
2246,
62,
2481,
796,
357,
15805,
33,
532,
1575,
32,
8,
1635,
3139,
6690,
6560,
41384,
7,
72,
11,
299,
8,
198,
198,
138,
242,
2749,
29665,
952,
62,
2481,
796,
37455,
19684,
6242,
62,
2481,
1220,
37455,
19684,
2246,
62,
2481,
198,
198,
361,
37455,
2749,
29665,
952,
62,
2481,
18189,
352,
198,
197,
35235,
7203,
31686,
262,
530,
351,
262,
5749,
4238,
1575,
11,
1312,
13,
68,
13,
347,
4943,
198,
17772,
198,
197,
35235,
7203,
31686,
262,
530,
351,
262,
4833,
4238,
1575,
11,
1312,
13,
68,
13,
2141,
10528,
4943,
198,
437,
198,
198,
6381,
48649,
32,
796,
7337,
198,
6381,
48649,
33,
796,
5323,
198,
198,
138,
242,
19684,
6242,
62,
2481,
796,
357,
48649,
33,
532,
4414,
32,
8,
532,
357,
296,
33,
532,
39030,
32,
8,
532,
357,
6381,
48649,
33,
532,
595,
48649,
32,
8,
198,
138,
242,
19684,
2246,
62,
2481,
796,
357,
15805,
33,
532,
1575,
32,
8,
1635,
3139,
6690,
6560,
41384,
7,
72,
11,
299,
8,
198,
198,
138,
242,
2749,
29665,
952,
62,
2481,
796,
37455,
19684,
6242,
62,
2481,
1220,
37455,
19684,
2246,
62,
2481,
198,
198,
361,
37455,
2749,
29665,
952,
62,
2481,
18189,
352,
198,
197,
35235,
7203,
31686,
262,
530,
351,
262,
5749,
4238,
1575,
11,
1312,
13,
68,
13,
347,
4943,
198,
17772,
198,
197,
35235,
7203,
31686,
262,
530,
351,
262,
4833,
4238,
1575,
11,
1312,
13,
68,
13,
2141,
10528,
4943,
198,
437,
198
] | 2.572193 | 374 |
using Test, Distributions, HypothesisTests, LinearAlgebra
using KernelGoodnessOfFit
xs = randn(1, 100);
@testset "FSSDrand" begin
xs = randn(100);
res = KernelGoodnessOfFit.FSSDrand(
reshape(xs, 1, :),
MvNormal([1.0], [1.0]),
GaussianRBF(1.0),
reshape([0.0], 1, 1),
nsim = 3000
)
println(res)
# reject
@test pvalue(res) ≤ 0.05
end
@testset "FSSDopt" begin
xs = randn(100);
res = KernelGoodnessOfFit.FSSDopt(
reshape(xs, 1, :),
MvNormal([1.0], [1.0]),
GaussianRBF(1.0),
reshape([0.0], 1, 1),
nsim = 3000,
train_test_ratio = 0.5
)
println(res)
# reject
@test pvalue(res) ≤ 0.05
end
@testset "FSSDrand multivariate" begin
d = 5
xs = randn(d, 100);
res = KernelGoodnessOfFit.FSSDrand(
xs,
MvNormal(ones(d), diagm(0 => ones(d))),
GaussianRBF(1.0),
zeros(5, 2); # two test-locations
nsim = 3000
)
println(res)
# reject
@test pvalue(res) ≤ 0.05
end
@testset "FSSDopt multivariate" begin
d = 5
xs = randn(d, 100);
res = pvalue(KernelGoodnessOfFit.FSSDopt(
xs,
MvNormal(10 .* ones(d), diagm(0 => ones(d))),
GaussianRBF(1.0),
zeros(5, 2); # two test-locations
nsim = 3000,
train_test_ratio = 0.5
))
# reject
@test res ≤ 0.05
end
@testset "FSSDrand different kernels" begin
q = MvNormal([10.0], [1.0])
t_rbf = FSSDrand(xs, q, KernelGoodnessOfFit.GaussianRBF(1.0))
t_exp = FSSDrand(xs, q, KernelGoodnessOfFit.ExponentialKernel())
t_matern = FSSDrand(xs, q, KernelGoodnessOfFit.Matern25Kernel(1.0))
@test pvalue(t_rbf) ≥ 0.0
@test pvalue(t_exp) ≥ 0.0
@test pvalue(t_matern) ≥ 0.0
end
@testset "FSSDopt different kernels" begin
q = MvNormal([10.0], [1.0])
t_rbf = FSSDopt(xs, q, KernelGoodnessOfFit.GaussianRBF(1.0))
t_exp = FSSDopt(xs, q, KernelGoodnessOfFit.ExponentialKernel())
# t_matern = FSSDrand(xs, q, KernelGoodnessOfFit.Matern25Kernel(1.0)) # OPTIMIZATION NOT STABLE
@test pvalue(t_rbf) ≥ 0.0
@test pvalue(t_exp) ≥ 0.0
# @test pvalue(t_matern) ≥ 0.0
end
| [
3500,
6208,
11,
46567,
507,
11,
21209,
313,
8497,
51,
3558,
11,
44800,
2348,
29230,
198,
3500,
32169,
10248,
1108,
5189,
31805,
198,
198,
34223,
796,
43720,
77,
7,
16,
11,
1802,
1776,
198,
198,
31,
9288,
2617,
366,
37,
5432,
6187,
392,
1,
2221,
198,
220,
220,
220,
2124,
82,
796,
43720,
77,
7,
3064,
1776,
198,
220,
220,
220,
220,
198,
220,
220,
220,
581,
796,
32169,
10248,
1108,
5189,
31805,
13,
37,
5432,
6187,
392,
7,
198,
220,
220,
220,
220,
220,
220,
220,
27179,
1758,
7,
34223,
11,
352,
11,
1058,
828,
198,
220,
220,
220,
220,
220,
220,
220,
337,
85,
26447,
26933,
16,
13,
15,
4357,
685,
16,
13,
15,
46570,
198,
220,
220,
220,
220,
220,
220,
220,
12822,
31562,
27912,
37,
7,
16,
13,
15,
828,
198,
220,
220,
220,
220,
220,
220,
220,
27179,
1758,
26933,
15,
13,
15,
4357,
352,
11,
352,
828,
198,
220,
220,
220,
220,
220,
220,
220,
299,
14323,
796,
20343,
198,
220,
220,
220,
1267,
628,
220,
220,
220,
44872,
7,
411,
8,
628,
220,
220,
220,
1303,
4968,
198,
220,
220,
220,
2488,
9288,
279,
8367,
7,
411,
8,
41305,
657,
13,
2713,
198,
437,
198,
198,
31,
9288,
2617,
366,
37,
5432,
35,
8738,
1,
2221,
198,
220,
220,
220,
2124,
82,
796,
43720,
77,
7,
3064,
1776,
198,
220,
220,
220,
220,
198,
220,
220,
220,
581,
796,
32169,
10248,
1108,
5189,
31805,
13,
37,
5432,
35,
8738,
7,
198,
220,
220,
220,
220,
220,
220,
220,
27179,
1758,
7,
34223,
11,
352,
11,
1058,
828,
198,
220,
220,
220,
220,
220,
220,
220,
337,
85,
26447,
26933,
16,
13,
15,
4357,
685,
16,
13,
15,
46570,
198,
220,
220,
220,
220,
220,
220,
220,
12822,
31562,
27912,
37,
7,
16,
13,
15,
828,
198,
220,
220,
220,
220,
220,
220,
220,
27179,
1758,
26933,
15,
13,
15,
4357,
352,
11,
352,
828,
198,
220,
220,
220,
220,
220,
220,
220,
299,
14323,
796,
20343,
11,
198,
220,
220,
220,
220,
220,
220,
220,
4512,
62,
9288,
62,
10366,
952,
796,
657,
13,
20,
198,
220,
220,
220,
1267,
628,
220,
220,
220,
44872,
7,
411,
8,
628,
220,
220,
220,
1303,
4968,
198,
220,
220,
220,
2488,
9288,
279,
8367,
7,
411,
8,
41305,
657,
13,
2713,
198,
437,
198,
198,
31,
9288,
2617,
366,
37,
5432,
6187,
392,
1963,
42524,
1,
2221,
198,
220,
220,
220,
288,
796,
642,
198,
220,
220,
220,
2124,
82,
796,
43720,
77,
7,
67,
11,
1802,
1776,
198,
220,
220,
220,
220,
198,
220,
220,
220,
581,
796,
32169,
10248,
1108,
5189,
31805,
13,
37,
5432,
6187,
392,
7,
198,
220,
220,
220,
220,
220,
220,
220,
2124,
82,
11,
198,
220,
220,
220,
220,
220,
220,
220,
337,
85,
26447,
7,
1952,
7,
67,
828,
2566,
363,
76,
7,
15,
5218,
3392,
7,
67,
4008,
828,
198,
220,
220,
220,
220,
220,
220,
220,
12822,
31562,
27912,
37,
7,
16,
13,
15,
828,
198,
220,
220,
220,
220,
220,
220,
220,
1976,
27498,
7,
20,
11,
362,
1776,
220,
1303,
734,
1332,
12,
17946,
602,
198,
220,
220,
220,
220,
220,
220,
220,
299,
14323,
796,
20343,
198,
220,
220,
220,
1267,
628,
220,
220,
220,
44872,
7,
411,
8,
628,
220,
220,
220,
1303,
4968,
198,
220,
220,
220,
2488,
9288,
279,
8367,
7,
411,
8,
41305,
657,
13,
2713,
198,
437,
198,
198,
31,
9288,
2617,
366,
37,
5432,
35,
8738,
1963,
42524,
1,
2221,
198,
220,
220,
220,
288,
796,
642,
198,
220,
220,
220,
2124,
82,
796,
43720,
77,
7,
67,
11,
1802,
1776,
628,
220,
220,
220,
581,
796,
279,
8367,
7,
42,
7948,
10248,
1108,
5189,
31805,
13,
37,
5432,
35,
8738,
7,
198,
220,
220,
220,
220,
220,
220,
220,
2124,
82,
11,
198,
220,
220,
220,
220,
220,
220,
220,
337,
85,
26447,
7,
940,
764,
9,
3392,
7,
67,
828,
2566,
363,
76,
7,
15,
5218,
3392,
7,
67,
4008,
828,
198,
220,
220,
220,
220,
220,
220,
220,
12822,
31562,
27912,
37,
7,
16,
13,
15,
828,
198,
220,
220,
220,
220,
220,
220,
220,
1976,
27498,
7,
20,
11,
362,
1776,
220,
1303,
734,
1332,
12,
17946,
602,
198,
220,
220,
220,
220,
220,
220,
220,
299,
14323,
796,
20343,
11,
198,
220,
220,
220,
220,
220,
220,
220,
4512,
62,
9288,
62,
10366,
952,
796,
657,
13,
20,
198,
220,
220,
220,
15306,
628,
220,
220,
220,
1303,
4968,
198,
220,
220,
220,
2488,
9288,
581,
41305,
657,
13,
2713,
198,
437,
198,
198,
31,
9288,
2617,
366,
37,
5432,
6187,
392,
1180,
50207,
1,
2221,
198,
220,
220,
220,
10662,
796,
337,
85,
26447,
26933,
940,
13,
15,
4357,
685,
16,
13,
15,
12962,
628,
220,
220,
220,
256,
62,
81,
19881,
796,
376,
5432,
6187,
392,
7,
34223,
11,
10662,
11,
32169,
10248,
1108,
5189,
31805,
13,
35389,
31562,
27912,
37,
7,
16,
13,
15,
4008,
198,
220,
220,
220,
256,
62,
11201,
796,
376,
5432,
6187,
392,
7,
34223,
11,
10662,
11,
32169,
10248,
1108,
5189,
31805,
13,
16870,
35470,
42,
7948,
28955,
198,
220,
220,
220,
256,
62,
76,
9205,
796,
376,
5432,
6187,
392,
7,
34223,
11,
10662,
11,
32169,
10248,
1108,
5189,
31805,
13,
44,
9205,
1495,
42,
7948,
7,
16,
13,
15,
4008,
628,
220,
220,
220,
2488,
9288,
279,
8367,
7,
83,
62,
81,
19881,
8,
26870,
657,
13,
15,
198,
220,
220,
220,
2488,
9288,
279,
8367,
7,
83,
62,
11201,
8,
26870,
657,
13,
15,
198,
220,
220,
220,
2488,
9288,
279,
8367,
7,
83,
62,
76,
9205,
8,
26870,
657,
13,
15,
198,
437,
198,
198,
31,
9288,
2617,
366,
37,
5432,
35,
8738,
1180,
50207,
1,
2221,
198,
220,
220,
220,
10662,
796,
337,
85,
26447,
26933,
940,
13,
15,
4357,
685,
16,
13,
15,
12962,
628,
220,
220,
220,
256,
62,
81,
19881,
796,
376,
5432,
35,
8738,
7,
34223,
11,
10662,
11,
32169,
10248,
1108,
5189,
31805,
13,
35389,
31562,
27912,
37,
7,
16,
13,
15,
4008,
198,
220,
220,
220,
256,
62,
11201,
796,
376,
5432,
35,
8738,
7,
34223,
11,
10662,
11,
32169,
10248,
1108,
5189,
31805,
13,
16870,
35470,
42,
7948,
28955,
198,
220,
220,
220,
1303,
256,
62,
76,
9205,
796,
376,
5432,
6187,
392,
7,
34223,
11,
10662,
11,
32169,
10248,
1108,
5189,
31805,
13,
44,
9205,
1495,
42,
7948,
7,
16,
13,
15,
4008,
220,
1303,
39852,
3955,
14887,
6234,
5626,
3563,
17534,
628,
220,
220,
220,
2488,
9288,
279,
8367,
7,
83,
62,
81,
19881,
8,
26870,
657,
13,
15,
198,
220,
220,
220,
2488,
9288,
279,
8367,
7,
83,
62,
11201,
8,
26870,
657,
13,
15,
198,
220,
220,
220,
1303,
2488,
9288,
279,
8367,
7,
83,
62,
76,
9205,
8,
26870,
657,
13,
15,
198,
437,
198
] | 1.9482 | 1,139 |
# Copyright (c) 2021 Idiap Research Institute, http://www.idiap.ch/
# Niccolò Antonello <[email protected]>
using FiniteStateTransducers
using Test, Random
using DataStructures
Random.seed!(123)
@testset "FiniteStateTransducers.jl" begin
@testset "Semirings" begin
include("semirings.jl")
end
@testset "FiniteStateTransducers constructors and utils" begin
include("wfst.jl")
include("properties.jl")
include("io_wfst.jl")
end
@testset "algorithms" begin
include("paths.jl") #Paths, BFS, paths
include("dfs.jl") #rm_state, DFS, get_scc, connect, rm_eps
include("shortest_distance.jl")
include("topsort.jl")
include("rm_eps.jl")
include("closure.jl")
include("inv.jl")
include("proj.jl")
include("reverse.jl")
include("compose.jl")
include("cat.jl")
include("determinize.jl")
include("wfst2tr.jl")
end
end
#@testset "FiniteStateTransducers.jl" begin
#end
| [
2,
15069,
357,
66,
8,
33448,
5121,
72,
499,
4992,
5136,
11,
2638,
1378,
2503,
13,
19830,
499,
13,
354,
14,
198,
2,
220,
8377,
4033,
127,
110,
3738,
505,
18798,
1279,
22057,
26261,
31,
19830,
499,
13,
354,
29,
198,
198,
3500,
4463,
578,
9012,
8291,
41213,
198,
3500,
6208,
11,
14534,
198,
3500,
6060,
44909,
942,
198,
29531,
13,
28826,
0,
7,
10163,
8,
198,
198,
31,
9288,
2617,
366,
37,
9504,
9012,
8291,
41213,
13,
20362,
1,
2221,
198,
220,
2488,
9288,
2617,
366,
13900,
343,
654,
1,
2221,
198,
220,
220,
220,
2291,
7203,
325,
10793,
654,
13,
20362,
4943,
198,
220,
886,
198,
220,
2488,
9288,
2617,
366,
37,
9504,
9012,
8291,
41213,
5678,
669,
290,
3384,
4487,
1,
2221,
198,
220,
220,
220,
2291,
7203,
86,
69,
301,
13,
20362,
4943,
198,
220,
220,
220,
2291,
7203,
48310,
13,
20362,
4943,
198,
220,
220,
220,
2291,
7203,
952,
62,
86,
69,
301,
13,
20362,
4943,
198,
220,
886,
198,
220,
2488,
9288,
2617,
366,
282,
7727,
907,
1,
2221,
198,
220,
220,
220,
2291,
7203,
6978,
82,
13,
20362,
4943,
1303,
15235,
82,
11,
347,
10652,
11,
13532,
198,
220,
220,
220,
2291,
7203,
7568,
82,
13,
20362,
4943,
1303,
26224,
62,
5219,
11,
360,
10652,
11,
651,
62,
82,
535,
11,
2018,
11,
42721,
62,
25386,
198,
220,
220,
220,
2291,
7203,
19509,
395,
62,
30246,
13,
20362,
4943,
198,
220,
220,
220,
2291,
7203,
35011,
419,
13,
20362,
4943,
198,
220,
220,
220,
2291,
7203,
26224,
62,
25386,
13,
20362,
4943,
198,
220,
220,
220,
2291,
7203,
17966,
13,
20362,
4943,
198,
220,
220,
220,
2291,
7203,
16340,
13,
20362,
4943,
198,
220,
220,
220,
2291,
7203,
1676,
73,
13,
20362,
4943,
198,
220,
220,
220,
2291,
7203,
50188,
13,
20362,
4943,
198,
220,
220,
220,
2291,
7203,
785,
3455,
13,
20362,
4943,
198,
220,
220,
220,
2291,
7203,
9246,
13,
20362,
4943,
198,
220,
220,
220,
2291,
7203,
67,
13221,
1096,
13,
20362,
4943,
198,
220,
220,
220,
2291,
7203,
86,
69,
301,
17,
2213,
13,
20362,
4943,
198,
220,
886,
198,
437,
198,
198,
2,
31,
9288,
2617,
366,
37,
9504,
9012,
8291,
41213,
13,
20362,
1,
2221,
198,
2,
437,
198
] | 2.518817 | 372 |
export CUTENSORError
struct CUTENSORError <: Exception
code::cutensorStatus_t
msg::AbstractString
end
Base.show(io::IO, err::CUTENSORError) = print(io, "CUTENSORError(code $(err.code), $(err.msg))")
function CUTENSORError(code::cutensorStatus_t)
msg = statusmessage(code)
return CUTENSORError(code, msg)
end
function statusmessage( status )
if status == CUTENSOR_STATUS_SUCCESS
return "the operation completed successfully"
elseif status == CUTENSOR_STATUS_NOT_INITIALIZED
return "the library was not initialized"
elseif status == CUTENSOR_STATUS_ALLOC_FAILED
return "the resource allocation failed"
elseif status == CUTENSOR_STATUS_INVALID_VALUE
return "an invalid value was used as an argument"
elseif status == CUTENSOR_STATUS_ARCH_MISMATCH
return "an absent device architectural feature is required"
elseif status == CUTENSOR_STATUS_MAPPING_ERROR
return "an access to GPU memory space failed"
elseif status == CUTENSOR_STATUS_EXECUTION_FAILED
return "the GPU program failed to execute"
elseif status == CUTENSOR_STATUS_INTERNAL_ERROR
return "an internal operation failed"
elseif status == CUTENSOR_STATUS_NOT_SUPPORTED
return "operation not supported (yet)"
elseif status == CUTENSOR_STATUS_LICENSE_ERROR
return "error detected trying to check the license"
elseif status == CUTENSOR_STATUS_CUBLAS_ERROR
return "error occurred during a CUBLAS operation"
elseif status == CUTENSOR_STATUS_CUDA_ERROR
return "error occurred during a CUDA operation"
elseif status == CUTENSOR_STATUS_INSUFFICIENT_WORKSPACE
return "insufficient workspace memory for this operation"
elseif status == CUTENSOR_STATUS_INSUFFICIENT_DRIVER
return "insufficient driver version"
else
return "unknown status"
end
end
macro check(tensor_func)
quote
local err = $(esc(tensor_func::Expr))
if err != CUTENSOR_STATUS_SUCCESS
throw(CUTENSORError(cutensorStatus_t(err)))
end
err
end
end
| [
39344,
327,
3843,
16938,
6965,
81,
1472,
198,
198,
7249,
327,
3843,
16938,
6965,
81,
1472,
1279,
25,
35528,
198,
220,
220,
220,
2438,
3712,
8968,
22854,
19580,
62,
83,
198,
220,
220,
220,
31456,
3712,
23839,
10100,
198,
437,
198,
14881,
13,
12860,
7,
952,
3712,
9399,
11,
11454,
3712,
34,
3843,
16938,
6965,
81,
1472,
8,
796,
3601,
7,
952,
11,
366,
34,
3843,
16938,
6965,
81,
1472,
7,
8189,
29568,
8056,
13,
8189,
828,
29568,
8056,
13,
19662,
4008,
4943,
198,
198,
8818,
327,
3843,
16938,
6965,
81,
1472,
7,
8189,
3712,
8968,
22854,
19580,
62,
83,
8,
198,
220,
220,
220,
31456,
796,
3722,
20500,
7,
8189,
8,
198,
220,
220,
220,
1441,
327,
3843,
16938,
6965,
81,
1472,
7,
8189,
11,
31456,
8,
198,
437,
198,
198,
8818,
3722,
20500,
7,
3722,
1267,
198,
220,
220,
220,
611,
3722,
6624,
327,
3843,
16938,
1581,
62,
35744,
2937,
62,
12564,
4093,
7597,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
366,
1169,
4905,
5668,
7675,
1,
198,
220,
220,
220,
2073,
361,
3722,
6624,
327,
3843,
16938,
1581,
62,
35744,
2937,
62,
11929,
62,
1268,
2043,
12576,
14887,
1961,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
366,
1169,
5888,
373,
407,
23224,
1,
198,
220,
220,
220,
2073,
361,
3722,
6624,
327,
3843,
16938,
1581,
62,
35744,
2937,
62,
7036,
4503,
62,
7708,
4146,
1961,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
366,
1169,
8271,
20157,
4054,
1,
198,
220,
220,
220,
2073,
361,
3722,
6624,
327,
3843,
16938,
1581,
62,
35744,
2937,
62,
1268,
23428,
2389,
62,
39488,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
366,
272,
12515,
1988,
373,
973,
355,
281,
4578,
1,
198,
220,
220,
220,
2073,
361,
3722,
6624,
327,
3843,
16938,
1581,
62,
35744,
2937,
62,
31315,
62,
44,
31125,
11417,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
366,
272,
13717,
3335,
27070,
3895,
318,
2672,
1,
198,
220,
220,
220,
2073,
361,
3722,
6624,
327,
3843,
16938,
1581,
62,
35744,
2937,
62,
44,
24805,
2751,
62,
24908,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
366,
272,
1895,
284,
11362,
4088,
2272,
4054,
1,
198,
220,
220,
220,
2073,
361,
3722,
6624,
327,
3843,
16938,
1581,
62,
35744,
2937,
62,
6369,
2943,
35354,
62,
7708,
4146,
1961,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
366,
1169,
11362,
1430,
4054,
284,
12260,
1,
198,
220,
220,
220,
2073,
361,
3722,
6624,
327,
3843,
16938,
1581,
62,
35744,
2937,
62,
1268,
31800,
1847,
62,
24908,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
366,
272,
5387,
4905,
4054,
1,
198,
220,
220,
220,
2073,
361,
3722,
6624,
327,
3843,
16938,
1581,
62,
35744,
2937,
62,
11929,
62,
40331,
15490,
1961,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
366,
27184,
407,
4855,
357,
25907,
16725,
198,
220,
220,
220,
2073,
361,
3722,
6624,
327,
3843,
16938,
1581,
62,
35744,
2937,
62,
43,
2149,
24290,
62,
24908,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
366,
18224,
12326,
2111,
284,
2198,
262,
5964,
1,
198,
220,
220,
220,
2073,
361,
3722,
6624,
327,
3843,
16938,
1581,
62,
35744,
2937,
62,
43633,
9148,
1921,
62,
24908,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
366,
18224,
5091,
1141,
257,
29369,
9148,
1921,
4905,
1,
198,
220,
220,
220,
2073,
361,
3722,
6624,
327,
3843,
16938,
1581,
62,
35744,
2937,
62,
43633,
5631,
62,
24908,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
366,
18224,
5091,
1141,
257,
29369,
5631,
4905,
1,
198,
220,
220,
220,
2073,
361,
3722,
6624,
327,
3843,
16938,
1581,
62,
35744,
2937,
62,
1268,
12564,
5777,
2149,
28495,
62,
33249,
4303,
11598,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
366,
1040,
15267,
44573,
4088,
329,
428,
4905,
1,
198,
220,
220,
220,
2073,
361,
3722,
6624,
327,
3843,
16938,
1581,
62,
35744,
2937,
62,
1268,
12564,
5777,
2149,
28495,
62,
7707,
38757,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
366,
1040,
15267,
4639,
2196,
1,
198,
220,
220,
220,
2073,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
366,
34680,
3722,
1,
198,
220,
220,
220,
886,
198,
437,
198,
198,
20285,
305,
2198,
7,
83,
22854,
62,
20786,
8,
198,
220,
220,
220,
9577,
198,
220,
220,
220,
220,
220,
220,
220,
1957,
11454,
796,
29568,
3798,
7,
83,
22854,
62,
20786,
3712,
3109,
1050,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
611,
11454,
14512,
327,
3843,
16938,
1581,
62,
35744,
2937,
62,
12564,
4093,
7597,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3714,
7,
34,
3843,
16938,
6965,
81,
1472,
7,
8968,
22854,
19580,
62,
83,
7,
8056,
22305,
198,
220,
220,
220,
220,
220,
220,
220,
886,
198,
220,
220,
220,
220,
220,
220,
220,
11454,
198,
220,
220,
220,
886,
198,
437,
198
] | 2.581395 | 817 |
# This file contains tests that have become out-of-date with the
# current code. They no longer run. It may be useful to rewrite them
# and re-include them in the test suite at some point, or perhaps just
# write completely new tests testing the same thing.
import Celeste: detect_sources
import Celeste.ParallelRun: BoundingBox, OptimizedSource,
one_node_joint_infer, one_node_single_infer, detect_sources
import Celeste.SensitiveFloats: SensitiveFloat
import Celeste.DeterministicVI.ElboMaximize
import Celeste.Coordinates: match_coordinates
"""
load_ea_from_source
Helper function to load elbo args for a particular source
"""
function load_ea_from_source(target_source, target_sources, catalog,
images, all_vps)
patches = Model.get_sky_patches(images, catalog)
# Get neighbors of the source from which to load elbo args.
neighbor_ids = Model.find_neighbors(patches, target_source)
# Create a dictionary to the optimized parameters.
target_source_variational_params = Dict{Int64, Array{Float64}}()
for (indx, cur_source) in enumerate(target_sources)
target_source_variational_params[cur_source] = all_vps[indx]
end
patches = Model.get_sky_patches(images, catalog)
# Get neighbors of the source from which to load elbo args.
neighbor_ids = Model.find_neighbors(patches, target_source)
# Load neighbors, patches and variational parameters
entry = catalog[target_source]
neighbors = catalog[neighbor_ids]
ids_local = vcat([target_source], neighbor_ids)
cat_local = vcat([entry], neighbors)
patches = patches[ids_local, :] # limit patches to catalog
vp = [haskey(target_source_variational_params, x) ?
target_source_variational_params[x] :
DeterministicVI.catalog_init_source(catalog[x]) for x in ids_local]
# Create elbo args
ElboArgs(images, patches, [1])
end
"""
compute_unconstrained_gradient
"""
function compute_unconstrained_gradient(target_source, target_sources,
catalog, images, all_vps)
# Load ea
ea = load_ea_from_source(target_source, target_sources, catalog, images,
all_vps)
# Evaluate in constrained space and then unconstrain
# (taken from the old maximize_elbo.jl code)
last_sf::SensitiveFloat{Float64} = SensitiveFloats.SensitiveFloat{Float64}(length(UnconstrainedParams), 1, true, true)
transform = DeterministicVI.get_mp_transform(vp, ea.active_sources)
f_res = DeterministicVI.elbo(ea)
Transform.transform_sensitive_float!(transform, last_sf, f_res, vp, ea.active_sources)
last_sf.d
end
"""
unconstrained_gradient_near_zero
"""
function unconstrained_gradient_near_zero(target_sources, catalog, images, all_vps)
# Compute gradient per source
for (cur_source_indx, source) in enumerate(target_sources)
gradient = compute_unconstrained_gradient(source, target_sources, catalog, images,all_vps)
if !isapprox(gradient, zeros(length(gradient)), atol=1)
return false
end
end
return true
end
"""
compare_vp_params
Helper to check whether two sets of variational parameters from the
result of joint inference are the same.
Return true if vp params are the same, false otherwise
"""
function compare_vp_params(flux_loc, flux_scale)
length(flux_loc) == length(flux_scale) || return false
# Check the existence and equivalence of each source's vp in flux_scale
for i in eachindex(flux_loc)
a = flux_loc[i].vs
b = flux_scale[i].vs
if !(isapprox(a, b))
println("compare_vp_params: Mismatch - $(a) vs $(b)")
print("norm(a - b): ", norm(a - b))
return false
end
end
return true
end
"""
compute_obj_value
computes obj value given set of results from one_node_infer and one_node_joint_infer
"""
function compute_obj_value(images::Vector{<:Image},
catalog::Vector{CatalogEntry},
box::BoundingBox,
results::Vector{OptimizedSource})
# TODO: This stuff is duplicated from ParallelRun.infer_box.
# We should refactor infer_box to return the objective value in some way!
patches = Model.get_sky_patches(images, catalog)
entry_in_range = entry->((box.ramin < entry.pos[1] < box.ramax) &&
(box.decmin < entry.pos[2] < box.decmax))
target_ids = find(entry_in_range, catalog)
# There must be a vp for every patch in the call to elbo().
# So, here we must limit patches to just the targets we optimized
# and pass [1, 2, 3, ...] as the target indexes.
ea = ElboArgs(images, patches[target_ids, :],
collect(1:length(target_ids)); include_kl=false)
vp = [r.vs for r in results]
DeterministicVI.elbo(ea, vp).v[]
end
"""
load_stripe_82_data
"""
function load_stripe_82_data()
rcf = RunCamcolField(4263, 5, 119)
cd(datadir)
run(`make RUN=$(rcf.run) CAMCOL=$(rcf.camcol) FIELD=$(rcf.field)`)
cd(wd)
catalog, target_sources = infer_init([rcf], datadir, primary_initialization=false)
images = SDSSIO.load_field_images([rcf], datadir)
([rcf], datadir, target_sources, catalog, images)
end
# TODO - This doesn't pass right now since some light sources are
# not close to zero.
function test_gradient_is_near_zero_on_stripe_82()
(rcfs, datadir, target_sources, catalog, images) = load_stripe_82_data()
# Make sure joint infer with few iterations does not pass the gradient near zero check
joint_few(cnti...) = one_node_joint_infer(cnti...)
results_few = one_node_infer(rcfs, datadir; infer_callback=joint_few, primary_initialization=false)
@test !unconstrained_gradient_near_zero(target_sources, catalog, images, [x.vs for x in results_few])
# Make sure joint infer with many iterations passes the gradient near zero check
joint_many(cnti...) = one_node_joint_infer(cnti...; n_iters=10)
results_many = one_node_infer(rcfs, datadir; infer_callback=joint_many, primary_initialization=false)
@test unconstrained_gradient_near_zero(target_sources, catalog, images, [x.vs for x in results_many])
end
# Tests that the gradient is zero on overlapping sources after
# joint optimization.
# Makes sure that with fewer iterations the gradient is not zero.
function test_gradient_is_near_zero()
images = SampleData.get_sdss_images(4263, 5, 119)
catalog = SampleData.get_sdss_catalog(4263, 5, 119)
# This box has 3 overlapping objects in it.
box = BoundingBox(0.467582, 0.473275, 0.588383, 0.595095)
result_few = ParallelRun.infer_box(images, catalog, box;
method=:joint, n_iters=2)
@test length(result_few) == 3
# this stuff is copied from infer_box so that we can calculate the gradient
#catalog, patches = detect_sources(images)
patches = Model.get_sky_patches(images, catalog)
entry_in_range = entry->((box.ramin < entry.pos[1] < box.ramax) &&
(box.decmin < entry.pos[2] < box.decmax))
target_sources = find(entry_in_range, catalog)
@test !unconstrained_gradient_near_zero(target_sources, catalog, images,
[x.vs for x in result_few])
result_many = ParallelRun.infer_box(images, catalog, box;
method=:joint, n_iters=20)
@test length(result_many) == 3
@test unconstrained_gradient_near_zero(target_sources, catalog, images,
[x.vs for x in result_many])
end
"""
test_different_result_with_different_iter()
Using 3 iters instead of 1 iters should result in a different set of parameters.
"""
function test_different_result_with_different_iter()
# This bounding box has overlapping stars. (neighbor map is not empty)
box = BoundingBox(154.39, 164.41, 39.11, 39.13)
field_triplets = [RunCamcolField(3900, 6, 269),]
infer_few(ctni...) = one_node_joint_infer(ctni...;
n_iters=1,
within_batch_shuffling=false)
result_iter_1 = one_node_infer(field_triplets, datadir;
infer_callback=infer_few, box=box)
infer_many(ctni...) = one_node_joint_infer(ctni...;
n_iters=5,
within_batch_shuffling=false)
result_iter_5 = one_node_infer(field_triplets, datadir;
infer_callback=infer_many, box=box)
# Make sure that parameters are not the same
@test !compare_vp_params(result_iter_1, result_iter_5)
end
"""
test_same_result_with_diff_batch_sizes
Varying batch sizes using the cyclades algorithm should not change final objective value.
"""
function test_same_result_with_diff_batch_sizes()
# This bounding box has overlapping stars. (neighbor map is not empty)
box = BoundingBox(154.39, 164.41, 39.11, 39.13)
field_triplets = [RunCamcolField(3900, 6, 269),]
# With batch size = 7
infer_few(ctni...) = one_node_joint_infer(ctni...;
n_iters=3,
batch_size=7,
within_batch_shuffling=false)
result_bs_7 = one_node_infer(field_triplets, datadir;
infer_callback=infer_few,
box=box)
# With batch size = 39
infer_many(ctni...) = one_node_joint_infer(ctni...;
n_iters=3,
batch_size=39,
within_batch_shuffling=false)
result_bs_39 = one_node_infer(field_triplets, datadir;
infer_callback=infer_many,
box=box)
# Make sure that parameters are exactly the same
@test compare_vp_params(result_bs_7, result_bs_39)
end
function test_same_one_node_infer_twice()
# This bounding box has overlapping stars. (neighbor map is not empty)
box = BoundingBox(154.39, 164.41, 39.11, 39.13)
field_triplets = [RunCamcolField(3900, 6, 269),]
infer_few(ctni...) = one_node_joint_infer(ctni...;
n_iters=3,
batch_size=7,
within_batch_shuffling=false)
result_bs_7_1 = one_node_infer(field_triplets, datadir;
infer_callback=infer_few,
box=box)
result_bs_7_2 = one_node_infer(field_triplets, datadir;
infer_callback=infer_few,
box=box)
# Make sure that parameters are exactly the same
@test compare_vp_params(result_bs_7_1, result_bs_7_2)
end
"""
test infer multi iter obj overlapping.
This makes sure one_node_joint_infer achieves sum objective value less
than single iter on non overlapping sources.
"""
function test_one_node_joint_infer_obj_overlapping()
# This bounding box has overlapping stars. (neighbor map is not empty)
box = BoundingBox(154.39, 164.41, 39.11, 39.13)
field_triplets = [RunCamcolField(3900, 6, 269),]
# 100 iterations
tic()
infer_multi(ctni...) = one_node_joint_infer(ctni...;
n_iters=30,
within_batch_shuffling=true)
result_multi = one_node_infer(field_triplets, datadir;
infer_callback=infer_multi,
box=box)
multi_iter_time = toq()
score_multi = compute_obj_value(result_multi, field_triplets, datadir; box=box)
# 2 iterations
tic()
infer_two(ctni...) = one_node_joint_infer(ctni...;
n_iters=2,
within_batch_shuffling=true)
result_two = one_node_infer(field_triplets, datadir;
infer_callback=infer_two,
box=box)
two_iter_time = toq()
score_two = compute_obj_value(result_two, field_triplets, datadir; box=box)
# One node infer (1 iteration, butm ore newton steps)
tic()
result_single = one_node_infer(field_triplets, datadir;
infer_callback=one_node_single_infer,
box=box)
single_iter_time = toq()
score_single = compute_obj_value(result_single, field_triplets, datadir; box=box)
println("One node joint infer objective value: $(score_multi)")
println("One node joint infer 2 iter objective value: $(score_two)")
println("Single iter objective value: $(score_single)")
println("One node joint infer time: $(multi_iter_time)")
println("One node joint infer 2 iter time: $(two_iter_time)")
println("Single iter time: $(single_iter_time)")
@test score_multi > score_single
@test score_multi > score_two
end
# Stripe 82 tests are long running
@testset "stripe82" begin
# Test gradients near zero (this takes 100 iterations and is a bit slow)
test_gradient_is_near_zero()
# Test that we reach a higher objective with more iterations.
# This is a bit slow.
test_one_node_joint_infer_obj_overlapping()
test_same_one_node_infer_twice()
test_different_result_with_different_iter()
test_same_result_with_diff_batch_sizes()
end
| [
2,
770,
2393,
4909,
5254,
326,
423,
1716,
503,
12,
1659,
12,
4475,
351,
262,
198,
2,
1459,
2438,
13,
220,
1119,
645,
2392,
1057,
13,
632,
743,
307,
4465,
284,
28183,
606,
198,
2,
290,
302,
12,
17256,
606,
287,
262,
1332,
18389,
379,
617,
966,
11,
393,
3737,
655,
198,
2,
3551,
3190,
649,
5254,
4856,
262,
976,
1517,
13,
198,
198,
11748,
15248,
29872,
25,
4886,
62,
82,
2203,
198,
11748,
15248,
29872,
13,
10044,
29363,
10987,
25,
347,
9969,
14253,
11,
30011,
1143,
7416,
11,
198,
220,
220,
220,
530,
62,
17440,
62,
73,
1563,
62,
259,
2232,
11,
530,
62,
17440,
62,
29762,
62,
259,
2232,
11,
4886,
62,
82,
2203,
198,
11748,
15248,
29872,
13,
50,
18464,
33574,
1381,
25,
14173,
1800,
43879,
198,
11748,
15248,
29872,
13,
35,
2357,
49228,
12861,
13,
9527,
2127,
11518,
48439,
198,
11748,
15248,
29872,
13,
7222,
585,
17540,
25,
2872,
62,
37652,
17540,
198,
198,
37811,
198,
2220,
62,
18213,
62,
6738,
62,
10459,
198,
47429,
2163,
284,
3440,
1288,
2127,
26498,
329,
257,
1948,
2723,
198,
37811,
198,
8818,
3440,
62,
18213,
62,
6738,
62,
10459,
7,
16793,
62,
10459,
11,
2496,
62,
82,
2203,
11,
18388,
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,
4263,
11,
477,
62,
85,
862,
8,
628,
220,
220,
220,
16082,
796,
9104,
13,
1136,
62,
15688,
62,
8071,
2052,
7,
17566,
11,
18388,
8,
628,
220,
220,
220,
1303,
3497,
12020,
286,
262,
2723,
422,
543,
284,
3440,
1288,
2127,
26498,
13,
198,
220,
220,
220,
4780,
62,
2340,
796,
9104,
13,
19796,
62,
710,
394,
32289,
7,
8071,
2052,
11,
2496,
62,
10459,
8,
628,
220,
220,
220,
1303,
13610,
257,
22155,
284,
262,
23392,
10007,
13,
198,
220,
220,
220,
2496,
62,
10459,
62,
25641,
864,
62,
37266,
796,
360,
713,
90,
5317,
2414,
11,
15690,
90,
43879,
2414,
11709,
3419,
198,
220,
220,
220,
329,
357,
521,
87,
11,
1090,
62,
10459,
8,
287,
27056,
378,
7,
16793,
62,
82,
2203,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2496,
62,
10459,
62,
25641,
864,
62,
37266,
58,
22019,
62,
10459,
60,
796,
477,
62,
85,
862,
58,
521,
87,
60,
198,
220,
220,
220,
886,
628,
220,
220,
220,
16082,
796,
9104,
13,
1136,
62,
15688,
62,
8071,
2052,
7,
17566,
11,
18388,
8,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
3497,
12020,
286,
262,
2723,
422,
543,
284,
3440,
1288,
2127,
26498,
13,
198,
220,
220,
220,
4780,
62,
2340,
796,
9104,
13,
19796,
62,
710,
394,
32289,
7,
8071,
2052,
11,
2496,
62,
10459,
8,
628,
220,
220,
220,
1303,
8778,
12020,
11,
16082,
290,
5553,
864,
10007,
198,
220,
220,
220,
5726,
796,
18388,
58,
16793,
62,
10459,
60,
198,
220,
220,
220,
12020,
796,
18388,
58,
710,
394,
2865,
62,
2340,
60,
198,
220,
220,
220,
220,
2340,
62,
12001,
796,
410,
9246,
26933,
16793,
62,
10459,
4357,
4780,
62,
2340,
8,
198,
220,
220,
220,
3797,
62,
12001,
796,
410,
9246,
26933,
13000,
4357,
12020,
8,
198,
220,
220,
220,
16082,
796,
16082,
58,
2340,
62,
12001,
11,
1058,
60,
220,
1303,
4179,
16082,
284,
18388,
198,
220,
220,
220,
410,
79,
796,
685,
10134,
2539,
7,
16793,
62,
10459,
62,
25641,
864,
62,
37266,
11,
2124,
8,
5633,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2496,
62,
10459,
62,
25641,
864,
62,
37266,
58,
87,
60,
1058,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
45559,
49228,
12861,
13,
9246,
11794,
62,
15003,
62,
10459,
7,
9246,
11794,
58,
87,
12962,
329,
2124,
287,
220,
2340,
62,
12001,
60,
628,
220,
220,
220,
1303,
13610,
1288,
2127,
26498,
198,
220,
220,
220,
2574,
2127,
42035,
7,
17566,
11,
16082,
11,
685,
16,
12962,
198,
437,
198,
198,
37811,
198,
5589,
1133,
62,
403,
1102,
2536,
1328,
62,
49607,
198,
37811,
198,
8818,
24061,
62,
403,
1102,
2536,
1328,
62,
49607,
7,
16793,
62,
10459,
11,
2496,
62,
82,
2203,
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,
220,
220,
220,
220,
220,
220,
220,
220,
18388,
11,
4263,
11,
477,
62,
85,
862,
8,
198,
220,
220,
220,
1303,
8778,
304,
64,
198,
220,
220,
220,
304,
64,
796,
3440,
62,
18213,
62,
6738,
62,
10459,
7,
16793,
62,
10459,
11,
2496,
62,
82,
2203,
11,
18388,
11,
4263,
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,
477,
62,
85,
862,
8,
628,
220,
220,
220,
1303,
26439,
4985,
287,
31070,
2272,
290,
788,
21254,
2536,
391,
198,
220,
220,
220,
1303,
357,
83,
1685,
422,
262,
1468,
20487,
62,
417,
2127,
13,
20362,
2438,
8,
198,
220,
220,
220,
938,
62,
28202,
3712,
50,
18464,
43879,
90,
43879,
2414,
92,
796,
14173,
1800,
33574,
1381,
13,
50,
18464,
43879,
90,
43879,
2414,
92,
7,
13664,
7,
3118,
1102,
2536,
1328,
10044,
4105,
828,
352,
11,
2081,
11,
2081,
8,
198,
220,
220,
220,
6121,
796,
45559,
49228,
12861,
13,
1136,
62,
3149,
62,
35636,
7,
36133,
11,
304,
64,
13,
5275,
62,
82,
2203,
8,
198,
220,
220,
220,
277,
62,
411,
796,
45559,
49228,
12861,
13,
417,
2127,
7,
18213,
8,
198,
220,
220,
220,
26981,
13,
35636,
62,
30176,
62,
22468,
0,
7,
35636,
11,
938,
62,
28202,
11,
277,
62,
411,
11,
410,
79,
11,
304,
64,
13,
5275,
62,
82,
2203,
8,
198,
220,
220,
220,
938,
62,
28202,
13,
67,
198,
437,
198,
198,
37811,
198,
403,
1102,
2536,
1328,
62,
49607,
62,
40093,
62,
22570,
198,
37811,
198,
8818,
21254,
2536,
1328,
62,
49607,
62,
40093,
62,
22570,
7,
16793,
62,
82,
2203,
11,
18388,
11,
4263,
11,
477,
62,
85,
862,
8,
628,
220,
220,
220,
1303,
3082,
1133,
31312,
583,
2723,
198,
220,
220,
220,
329,
357,
22019,
62,
10459,
62,
521,
87,
11,
2723,
8,
287,
27056,
378,
7,
16793,
62,
82,
2203,
8,
198,
220,
220,
220,
220,
220,
220,
220,
31312,
796,
24061,
62,
403,
1102,
2536,
1328,
62,
49607,
7,
10459,
11,
2496,
62,
82,
2203,
11,
18388,
11,
4263,
11,
439,
62,
85,
862,
8,
198,
220,
220,
220,
220,
220,
220,
220,
611,
5145,
271,
1324,
13907,
7,
49607,
11,
1976,
27498,
7,
13664,
7,
49607,
36911,
379,
349,
28,
16,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
3991,
198,
220,
220,
220,
220,
220,
220,
220,
886,
198,
220,
220,
220,
886,
198,
220,
220,
220,
1441,
2081,
198,
437,
198,
198,
37811,
198,
5589,
533,
62,
36133,
62,
37266,
198,
47429,
284,
2198,
1771,
734,
5621,
286,
5553,
864,
10007,
422,
262,
198,
20274,
286,
6466,
32278,
389,
262,
976,
13,
198,
198,
13615,
2081,
611,
410,
79,
42287,
389,
262,
976,
11,
3991,
4306,
198,
37811,
198,
8818,
8996,
62,
36133,
62,
37266,
7,
69,
22564,
62,
17946,
11,
28462,
62,
9888,
8,
628,
220,
220,
220,
4129,
7,
69,
22564,
62,
17946,
8,
6624,
4129,
7,
69,
22564,
62,
9888,
8,
8614,
1441,
3991,
628,
220,
220,
220,
1303,
6822,
262,
6224,
290,
6854,
594,
286,
1123,
2723,
338,
410,
79,
287,
28462,
62,
9888,
198,
220,
220,
220,
329,
1312,
287,
1123,
9630,
7,
69,
22564,
62,
17946,
8,
198,
220,
220,
220,
220,
220,
220,
220,
257,
796,
28462,
62,
17946,
58,
72,
4083,
14259,
198,
220,
220,
220,
220,
220,
220,
220,
275,
796,
28462,
62,
9888,
58,
72,
4083,
14259,
198,
220,
220,
220,
220,
220,
220,
220,
611,
5145,
7,
271,
1324,
13907,
7,
64,
11,
275,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
44872,
7203,
5589,
533,
62,
36133,
62,
37266,
25,
337,
1042,
963,
532,
29568,
64,
8,
3691,
29568,
65,
8,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3601,
7203,
27237,
7,
64,
532,
275,
2599,
33172,
2593,
7,
64,
532,
275,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
3991,
198,
220,
220,
220,
220,
220,
220,
220,
886,
198,
220,
220,
220,
886,
198,
220,
220,
220,
1441,
2081,
198,
437,
198,
198,
37811,
198,
5589,
1133,
62,
26801,
62,
8367,
198,
5589,
1769,
26181,
1988,
1813,
900,
286,
2482,
422,
530,
62,
17440,
62,
259,
2232,
290,
530,
62,
17440,
62,
73,
1563,
62,
259,
2232,
198,
37811,
198,
8818,
24061,
62,
26801,
62,
8367,
7,
17566,
3712,
38469,
90,
27,
25,
5159,
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,
18388,
3712,
38469,
90,
49015,
30150,
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,
3091,
3712,
33,
9969,
14253,
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,
2482,
3712,
38469,
90,
27871,
320,
1143,
7416,
30072,
628,
220,
220,
220,
1303,
16926,
46,
25,
770,
3404,
318,
14184,
3474,
422,
42945,
10987,
13,
259,
2232,
62,
3524,
13,
198,
220,
220,
220,
1303,
775,
815,
1006,
11218,
13249,
62,
3524,
284,
1441,
262,
9432,
1988,
287,
617,
835,
0,
198,
220,
220,
220,
16082,
796,
9104,
13,
1136,
62,
15688,
62,
8071,
2052,
7,
17566,
11,
18388,
8,
198,
220,
220,
220,
5726,
62,
259,
62,
9521,
796,
5726,
3784,
19510,
3524,
13,
859,
259,
1279,
5726,
13,
1930,
58,
16,
60,
1279,
3091,
13,
859,
897,
8,
11405,
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,
357,
3524,
13,
12501,
1084,
1279,
5726,
13,
1930,
58,
17,
60,
1279,
3091,
13,
12501,
9806,
4008,
198,
220,
220,
220,
2496,
62,
2340,
796,
1064,
7,
13000,
62,
259,
62,
9521,
11,
18388,
8,
628,
220,
220,
220,
1303,
1318,
1276,
307,
257,
410,
79,
329,
790,
8529,
287,
262,
869,
284,
1288,
2127,
22446,
198,
220,
220,
220,
1303,
1406,
11,
994,
356,
1276,
4179,
16082,
284,
655,
262,
6670,
356,
23392,
198,
220,
220,
220,
1303,
290,
1208,
685,
16,
11,
362,
11,
513,
11,
2644,
60,
355,
262,
2496,
39199,
13,
198,
220,
220,
220,
304,
64,
796,
2574,
2127,
42035,
7,
17566,
11,
16082,
58,
16793,
62,
2340,
11,
1058,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2824,
7,
16,
25,
13664,
7,
16793,
62,
2340,
18125,
2291,
62,
41582,
28,
9562,
8,
198,
220,
220,
220,
410,
79,
796,
685,
81,
13,
14259,
329,
374,
287,
2482,
60,
198,
220,
220,
220,
45559,
49228,
12861,
13,
417,
2127,
7,
18213,
11,
410,
79,
737,
85,
21737,
198,
437,
198,
198,
37811,
198,
2220,
62,
33565,
431,
62,
6469,
62,
7890,
198,
37811,
198,
8818,
3440,
62,
33565,
431,
62,
6469,
62,
7890,
3419,
198,
220,
220,
220,
374,
12993,
796,
5660,
21701,
4033,
15878,
7,
19,
29558,
11,
642,
11,
15136,
8,
198,
220,
220,
220,
22927,
7,
19608,
324,
343,
8,
198,
220,
220,
220,
1057,
7,
63,
15883,
32494,
43641,
7,
6015,
69,
13,
5143,
8,
32421,
25154,
43641,
7,
6015,
69,
13,
20991,
4033,
8,
18930,
24639,
43641,
7,
6015,
69,
13,
3245,
8,
63,
8,
198,
220,
220,
220,
22927,
7,
16993,
8,
198,
220,
220,
220,
18388,
11,
2496,
62,
82,
2203,
796,
13249,
62,
15003,
26933,
6015,
69,
4357,
4818,
324,
343,
11,
4165,
62,
36733,
1634,
28,
9562,
8,
198,
220,
220,
220,
4263,
796,
311,
5258,
50,
9399,
13,
2220,
62,
3245,
62,
17566,
26933,
6015,
69,
4357,
4818,
324,
343,
8,
198,
220,
220,
220,
29565,
6015,
69,
4357,
4818,
324,
343,
11,
2496,
62,
82,
2203,
11,
18388,
11,
4263,
8,
198,
437,
628,
198,
2,
16926,
46,
532,
770,
1595,
470,
1208,
826,
783,
1201,
617,
1657,
4237,
389,
198,
2,
407,
1969,
284,
6632,
13,
198,
8818,
1332,
62,
49607,
62,
271,
62,
40093,
62,
22570,
62,
261,
62,
33565,
431,
62,
6469,
3419,
198,
220,
220,
220,
357,
6015,
9501,
11,
4818,
324,
343,
11,
2496,
62,
82,
2203,
11,
18388,
11,
4263,
8,
796,
3440,
62,
33565,
431,
62,
6469,
62,
7890,
3419,
628,
220,
220,
220,
1303,
6889,
1654,
6466,
13249,
351,
1178,
34820,
857,
407,
1208,
262,
31312,
1474,
6632,
2198,
198,
220,
220,
220,
6466,
62,
32146,
7,
66,
429,
72,
23029,
796,
530,
62,
17440,
62,
73,
1563,
62,
259,
2232,
7,
66,
429,
72,
23029,
198,
220,
220,
220,
2482,
62,
32146,
796,
530,
62,
17440,
62,
259,
2232,
7,
6015,
9501,
11,
4818,
324,
343,
26,
13249,
62,
47423,
28,
73,
1563,
62,
32146,
11,
4165,
62,
36733,
1634,
28,
9562,
8,
198,
220,
220,
220,
2488,
9288,
5145,
403,
1102,
2536,
1328,
62,
49607,
62,
40093,
62,
22570,
7,
16793,
62,
82,
2203,
11,
18388,
11,
4263,
11,
685,
87,
13,
14259,
329,
2124,
287,
2482,
62,
32146,
12962,
628,
220,
220,
220,
1303,
6889,
1654,
6466,
13249,
351,
867,
34820,
8318,
262,
31312,
1474,
6632,
2198,
198,
220,
220,
220,
6466,
62,
21834,
7,
66,
429,
72,
23029,
796,
530,
62,
17440,
62,
73,
1563,
62,
259,
2232,
7,
66,
429,
72,
986,
26,
299,
62,
270,
364,
28,
940,
8,
198,
220,
220,
220,
2482,
62,
21834,
796,
530,
62,
17440,
62,
259,
2232,
7,
6015,
9501,
11,
4818,
324,
343,
26,
13249,
62,
47423,
28,
73,
1563,
62,
21834,
11,
4165,
62,
36733,
1634,
28,
9562,
8,
198,
220,
220,
220,
2488,
9288,
21254,
2536,
1328,
62,
49607,
62,
40093,
62,
22570,
7,
16793,
62,
82,
2203,
11,
18388,
11,
4263,
11,
685,
87,
13,
14259,
329,
2124,
287,
2482,
62,
21834,
12962,
198,
437,
628,
198,
2,
30307,
326,
262,
31312,
318,
6632,
319,
32997,
4237,
706,
198,
2,
6466,
23989,
13,
198,
2,
27433,
1654,
326,
351,
7380,
34820,
262,
31312,
318,
407,
6632,
13,
198,
8818,
1332,
62,
49607,
62,
271,
62,
40093,
62,
22570,
3419,
198,
220,
220,
220,
4263,
796,
27565,
6601,
13,
1136,
62,
21282,
824,
62,
17566,
7,
19,
29558,
11,
642,
11,
15136,
8,
198,
220,
220,
220,
18388,
796,
27565,
6601,
13,
1136,
62,
21282,
824,
62,
9246,
11794,
7,
19,
29558,
11,
642,
11,
15136,
8,
628,
220,
220,
220,
1303,
770,
3091,
468,
513,
32997,
5563,
287,
340,
13,
198,
220,
220,
220,
3091,
796,
347,
9969,
14253,
7,
15,
13,
3510,
2425,
6469,
11,
657,
13,
37804,
23195,
11,
657,
13,
39118,
34741,
11,
657,
13,
3270,
1120,
3865,
8,
628,
220,
220,
220,
1255,
62,
32146,
796,
42945,
10987,
13,
259,
2232,
62,
3524,
7,
17566,
11,
18388,
11,
3091,
26,
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,
2446,
28,
25,
73,
1563,
11,
299,
62,
270,
364,
28,
17,
8,
628,
220,
220,
220,
2488,
9288,
4129,
7,
20274,
62,
32146,
8,
6624,
513,
628,
220,
220,
220,
1303,
428,
3404,
318,
18984,
422,
13249,
62,
3524,
523,
326,
356,
460,
15284,
262,
31312,
198,
220,
220,
220,
1303,
9246,
11794,
11,
16082,
796,
4886,
62,
82,
2203,
7,
17566,
8,
198,
220,
220,
220,
16082,
796,
9104,
13,
1136,
62,
15688,
62,
8071,
2052,
7,
17566,
11,
18388,
8,
198,
220,
220,
220,
5726,
62,
259,
62,
9521,
796,
5726,
3784,
19510,
3524,
13,
859,
259,
1279,
5726,
13,
1930,
58,
16,
60,
1279,
3091,
13,
859,
897,
8,
11405,
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,
357,
3524,
13,
12501,
1084,
1279,
5726,
13,
1930,
58,
17,
60,
1279,
3091,
13,
12501,
9806,
4008,
198,
220,
220,
220,
2496,
62,
82,
2203,
796,
1064,
7,
13000,
62,
259,
62,
9521,
11,
18388,
8,
628,
220,
220,
220,
2488,
9288,
5145,
403,
1102,
2536,
1328,
62,
49607,
62,
40093,
62,
22570,
7,
16793,
62,
82,
2203,
11,
18388,
11,
4263,
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,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
685,
87,
13,
14259,
329,
2124,
287,
1255,
62,
32146,
12962,
628,
220,
220,
220,
1255,
62,
21834,
796,
42945,
10987,
13,
259,
2232,
62,
3524,
7,
17566,
11,
18388,
11,
3091,
26,
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,
2446,
28,
25,
73,
1563,
11,
299,
62,
270,
364,
28,
1238,
8,
198,
220,
220,
220,
2488,
9288,
4129,
7,
20274,
62,
21834,
8,
6624,
513,
198,
220,
220,
220,
2488,
9288,
21254,
2536,
1328,
62,
49607,
62,
40093,
62,
22570,
7,
16793,
62,
82,
2203,
11,
18388,
11,
4263,
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,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
685,
87,
13,
14259,
329,
2124,
287,
1255,
62,
21834,
12962,
198,
437,
198,
198,
37811,
198,
9288,
62,
39799,
62,
20274,
62,
4480,
62,
39799,
62,
2676,
3419,
198,
12814,
513,
340,
364,
2427,
286,
352,
340,
364,
815,
1255,
287,
257,
1180,
900,
286,
10007,
13,
198,
37811,
198,
8818,
1332,
62,
39799,
62,
20274,
62,
4480,
62,
39799,
62,
2676,
3419,
198,
220,
220,
220,
1303,
770,
5421,
278,
3091,
468,
32997,
5788,
13,
357,
710,
394,
2865,
3975,
318,
407,
6565,
8,
198,
220,
220,
220,
3091,
796,
347,
9969,
14253,
7,
21526,
13,
2670,
11,
25307,
13,
3901,
11,
5014,
13,
1157,
11,
5014,
13,
1485,
8,
198,
220,
220,
220,
2214,
62,
28461,
46916,
796,
685,
10987,
21701,
4033,
15878,
7,
2670,
405,
11,
718,
11,
38249,
828,
60,
628,
220,
220,
220,
13249,
62,
32146,
7,
310,
8461,
23029,
796,
530,
62,
17440,
62,
73,
1563,
62,
259,
2232,
7,
310,
8461,
986,
26,
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,
220,
220,
220,
220,
220,
299,
62,
270,
364,
28,
16,
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,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1626,
62,
43501,
62,
1477,
1648,
1359,
28,
9562,
8,
198,
220,
220,
220,
1255,
62,
2676,
62,
16,
796,
530,
62,
17440,
62,
259,
2232,
7,
3245,
62,
28461,
46916,
11,
4818,
324,
343,
26,
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,
13249,
62,
47423,
28,
259,
2232,
62,
32146,
11,
3091,
28,
3524,
8,
628,
220,
220,
220,
13249,
62,
21834,
7,
310,
8461,
23029,
796,
530,
62,
17440,
62,
73,
1563,
62,
259,
2232,
7,
310,
8461,
986,
26,
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,
220,
220,
220,
220,
220,
220,
299,
62,
270,
364,
28,
20,
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,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1626,
62,
43501,
62,
1477,
1648,
1359,
28,
9562,
8,
198,
220,
220,
220,
1255,
62,
2676,
62,
20,
796,
530,
62,
17440,
62,
259,
2232,
7,
3245,
62,
28461,
46916,
11,
4818,
324,
343,
26,
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,
13249,
62,
47423,
28,
259,
2232,
62,
21834,
11,
3091,
28,
3524,
8,
628,
220,
220,
220,
1303,
6889,
1654,
326,
10007,
389,
407,
262,
976,
198,
220,
220,
220,
2488,
9288,
5145,
5589,
533,
62,
36133,
62,
37266,
7,
20274,
62,
2676,
62,
16,
11,
1255,
62,
2676,
62,
20,
8,
198,
437,
198,
198,
37811,
198,
9288,
62,
31642,
62,
20274,
62,
4480,
62,
26069,
62,
43501,
62,
82,
4340,
198,
53,
560,
278,
15458,
10620,
1262,
262,
11700,
2367,
11862,
815,
407,
1487,
2457,
9432,
1988,
13,
198,
37811,
198,
8818,
1332,
62,
31642,
62,
20274,
62,
4480,
62,
26069,
62,
43501,
62,
82,
4340,
3419,
198,
220,
220,
220,
1303,
770,
5421,
278,
3091,
468,
32997,
5788,
13,
357,
710,
394,
2865,
3975,
318,
407,
6565,
8,
198,
220,
220,
220,
3091,
796,
347,
9969,
14253,
7,
21526,
13,
2670,
11,
25307,
13,
3901,
11,
5014,
13,
1157,
11,
5014,
13,
1485,
8,
198,
220,
220,
220,
2214,
62,
28461,
46916,
796,
685,
10987,
21701,
4033,
15878,
7,
2670,
405,
11,
718,
11,
38249,
828,
60,
628,
220,
220,
220,
1303,
2080,
15458,
2546,
796,
767,
198,
220,
220,
220,
13249,
62,
32146,
7,
310,
8461,
23029,
796,
530,
62,
17440,
62,
73,
1563,
62,
259,
2232,
7,
310,
8461,
986,
26,
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,
299,
62,
270,
364,
28,
18,
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,
15458,
62,
7857,
28,
22,
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,
1626,
62,
43501,
62,
1477,
1648,
1359,
28,
9562,
8,
198,
220,
220,
220,
1255,
62,
1443,
62,
22,
796,
530,
62,
17440,
62,
259,
2232,
7,
3245,
62,
28461,
46916,
11,
4818,
324,
343,
26,
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,
13249,
62,
47423,
28,
259,
2232,
62,
32146,
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,
220,
3091,
28,
3524,
8,
628,
198,
220,
220,
220,
1303,
2080,
15458,
2546,
796,
5014,
198,
220,
220,
220,
13249,
62,
21834,
7,
310,
8461,
23029,
796,
530,
62,
17440,
62,
73,
1563,
62,
259,
2232,
7,
310,
8461,
986,
26,
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,
299,
62,
270,
364,
28,
18,
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,
15458,
62,
7857,
28,
2670,
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,
1626,
62,
43501,
62,
1477,
1648,
1359,
28,
9562,
8,
198,
220,
220,
220,
1255,
62,
1443,
62,
2670,
796,
530,
62,
17440,
62,
259,
2232,
7,
3245,
62,
28461,
46916,
11,
4818,
324,
343,
26,
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,
13249,
62,
47423,
28,
259,
2232,
62,
21834,
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,
220,
220,
3091,
28,
3524,
8,
628,
220,
220,
220,
1303,
6889,
1654,
326,
10007,
389,
3446,
262,
976,
198,
220,
220,
220,
2488,
9288,
8996,
62,
36133,
62,
37266,
7,
20274,
62,
1443,
62,
22,
11,
1255,
62,
1443,
62,
2670,
8,
198,
437,
198,
198,
8818,
1332,
62,
31642,
62,
505,
62,
17440,
62,
259,
2232,
62,
4246,
501,
3419,
198,
220,
220,
220,
1303,
770,
5421,
278,
3091,
468,
32997,
5788,
13,
357,
710,
394,
2865,
3975,
318,
407,
6565,
8,
198,
220,
220,
220,
3091,
796,
347,
9969,
14253,
7,
21526,
13,
2670,
11,
25307,
13,
3901,
11,
5014,
13,
1157,
11,
5014,
13,
1485,
8,
198,
220,
220,
220,
2214,
62,
28461,
46916,
796,
685,
10987,
21701,
4033,
15878,
7,
2670,
405,
11,
718,
11,
38249,
828,
60,
628,
220,
220,
220,
13249,
62,
32146,
7,
310,
8461,
23029,
796,
530,
62,
17440,
62,
73,
1563,
62,
259,
2232,
7,
310,
8461,
986,
26,
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,
220,
220,
220,
220,
220,
299,
62,
270,
364,
28,
18,
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,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
15458,
62,
7857,
28,
22,
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,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1626,
62,
43501,
62,
1477,
1648,
1359,
28,
9562,
8,
198,
220,
220,
220,
1255,
62,
1443,
62,
22,
62,
16,
796,
530,
62,
17440,
62,
259,
2232,
7,
3245,
62,
28461,
46916,
11,
4818,
324,
343,
26,
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,
13249,
62,
47423,
28,
259,
2232,
62,
32146,
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,
220,
220,
220,
3091,
28,
3524,
8,
628,
220,
220,
220,
1255,
62,
1443,
62,
22,
62,
17,
796,
530,
62,
17440,
62,
259,
2232,
7,
3245,
62,
28461,
46916,
11,
4818,
324,
343,
26,
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,
13249,
62,
47423,
28,
259,
2232,
62,
32146,
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,
220,
220,
220,
3091,
28,
3524,
8,
628,
220,
220,
220,
1303,
6889,
1654,
326,
10007,
389,
3446,
262,
976,
198,
220,
220,
220,
2488,
9288,
8996,
62,
36133,
62,
37266,
7,
20274,
62,
1443,
62,
22,
62,
16,
11,
1255,
62,
1443,
62,
22,
62,
17,
8,
198,
437,
628,
198,
37811,
198,
9288,
13249,
5021,
11629,
26181,
32997,
13,
198,
1212,
1838,
1654,
530,
62,
17440,
62,
73,
1563,
62,
259,
2232,
41885,
2160,
9432,
1988,
1342,
198,
14813,
2060,
11629,
319,
1729,
32997,
4237,
13,
198,
37811,
198,
8818,
1332,
62,
505,
62,
17440,
62,
73,
1563,
62,
259,
2232,
62,
26801,
62,
2502,
75,
5912,
3419,
198,
220,
220,
220,
1303,
770,
5421,
278,
3091,
468,
32997,
5788,
13,
357,
710,
394,
2865,
3975,
318,
407,
6565,
8,
198,
220,
220,
220,
3091,
796,
347,
9969,
14253,
7,
21526,
13,
2670,
11,
25307,
13,
3901,
11,
5014,
13,
1157,
11,
5014,
13,
1485,
8,
198,
220,
220,
220,
2214,
62,
28461,
46916,
796,
685,
10987,
21701,
4033,
15878,
7,
2670,
405,
11,
718,
11,
38249,
828,
60,
628,
220,
220,
220,
1303,
1802,
34820,
198,
220,
220,
220,
256,
291,
3419,
198,
220,
220,
220,
13249,
62,
41684,
7,
310,
8461,
23029,
796,
530,
62,
17440,
62,
73,
1563,
62,
259,
2232,
7,
310,
8461,
986,
26,
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,
220,
220,
220,
220,
220,
220,
220,
299,
62,
270,
364,
28,
1270,
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,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1626,
62,
43501,
62,
1477,
1648,
1359,
28,
7942,
8,
198,
220,
220,
220,
1255,
62,
41684,
796,
530,
62,
17440,
62,
259,
2232,
7,
3245,
62,
28461,
46916,
11,
4818,
324,
343,
26,
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,
13249,
62,
47423,
28,
259,
2232,
62,
41684,
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,
220,
220,
3091,
28,
3524,
8,
198,
220,
220,
220,
5021,
62,
2676,
62,
2435,
796,
284,
80,
3419,
198,
220,
220,
220,
4776,
62,
41684,
796,
24061,
62,
26801,
62,
8367,
7,
20274,
62,
41684,
11,
2214,
62,
28461,
46916,
11,
4818,
324,
343,
26,
3091,
28,
3524,
8,
628,
220,
220,
220,
1303,
362,
34820,
198,
220,
220,
220,
256,
291,
3419,
198,
220,
220,
220,
13249,
62,
11545,
7,
310,
8461,
23029,
796,
530,
62,
17440,
62,
73,
1563,
62,
259,
2232,
7,
310,
8461,
986,
26,
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,
220,
220,
220,
220,
220,
299,
62,
270,
364,
28,
17,
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,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1626,
62,
43501,
62,
1477,
1648,
1359,
28,
7942,
8,
198,
220,
220,
220,
1255,
62,
11545,
796,
530,
62,
17440,
62,
259,
2232,
7,
3245,
62,
28461,
46916,
11,
4818,
324,
343,
26,
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,
13249,
62,
47423,
28,
259,
2232,
62,
11545,
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,
3091,
28,
3524,
8,
198,
220,
220,
220,
734,
62,
2676,
62,
2435,
796,
284,
80,
3419,
198,
220,
220,
220,
4776,
62,
11545,
796,
24061,
62,
26801,
62,
8367,
7,
20274,
62,
11545,
11,
2214,
62,
28461,
46916,
11,
4818,
324,
343,
26,
3091,
28,
3524,
8,
628,
220,
220,
220,
1303,
1881,
10139,
13249,
357,
16,
24415,
11,
475,
76,
23751,
649,
1122,
4831,
8,
198,
220,
220,
220,
256,
291,
3419,
198,
220,
220,
220,
1255,
62,
29762,
796,
530,
62,
17440,
62,
259,
2232,
7,
3245,
62,
28461,
46916,
11,
4818,
324,
343,
26,
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,
13249,
62,
47423,
28,
505,
62,
17440,
62,
29762,
62,
259,
2232,
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,
220,
220,
220,
3091,
28,
3524,
8,
198,
220,
220,
220,
2060,
62,
2676,
62,
2435,
796,
284,
80,
3419,
198,
220,
220,
220,
4776,
62,
29762,
796,
24061,
62,
26801,
62,
8367,
7,
20274,
62,
29762,
11,
2214,
62,
28461,
46916,
11,
4818,
324,
343,
26,
3091,
28,
3524,
8,
628,
220,
220,
220,
44872,
7203,
3198,
10139,
6466,
13249,
9432,
1988,
25,
29568,
26675,
62,
41684,
8,
4943,
198,
220,
220,
220,
44872,
7203,
3198,
10139,
6466,
13249,
362,
11629,
9432,
1988,
25,
29568,
26675,
62,
11545,
8,
4943,
198,
220,
220,
220,
44872,
7203,
28008,
11629,
9432,
1988,
25,
29568,
26675,
62,
29762,
8,
4943,
198,
220,
220,
220,
44872,
7203,
3198,
10139,
6466,
13249,
640,
25,
29568,
41684,
62,
2676,
62,
2435,
8,
4943,
198,
220,
220,
220,
44872,
7203,
3198,
10139,
6466,
13249,
362,
11629,
640,
25,
29568,
11545,
62,
2676,
62,
2435,
8,
4943,
198,
220,
220,
220,
44872,
7203,
28008,
11629,
640,
25,
29568,
29762,
62,
2676,
62,
2435,
8,
4943,
198,
220,
220,
220,
2488,
9288,
4776,
62,
41684,
1875,
4776,
62,
29762,
198,
220,
220,
220,
2488,
9288,
4776,
62,
41684,
1875,
4776,
62,
11545,
198,
437,
628,
198,
2,
26137,
431,
9415,
5254,
389,
890,
2491,
198,
31,
9288,
2617,
366,
33565,
431,
6469,
1,
2221,
198,
220,
220,
220,
1303,
6208,
3915,
2334,
1474,
6632,
357,
5661,
2753,
1802,
34820,
290,
318,
257,
1643,
3105,
8,
198,
220,
220,
220,
1332,
62,
49607,
62,
271,
62,
40093,
62,
22570,
3419,
628,
220,
220,
220,
1303,
6208,
326,
356,
3151,
257,
2440,
9432,
351,
517,
34820,
13,
198,
220,
220,
220,
1303,
770,
318,
257,
1643,
3105,
13,
198,
220,
220,
220,
1332,
62,
505,
62,
17440,
62,
73,
1563,
62,
259,
2232,
62,
26801,
62,
2502,
75,
5912,
3419,
628,
220,
220,
220,
1332,
62,
31642,
62,
505,
62,
17440,
62,
259,
2232,
62,
4246,
501,
3419,
198,
220,
220,
220,
1332,
62,
39799,
62,
20274,
62,
4480,
62,
39799,
62,
2676,
3419,
198,
220,
220,
220,
1332,
62,
31642,
62,
20274,
62,
4480,
62,
26069,
62,
43501,
62,
82,
4340,
3419,
198,
437,
198
] | 2.249959 | 6,045 |
using Flux
"""
`gate(x::T, y::T) where T <: AbstractArray`
* __input:__ arrays of equal length of Float32
* __output:__ array of Float32
The additional `y` vector is used to apply local and global conditioning.
`z = tanh(x[1:f÷2] + y[1:f÷2]) * σ(x[f÷2+1:end] + y[f÷2+1:end])`
"""
function gate(x)
chan = size(x, 3) ÷ 2
tanh.(x[:, :, 1:chan, :]) .* σ.(x[:, :, chan+1:end, :])
end
function gate(x, y)
chan = size(x, 3) ÷ 2
tanh.(x[:, :, 1:chan, :] .+ y[:, :, 1:chan, :]) .*
σ.(x[:, :, chan+1:end, :] .+ y[:, :, chan+1:end, :])
end
"""
`WConv(dilate::Int, skpflt::Int, resflt::Int)`
* __input:__
* `dilate` how wide the dilation should be for this conv layer
* `resflt` how many filters to return for the residual layer
* `skpflt` how many filters to return for the skip layer
* __output:__ a WConv struct
`WConv(x::AbstractArray)`
* __input:__ a (data, 1, channels, batch) Array like a 1D Conv
* __output:__ an Array processed by gated activation, a skip layer applied, and residual values stored in the `WConv` struct.
`WConv(x::Tuple)`
* __input:__ a Tuple of arrays
* __output:__ same as above but also with conditioning array applied in gated activation
"""
mutable struct WConv
dilconv::Conv
resconv::Conv
skpconv::Conv
skp::DenseArray
condconv::Conv
function WConv(dil::Int, res::Int, skp::Int, cond::Int)
dc = gpu(Conv((2, 1), res => res*2, identity, dilation=(dil, 1), pad=(dil, 0)))
rc = gpu(Conv((1, 1), res => res, identity))
sc = gpu(Conv((1, 1), res => skp, identity))
s = sc(gpu(zeros(Float32, 2, 1, res, 1)))
cc = gpu(Conv((1, 1), cond => res*2, tanh))
new(dc, rc, sc, s, cc)
end
function WConv(dc::Conv, rc::Conv, sc::Conv, s::DenseArray, cc::Conv)
new(dc, rc, sc, s, cc)
end
end
function (wc::WConv)(x)
w,h,c,b = size(x)
dat = gate(wc.dilconv(x))[1:w,:,:,:]
wc.skp = wc.skpconv(dat)
x .+ wc.resconv(dat)
end
function (wc::WConv)(input::Tuple)
x, y = input
w,h,c,b = size(x)
dat = gate(wc.dilconv(x)[1:w,:,:,:], wc.condconv(y))
wc.skp = wc.skpconv(dat)
(x .+ wc.resconv(dat), y)
end
function Base.show(io::IO, wc::WConv)
ln1 = ":: Wave.WConv ::\n"
ln2 = "Dilated Conv: " * string(wc.dilconv) *
" dil: " * string(wc.dilconv.dilation) *
" pad: " * string(wc.dilconv.pad) * "\n"
ln3 = "Residual Conv: " * string(wc.resconv) * "\n"
ln4 = "Skip Conv: " * string(wc.skpconv) * "\n"
ln5 = "Cond Conv: " * string(wc.condconv) * "\n"
print(io, ln1 * ln2 * ln3 * ln4 * ln5)
end
Flux.@treelike WConv
import Base: +
+(x::WConv, y::WConv) = x.skp + y.skp
+(x::DenseArray, y::WConv) = x + y.skp
"""
`Net(nlayers::Int; res=64, skip=256, cond=0)`
* __input:__
* `nlayers` how many dilated layers to include
* `res` how many channels to pass into residual layers
* `skip` how many channels to pass into skip layers
* `depth` reset dilation to 2 at every multiple of depth
* `cond` how many variables are included in the conditioning tensor
* __output:__ a NetNet struct
`Net(x)`
* __input:__ array of shape (samples, 1, 1channel, batchsize)
* __output:__ probability distribution (softmax) of wave amplitudes
`Net(x::Tuple)`
* __input:__ Tuple of data and conditioning Array of shape (samples, condvars, batchsize)
* __output:__ probability distribution (softmax) of wave amplitudes
"""
mutable struct Net
input::Conv
layers::Chain
output::Chain
function Net(nlayers; res=64, skip=256, depth=9, cond=0)
i = gpu(Conv((2, 1), 1=>res, tanh, pad=(1, 0)))
l = Chain([WConv(2^(i%depth), res, skip, cond) for i in 1:nlayers]...)
o = Chain(
# x -> leakyrelu.(x),
gpu(Conv((1, 1), skip=>256, leakyrelu)),
gpu(Conv((1, 1), 256=>256, leakyrelu))
)
new(i, l, o)
end
function Net(i::Conv, l::Chain, o::Chain)
new(i, l, o)
end
end
Flux.@treelike Net
function (w::Net)(x)
w.layers(w.input(x)[1:end-1,:,:,:])
softmax(w.output(reduce(+, w.layers))[end, 1, :, :])
end
function (w::Net)(input::Tuple)
x, y = input
dat = (w.input(x)[1:end-1,:,:,:], y)
w.layers(dat)
softmax(w.output(reduce(+, w.layers))[end, 1, :, :])
end
function Base.show(io::IO, wave::Net)
ln1 = ":: Wave.Net ::\n"
ln2 = "Hidden layers: " * string(length(wave.layers)) * "\n"
ln3 = "Receptive field: " * string(2^length(wave.layers)) * "\n"
ln4 = "Residual channels: " * string(size(wave.layers[end].resconv.weight, 4)) * "\n"
ln5 = "Skip channels: " * string(size(wave.layers[end].skpconv.weight, 4)) * "\n"
ln6 = "Conditioning vars: " * string(size(wave.layers[end].condconv.weight, 3)) * "\n"
ln7 = "GPU enabled: " * ifelse(typeof(wave.input.weight) <: Array, "no", "yes")
print(io, ln1 * ln2 * ln3 * ln4 * ln5 * ln6 * ln7)
end
| [
1262,
1610,
2821,
198,
198,
37811,
198,
63,
10494,
7,
87,
3712,
51,
11,
331,
3712,
51,
8,
810,
309,
1279,
25,
27741,
19182,
63,
198,
198,
9,
11593,
15414,
25,
834,
26515,
286,
4961,
4129,
286,
48436,
2624,
198,
9,
11593,
22915,
25,
834,
7177,
286,
48436,
2624,
198,
198,
464,
3224,
4600,
88,
63,
15879,
318,
973,
284,
4174,
1957,
290,
3298,
21143,
13,
198,
63,
89,
796,
25706,
71,
7,
87,
58,
16,
25,
69,
127,
115,
17,
60,
1343,
331,
58,
16,
25,
69,
127,
115,
17,
12962,
1635,
18074,
225,
7,
87,
58,
69,
127,
115,
17,
10,
16,
25,
437,
60,
1343,
331,
58,
69,
127,
115,
17,
10,
16,
25,
437,
12962,
63,
198,
37811,
198,
8818,
8946,
7,
87,
8,
198,
220,
220,
220,
442,
272,
796,
2546,
7,
87,
11,
513,
8,
6184,
115,
362,
198,
220,
220,
220,
25706,
71,
12195,
87,
58,
45299,
1058,
11,
352,
25,
3147,
11,
1058,
12962,
764,
9,
18074,
225,
12195,
87,
58,
45299,
1058,
11,
442,
272,
10,
16,
25,
437,
11,
1058,
12962,
198,
437,
198,
198,
8818,
8946,
7,
87,
11,
331,
8,
198,
220,
220,
220,
442,
272,
796,
2546,
7,
87,
11,
513,
8,
6184,
115,
362,
198,
220,
220,
220,
25706,
71,
12195,
87,
58,
45299,
1058,
11,
352,
25,
3147,
11,
1058,
60,
764,
10,
331,
58,
45299,
1058,
11,
352,
25,
3147,
11,
1058,
12962,
764,
9,
220,
198,
220,
220,
220,
18074,
225,
12195,
87,
58,
45299,
1058,
11,
442,
272,
10,
16,
25,
437,
11,
1058,
60,
764,
10,
331,
58,
45299,
1058,
11,
442,
272,
10,
16,
25,
437,
11,
1058,
12962,
198,
437,
198,
198,
37811,
198,
63,
54,
3103,
85,
7,
67,
346,
378,
3712,
5317,
11,
1341,
79,
69,
2528,
3712,
5317,
11,
581,
69,
2528,
3712,
5317,
8,
63,
198,
198,
9,
11593,
15414,
25,
834,
220,
198,
220,
220,
220,
1635,
4600,
67,
346,
378,
63,
703,
3094,
262,
288,
10520,
815,
307,
329,
428,
3063,
7679,
198,
220,
220,
220,
1635,
4600,
411,
69,
2528,
63,
703,
867,
16628,
284,
1441,
329,
262,
29598,
7679,
198,
220,
220,
220,
1635,
4600,
8135,
79,
69,
2528,
63,
703,
867,
16628,
284,
1441,
329,
262,
14267,
7679,
198,
9,
11593,
22915,
25,
834,
257,
370,
3103,
85,
2878,
198,
198,
63,
54,
3103,
85,
7,
87,
3712,
23839,
19182,
8,
63,
198,
198,
9,
11593,
15414,
25,
834,
257,
357,
7890,
11,
352,
11,
9619,
11,
15458,
8,
15690,
588,
257,
352,
35,
34872,
198,
9,
11593,
22915,
25,
834,
281,
15690,
13686,
416,
308,
515,
14916,
11,
257,
14267,
7679,
5625,
11,
290,
29598,
3815,
8574,
287,
262,
4600,
54,
3103,
85,
63,
2878,
13,
198,
198,
63,
54,
3103,
85,
7,
87,
3712,
51,
29291,
8,
63,
198,
198,
9,
11593,
15414,
25,
834,
257,
309,
29291,
286,
26515,
198,
9,
11593,
22915,
25,
834,
976,
355,
2029,
475,
635,
351,
21143,
7177,
5625,
287,
308,
515,
14916,
198,
198,
37811,
198,
76,
18187,
2878,
370,
3103,
85,
198,
220,
220,
220,
11844,
42946,
3712,
3103,
85,
198,
220,
220,
220,
581,
42946,
3712,
3103,
85,
198,
220,
220,
220,
1341,
79,
42946,
3712,
3103,
85,
198,
220,
220,
220,
1341,
79,
3712,
35,
1072,
19182,
198,
220,
220,
220,
1779,
42946,
3712,
3103,
85,
628,
220,
220,
220,
2163,
370,
3103,
85,
7,
67,
346,
3712,
5317,
11,
581,
3712,
5317,
11,
1341,
79,
3712,
5317,
11,
1779,
3712,
5317,
8,
198,
220,
220,
220,
220,
220,
220,
220,
30736,
796,
308,
19944,
7,
3103,
85,
19510,
17,
11,
352,
828,
581,
5218,
581,
9,
17,
11,
5369,
11,
288,
10520,
16193,
67,
346,
11,
352,
828,
14841,
16193,
67,
346,
11,
657,
22305,
198,
220,
220,
220,
220,
220,
220,
220,
48321,
796,
308,
19944,
7,
3103,
85,
19510,
16,
11,
352,
828,
581,
5218,
581,
11,
5369,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
629,
796,
308,
19944,
7,
3103,
85,
19510,
16,
11,
352,
828,
581,
5218,
1341,
79,
11,
5369,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
264,
796,
629,
7,
46999,
7,
9107,
418,
7,
43879,
2624,
11,
362,
11,
352,
11,
581,
11,
352,
22305,
198,
220,
220,
220,
220,
220,
220,
220,
36624,
796,
308,
19944,
7,
3103,
85,
19510,
16,
11,
352,
828,
1779,
5218,
581,
9,
17,
11,
25706,
71,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
649,
7,
17896,
11,
48321,
11,
629,
11,
264,
11,
36624,
8,
198,
220,
220,
220,
886,
628,
220,
220,
220,
2163,
370,
3103,
85,
7,
17896,
3712,
3103,
85,
11,
48321,
3712,
3103,
85,
11,
629,
3712,
3103,
85,
11,
264,
3712,
35,
1072,
19182,
11,
36624,
3712,
3103,
85,
8,
198,
220,
220,
220,
220,
220,
220,
220,
649,
7,
17896,
11,
48321,
11,
629,
11,
264,
11,
36624,
8,
198,
220,
220,
220,
886,
198,
437,
198,
198,
8818,
357,
86,
66,
3712,
54,
3103,
85,
5769,
87,
8,
198,
220,
220,
220,
266,
11,
71,
11,
66,
11,
65,
796,
2546,
7,
87,
8,
198,
220,
220,
220,
4818,
796,
8946,
7,
86,
66,
13,
67,
346,
42946,
7,
87,
4008,
58,
16,
25,
86,
11,
45299,
45299,
47715,
198,
220,
220,
220,
266,
66,
13,
8135,
79,
796,
266,
66,
13,
8135,
79,
42946,
7,
19608,
8,
198,
220,
220,
220,
2124,
764,
10,
266,
66,
13,
411,
42946,
7,
19608,
8,
198,
437,
198,
198,
8818,
357,
86,
66,
3712,
54,
3103,
85,
5769,
15414,
3712,
51,
29291,
8,
198,
220,
220,
220,
2124,
11,
331,
796,
5128,
198,
220,
220,
220,
266,
11,
71,
11,
66,
11,
65,
796,
2546,
7,
87,
8,
198,
220,
220,
220,
4818,
796,
8946,
7,
86,
66,
13,
67,
346,
42946,
7,
87,
38381,
16,
25,
86,
11,
45299,
45299,
25,
4357,
266,
66,
13,
17561,
42946,
7,
88,
4008,
198,
220,
220,
220,
266,
66,
13,
8135,
79,
796,
266,
66,
13,
8135,
79,
42946,
7,
19608,
8,
198,
220,
220,
220,
357,
87,
764,
10,
266,
66,
13,
411,
42946,
7,
19608,
828,
331,
8,
198,
437,
198,
198,
8818,
7308,
13,
12860,
7,
952,
3712,
9399,
11,
266,
66,
3712,
54,
3103,
85,
8,
198,
220,
220,
220,
300,
77,
16,
796,
366,
3712,
17084,
13,
54,
3103,
85,
1058,
7479,
77,
1,
198,
220,
220,
220,
300,
77,
17,
796,
366,
35,
40080,
34872,
25,
220,
220,
366,
1635,
4731,
7,
86,
66,
13,
67,
346,
42946,
8,
1635,
220,
198,
220,
220,
220,
366,
11844,
25,
366,
1635,
4731,
7,
86,
66,
13,
67,
346,
42946,
13,
67,
10520,
8,
1635,
198,
220,
220,
220,
366,
14841,
25,
366,
1635,
4731,
7,
86,
66,
13,
67,
346,
42946,
13,
15636,
8,
1635,
37082,
77,
1,
198,
220,
220,
220,
300,
77,
18,
796,
366,
4965,
312,
723,
34872,
25,
220,
366,
1635,
4731,
7,
86,
66,
13,
411,
42946,
8,
1635,
37082,
77,
1,
198,
220,
220,
220,
300,
77,
19,
796,
366,
50232,
34872,
25,
220,
220,
220,
220,
220,
366,
1635,
4731,
7,
86,
66,
13,
8135,
79,
42946,
8,
1635,
37082,
77,
1,
198,
220,
220,
220,
300,
77,
20,
796,
366,
25559,
34872,
25,
366,
1635,
4731,
7,
86,
66,
13,
17561,
42946,
8,
1635,
37082,
77,
1,
198,
220,
220,
220,
3601,
7,
952,
11,
300,
77,
16,
1635,
300,
77,
17,
1635,
300,
77,
18,
1635,
300,
77,
19,
1635,
300,
77,
20,
8,
198,
437,
198,
198,
37,
22564,
13,
31,
33945,
417,
522,
370,
3103,
85,
198,
198,
11748,
7308,
25,
1343,
198,
33747,
87,
3712,
54,
3103,
85,
11,
331,
3712,
54,
3103,
85,
8,
796,
2124,
13,
8135,
79,
1343,
331,
13,
8135,
79,
198,
33747,
87,
3712,
35,
1072,
19182,
11,
331,
3712,
54,
3103,
85,
8,
796,
2124,
1343,
331,
13,
8135,
79,
198,
198,
37811,
198,
63,
7934,
7,
21283,
6962,
3712,
5317,
26,
581,
28,
2414,
11,
14267,
28,
11645,
11,
1779,
28,
15,
8,
63,
198,
198,
9,
11593,
15414,
25,
834,
220,
198,
220,
220,
220,
1635,
4600,
21283,
6962,
63,
703,
867,
11844,
515,
11685,
284,
2291,
198,
220,
220,
220,
1635,
4600,
411,
63,
703,
867,
9619,
284,
1208,
656,
29598,
11685,
198,
220,
220,
220,
1635,
4600,
48267,
63,
703,
867,
9619,
284,
1208,
656,
14267,
11685,
198,
220,
220,
220,
1635,
4600,
18053,
63,
13259,
288,
10520,
284,
362,
379,
790,
3294,
286,
6795,
198,
220,
220,
220,
1635,
4600,
17561,
63,
703,
867,
9633,
389,
3017,
287,
262,
21143,
11192,
273,
198,
9,
11593,
22915,
25,
834,
257,
3433,
7934,
2878,
198,
198,
63,
7934,
7,
87,
8,
63,
220,
198,
198,
9,
11593,
15414,
25,
834,
7177,
286,
5485,
357,
82,
12629,
11,
352,
11,
352,
17620,
11,
15458,
7857,
8,
198,
9,
11593,
22915,
25,
834,
12867,
6082,
357,
4215,
9806,
8,
286,
6769,
12306,
10455,
198,
198,
63,
7934,
7,
87,
3712,
51,
29291,
8,
63,
220,
198,
198,
9,
11593,
15414,
25,
834,
309,
29291,
286,
1366,
290,
21143,
15690,
286,
5485,
357,
82,
12629,
11,
1779,
85,
945,
11,
15458,
7857,
8,
198,
9,
11593,
22915,
25,
834,
12867,
6082,
357,
4215,
9806,
8,
286,
6769,
12306,
10455,
198,
198,
37811,
198,
76,
18187,
2878,
3433,
198,
220,
220,
220,
5128,
3712,
3103,
85,
198,
220,
220,
220,
11685,
3712,
35491,
198,
220,
220,
220,
5072,
3712,
35491,
198,
220,
220,
220,
220,
198,
220,
220,
220,
2163,
3433,
7,
21283,
6962,
26,
581,
28,
2414,
11,
14267,
28,
11645,
11,
6795,
28,
24,
11,
1779,
28,
15,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1312,
796,
308,
19944,
7,
3103,
85,
19510,
17,
11,
352,
828,
352,
14804,
411,
11,
25706,
71,
11,
14841,
16193,
16,
11,
657,
22305,
198,
220,
220,
220,
220,
220,
220,
220,
300,
796,
21853,
26933,
54,
3103,
85,
7,
17,
61,
7,
72,
4,
18053,
828,
581,
11,
14267,
11,
1779,
8,
329,
1312,
287,
352,
25,
21283,
6962,
60,
23029,
198,
220,
220,
220,
220,
220,
220,
220,
267,
796,
21853,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
2124,
4613,
13044,
35759,
2290,
12195,
87,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
308,
19944,
7,
3103,
85,
19510,
16,
11,
352,
828,
14267,
14804,
11645,
11,
13044,
35759,
2290,
36911,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
308,
19944,
7,
3103,
85,
19510,
16,
11,
352,
828,
17759,
14804,
11645,
11,
13044,
35759,
2290,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
649,
7,
72,
11,
300,
11,
267,
8,
198,
220,
220,
220,
886,
628,
220,
220,
220,
2163,
3433,
7,
72,
3712,
3103,
85,
11,
300,
3712,
35491,
11,
267,
3712,
35491,
8,
198,
220,
220,
220,
220,
220,
220,
220,
649,
7,
72,
11,
300,
11,
267,
8,
198,
220,
220,
220,
886,
198,
437,
198,
198,
37,
22564,
13,
31,
33945,
417,
522,
3433,
198,
198,
8818,
357,
86,
3712,
7934,
5769,
87,
8,
198,
220,
220,
220,
266,
13,
75,
6962,
7,
86,
13,
15414,
7,
87,
38381,
16,
25,
437,
12,
16,
11,
45299,
45299,
25,
12962,
198,
220,
220,
220,
2705,
9806,
7,
86,
13,
22915,
7,
445,
7234,
7,
28200,
266,
13,
75,
6962,
4008,
58,
437,
11,
352,
11,
1058,
11,
1058,
12962,
198,
437,
198,
198,
8818,
357,
86,
3712,
7934,
5769,
15414,
3712,
51,
29291,
8,
198,
220,
220,
220,
2124,
11,
331,
796,
5128,
198,
220,
220,
220,
4818,
796,
357,
86,
13,
15414,
7,
87,
38381,
16,
25,
437,
12,
16,
11,
45299,
45299,
25,
4357,
331,
8,
198,
220,
220,
220,
266,
13,
75,
6962,
7,
19608,
8,
198,
220,
220,
220,
2705,
9806,
7,
86,
13,
22915,
7,
445,
7234,
7,
28200,
266,
13,
75,
6962,
4008,
58,
437,
11,
352,
11,
1058,
11,
1058,
12962,
198,
437,
198,
198,
8818,
7308,
13,
12860,
7,
952,
3712,
9399,
11,
6769,
3712,
7934,
8,
198,
220,
220,
220,
300,
77,
16,
796,
366,
3712,
17084,
13,
7934,
1058,
7479,
77,
1,
198,
220,
220,
220,
300,
77,
17,
796,
366,
41691,
11685,
25,
220,
220,
220,
220,
366,
1635,
4731,
7,
13664,
7,
19204,
13,
75,
6962,
4008,
1635,
37082,
77,
1,
198,
220,
220,
220,
300,
77,
18,
796,
366,
3041,
25867,
2214,
25,
220,
220,
366,
1635,
4731,
7,
17,
61,
13664,
7,
19204,
13,
75,
6962,
4008,
1635,
37082,
77,
1,
198,
220,
220,
220,
300,
77,
19,
796,
366,
4965,
312,
723,
9619,
25,
366,
1635,
4731,
7,
7857,
7,
19204,
13,
75,
6962,
58,
437,
4083,
411,
42946,
13,
6551,
11,
604,
4008,
1635,
37082,
77,
1,
198,
220,
220,
220,
300,
77,
20,
796,
366,
50232,
9619,
25,
220,
220,
220,
220,
366,
1635,
4731,
7,
7857,
7,
19204,
13,
75,
6962,
58,
437,
4083,
8135,
79,
42946,
13,
6551,
11,
604,
4008,
1635,
37082,
77,
1,
198,
220,
220,
220,
300,
77,
21,
796,
366,
48362,
278,
410,
945,
25,
366,
1635,
4731,
7,
7857,
7,
19204,
13,
75,
6962,
58,
437,
4083,
17561,
42946,
13,
6551,
11,
513,
4008,
1635,
37082,
77,
1,
198,
220,
220,
220,
300,
77,
22,
796,
366,
33346,
9343,
25,
220,
220,
220,
220,
220,
220,
366,
1635,
611,
17772,
7,
4906,
1659,
7,
19204,
13,
15414,
13,
6551,
8,
1279,
25,
15690,
11,
366,
3919,
1600,
366,
8505,
4943,
198,
220,
220,
220,
3601,
7,
952,
11,
300,
77,
16,
1635,
300,
77,
17,
1635,
300,
77,
18,
1635,
300,
77,
19,
1635,
300,
77,
20,
1635,
300,
77,
21,
1635,
300,
77,
22,
8,
198,
437,
198
] | 2.137587 | 2,304 |
using InteractiveUtils: subtypes
@testset "Robot" begin
@testset "test $rob_type interface" for rob_type in subtypes(Robot)
par_type = eval(Symbol(string(rob_type)*"Params"))
params = par_type()
rob = rob_type(deviceID="test", params=params, dependencies=Dict{String, Union{Device, Missing}}())
degrees = dof(rob)
@test degrees isa Int
axes = axisRange(rob)
@test axes isa Vector{<:Vector{<:Unitful.Length}}
@test length(axes) == degrees
@test length(axes[1]) == 2
for i in 1:degrees
@test axes[i][1]<=axes[i][2]
end
def_vel = defaultVelocity(rob)
@test def_vel isa Union{Vector{<:Unitful.Velocity},Nothing}
if def_vel !== nothing
@test length(def_vel) == degrees
end
end
@testset "DummyRobot" begin
include("DummyRobotTests.jl")
end
@testset "SimulatedRobot" begin
include("SimulatedRobotTests.jl")
end
if "igus" in ARGS
@testset "IgusRobot" begin
include("IgusRobotTests.jl")
end
end
if "isel" in ARGS
@testset "IselRobot" begin
include("IselRobotTests.jl")
end
end
if "brukerrobot" in ARGS
@testset "BrukerRobot" begin
include("BrukerRobotTests.jl")
end
end
end | [
3500,
21365,
18274,
4487,
25,
850,
19199,
198,
198,
31,
9288,
2617,
366,
14350,
313,
1,
2221,
198,
220,
2488,
9288,
2617,
366,
9288,
720,
22609,
62,
4906,
7071,
1,
329,
3857,
62,
4906,
287,
850,
19199,
7,
14350,
313,
8,
198,
220,
220,
220,
1582,
62,
4906,
796,
5418,
7,
13940,
23650,
7,
8841,
7,
22609,
62,
4906,
27493,
1,
10044,
4105,
48774,
198,
220,
220,
220,
42287,
796,
1582,
62,
4906,
3419,
198,
220,
220,
220,
3857,
796,
3857,
62,
4906,
7,
25202,
2389,
2625,
9288,
1600,
42287,
28,
37266,
11,
20086,
28,
35,
713,
90,
10100,
11,
4479,
90,
24728,
11,
25639,
11709,
28955,
628,
220,
220,
220,
7370,
796,
466,
69,
7,
22609,
8,
198,
220,
220,
220,
2488,
9288,
7370,
318,
64,
2558,
628,
220,
220,
220,
34197,
796,
16488,
17257,
7,
22609,
8,
198,
220,
220,
220,
2488,
9288,
34197,
318,
64,
20650,
90,
27,
25,
38469,
90,
27,
25,
26453,
913,
13,
24539,
11709,
198,
220,
220,
220,
2488,
9288,
4129,
7,
897,
274,
8,
6624,
7370,
198,
220,
220,
220,
2488,
9288,
4129,
7,
897,
274,
58,
16,
12962,
6624,
362,
198,
220,
220,
220,
329,
1312,
287,
352,
25,
13500,
6037,
198,
220,
220,
220,
220,
220,
2488,
9288,
34197,
58,
72,
7131,
16,
60,
27,
28,
897,
274,
58,
72,
7131,
17,
60,
198,
220,
220,
220,
886,
628,
220,
220,
220,
825,
62,
626,
796,
4277,
46261,
11683,
7,
22609,
8,
198,
220,
220,
220,
2488,
9288,
825,
62,
626,
318,
64,
4479,
90,
38469,
90,
27,
25,
26453,
913,
13,
46261,
11683,
5512,
18465,
92,
198,
220,
220,
220,
611,
825,
62,
626,
5145,
855,
2147,
198,
220,
220,
220,
220,
220,
2488,
9288,
4129,
7,
4299,
62,
626,
8,
6624,
7370,
198,
220,
220,
220,
886,
198,
220,
886,
628,
220,
2488,
9288,
2617,
366,
35,
13513,
14350,
313,
1,
2221,
198,
220,
220,
220,
2291,
7203,
35,
13513,
14350,
313,
51,
3558,
13,
20362,
4943,
198,
220,
886,
628,
220,
2488,
9288,
2617,
366,
8890,
4817,
14350,
313,
1,
2221,
198,
220,
220,
220,
2291,
7203,
8890,
4817,
14350,
313,
51,
3558,
13,
20362,
4943,
198,
220,
886,
628,
220,
611,
366,
328,
385,
1,
287,
5923,
14313,
198,
220,
220,
220,
2488,
9288,
2617,
366,
40,
70,
385,
14350,
313,
1,
2221,
198,
220,
220,
220,
2291,
7203,
40,
70,
385,
14350,
313,
51,
3558,
13,
20362,
4943,
198,
220,
220,
220,
886,
198,
220,
886,
628,
220,
611,
366,
36811,
1,
287,
5923,
14313,
198,
220,
220,
220,
2488,
9288,
2617,
366,
40,
741,
14350,
313,
1,
2221,
198,
220,
220,
220,
2291,
7203,
40,
741,
14350,
313,
51,
3558,
13,
20362,
4943,
198,
220,
220,
220,
886,
198,
220,
886,
628,
220,
611,
366,
65,
622,
6122,
305,
13645,
1,
287,
5923,
14313,
198,
220,
220,
220,
2488,
9288,
2617,
366,
33,
622,
6122,
14350,
313,
1,
2221,
198,
220,
220,
220,
2291,
7203,
33,
622,
6122,
14350,
313,
51,
3558,
13,
20362,
4943,
198,
220,
220,
220,
886,
198,
220,
886,
198,
437
] | 2.373777 | 511 |
import Pkg
const POLYHEDRA_TEST = joinpath(dirname(dirname(pathof(Polyhedra))), "test")
include(joinpath(POLYHEDRA_TEST, "utils.jl"))
include(joinpath(POLYHEDRA_TEST, "config.jl"))
include(joinpath(POLYHEDRA_TEST, "solvers.jl")) # defines lp_solver
include(joinpath(POLYHEDRA_TEST, "jump.jl"))
include(joinpath(POLYHEDRA_TEST, "basic.jl"))
include(joinpath(POLYHEDRA_TEST, "simplex.jl"))
include(joinpath(POLYHEDRA_TEST, "permutahedron.jl"))
include(joinpath(POLYHEDRA_TEST, "board.jl"))
include(joinpath(POLYHEDRA_TEST, "docexample.jl"))
include(joinpath(POLYHEDRA_TEST, "issue48.jl"))
include(joinpath(POLYHEDRA_TEST, "empty.jl"))
include(joinpath(POLYHEDRA_TEST, "sparse.jl"))
include(joinpath(POLYHEDRA_TEST, "sparserect.jl"))
include(joinpath(POLYHEDRA_TEST, "support_function.jl"))
const misctests = Dict("basic" => basictest,
"doc" => doctest,
"simplex" => simplextest,
"permutahedron" => permutahedrontest,
"board" => boardtest,
"issue48" => issue48test,
"empty" => emptytest,
"sparse" => sparsetest,
"sparserect" => sparserecttest,
"support_function" => support_function_test)
@polytestset misc
include(joinpath(POLYHEDRA_TEST, "decompose.jl"))
polyhedratests = Dict("jump" => jumptest,
"misc" => misctest,
"decompose" => decomposetest)
@polytestset polyhedra true
@testset "Polyhedra tests in $arith arithmetics" for arith in [:float, :exact]
polyhedratest(ConvexHull.Library(arith, lp_solver), [
"jumpsimplex", "nonfulldimensional", "simplex", "permutahedron",
"board", "issue48", "empty"
])
end
| [
11748,
350,
10025,
198,
198,
9979,
20634,
56,
39,
1961,
3861,
62,
51,
6465,
796,
4654,
6978,
7,
15908,
3672,
7,
15908,
3672,
7,
6978,
1659,
7,
34220,
704,
430,
4008,
828,
366,
9288,
4943,
198,
198,
17256,
7,
22179,
6978,
7,
45472,
56,
39,
1961,
3861,
62,
51,
6465,
11,
366,
26791,
13,
20362,
48774,
198,
17256,
7,
22179,
6978,
7,
45472,
56,
39,
1961,
3861,
62,
51,
6465,
11,
366,
11250,
13,
20362,
48774,
198,
17256,
7,
22179,
6978,
7,
45472,
56,
39,
1961,
3861,
62,
51,
6465,
11,
366,
34453,
690,
13,
20362,
48774,
1303,
15738,
300,
79,
62,
82,
14375,
198,
17256,
7,
22179,
6978,
7,
45472,
56,
39,
1961,
3861,
62,
51,
6465,
11,
366,
43327,
13,
20362,
48774,
198,
198,
17256,
7,
22179,
6978,
7,
45472,
56,
39,
1961,
3861,
62,
51,
6465,
11,
366,
35487,
13,
20362,
48774,
198,
17256,
7,
22179,
6978,
7,
45472,
56,
39,
1961,
3861,
62,
51,
6465,
11,
366,
14323,
11141,
13,
20362,
48774,
198,
17256,
7,
22179,
6978,
7,
45472,
56,
39,
1961,
3861,
62,
51,
6465,
11,
366,
16321,
29822,
704,
1313,
13,
20362,
48774,
198,
17256,
7,
22179,
6978,
7,
45472,
56,
39,
1961,
3861,
62,
51,
6465,
11,
366,
3526,
13,
20362,
48774,
198,
17256,
7,
22179,
6978,
7,
45472,
56,
39,
1961,
3861,
62,
51,
6465,
11,
366,
4598,
344,
87,
1403,
13,
20362,
48774,
198,
17256,
7,
22179,
6978,
7,
45472,
56,
39,
1961,
3861,
62,
51,
6465,
11,
366,
21949,
2780,
13,
20362,
48774,
198,
17256,
7,
22179,
6978,
7,
45472,
56,
39,
1961,
3861,
62,
51,
6465,
11,
366,
28920,
13,
20362,
48774,
198,
17256,
7,
22179,
6978,
7,
45472,
56,
39,
1961,
3861,
62,
51,
6465,
11,
366,
82,
29572,
13,
20362,
48774,
198,
17256,
7,
22179,
6978,
7,
45472,
56,
39,
1961,
3861,
62,
51,
6465,
11,
366,
82,
29572,
2554,
13,
20362,
48774,
198,
17256,
7,
22179,
6978,
7,
45472,
56,
39,
1961,
3861,
62,
51,
6465,
11,
366,
11284,
62,
8818,
13,
20362,
48774,
198,
9979,
2984,
310,
3558,
796,
360,
713,
7203,
35487,
1,
5218,
1615,
713,
395,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
15390,
1,
5218,
10412,
395,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
14323,
11141,
1,
5218,
2829,
742,
395,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
16321,
29822,
704,
1313,
1,
5218,
9943,
29822,
704,
4298,
395,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
3526,
1,
5218,
3096,
9288,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
21949,
2780,
1,
5218,
2071,
2780,
9288,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
28920,
1,
5218,
6565,
9288,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
82,
29572,
1,
5218,
599,
945,
316,
395,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
82,
29572,
2554,
1,
5218,
29877,
2554,
9288,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11284,
62,
8818,
1,
5218,
1104,
62,
8818,
62,
9288,
8,
198,
198,
31,
35428,
9288,
2617,
12747,
198,
198,
17256,
7,
22179,
6978,
7,
45472,
56,
39,
1961,
3861,
62,
51,
6465,
11,
366,
12501,
3361,
577,
13,
20362,
48774,
198,
198,
35428,
704,
10366,
3558,
796,
360,
713,
7203,
43327,
1,
5218,
474,
388,
457,
395,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
44374,
1,
5218,
2984,
310,
395,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
12501,
3361,
577,
1,
5218,
26969,
1930,
316,
395,
8,
198,
198,
31,
35428,
9288,
2617,
7514,
704,
430,
2081,
198,
198,
31,
9288,
2617,
366,
34220,
704,
430,
5254,
287,
720,
283,
342,
610,
342,
27757,
1,
329,
610,
342,
287,
685,
25,
22468,
11,
1058,
1069,
529,
60,
198,
220,
220,
220,
7514,
704,
10366,
395,
7,
3103,
303,
87,
39,
724,
13,
23377,
7,
283,
342,
11,
300,
79,
62,
82,
14375,
828,
685,
198,
220,
220,
220,
220,
220,
220,
220,
366,
73,
8142,
320,
11141,
1600,
366,
13159,
12853,
19577,
1600,
366,
14323,
11141,
1600,
366,
16321,
29822,
704,
1313,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
3526,
1600,
366,
21949,
2780,
1600,
366,
28920,
1,
198,
220,
220,
220,
33761,
198,
437,
198
] | 2.038724 | 878 |
module Elf
using Base
using StaticArrays, DataStructures
export iself,
elfclass,
endian,
sections,
segments,
symbols,
elfosabi,
elftype
include("./constants.jl")
# include("./types.jl")
"""
iself(bin) -> Bool
Verify ELF Header with Magic numbers
# Examples
```julia-repl
julia> iself(read("/path/to/binary"))
true
```
# Arguments
- `bin::Vector{UInt8}` : binary file to check.
"""
iself(ehdr::Elf64_Ehdr) = ehdr.e_ident[begin:4] == [ELFMAG1, ELFMAG2, ELFMAG3, ELFMAG4]
"""
elfclass(ehdr::Elf64_Ehdr) -> EHClass
Detrmines ELF class(64bit or 32bit) if invalid class error will occur.
"""
function elfclass(ehdr::Elf64_Ehdr)
try
EHClass(ehdr.e_ident[EI_CLASS])
catch
error("Invalid class.")
end
end
"""
endian(ehdr::Elf64_Ehdr) -> EHEndian
Detrmines ELF binary endian. Returns enum represents endian. If invalid error will occur.
"""
function endian(ehdr::Elf64_Ehdr)
try
EHEndian(ehdr.e_ident[EI_DATA])
catch
error("Invalid endian.")
end
end
"""
elfversion(ehdr::Elf64_Ehdr) -> Symbol
If binary has valid ELF version, else error will occur.
"""
function elfversion(ehdr::Elf64_Ehdr)
try
ehdr.e_ident[EI_VERSION]
catch
error("Invalid ELF version.")
end
end
function elfosabi(ehdr::Elf64_Ehdr)
try
(arch = EHOsAbi(ehdr.e_ident[EI_OSABI]), version = ehdr.e_ident[EI_OSABI])
catch
error("Invalid OS ABI")
end
end
function elftype(ehdr::Elf64_Ehdr)
try
EHType(ehdr.e_type)
catch
error("Invalid ELF type.")
end
end
"""
sections(bin::Vector{UInt8}) -> OrderedDict{String,Elf64_Shdr}
Section header infomation. Returns dictoinary represents section name and its infomation ordered by section number.
"""
function sections(bin::Vector{UInt8})
sections_info::OrderedDict{String,Elf64_Shdr} = OrderedDict()
ehdr = Elf64_Ehdr(bin)
shstr = Elf64_Shdr(bin, ehdr.e_shoff + ehdr.e_shentsize * ehdr.e_shstrndx)
for i = 0:(ehdr.e_shnum - 1)
shdr = Elf64_Shdr(bin, ehdr.e_shoff + ehdr.e_shentsize * i)
sname = unsafe_string(pointer(bin, shstr.sh_offset + shdr.sh_name + 1))
push!(sections_info, sname => shdr)
end
sections_info
end
"""
segments(bin::Vector{UInt8} -> OrderedDict{String,Elf64_Phdr}
Program header infomation. Returns dictoinary represents segment name and its infomation ordered by segment number.
"""
function segments(bin::Vector{UInt8})
ehdr = Elf64_Ehdr(bin)
shstr = Elf64_Shdr(bin, ehdr.e_shoff + ehdr.e_shentsize * ehdr.e_shstrndx)
segments_info::OrderedDict{String,Elf64_Phdr} = OrderedDict()
for i = 0:(ehdr.e_phnum - 1)
phdr = Elf64_Phdr(bin, ehdr.e_phoff + ehdr.e_phentsize * i)
for j = 0:(ehdr.e_shnum - 1)
shdr = Elf64_Shdr(bin, ehdr.e_shoff + ehdr.e_shentsize * j)
size = shdr.sh_type != UInt32(SHT_NOBITS) ? shdr.sh_size : 0
if shdr.sh_offset < phdr.p_offset
continue
end
if shdr.sh_offset + size > phdr.p_offset + phdr.p_filesz
continue
end
seg_name = unsafe_string(pointer(bin, shstr.sh_offset + shdr.sh_name + 1))
push!(segments_info, seg_name => phdr)
end
end
segments_info
end
"""
symbols(bin::Vector{UInt8}) -> (OrderedDict{String,Elf64_Sym}, OrderedDict{String,Elf64_Rel})
ELF symbols in the file. Returns tuple of ELF symbols and relocatable symbols.
# Examples
```julia-repl
julia> symbols(read("/path/to/binary"))
(OrderedDict{String,Elf64_Sym}(...),OrderedDict{String,Elf64_Rel}())
```
# Arguments
- `bin::Vector{UInt8}`: ELF binary.
"""
function symbols(bin::Vector{UInt8})
ehdr = Elf64_Ehdr(bin)
symbols_info::OrderedDict{String,Elf64_Sym} = OrderedDict()
str = sections(bin)[".strtab"]
for i = 0:(ehdr.e_shnum - 1)
shdr = Elf64_Shdr(bin, ehdr.e_shoff + ehdr.e_shentsize * i)
if shdr.sh_type != UInt32(SHT_SYMTAB)
continue
end
global sym = shdr
for j = 0:(div(sym.sh_size, sym.sh_entsize) - 1)
symp = Elf64_Sym(bin, sym.sh_offset + sym.sh_entsize * j)
if symp.st_name == 0
continue
end
push!(
symbols_info,
unsafe_string(pointer(bin, str.sh_offset + symp.st_name + 1)) => symp,
)
end
end
symbols_rel_info::OrderedDict{String,Elf64_Rel} = OrderedDict()
for i = 0:(ehdr.e_shnum - 1)
shdr = Elf64_Shdr(bin, ehdr.e_shoff + ehdr.e_shentsize * i)
if shdr.sh_type != UInt32(SHT_REL) && shdr.sh_type != UInt32(SHT_RELA)
continue
end
rel = shdr
for j = 0:(div(rel.sh_size, rel.sh_entsize) - 1)
relp = Elf64_Rel(bin, rel.sh_offset + rel.sh_entsize * j)
symp =
Elf64_Sym(bin, sym.sh_offset + (sym.sh_entsize * elf64_r_sym(relp.r_info)))
if symp.st_name == 0
continue
end
push!(
symbols_rel_info,
unsafe_string(pointer(bin, str.sh_offset + symp.st_name + 1)) => relp,
)
end
end
symbols_info, symbols_rel_info
end
end # module
| [
21412,
19067,
198,
3500,
7308,
198,
3500,
36125,
3163,
20477,
11,
6060,
44909,
942,
198,
198,
39344,
318,
7046,
11,
198,
220,
220,
220,
23878,
4871,
11,
198,
220,
220,
220,
886,
666,
11,
198,
220,
220,
220,
9004,
11,
198,
220,
220,
220,
17894,
11,
198,
220,
220,
220,
14354,
11,
198,
220,
220,
220,
23878,
418,
17914,
11,
198,
220,
220,
220,
1288,
701,
2981,
198,
198,
17256,
7,
1911,
14,
9979,
1187,
13,
20362,
4943,
198,
2,
2291,
7,
1911,
14,
19199,
13,
20362,
4943,
198,
198,
37811,
198,
220,
220,
220,
318,
7046,
7,
8800,
8,
4613,
347,
970,
198,
198,
13414,
1958,
17852,
37,
48900,
351,
6139,
3146,
198,
198,
2,
21066,
198,
15506,
63,
73,
43640,
12,
35666,
198,
73,
43640,
29,
318,
7046,
7,
961,
7203,
14,
6978,
14,
1462,
14,
39491,
48774,
198,
7942,
198,
15506,
63,
198,
198,
2,
20559,
2886,
198,
12,
4600,
8800,
3712,
38469,
90,
52,
5317,
23,
92,
63,
1058,
13934,
2393,
284,
2198,
13,
198,
198,
37811,
198,
271,
7046,
7,
17231,
7109,
3712,
46995,
2414,
62,
43894,
7109,
8,
796,
32622,
7109,
13,
68,
62,
738,
58,
27471,
25,
19,
60,
6624,
685,
3698,
23264,
4760,
16,
11,
17852,
23264,
4760,
17,
11,
17852,
23264,
4760,
18,
11,
17852,
23264,
4760,
19,
60,
198,
198,
37811,
198,
220,
220,
220,
23878,
4871,
7,
17231,
7109,
3712,
46995,
2414,
62,
43894,
7109,
8,
4613,
412,
39,
9487,
198,
198,
11242,
81,
1084,
274,
17852,
37,
1398,
7,
2414,
2545,
393,
3933,
2545,
8,
611,
12515,
1398,
4049,
481,
3051,
13,
198,
37811,
198,
8818,
23878,
4871,
7,
17231,
7109,
3712,
46995,
2414,
62,
43894,
7109,
8,
198,
220,
220,
220,
1949,
198,
220,
220,
220,
220,
220,
220,
220,
412,
39,
9487,
7,
17231,
7109,
13,
68,
62,
738,
58,
36,
40,
62,
31631,
12962,
198,
220,
220,
220,
4929,
198,
220,
220,
220,
220,
220,
220,
220,
4049,
7203,
44651,
1398,
19570,
198,
220,
220,
220,
886,
198,
437,
198,
198,
37811,
198,
220,
220,
220,
886,
666,
7,
17231,
7109,
3712,
46995,
2414,
62,
43894,
7109,
8,
4613,
412,
39,
12915,
666,
198,
198,
11242,
81,
1084,
274,
17852,
37,
13934,
886,
666,
13,
16409,
33829,
6870,
886,
666,
13,
1002,
12515,
4049,
481,
3051,
13,
198,
37811,
198,
198,
8818,
886,
666,
7,
17231,
7109,
3712,
46995,
2414,
62,
43894,
7109,
8,
198,
220,
220,
220,
1949,
198,
220,
220,
220,
220,
220,
220,
220,
412,
39,
12915,
666,
7,
17231,
7109,
13,
68,
62,
738,
58,
36,
40,
62,
26947,
12962,
198,
220,
220,
220,
4929,
198,
220,
220,
220,
220,
220,
220,
220,
4049,
7203,
44651,
886,
666,
19570,
198,
220,
220,
220,
886,
198,
437,
198,
198,
37811,
198,
220,
220,
220,
23878,
9641,
7,
17231,
7109,
3712,
46995,
2414,
62,
43894,
7109,
8,
4613,
38357,
198,
198,
1532,
13934,
468,
4938,
17852,
37,
2196,
11,
2073,
4049,
481,
3051,
13,
198,
37811,
198,
198,
8818,
23878,
9641,
7,
17231,
7109,
3712,
46995,
2414,
62,
43894,
7109,
8,
198,
220,
220,
220,
1949,
198,
220,
220,
220,
220,
220,
220,
220,
32622,
7109,
13,
68,
62,
738,
58,
36,
40,
62,
43717,
60,
198,
220,
220,
220,
4929,
198,
220,
220,
220,
220,
220,
220,
220,
4049,
7203,
44651,
17852,
37,
2196,
19570,
198,
220,
220,
220,
886,
198,
437,
198,
198,
8818,
23878,
418,
17914,
7,
17231,
7109,
3712,
46995,
2414,
62,
43894,
7109,
8,
198,
220,
220,
220,
1949,
198,
220,
220,
220,
220,
220,
220,
220,
357,
998,
796,
412,
39,
16748,
4826,
72,
7,
17231,
7109,
13,
68,
62,
738,
58,
36,
40,
62,
2640,
32,
3483,
46570,
2196,
796,
32622,
7109,
13,
68,
62,
738,
58,
36,
40,
62,
2640,
32,
3483,
12962,
198,
220,
220,
220,
4929,
198,
220,
220,
220,
220,
220,
220,
220,
4049,
7203,
44651,
7294,
317,
3483,
4943,
198,
220,
220,
220,
886,
198,
437,
198,
198,
8818,
1288,
701,
2981,
7,
17231,
7109,
3712,
46995,
2414,
62,
43894,
7109,
8,
198,
220,
220,
220,
1949,
198,
220,
220,
220,
220,
220,
220,
220,
412,
39,
6030,
7,
17231,
7109,
13,
68,
62,
4906,
8,
198,
220,
220,
220,
4929,
198,
220,
220,
220,
220,
220,
220,
220,
4049,
7203,
44651,
17852,
37,
2099,
19570,
198,
220,
220,
220,
886,
198,
437,
198,
198,
37811,
198,
220,
220,
220,
9004,
7,
8800,
3712,
38469,
90,
52,
5317,
23,
30072,
4613,
14230,
1068,
35,
713,
90,
10100,
11,
46995,
2414,
62,
2484,
7109,
92,
198,
198,
16375,
13639,
1167,
296,
341,
13,
16409,
8633,
78,
3219,
6870,
2665,
1438,
290,
663,
1167,
296,
341,
6149,
416,
2665,
1271,
13,
198,
37811,
198,
8818,
9004,
7,
8800,
3712,
38469,
90,
52,
5317,
23,
30072,
198,
220,
220,
220,
9004,
62,
10951,
3712,
35422,
1068,
35,
713,
90,
10100,
11,
46995,
2414,
62,
2484,
7109,
92,
796,
14230,
1068,
35,
713,
3419,
198,
220,
220,
220,
32622,
7109,
796,
19067,
2414,
62,
43894,
7109,
7,
8800,
8,
198,
220,
220,
220,
427,
2536,
796,
19067,
2414,
62,
2484,
7109,
7,
8800,
11,
32622,
7109,
13,
68,
62,
1477,
2364,
1343,
32622,
7109,
13,
68,
62,
82,
6925,
7857,
1635,
32622,
7109,
13,
68,
62,
1477,
2536,
358,
87,
8,
198,
220,
220,
220,
329,
1312,
796,
657,
37498,
17231,
7109,
13,
68,
62,
1477,
22510,
532,
352,
8,
198,
220,
220,
220,
220,
220,
220,
220,
427,
7109,
796,
19067,
2414,
62,
2484,
7109,
7,
8800,
11,
32622,
7109,
13,
68,
62,
1477,
2364,
1343,
32622,
7109,
13,
68,
62,
82,
6925,
7857,
1635,
1312,
8,
198,
220,
220,
220,
220,
220,
220,
220,
3013,
480,
796,
21596,
62,
8841,
7,
29536,
7,
8800,
11,
427,
2536,
13,
1477,
62,
28968,
1343,
427,
7109,
13,
1477,
62,
3672,
1343,
352,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
4574,
0,
7,
23946,
62,
10951,
11,
3013,
480,
5218,
427,
7109,
8,
198,
220,
220,
220,
886,
628,
220,
220,
220,
9004,
62,
10951,
198,
437,
198,
198,
37811,
198,
220,
220,
220,
17894,
7,
8800,
3712,
38469,
90,
52,
5317,
23,
92,
4613,
14230,
1068,
35,
713,
90,
10100,
11,
46995,
2414,
62,
2725,
7109,
92,
198,
198,
15167,
13639,
1167,
296,
341,
13,
16409,
8633,
78,
3219,
6870,
10618,
1438,
290,
663,
1167,
296,
341,
6149,
416,
10618,
1271,
13,
198,
37811,
198,
198,
8818,
17894,
7,
8800,
3712,
38469,
90,
52,
5317,
23,
30072,
198,
220,
220,
220,
32622,
7109,
796,
19067,
2414,
62,
43894,
7109,
7,
8800,
8,
198,
220,
220,
220,
427,
2536,
796,
19067,
2414,
62,
2484,
7109,
7,
8800,
11,
32622,
7109,
13,
68,
62,
1477,
2364,
1343,
32622,
7109,
13,
68,
62,
82,
6925,
7857,
1635,
32622,
7109,
13,
68,
62,
1477,
2536,
358,
87,
8,
198,
220,
220,
220,
17894,
62,
10951,
3712,
35422,
1068,
35,
713,
90,
10100,
11,
46995,
2414,
62,
2725,
7109,
92,
796,
14230,
1068,
35,
713,
3419,
628,
220,
220,
220,
329,
1312,
796,
657,
37498,
17231,
7109,
13,
68,
62,
746,
22510,
532,
352,
8,
198,
220,
220,
220,
220,
220,
220,
220,
872,
7109,
796,
19067,
2414,
62,
2725,
7109,
7,
8800,
11,
32622,
7109,
13,
68,
62,
746,
2364,
1343,
32622,
7109,
13,
68,
62,
79,
6925,
7857,
1635,
1312,
8,
198,
220,
220,
220,
220,
220,
220,
220,
329,
474,
796,
657,
37498,
17231,
7109,
13,
68,
62,
1477,
22510,
532,
352,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
427,
7109,
796,
19067,
2414,
62,
2484,
7109,
7,
8800,
11,
32622,
7109,
13,
68,
62,
1477,
2364,
1343,
32622,
7109,
13,
68,
62,
82,
6925,
7857,
1635,
474,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2546,
796,
427,
7109,
13,
1477,
62,
4906,
14512,
471,
5317,
2624,
7,
50,
6535,
62,
45,
9864,
29722,
8,
5633,
427,
7109,
13,
1477,
62,
7857,
1058,
657,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
427,
7109,
13,
1477,
62,
28968,
1279,
872,
7109,
13,
79,
62,
28968,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2555,
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,
611,
427,
7109,
13,
1477,
62,
28968,
1343,
2546,
1875,
872,
7109,
13,
79,
62,
28968,
1343,
872,
7109,
13,
79,
62,
16624,
89,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2555,
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,
384,
70,
62,
3672,
796,
21596,
62,
8841,
7,
29536,
7,
8800,
11,
427,
2536,
13,
1477,
62,
28968,
1343,
427,
7109,
13,
1477,
62,
3672,
1343,
352,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4574,
0,
7,
325,
11726,
62,
10951,
11,
384,
70,
62,
3672,
5218,
872,
7109,
8,
198,
220,
220,
220,
220,
220,
220,
220,
886,
198,
220,
220,
220,
886,
628,
220,
220,
220,
17894,
62,
10951,
198,
437,
198,
198,
37811,
198,
220,
220,
220,
14354,
7,
8800,
3712,
38469,
90,
52,
5317,
23,
30072,
4613,
357,
35422,
1068,
35,
713,
90,
10100,
11,
46995,
2414,
62,
43094,
5512,
14230,
1068,
35,
713,
90,
10100,
11,
46995,
2414,
62,
6892,
30072,
198,
198,
37738,
14354,
287,
262,
2393,
13,
16409,
46545,
286,
17852,
37,
14354,
290,
823,
420,
21156,
14354,
13,
198,
198,
2,
21066,
198,
15506,
63,
73,
43640,
12,
35666,
198,
73,
43640,
29,
14354,
7,
961,
7203,
14,
6978,
14,
1462,
14,
39491,
48774,
198,
7,
35422,
1068,
35,
713,
90,
10100,
11,
46995,
2414,
62,
43094,
92,
7,
986,
828,
35422,
1068,
35,
713,
90,
10100,
11,
46995,
2414,
62,
6892,
92,
28955,
198,
15506,
63,
198,
198,
2,
20559,
2886,
198,
12,
4600,
8800,
3712,
38469,
90,
52,
5317,
23,
92,
63,
25,
17852,
37,
13934,
13,
198,
37811,
198,
198,
8818,
14354,
7,
8800,
3712,
38469,
90,
52,
5317,
23,
30072,
198,
220,
220,
220,
32622,
7109,
796,
19067,
2414,
62,
43894,
7109,
7,
8800,
8,
198,
220,
220,
220,
14354,
62,
10951,
3712,
35422,
1068,
35,
713,
90,
10100,
11,
46995,
2414,
62,
43094,
92,
796,
14230,
1068,
35,
713,
3419,
198,
220,
220,
220,
965,
796,
9004,
7,
8800,
38381,
1911,
2536,
8658,
8973,
628,
220,
220,
220,
329,
1312,
796,
657,
37498,
17231,
7109,
13,
68,
62,
1477,
22510,
532,
352,
8,
198,
220,
220,
220,
220,
220,
220,
220,
427,
7109,
796,
19067,
2414,
62,
2484,
7109,
7,
8800,
11,
32622,
7109,
13,
68,
62,
1477,
2364,
1343,
32622,
7109,
13,
68,
62,
82,
6925,
7857,
1635,
1312,
8,
198,
220,
220,
220,
220,
220,
220,
220,
611,
427,
7109,
13,
1477,
62,
4906,
14512,
471,
5317,
2624,
7,
50,
6535,
62,
23060,
44,
5603,
33,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2555,
198,
220,
220,
220,
220,
220,
220,
220,
886,
198,
220,
220,
220,
220,
220,
220,
220,
3298,
5659,
796,
427,
7109,
198,
220,
220,
220,
220,
220,
220,
220,
329,
474,
796,
657,
37498,
7146,
7,
37047,
13,
1477,
62,
7857,
11,
5659,
13,
1477,
62,
658,
1096,
8,
532,
352,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10558,
796,
19067,
2414,
62,
43094,
7,
8800,
11,
5659,
13,
1477,
62,
28968,
1343,
5659,
13,
1477,
62,
658,
1096,
1635,
474,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
10558,
13,
301,
62,
3672,
6624,
657,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2555,
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,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
14354,
62,
10951,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
21596,
62,
8841,
7,
29536,
7,
8800,
11,
965,
13,
1477,
62,
28968,
1343,
10558,
13,
301,
62,
3672,
1343,
352,
4008,
5218,
10558,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
886,
198,
220,
220,
220,
886,
628,
220,
220,
220,
14354,
62,
2411,
62,
10951,
3712,
35422,
1068,
35,
713,
90,
10100,
11,
46995,
2414,
62,
6892,
92,
796,
14230,
1068,
35,
713,
3419,
628,
220,
220,
220,
329,
1312,
796,
657,
37498,
17231,
7109,
13,
68,
62,
1477,
22510,
532,
352,
8,
198,
220,
220,
220,
220,
220,
220,
220,
427,
7109,
796,
19067,
2414,
62,
2484,
7109,
7,
8800,
11,
32622,
7109,
13,
68,
62,
1477,
2364,
1343,
32622,
7109,
13,
68,
62,
82,
6925,
7857,
1635,
1312,
8,
198,
220,
220,
220,
220,
220,
220,
220,
611,
427,
7109,
13,
1477,
62,
4906,
14512,
471,
5317,
2624,
7,
50,
6535,
62,
16448,
8,
11405,
427,
7109,
13,
1477,
62,
4906,
14512,
471,
5317,
2624,
7,
50,
6535,
62,
2200,
13534,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2555,
198,
220,
220,
220,
220,
220,
220,
220,
886,
198,
220,
220,
220,
220,
220,
220,
220,
823,
796,
427,
7109,
198,
220,
220,
220,
220,
220,
220,
220,
329,
474,
796,
657,
37498,
7146,
7,
2411,
13,
1477,
62,
7857,
11,
823,
13,
1477,
62,
658,
1096,
8,
532,
352,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
823,
79,
796,
19067,
2414,
62,
6892,
7,
8800,
11,
823,
13,
1477,
62,
28968,
1343,
823,
13,
1477,
62,
658,
1096,
1635,
474,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10558,
796,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
19067,
2414,
62,
43094,
7,
8800,
11,
5659,
13,
1477,
62,
28968,
1343,
357,
37047,
13,
1477,
62,
658,
1096,
1635,
23878,
2414,
62,
81,
62,
37047,
7,
2411,
79,
13,
81,
62,
10951,
22305,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
10558,
13,
301,
62,
3672,
6624,
657,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2555,
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,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
14354,
62,
2411,
62,
10951,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
21596,
62,
8841,
7,
29536,
7,
8800,
11,
965,
13,
1477,
62,
28968,
1343,
10558,
13,
301,
62,
3672,
1343,
352,
4008,
5218,
823,
79,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
886,
198,
220,
220,
220,
886,
628,
220,
220,
220,
14354,
62,
10951,
11,
14354,
62,
2411,
62,
10951,
198,
437,
198,
198,
437,
1303,
8265,
198
] | 2.06599 | 2,561 |
function central_diff(Qbase, Qcon, cellxmax, cellymax, cellzmax, mu, lambda, vecAx, vecAy, vecAz, specific_heat_ratio, volume, Rd)
E_vis_hat = zeros(cellxmax+1, cellymax, cellzmax, 5)
F_vis_hat = zeros( cellxmax, cellymax+1, cellzmax, 5)
G_vis_hat = zeros( cellxmax, cellymax, cellzmax+1, 5)
for i in 2:cellxmax+1 -1
for j in 2:cellymax -1
for k in 2:cellzmax-1
u_av = 0.5*(Qbase[i,j,k,2]+Qbase[i-1,j,k,2])
v_av = 0.5*(Qbase[i,j,k,3]+Qbase[i-1,j,k,3])
w_av = 0.5*(Qbase[i,j,k,4]+Qbase[i-1,j,k,4])
mu_av = 0.5*(mu[i-1,j,k]+mu[i,j,k])
lambda_av = (0.5*(1/lambda[i-1,j,k]+1/lambda[i,j,k]))^(-1)
volume_av = 0.5*(volume[i,j,k]+volume[i-1,j,k])
dudxi = Qbase[i,j,k,2] - Qbase[i-1,j,k,2]
dvdxi = Qbase[i,j,k,3] - Qbase[i-1,j,k,3]
dwdxi = Qbase[i,j,k,4] - Qbase[i-1,j,k,4]
dTdxi = Qbase[i,j,k,5]/(Qbase[i,j,k,1]*Rd) - Qbase[i-1,j,k,5]/(Qbase[i-1,j,k,1]*Rd)
dudeta = 0.25*(Qbase[i,j+1,k,2] - Qbase[i,j-1,k,2] + Qbase[i-1,j+1,k,2] - Qbase[i-1,j-1,k,2])
dvdeta = 0.25*(Qbase[i,j+1,k,3] - Qbase[i,j-1,k,3] + Qbase[i-1,j+1,k,3] - Qbase[i-1,j-1,k,3])
dwdeta = 0.25*(Qbase[i,j+1,k,4] - Qbase[i,j-1,k,4] + Qbase[i-1,j+1,k,4] - Qbase[i-1,j-1,k,4])
dTdeta = 0.25*( Qbase[i,j+1,k,5] / (Qbase[i,j+1,k,1]*Rd) -
Qbase[i,j-1,k,5] / (Qbase[i,j-1,k,1]*Rd) +
Qbase[i-1,j+1,k,5] / (Qbase[i-1,j+1,k,1]*Rd) -
Qbase[i-1,j-1,k,5] / (Qbase[i-1,j-1,k,1]*Rd) )
dudzeta = 0.25*(Qbase[i,j,k+1,2] - Qbase[i,j,k-1,2] + Qbase[i-1,j,k+1,2] - Qbase[i-1,j,k-1,2])
dvdzeta = 0.25*(Qbase[i,j,k+1,3] - Qbase[i,j,k-1,3] + Qbase[i-1,j,k+1,3] - Qbase[i-1,j,k-1,3])
dwdzeta = 0.25*(Qbase[i,j,k+1,4] - Qbase[i,j,k-1,4] + Qbase[i-1,j,k+1,4] - Qbase[i-1,j,k-1,4])
dTdzeta = 0.25*(Qbase[i,j,k+1,5] / (Qbase[i,j,k+1,1]*Rd) -
Qbase[i,j,k-1,5] / (Qbase[i,j,k-1,1]*Rd) +
Qbase[i-1,j,k+1,5] / (Qbase[i-1,j,k+1,1]*Rd) -
Qbase[i-1,j,k-1,5] / (Qbase[i-1,j,k-1,1]*Rd) )
vecAx_xav = vecAx[i,j,k,1]
vecAx_yav = vecAx[i,j,k,2]
vecAx_zav = vecAx[i,j,k,3]
vecAy_xav = 0.25*( vecAy[i,j,k,1] + vecAy[i,j+1,k,1] + vecAy[i-1,j,k,1] + vecAy[i-1,j+1,k,1] )
vecAy_yav = 0.25*( vecAy[i,j,k,2] + vecAy[i,j+1,k,2] + vecAy[i-1,j,k,2] + vecAy[i-1,j+1,k,2] )
vecAy_zav = 0.25*( vecAy[i,j,k,3] + vecAy[i,j+1,k,3] + vecAy[i-1,j,k,3] + vecAy[i-1,j+1,k,3] )
vecAz_xav = 0.25*( vecAz[i,j,k,1] + vecAz[i,j,k+1,1] + vecAz[i-1,j,k,1] + vecAz[i-1,j,k+1,1] )
vecAz_yav = 0.25*( vecAz[i,j,k,2] + vecAz[i,j,k+1,2] + vecAz[i-1,j,k,2] + vecAz[i-1,j,k+1,2] )
vecAz_zav = 0.25*( vecAz[i,j,k,3] + vecAz[i,j,k+1,3] + vecAz[i-1,j,k,3] + vecAz[i-1,j,k+1,3] )
dudx = vecAx_xav*dudxi + vecAy_xav*dudeta +vecAz_xav*dudzeta
dudy = vecAx_yav*dudxi + vecAy_yav*dudeta +vecAz_yav*dudzeta
dudz = vecAx_zav*dudxi + vecAy_zav*dudeta +vecAz_zav*dudzeta
dvdx = vecAx_xav*dvdxi + vecAy_xav*dvdeta +vecAz_xav*dvdzeta
dvdy = vecAx_yav*dvdxi + vecAy_yav*dvdeta +vecAz_yav*dvdzeta
dvdz = vecAx_zav*dvdxi + vecAy_zav*dvdeta +vecAz_zav*dvdzeta
dwdx = vecAx_xav*dwdxi + vecAy_xav*dwdeta +vecAz_xav*dwdzeta
dwdy = vecAx_yav*dwdxi + vecAy_yav*dwdeta +vecAz_yav*dwdzeta
dwdz = vecAx_zav*dwdxi + vecAy_zav*dwdeta +vecAz_zav*dwdzeta
tau_xx = 2/3*mu_av*(2*dudx - dvdy - dwdz)
tau_yy = 2/3*mu_av*(2*dvdy - dwdz - dudx)
tau_zz = 2/3*mu_av*(2*dwdz - dudx - dvdy)
tau_xy = mu_av*(dudy + dvdx)
tau_yz = mu_av*(dvdz + dwdy)
tau_zx = mu_av*(dwdx + dudz)
dTdx = vecAx_xav*dTdxi + vecAy_xav*dTdeta + vecAz_xav*dTdzeta
dTdy = vecAx_yav*dTdxi + vecAy_yav*dTdeta + vecAz_yav*dTdzeta
dTdz = vecAx_zav*dTdxi + vecAy_zav*dTdeta + vecAz_zav*dTdzeta
betax = u_av*tau_xx + v_av*tau_xy + w_av*tau_zx + lambda_av * dTdx
betay = u_av*tau_xy + v_av*tau_yy + w_av*tau_yz + lambda_av * dTdy
betaz = u_av*tau_zx + v_av*tau_yz + w_av*tau_zz + lambda_av * dTdz
E_vis_hat[i,j,k,1] = 0.0
E_vis_hat[i,j,k,2] = (vecAx_xav*tau_xx + vecAx_yav*tau_xy + vecAx_zav*tau_zx) / volume_av
E_vis_hat[i,j,k,3] = (vecAx_xav*tau_xy + vecAx_yav*tau_yy + vecAx_zav*tau_yz) / volume_av
E_vis_hat[i,j,k,4] = (vecAx_xav*tau_zx + vecAx_yav*tau_yz + vecAx_zav*tau_zz) / volume_av
E_vis_hat[i,j,k,5] = (vecAx_xav*betax + vecAx_yav*betay + vecAx_zav*betaz ) / volume_av
end
end
end
for i in 2:cellxmax -1
for j in 2:cellymax+1 -1
for k in 2:cellzmax -1
u_av = 0.5*(Qbase[i,j,k,2]+Qbase[i,j-1,k,2])
v_av = 0.5*(Qbase[i,j,k,3]+Qbase[i,j-1,k,3])
w_av = 0.5*(Qbase[i,j,k,4]+Qbase[i,j-1,k,4])
mu_av = 0.5*(mu[i,j-1,k]+mu[i,j,k])
lambda_av = (0.5*(1/lambda[i,j-1,k]+1/lambda[i,j,k]))^(-1)
volume_av = 0.5*(volume[i,j,k]+volume[i,j-1,k])
dudxi = 0.25*(Qbase[i+1,j,k,2] - Qbase[i-1,j,k,2] + Qbase[i+1,j-1,k,2] - Qbase[i-1,j-1,k,2])
dvdxi = 0.25*(Qbase[i+1,j,k,3] - Qbase[i-1,j,k,3] + Qbase[i+1,j-1,k,3] - Qbase[i-1,j-1,k,3])
dwdxi = 0.25*(Qbase[i+1,j,k,4] - Qbase[i-1,j,k,4] + Qbase[i+1,j-1,k,4] - Qbase[i-1,j-1,k,4])
dTdxi = 0.25*( Qbase[i+1,j,k,4]/ (Qbase[i+1,j,k,1]*Rd) -
Qbase[i-1,j,k,4]/ (Qbase[i-1,j,k,1]*Rd) +
Qbase[i+1,j-1,k,4]/(Qbase[i+1,j-1,k,1]*Rd) -
Qbase[i-1,j-1,k,4]/(Qbase[i-1,j-1,k,1]*Rd) )
dudeta = Qbase[i,j,k,2]-Qbase[i,j-1,k,2]
dvdeta = Qbase[i,j,k,3]-Qbase[i,j-1,k,3]
dwdeta = Qbase[i,j,k,4]-Qbase[i,j-1,k,4]
dTdeta = (Qbase[i,j,k,5]/(Qbase[i,j,k,1]*Rd) - Qbase[i,j-1,k,5]/(Qbase[i,j-1,k,1]*Rd))
dudzeta = 0.25*(Qbase[i,j,k+1,2] - Qbase[i,j,k-1,2] + Qbase[i,j-1,k+1,2] - Qbase[i,j-1,k-1,2])
dvdzeta = 0.25*(Qbase[i,j,k+1,3] - Qbase[i,j,k-1,3] + Qbase[i,j-1,k+1,3] - Qbase[i,j-1,k-1,3])
dwdzeta = 0.25*(Qbase[i,j,k+1,4] - Qbase[i,j,k-1,4] + Qbase[i,j-1,k+1,4] - Qbase[i,j-1,k-1,4])
dTdzeta = 0.25*(Qbase[i,j,k+1,4]/ (Qbase[i,j,k+1,1]*Rd) -
Qbase[i,j,k-1,4]/ (Qbase[i,j,k-1,1]*Rd) +
Qbase[i,j-1,k+1,4]/(Qbase[i,j-1,k+1,1]*Rd) -
Qbase[i,j-1,k-1,4]/(Qbase[i,j-1,k-1,1]*Rd) )
vecAx_xav = 0.25*( vecAx[i,j,k,1] + vecAx[i+1,j,k,1] + vecAx[i,j-1,k,1] + vecAx[i+1,j-1,k,1] )
vecAx_yav = 0.25*( vecAx[i,j,k,2] + vecAx[i+1,j,k,2] + vecAx[i,j-1,k,2] + vecAx[i+1,j-1,k,2] )
vecAx_zav = 0.25*( vecAx[i,j,k,3] + vecAx[i+1,j,k,3] + vecAx[i,j-1,k,3] + vecAx[i+1,j-1,k,3] )
vecAy_xav = vecAy[i,j,k,1]
vecAy_yav = vecAy[i,j,k,2]
vecAy_zav = vecAy[i,j,k,3]
vecAz_xav = 0.25*( vecAz[i,j,k,1] + vecAz[i,j,k+1,1] + vecAz[i,j-1,k,1] + vecAz[i,j-1,k+1,1] )
vecAz_yav = 0.25*( vecAz[i,j,k,2] + vecAz[i,j,k+1,2] + vecAz[i,j-1,k,2] + vecAz[i,j-1,k+1,2] )
vecAz_zav = 0.25*( vecAz[i,j,k,3] + vecAz[i,j,k+1,3] + vecAz[i,j-1,k,3] + vecAz[i,j-1,k+1,3] )
dudx = vecAx_xav*dudxi + vecAy_xav*dudeta +vecAz_xav*dudzeta
dudy = vecAx_yav*dudxi + vecAy_yav*dudeta +vecAz_yav*dudzeta
dudz = vecAx_zav*dudxi + vecAy_zav*dudeta +vecAz_zav*dudzeta
dvdx = vecAx_xav*dvdxi + vecAy_xav*dvdeta +vecAz_xav*dvdzeta
dvdy = vecAx_yav*dvdxi + vecAy_yav*dvdeta +vecAz_yav*dvdzeta
dvdz = vecAx_zav*dvdxi + vecAy_zav*dvdeta +vecAz_zav*dvdzeta
dwdx = vecAx_xav*dwdxi + vecAy_xav*dwdeta +vecAz_xav*dwdzeta
dwdy = vecAx_yav*dwdxi + vecAy_yav*dwdeta +vecAz_yav*dwdzeta
dwdz = vecAx_zav*dwdxi + vecAy_zav*dwdeta +vecAz_zav*dwdzeta
tau_xx = 2/3*mu_av*(2*dudx - dvdy - dwdz)
tau_yy = 2/3*mu_av*(2*dvdy - dwdz - dudx)
tau_zz = 2/3*mu_av*(2*dwdz - dudx - dvdy)
tau_xy = mu_av*(dudy + dvdx)
tau_yz = mu_av*(dvdz + dwdy)
tau_zx = mu_av*(dwdx + dudz)
dTdx = vecAx_xav*dTdxi + vecAy_xav*dTdeta + vecAz_xav*dTdzeta
dTdy = vecAx_yav*dTdxi + vecAy_yav*dTdeta + vecAz_yav*dTdzeta
dTdz = vecAx_zav*dTdxi + vecAy_zav*dTdeta + vecAz_zav*dTdzeta
betax = u_av*tau_xx + v_av*tau_xy + w_av*tau_zx + lambda_av * dTdx
betay = u_av*tau_xy + v_av*tau_yy + w_av*tau_yz + lambda_av * dTdy
betaz = u_av*tau_zx + v_av*tau_yz + w_av*tau_zz + lambda_av * dTdz
F_vis_hat[i,j,k,1] = 0.0
F_vis_hat[i,j,k,2] = (vecAy_xav*tau_xx + vecAy_yav*tau_xy + vecAy_zav*tau_zx) / volume_av
F_vis_hat[i,j,k,3] = (vecAy_xav*tau_xy + vecAy_yav*tau_yy + vecAy_zav*tau_yz) / volume_av
F_vis_hat[i,j,k,4] = (vecAy_xav*tau_zx + vecAy_yav*tau_yz + vecAy_zav*tau_zz) / volume_av
F_vis_hat[i,j,k,5] = (vecAy_xav*betax + vecAy_yav*betay + vecAy_zav*betaz ) / volume_av
end
end
end
for i in 2:cellxmax -1
for j in 2:cellymax -1
for k in 2:cellzmax+1 -1
u_av = 0.5*(Qbase[i,j,k,2]+Qbase[i,j,k-1,2])
v_av = 0.5*(Qbase[i,j,k,3]+Qbase[i,j,k-1,3])
w_av = 0.5*(Qbase[i,j,k,4]+Qbase[i,j,k-1,4])
mu_av = 0.5*(mu[i,j,k-1]+mu[i,j,k])
lambda_av = (0.5*(1/lambda[i,j,k-1]+1/lambda[i,j,k]))^(-1)
volume_av = 0.5*(volume[i,j,k]+volume[i,j,k-1])
dudxi = 0.25*(Qbase[i+1,j,k,2] - Qbase[i-1,j,k,2] + Qbase[i+1,j,k-1,2] - Qbase[i-1,j,k-1,2])
dvdxi = 0.25*(Qbase[i+1,j,k,3] - Qbase[i-1,j,k,3] + Qbase[i+1,j,k-1,3] - Qbase[i-1,j,k-1,3])
dwdxi = 0.25*(Qbase[i+1,j,k,4] - Qbase[i-1,j,k,4] + Qbase[i+1,j,k-1,4] - Qbase[i-1,j,k-1,4])
dTdxi = 0.25*( Qbase[i+1,j,k,4]/ (Qbase[i+1,j,k,1]*Rd) -
Qbase[i-1,j,k,4]/ (Qbase[i-1,j,k,1]*Rd) +
Qbase[i+1,j,k-1,4]/(Qbase[i+1,j,k-1,1]*Rd) -
Qbase[i-1,j,k-1,4]/(Qbase[i-1,j,k-1,1]*Rd) )
dudeta = 0.25*(Qbase[i,j+1,k,2] - Qbase[i,j-1,k,2] + Qbase[i,j+1,k-1,2] - Qbase[i,j-1,k-1,2])
dvdeta = 0.25*(Qbase[i,j+1,k,3] - Qbase[i,j-1,k,3] + Qbase[i,j+1,k-1,3] - Qbase[i,j-1,k-1,3])
dwdeta = 0.25*(Qbase[i,j+1,k,4] - Qbase[i,j-1,k,4] + Qbase[i,j+1,k-1,4] - Qbase[i,j-1,k-1,4])
dTdeta = 0.25*( Qbase[i,j+1,k,4]/ (Qbase[i,j+1,k,1]*Rd) -
Qbase[i,j-1,k,4]/ (Qbase[i,j-1,k,1]*Rd) +
Qbase[i,j+1,k-1,4]/(Qbase[i,j+1,k-1,1]*Rd) -
Qbase[i,j-1,k-1,4]/(Qbase[i,j-1,k-1,1]*Rd) )
dudzeta = Qbase[i,j,k,2]-Qbase[i,j,k-1,2]
dvdzeta = Qbase[i,j,k,3]-Qbase[i,j,k-1,3]
dwdzeta = Qbase[i,j,k,4]-Qbase[i,j,k-1,4]
dTdzeta = (Qbase[i,j,k,5]/(Qbase[i,j,k,1]*Rd) - Qbase[i,j,k-1,5]/(Qbase[i,j,k-1,1]*Rd))
vecAx_xav = 0.25*( vecAx[i,j,k,1] + vecAx[i+1,j,k,1] + vecAx[i,j,k-1,1] + vecAx[i+1,j,k-1,1] )
vecAx_yav = 0.25*( vecAx[i,j,k,2] + vecAx[i+1,j,k,2] + vecAx[i,j,k-1,2] + vecAx[i+1,j,k-1,2] )
vecAx_zav = 0.25*( vecAx[i,j,k,3] + vecAx[i+1,j,k,3] + vecAx[i,j,k-1,3] + vecAx[i+1,j,k-1,3] )
vecAy_xav = 0.25*( vecAy[i,j,k,1] + vecAy[i,j+1,k,1] + vecAy[i,j,k-1,1] + vecAy[i,j+1,k-1,1] )
vecAy_yav = 0.25*( vecAy[i,j,k,2] + vecAy[i,j+1,k,2] + vecAy[i,j,k-1,2] + vecAy[i,j+1,k-1,2] )
vecAy_zav = 0.25*( vecAy[i,j,k,3] + vecAy[i,j+1,k,3] + vecAy[i,j,k-1,3] + vecAy[i,j+1,k-1,3] )
vecAz_xav = vecAz[i,j,k,1]
vecAz_yav = vecAz[i,j,k,2]
vecAz_zav = vecAz[i,j,k,3]
dudx = vecAx_xav*dudxi + vecAy_xav*dudeta +vecAz_xav*dudzeta
dudy = vecAx_yav*dudxi + vecAy_yav*dudeta +vecAz_yav*dudzeta
dudz = vecAx_zav*dudxi + vecAy_zav*dudeta +vecAz_zav*dudzeta
dvdx = vecAx_xav*dvdxi + vecAy_xav*dvdeta +vecAz_xav*dvdzeta
dvdy = vecAx_yav*dvdxi + vecAy_yav*dvdeta +vecAz_yav*dvdzeta
dvdz = vecAx_zav*dvdxi + vecAy_zav*dvdeta +vecAz_zav*dvdzeta
dwdx = vecAx_xav*dwdxi + vecAy_xav*dwdeta +vecAz_xav*dwdzeta
dwdy = vecAx_yav*dwdxi + vecAy_yav*dwdeta +vecAz_yav*dwdzeta
dwdz = vecAx_zav*dwdxi + vecAy_zav*dwdeta +vecAz_zav*dwdzeta
tau_xx = 2/3*mu_av*(2*dudx - dvdy - dwdz)
tau_yy = 2/3*mu_av*(2*dvdy - dwdz - dudx)
tau_zz = 2/3*mu_av*(2*dwdz - dudx - dvdy)
tau_xy = mu_av*(dudy + dvdx)
tau_yz = mu_av*(dvdz + dwdy)
tau_zx = mu_av*(dwdx + dudz)
dTdx = vecAx_xav*dTdxi + vecAy_xav*dTdeta + vecAz_xav*dTdzeta
dTdy = vecAx_yav*dTdxi + vecAy_yav*dTdeta + vecAz_yav*dTdzeta
dTdz = vecAx_zav*dTdxi + vecAy_zav*dTdeta + vecAz_zav*dTdzeta
betax = u_av*tau_xx + v_av*tau_xy + w_av*tau_zx + lambda_av * dTdx
betay = u_av*tau_xy + v_av*tau_yy + w_av*tau_yz + lambda_av * dTdy
betaz = u_av*tau_zx + v_av*tau_yz + w_av*tau_zz + lambda_av * dTdz
G_vis_hat[i,j,k,1] = 0.0
G_vis_hat[i,j,k,2] = (vecAz_xav*tau_xx + vecAz_yav*tau_xy + vecAz_zav*tau_zx) / volume_av
G_vis_hat[i,j,k,3] = (vecAz_xav*tau_xy + vecAz_yav*tau_yy + vecAz_zav*tau_yz) / volume_av
G_vis_hat[i,j,k,4] = (vecAz_xav*tau_zx + vecAz_yav*tau_yz + vecAz_zav*tau_zz) / volume_av
G_vis_hat[i,j,k,5] = (vecAz_xav*betax + vecAz_yav*betay + vecAz_zav*betaz ) / volume_av
end
end
end
return E_vis_hat, F_vis_hat, G_vis_hat
end
| [
8818,
4318,
62,
26069,
7,
48,
8692,
11,
1195,
1102,
11,
2685,
87,
9806,
11,
2685,
4948,
897,
11,
2685,
89,
9806,
11,
38779,
11,
37456,
11,
43030,
31554,
11,
43030,
42012,
11,
43030,
26903,
11,
2176,
62,
25080,
62,
10366,
952,
11,
6115,
11,
20769,
8,
198,
220,
220,
220,
412,
62,
4703,
62,
5183,
796,
1976,
27498,
7,
3846,
87,
9806,
10,
16,
11,
220,
220,
2685,
4948,
897,
11,
220,
220,
2685,
89,
9806,
11,
642,
8,
198,
220,
220,
220,
376,
62,
4703,
62,
5183,
796,
1976,
27498,
7,
220,
2685,
87,
9806,
11,
2685,
4948,
897,
10,
16,
11,
220,
220,
2685,
89,
9806,
11,
642,
8,
198,
220,
220,
220,
402,
62,
4703,
62,
5183,
796,
1976,
27498,
7,
220,
2685,
87,
9806,
11,
220,
220,
2685,
4948,
897,
11,
2685,
89,
9806,
10,
16,
11,
642,
8,
198,
220,
220,
220,
220,
198,
220,
220,
220,
329,
1312,
287,
362,
25,
3846,
87,
9806,
10,
16,
532,
16,
198,
220,
220,
220,
220,
220,
220,
220,
329,
474,
287,
362,
25,
3846,
4948,
897,
532,
16,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
479,
287,
362,
25,
3846,
89,
9806,
12,
16,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
334,
62,
615,
796,
657,
13,
20,
9,
7,
48,
8692,
58,
72,
11,
73,
11,
74,
11,
17,
48688,
48,
8692,
58,
72,
12,
16,
11,
73,
11,
74,
11,
17,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
410,
62,
615,
796,
657,
13,
20,
9,
7,
48,
8692,
58,
72,
11,
73,
11,
74,
11,
18,
48688,
48,
8692,
58,
72,
12,
16,
11,
73,
11,
74,
11,
18,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
266,
62,
615,
796,
657,
13,
20,
9,
7,
48,
8692,
58,
72,
11,
73,
11,
74,
11,
19,
48688,
48,
8692,
58,
72,
12,
16,
11,
73,
11,
74,
11,
19,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
38779,
62,
615,
220,
220,
220,
220,
796,
657,
13,
20,
9,
7,
30300,
58,
72,
12,
16,
11,
73,
11,
74,
48688,
30300,
58,
72,
11,
73,
11,
74,
12962,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
37456,
62,
615,
796,
357,
15,
13,
20,
9,
7,
16,
14,
50033,
58,
72,
12,
16,
11,
73,
11,
74,
48688,
16,
14,
50033,
58,
72,
11,
73,
11,
74,
60,
4008,
61,
32590,
16,
8,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6115,
62,
615,
796,
657,
13,
20,
9,
7,
29048,
58,
72,
11,
73,
11,
74,
48688,
29048,
58,
72,
12,
16,
11,
73,
11,
74,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
288,
463,
29992,
796,
1195,
8692,
58,
72,
11,
73,
11,
74,
11,
17,
60,
532,
1195,
8692,
58,
72,
12,
16,
11,
73,
11,
74,
11,
17,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
288,
20306,
29992,
796,
1195,
8692,
58,
72,
11,
73,
11,
74,
11,
18,
60,
532,
1195,
8692,
58,
72,
12,
16,
11,
73,
11,
74,
11,
18,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
288,
16993,
29992,
796,
1195,
8692,
58,
72,
11,
73,
11,
74,
11,
19,
60,
532,
1195,
8692,
58,
72,
12,
16,
11,
73,
11,
74,
11,
19,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
288,
51,
67,
29992,
796,
1195,
8692,
58,
72,
11,
73,
11,
74,
11,
20,
60,
29006,
48,
8692,
58,
72,
11,
73,
11,
74,
11,
16,
60,
9,
49,
67,
8,
532,
1195,
8692,
58,
72,
12,
16,
11,
73,
11,
74,
11,
20,
60,
29006,
48,
8692,
58,
72,
12,
16,
11,
73,
11,
74,
11,
16,
60,
9,
49,
67,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
288,
463,
17167,
796,
657,
13,
1495,
9,
7,
48,
8692,
58,
72,
11,
73,
10,
16,
11,
74,
11,
17,
60,
532,
1195,
8692,
58,
72,
11,
73,
12,
16,
11,
74,
11,
17,
60,
1343,
1195,
8692,
58,
72,
12,
16,
11,
73,
10,
16,
11,
74,
11,
17,
60,
532,
1195,
8692,
58,
72,
12,
16,
11,
73,
12,
16,
11,
74,
11,
17,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
288,
85,
15255,
64,
796,
657,
13,
1495,
9,
7,
48,
8692,
58,
72,
11,
73,
10,
16,
11,
74,
11,
18,
60,
532,
1195,
8692,
58,
72,
11,
73,
12,
16,
11,
74,
11,
18,
60,
1343,
1195,
8692,
58,
72,
12,
16,
11,
73,
10,
16,
11,
74,
11,
18,
60,
532,
1195,
8692,
58,
72,
12,
16,
11,
73,
12,
16,
11,
74,
11,
18,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
43756,
15255,
64,
796,
657,
13,
1495,
9,
7,
48,
8692,
58,
72,
11,
73,
10,
16,
11,
74,
11,
19,
60,
532,
1195,
8692,
58,
72,
11,
73,
12,
16,
11,
74,
11,
19,
60,
1343,
1195,
8692,
58,
72,
12,
16,
11,
73,
10,
16,
11,
74,
11,
19,
60,
532,
1195,
8692,
58,
72,
12,
16,
11,
73,
12,
16,
11,
74,
11,
19,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
288,
51,
15255,
64,
796,
657,
13,
1495,
9,
7,
1195,
8692,
58,
72,
11,
73,
10,
16,
11,
74,
11,
20,
60,
1220,
220,
220,
357,
48,
8692,
58,
72,
11,
73,
10,
16,
11,
74,
11,
16,
60,
9,
49,
67,
8,
532,
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,
1195,
8692,
58,
72,
11,
73,
12,
16,
11,
74,
11,
20,
60,
1220,
220,
220,
357,
48,
8692,
58,
72,
11,
73,
12,
16,
11,
74,
11,
16,
60,
9,
49,
67,
8,
1343,
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,
1195,
8692,
58,
72,
12,
16,
11,
73,
10,
16,
11,
74,
11,
20,
60,
1220,
357,
48,
8692,
58,
72,
12,
16,
11,
73,
10,
16,
11,
74,
11,
16,
60,
9,
49,
67,
8,
532,
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,
1195,
8692,
58,
72,
12,
16,
11,
73,
12,
16,
11,
74,
11,
20,
60,
1220,
357,
48,
8692,
58,
72,
12,
16,
11,
73,
12,
16,
11,
74,
11,
16,
60,
9,
49,
67,
8,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
288,
463,
89,
17167,
796,
657,
13,
1495,
9,
7,
48,
8692,
58,
72,
11,
73,
11,
74,
10,
16,
11,
17,
60,
532,
1195,
8692,
58,
72,
11,
73,
11,
74,
12,
16,
11,
17,
60,
1343,
1195,
8692,
58,
72,
12,
16,
11,
73,
11,
74,
10,
16,
11,
17,
60,
532,
1195,
8692,
58,
72,
12,
16,
11,
73,
11,
74,
12,
16,
11,
17,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
288,
20306,
89,
17167,
796,
657,
13,
1495,
9,
7,
48,
8692,
58,
72,
11,
73,
11,
74,
10,
16,
11,
18,
60,
532,
1195,
8692,
58,
72,
11,
73,
11,
74,
12,
16,
11,
18,
60,
1343,
1195,
8692,
58,
72,
12,
16,
11,
73,
11,
74,
10,
16,
11,
18,
60,
532,
1195,
8692,
58,
72,
12,
16,
11,
73,
11,
74,
12,
16,
11,
18,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
288,
16993,
89,
17167,
796,
657,
13,
1495,
9,
7,
48,
8692,
58,
72,
11,
73,
11,
74,
10,
16,
11,
19,
60,
532,
1195,
8692,
58,
72,
11,
73,
11,
74,
12,
16,
11,
19,
60,
1343,
1195,
8692,
58,
72,
12,
16,
11,
73,
11,
74,
10,
16,
11,
19,
60,
532,
1195,
8692,
58,
72,
12,
16,
11,
73,
11,
74,
12,
16,
11,
19,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
288,
51,
67,
89,
17167,
796,
657,
13,
1495,
9,
7,
48,
8692,
58,
72,
11,
73,
11,
74,
10,
16,
11,
20,
60,
1220,
220,
220,
357,
48,
8692,
58,
72,
11,
73,
11,
74,
10,
16,
11,
16,
60,
9,
49,
67,
8,
532,
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,
1195,
8692,
58,
72,
11,
73,
11,
74,
12,
16,
11,
20,
60,
1220,
220,
220,
357,
48,
8692,
58,
72,
11,
73,
11,
74,
12,
16,
11,
16,
60,
9,
49,
67,
8,
1343,
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,
1195,
8692,
58,
72,
12,
16,
11,
73,
11,
74,
10,
16,
11,
20,
60,
1220,
357,
48,
8692,
58,
72,
12,
16,
11,
73,
11,
74,
10,
16,
11,
16,
60,
9,
49,
67,
8,
532,
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,
1195,
8692,
58,
72,
12,
16,
11,
73,
11,
74,
12,
16,
11,
20,
60,
1220,
357,
48,
8692,
58,
72,
12,
16,
11,
73,
11,
74,
12,
16,
11,
16,
60,
9,
49,
67,
8,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
43030,
31554,
62,
87,
615,
796,
43030,
31554,
58,
72,
11,
73,
11,
74,
11,
16,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
43030,
31554,
62,
88,
615,
796,
43030,
31554,
58,
72,
11,
73,
11,
74,
11,
17,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
43030,
31554,
62,
89,
615,
796,
43030,
31554,
58,
72,
11,
73,
11,
74,
11,
18,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
43030,
42012,
62,
87,
615,
796,
657,
13,
1495,
9,
7,
43030,
42012,
58,
72,
11,
73,
11,
74,
11,
16,
60,
1343,
43030,
42012,
58,
72,
11,
73,
10,
16,
11,
74,
11,
16,
60,
1343,
43030,
42012,
58,
72,
12,
16,
11,
73,
11,
74,
11,
16,
60,
1343,
43030,
42012,
58,
72,
12,
16,
11,
73,
10,
16,
11,
74,
11,
16,
60,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
43030,
42012,
62,
88,
615,
796,
657,
13,
1495,
9,
7,
43030,
42012,
58,
72,
11,
73,
11,
74,
11,
17,
60,
1343,
43030,
42012,
58,
72,
11,
73,
10,
16,
11,
74,
11,
17,
60,
1343,
43030,
42012,
58,
72,
12,
16,
11,
73,
11,
74,
11,
17,
60,
1343,
43030,
42012,
58,
72,
12,
16,
11,
73,
10,
16,
11,
74,
11,
17,
60,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
43030,
42012,
62,
89,
615,
796,
657,
13,
1495,
9,
7,
43030,
42012,
58,
72,
11,
73,
11,
74,
11,
18,
60,
1343,
43030,
42012,
58,
72,
11,
73,
10,
16,
11,
74,
11,
18,
60,
1343,
43030,
42012,
58,
72,
12,
16,
11,
73,
11,
74,
11,
18,
60,
1343,
43030,
42012,
58,
72,
12,
16,
11,
73,
10,
16,
11,
74,
11,
18,
60,
1267,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
43030,
26903,
62,
87,
615,
796,
657,
13,
1495,
9,
7,
43030,
26903,
58,
72,
11,
73,
11,
74,
11,
16,
60,
1343,
43030,
26903,
58,
72,
11,
73,
11,
74,
10,
16,
11,
16,
60,
1343,
43030,
26903,
58,
72,
12,
16,
11,
73,
11,
74,
11,
16,
60,
1343,
43030,
26903,
58,
72,
12,
16,
11,
73,
11,
74,
10,
16,
11,
16,
60,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
43030,
26903,
62,
88,
615,
796,
657,
13,
1495,
9,
7,
43030,
26903,
58,
72,
11,
73,
11,
74,
11,
17,
60,
1343,
43030,
26903,
58,
72,
11,
73,
11,
74,
10,
16,
11,
17,
60,
1343,
43030,
26903,
58,
72,
12,
16,
11,
73,
11,
74,
11,
17,
60,
1343,
43030,
26903,
58,
72,
12,
16,
11,
73,
11,
74,
10,
16,
11,
17,
60,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
43030,
26903,
62,
89,
615,
796,
657,
13,
1495,
9,
7,
43030,
26903,
58,
72,
11,
73,
11,
74,
11,
18,
60,
1343,
43030,
26903,
58,
72,
11,
73,
11,
74,
10,
16,
11,
18,
60,
1343,
43030,
26903,
58,
72,
12,
16,
11,
73,
11,
74,
11,
18,
60,
1343,
43030,
26903,
58,
72,
12,
16,
11,
73,
11,
74,
10,
16,
11,
18,
60,
1267,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
288,
463,
87,
796,
43030,
31554,
62,
87,
615,
9,
67,
463,
29992,
1343,
43030,
42012,
62,
87,
615,
9,
67,
463,
17167,
1343,
35138,
26903,
62,
87,
615,
9,
67,
463,
89,
17167,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
288,
463,
88,
796,
43030,
31554,
62,
88,
615,
9,
67,
463,
29992,
1343,
43030,
42012,
62,
88,
615,
9,
67,
463,
17167,
1343,
35138,
26903,
62,
88,
615,
9,
67,
463,
89,
17167,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
288,
463,
89,
796,
43030,
31554,
62,
89,
615,
9,
67,
463,
29992,
1343,
43030,
42012,
62,
89,
615,
9,
67,
463,
17167,
1343,
35138,
26903,
62,
89,
615,
9,
67,
463,
89,
17167,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
288,
20306,
87,
796,
43030,
31554,
62,
87,
615,
9,
67,
20306,
29992,
1343,
43030,
42012,
62,
87,
615,
9,
67,
85,
15255,
64,
1343,
35138,
26903,
62,
87,
615,
9,
67,
20306,
89,
17167,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
288,
85,
9892,
796,
43030,
31554,
62,
88,
615,
9,
67,
20306,
29992,
1343,
43030,
42012,
62,
88,
615,
9,
67,
85,
15255,
64,
1343,
35138,
26903,
62,
88,
615,
9,
67,
20306,
89,
17167,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
288,
20306,
89,
796,
43030,
31554,
62,
89,
615,
9,
67,
20306,
29992,
1343,
43030,
42012,
62,
89,
615,
9,
67,
85,
15255,
64,
1343,
35138,
26903,
62,
89,
615,
9,
67,
20306,
89,
17167,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
288,
16993,
87,
796,
43030,
31554,
62,
87,
615,
9,
67,
16993,
29992,
1343,
43030,
42012,
62,
87,
615,
9,
67,
86,
15255,
64,
1343,
35138,
26903,
62,
87,
615,
9,
67,
16993,
89,
17167,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
43756,
9892,
796,
43030,
31554,
62,
88,
615,
9,
67,
16993,
29992,
1343,
43030,
42012,
62,
88,
615,
9,
67,
86,
15255,
64,
1343,
35138,
26903,
62,
88,
615,
9,
67,
16993,
89,
17167,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
288,
16993,
89,
796,
43030,
31554,
62,
89,
615,
9,
67,
16993,
29992,
1343,
43030,
42012,
62,
89,
615,
9,
67,
86,
15255,
64,
1343,
35138,
26903,
62,
89,
615,
9,
67,
16993,
89,
17167,
198,
220,
220,
220,
220,
220,
220,
220,
220,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
256,
559,
62,
5324,
796,
362,
14,
18,
9,
30300,
62,
615,
9,
7,
17,
9,
67,
463,
87,
532,
288,
85,
9892,
532,
288,
16993,
89,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
256,
559,
62,
22556,
796,
362,
14,
18,
9,
30300,
62,
615,
9,
7,
17,
9,
67,
85,
9892,
532,
288,
16993,
89,
532,
288,
463,
87,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
256,
559,
62,
3019,
796,
362,
14,
18,
9,
30300,
62,
615,
9,
7,
17,
9,
67,
16993,
89,
532,
288,
463,
87,
532,
288,
85,
9892,
8,
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,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
256,
559,
62,
5431,
796,
38779,
62,
615,
9,
7,
67,
463,
88,
1343,
288,
20306,
87,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
256,
559,
62,
45579,
796,
38779,
62,
615,
9,
7,
67,
20306,
89,
1343,
43756,
9892,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
256,
559,
62,
42592,
796,
38779,
62,
615,
9,
7,
67,
16993,
87,
1343,
288,
463,
89,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
288,
51,
34350,
796,
43030,
31554,
62,
87,
615,
9,
67,
51,
67,
29992,
1343,
43030,
42012,
62,
87,
615,
9,
67,
51,
15255,
64,
1343,
43030,
26903,
62,
87,
615,
9,
67,
51,
67,
89,
17167,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
288,
51,
9892,
796,
43030,
31554,
62,
88,
615,
9,
67,
51,
67,
29992,
1343,
43030,
42012,
62,
88,
615,
9,
67,
51,
15255,
64,
1343,
43030,
26903,
62,
88,
615,
9,
67,
51,
67,
89,
17167,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
288,
51,
67,
89,
796,
43030,
31554,
62,
89,
615,
9,
67,
51,
67,
29992,
1343,
43030,
42012,
62,
89,
615,
9,
67,
51,
15255,
64,
1343,
43030,
26903,
62,
89,
615,
9,
67,
51,
67,
89,
17167,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
731,
897,
796,
334,
62,
615,
9,
83,
559,
62,
5324,
1343,
410,
62,
615,
9,
83,
559,
62,
5431,
1343,
266,
62,
615,
9,
83,
559,
62,
42592,
1343,
37456,
62,
615,
1635,
288,
51,
34350,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
731,
323,
796,
334,
62,
615,
9,
83,
559,
62,
5431,
1343,
410,
62,
615,
9,
83,
559,
62,
22556,
1343,
266,
62,
615,
9,
83,
559,
62,
45579,
1343,
37456,
62,
615,
1635,
288,
51,
9892,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
731,
1031,
796,
334,
62,
615,
9,
83,
559,
62,
42592,
1343,
410,
62,
615,
9,
83,
559,
62,
45579,
1343,
266,
62,
615,
9,
83,
559,
62,
3019,
1343,
37456,
62,
615,
1635,
288,
51,
67,
89,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
412,
62,
4703,
62,
5183,
58,
72,
11,
73,
11,
74,
11,
16,
60,
796,
657,
13,
15,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
412,
62,
4703,
62,
5183,
58,
72,
11,
73,
11,
74,
11,
17,
60,
796,
357,
35138,
31554,
62,
87,
615,
9,
83,
559,
62,
5324,
1343,
43030,
31554,
62,
88,
615,
9,
83,
559,
62,
5431,
1343,
43030,
31554,
62,
89,
615,
9,
83,
559,
62,
42592,
8,
1220,
6115,
62,
615,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
412,
62,
4703,
62,
5183,
58,
72,
11,
73,
11,
74,
11,
18,
60,
796,
357,
35138,
31554,
62,
87,
615,
9,
83,
559,
62,
5431,
1343,
43030,
31554,
62,
88,
615,
9,
83,
559,
62,
22556,
1343,
43030,
31554,
62,
89,
615,
9,
83,
559,
62,
45579,
8,
1220,
6115,
62,
615,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
412,
62,
4703,
62,
5183,
58,
72,
11,
73,
11,
74,
11,
19,
60,
796,
357,
35138,
31554,
62,
87,
615,
9,
83,
559,
62,
42592,
1343,
43030,
31554,
62,
88,
615,
9,
83,
559,
62,
45579,
1343,
43030,
31554,
62,
89,
615,
9,
83,
559,
62,
3019,
8,
1220,
6115,
62,
615,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
412,
62,
4703,
62,
5183,
58,
72,
11,
73,
11,
74,
11,
20,
60,
796,
357,
35138,
31554,
62,
87,
615,
9,
11181,
897,
220,
1343,
43030,
31554,
62,
88,
615,
9,
11181,
323,
220,
1343,
43030,
31554,
62,
89,
615,
9,
11181,
1031,
1267,
220,
1220,
6115,
62,
615,
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,
220,
220,
220,
220,
198,
220,
220,
220,
329,
1312,
287,
362,
25,
3846,
87,
9806,
532,
16,
198,
220,
220,
220,
220,
220,
220,
220,
329,
474,
287,
362,
25,
3846,
4948,
897,
10,
16,
532,
16,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
479,
287,
362,
25,
3846,
89,
9806,
532,
16,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
334,
62,
615,
796,
657,
13,
20,
9,
7,
48,
8692,
58,
72,
11,
73,
11,
74,
11,
17,
48688,
48,
8692,
58,
72,
11,
73,
12,
16,
11,
74,
11,
17,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
410,
62,
615,
796,
657,
13,
20,
9,
7,
48,
8692,
58,
72,
11,
73,
11,
74,
11,
18,
48688,
48,
8692,
58,
72,
11,
73,
12,
16,
11,
74,
11,
18,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
266,
62,
615,
796,
657,
13,
20,
9,
7,
48,
8692,
58,
72,
11,
73,
11,
74,
11,
19,
48688,
48,
8692,
58,
72,
11,
73,
12,
16,
11,
74,
11,
19,
12962,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
38779,
62,
615,
220,
220,
220,
220,
796,
657,
13,
20,
9,
7,
30300,
58,
72,
11,
73,
12,
16,
11,
74,
48688,
30300,
58,
72,
11,
73,
11,
74,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
37456,
62,
615,
796,
357,
15,
13,
20,
9,
7,
16,
14,
50033,
58,
72,
11,
73,
12,
16,
11,
74,
48688,
16,
14,
50033,
58,
72,
11,
73,
11,
74,
60,
4008,
61,
32590,
16,
8,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6115,
62,
615,
796,
657,
13,
20,
9,
7,
29048,
58,
72,
11,
73,
11,
74,
48688,
29048,
58,
72,
11,
73,
12,
16,
11,
74,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
288,
463,
29992,
796,
657,
13,
1495,
9,
7,
48,
8692,
58,
72,
10,
16,
11,
73,
11,
74,
11,
17,
60,
532,
1195,
8692,
58,
72,
12,
16,
11,
73,
11,
74,
11,
17,
60,
1343,
1195,
8692,
58,
72,
10,
16,
11,
73,
12,
16,
11,
74,
11,
17,
60,
532,
1195,
8692,
58,
72,
12,
16,
11,
73,
12,
16,
11,
74,
11,
17,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
288,
20306,
29992,
796,
657,
13,
1495,
9,
7,
48,
8692,
58,
72,
10,
16,
11,
73,
11,
74,
11,
18,
60,
532,
1195,
8692,
58,
72,
12,
16,
11,
73,
11,
74,
11,
18,
60,
1343,
1195,
8692,
58,
72,
10,
16,
11,
73,
12,
16,
11,
74,
11,
18,
60,
532,
1195,
8692,
58,
72,
12,
16,
11,
73,
12,
16,
11,
74,
11,
18,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
288,
16993,
29992,
796,
657,
13,
1495,
9,
7,
48,
8692,
58,
72,
10,
16,
11,
73,
11,
74,
11,
19,
60,
532,
1195,
8692,
58,
72,
12,
16,
11,
73,
11,
74,
11,
19,
60,
1343,
1195,
8692,
58,
72,
10,
16,
11,
73,
12,
16,
11,
74,
11,
19,
60,
532,
1195,
8692,
58,
72,
12,
16,
11,
73,
12,
16,
11,
74,
11,
19,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
288,
51,
67,
29992,
796,
657,
13,
1495,
9,
7,
220,
1195,
8692,
58,
72,
10,
16,
11,
73,
11,
74,
11,
19,
60,
14,
220,
357,
48,
8692,
58,
72,
10,
16,
11,
73,
11,
74,
11,
16,
60,
9,
49,
67,
8,
220,
220,
532,
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,
1195,
8692,
58,
72,
12,
16,
11,
73,
11,
74,
11,
19,
60,
14,
220,
357,
48,
8692,
58,
72,
12,
16,
11,
73,
11,
74,
11,
16,
60,
9,
49,
67,
8,
220,
220,
1343,
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,
1195,
8692,
58,
72,
10,
16,
11,
73,
12,
16,
11,
74,
11,
19,
60,
29006,
48,
8692,
58,
72,
10,
16,
11,
73,
12,
16,
11,
74,
11,
16,
60,
9,
49,
67,
8,
532,
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,
1195,
8692,
58,
72,
12,
16,
11,
73,
12,
16,
11,
74,
11,
19,
60,
29006,
48,
8692,
58,
72,
12,
16,
11,
73,
12,
16,
11,
74,
11,
16,
60,
9,
49,
67,
8,
1267,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
288,
463,
17167,
796,
1195,
8692,
58,
72,
11,
73,
11,
74,
11,
17,
45297,
48,
8692,
58,
72,
11,
73,
12,
16,
11,
74,
11,
17,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
288,
85,
15255,
64,
796,
1195,
8692,
58,
72,
11,
73,
11,
74,
11,
18,
45297,
48,
8692,
58,
72,
11,
73,
12,
16,
11,
74,
11,
18,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
43756,
15255,
64,
796,
1195,
8692,
58,
72,
11,
73,
11,
74,
11,
19,
45297,
48,
8692,
58,
72,
11,
73,
12,
16,
11,
74,
11,
19,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
288,
51,
15255,
64,
796,
357,
48,
8692,
58,
72,
11,
73,
11,
74,
11,
20,
60,
29006,
48,
8692,
58,
72,
11,
73,
11,
74,
11,
16,
60,
9,
49,
67,
8,
532,
1195,
8692,
58,
72,
11,
73,
12,
16,
11,
74,
11,
20,
60,
29006,
48,
8692,
58,
72,
11,
73,
12,
16,
11,
74,
11,
16,
60,
9,
49,
67,
4008,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
288,
463,
89,
17167,
796,
657,
13,
1495,
9,
7,
48,
8692,
58,
72,
11,
73,
11,
74,
10,
16,
11,
17,
60,
532,
1195,
8692,
58,
72,
11,
73,
11,
74,
12,
16,
11,
17,
60,
1343,
1195,
8692,
58,
72,
11,
73,
12,
16,
11,
74,
10,
16,
11,
17,
60,
532,
1195,
8692,
58,
72,
11,
73,
12,
16,
11,
74,
12,
16,
11,
17,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
288,
20306,
89,
17167,
796,
657,
13,
1495,
9,
7,
48,
8692,
58,
72,
11,
73,
11,
74,
10,
16,
11,
18,
60,
532,
1195,
8692,
58,
72,
11,
73,
11,
74,
12,
16,
11,
18,
60,
1343,
1195,
8692,
58,
72,
11,
73,
12,
16,
11,
74,
10,
16,
11,
18,
60,
532,
1195,
8692,
58,
72,
11,
73,
12,
16,
11,
74,
12,
16,
11,
18,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
288,
16993,
89,
17167,
796,
657,
13,
1495,
9,
7,
48,
8692,
58,
72,
11,
73,
11,
74,
10,
16,
11,
19,
60,
532,
1195,
8692,
58,
72,
11,
73,
11,
74,
12,
16,
11,
19,
60,
1343,
1195,
8692,
58,
72,
11,
73,
12,
16,
11,
74,
10,
16,
11,
19,
60,
532,
1195,
8692,
58,
72,
11,
73,
12,
16,
11,
74,
12,
16,
11,
19,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
288,
51,
67,
89,
17167,
796,
657,
13,
1495,
9,
7,
48,
8692,
58,
72,
11,
73,
11,
74,
10,
16,
11,
19,
60,
14,
220,
357,
48,
8692,
58,
72,
11,
73,
11,
74,
10,
16,
11,
16,
60,
9,
49,
67,
8,
220,
220,
532,
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,
1195,
8692,
58,
72,
11,
73,
11,
74,
12,
16,
11,
19,
60,
14,
220,
357,
48,
8692,
58,
72,
11,
73,
11,
74,
12,
16,
11,
16,
60,
9,
49,
67,
8,
220,
220,
1343,
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,
1195,
8692,
58,
72,
11,
73,
12,
16,
11,
74,
10,
16,
11,
19,
60,
29006,
48,
8692,
58,
72,
11,
73,
12,
16,
11,
74,
10,
16,
11,
16,
60,
9,
49,
67,
8,
532,
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,
1195,
8692,
58,
72,
11,
73,
12,
16,
11,
74,
12,
16,
11,
19,
60,
29006,
48,
8692,
58,
72,
11,
73,
12,
16,
11,
74,
12,
16,
11,
16,
60,
9,
49,
67,
8,
1267,
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,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
43030,
31554,
62,
87,
615,
796,
657,
13,
1495,
9,
7,
43030,
31554,
58,
72,
11,
73,
11,
74,
11,
16,
60,
1343,
43030,
31554,
58,
72,
10,
16,
11,
73,
11,
74,
11,
16,
60,
1343,
43030,
31554,
58,
72,
11,
73,
12,
16,
11,
74,
11,
16,
60,
1343,
43030,
31554,
58,
72,
10,
16,
11,
73,
12,
16,
11,
74,
11,
16,
60,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
43030,
31554,
62,
88,
615,
796,
657,
13,
1495,
9,
7,
43030,
31554,
58,
72,
11,
73,
11,
74,
11,
17,
60,
1343,
43030,
31554,
58,
72,
10,
16,
11,
73,
11,
74,
11,
17,
60,
1343,
43030,
31554,
58,
72,
11,
73,
12,
16,
11,
74,
11,
17,
60,
1343,
43030,
31554,
58,
72,
10,
16,
11,
73,
12,
16,
11,
74,
11,
17,
60,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
43030,
31554,
62,
89,
615,
796,
657,
13,
1495,
9,
7,
43030,
31554,
58,
72,
11,
73,
11,
74,
11,
18,
60,
1343,
43030,
31554,
58,
72,
10,
16,
11,
73,
11,
74,
11,
18,
60,
1343,
43030,
31554,
58,
72,
11,
73,
12,
16,
11,
74,
11,
18,
60,
1343,
43030,
31554,
58,
72,
10,
16,
11,
73,
12,
16,
11,
74,
11,
18,
60,
1267,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
43030,
42012,
62,
87,
615,
796,
43030,
42012,
58,
72,
11,
73,
11,
74,
11,
16,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
43030,
42012,
62,
88,
615,
796,
43030,
42012,
58,
72,
11,
73,
11,
74,
11,
17,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
43030,
42012,
62,
89,
615,
796,
43030,
42012,
58,
72,
11,
73,
11,
74,
11,
18,
60,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
43030,
26903,
62,
87,
615,
796,
657,
13,
1495,
9,
7,
43030,
26903,
58,
72,
11,
73,
11,
74,
11,
16,
60,
1343,
43030,
26903,
58,
72,
11,
73,
11,
74,
10,
16,
11,
16,
60,
1343,
43030,
26903,
58,
72,
11,
73,
12,
16,
11,
74,
11,
16,
60,
1343,
43030,
26903,
58,
72,
11,
73,
12,
16,
11,
74,
10,
16,
11,
16,
60,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
43030,
26903,
62,
88,
615,
796,
657,
13,
1495,
9,
7,
43030,
26903,
58,
72,
11,
73,
11,
74,
11,
17,
60,
1343,
43030,
26903,
58,
72,
11,
73,
11,
74,
10,
16,
11,
17,
60,
1343,
43030,
26903,
58,
72,
11,
73,
12,
16,
11,
74,
11,
17,
60,
1343,
43030,
26903,
58,
72,
11,
73,
12,
16,
11,
74,
10,
16,
11,
17,
60,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
43030,
26903,
62,
89,
615,
796,
657,
13,
1495,
9,
7,
43030,
26903,
58,
72,
11,
73,
11,
74,
11,
18,
60,
1343,
43030,
26903,
58,
72,
11,
73,
11,
74,
10,
16,
11,
18,
60,
1343,
43030,
26903,
58,
72,
11,
73,
12,
16,
11,
74,
11,
18,
60,
1343,
43030,
26903,
58,
72,
11,
73,
12,
16,
11,
74,
10,
16,
11,
18,
60,
1267,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
288,
463,
87,
796,
43030,
31554,
62,
87,
615,
9,
67,
463,
29992,
1343,
43030,
42012,
62,
87,
615,
9,
67,
463,
17167,
1343,
35138,
26903,
62,
87,
615,
9,
67,
463,
89,
17167,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
288,
463,
88,
796,
43030,
31554,
62,
88,
615,
9,
67,
463,
29992,
1343,
43030,
42012,
62,
88,
615,
9,
67,
463,
17167,
1343,
35138,
26903,
62,
88,
615,
9,
67,
463,
89,
17167,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
288,
463,
89,
796,
43030,
31554,
62,
89,
615,
9,
67,
463,
29992,
1343,
43030,
42012,
62,
89,
615,
9,
67,
463,
17167,
1343,
35138,
26903,
62,
89,
615,
9,
67,
463,
89,
17167,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
288,
20306,
87,
796,
43030,
31554,
62,
87,
615,
9,
67,
20306,
29992,
1343,
43030,
42012,
62,
87,
615,
9,
67,
85,
15255,
64,
1343,
35138,
26903,
62,
87,
615,
9,
67,
20306,
89,
17167,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
288,
85,
9892,
796,
43030,
31554,
62,
88,
615,
9,
67,
20306,
29992,
1343,
43030,
42012,
62,
88,
615,
9,
67,
85,
15255,
64,
1343,
35138,
26903,
62,
88,
615,
9,
67,
20306,
89,
17167,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
288,
20306,
89,
796,
43030,
31554,
62,
89,
615,
9,
67,
20306,
29992,
1343,
43030,
42012,
62,
89,
615,
9,
67,
85,
15255,
64,
1343,
35138,
26903,
62,
89,
615,
9,
67,
20306,
89,
17167,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
288,
16993,
87,
796,
43030,
31554,
62,
87,
615,
9,
67,
16993,
29992,
1343,
43030,
42012,
62,
87,
615,
9,
67,
86,
15255,
64,
1343,
35138,
26903,
62,
87,
615,
9,
67,
16993,
89,
17167,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
43756,
9892,
796,
43030,
31554,
62,
88,
615,
9,
67,
16993,
29992,
1343,
43030,
42012,
62,
88,
615,
9,
67,
86,
15255,
64,
1343,
35138,
26903,
62,
88,
615,
9,
67,
16993,
89,
17167,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
288,
16993,
89,
796,
43030,
31554,
62,
89,
615,
9,
67,
16993,
29992,
1343,
43030,
42012,
62,
89,
615,
9,
67,
86,
15255,
64,
1343,
35138,
26903,
62,
89,
615,
9,
67,
16993,
89,
17167,
198,
220,
220,
220,
220,
220,
220,
220,
220,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
256,
559,
62,
5324,
796,
362,
14,
18,
9,
30300,
62,
615,
9,
7,
17,
9,
67,
463,
87,
532,
288,
85,
9892,
532,
288,
16993,
89,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
256,
559,
62,
22556,
796,
362,
14,
18,
9,
30300,
62,
615,
9,
7,
17,
9,
67,
85,
9892,
532,
288,
16993,
89,
532,
288,
463,
87,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
256,
559,
62,
3019,
796,
362,
14,
18,
9,
30300,
62,
615,
9,
7,
17,
9,
67,
16993,
89,
532,
288,
463,
87,
532,
288,
85,
9892,
8,
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,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
256,
559,
62,
5431,
796,
38779,
62,
615,
9,
7,
67,
463,
88,
1343,
288,
20306,
87,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
256,
559,
62,
45579,
796,
38779,
62,
615,
9,
7,
67,
20306,
89,
1343,
43756,
9892,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
256,
559,
62,
42592,
796,
38779,
62,
615,
9,
7,
67,
16993,
87,
1343,
288,
463,
89,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
288,
51,
34350,
796,
43030,
31554,
62,
87,
615,
9,
67,
51,
67,
29992,
1343,
43030,
42012,
62,
87,
615,
9,
67,
51,
15255,
64,
1343,
43030,
26903,
62,
87,
615,
9,
67,
51,
67,
89,
17167,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
288,
51,
9892,
796,
43030,
31554,
62,
88,
615,
9,
67,
51,
67,
29992,
1343,
43030,
42012,
62,
88,
615,
9,
67,
51,
15255,
64,
1343,
43030,
26903,
62,
88,
615,
9,
67,
51,
67,
89,
17167,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
288,
51,
67,
89,
796,
43030,
31554,
62,
89,
615,
9,
67,
51,
67,
29992,
1343,
43030,
42012,
62,
89,
615,
9,
67,
51,
15255,
64,
1343,
43030,
26903,
62,
89,
615,
9,
67,
51,
67,
89,
17167,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
731,
897,
796,
334,
62,
615,
9,
83,
559,
62,
5324,
1343,
410,
62,
615,
9,
83,
559,
62,
5431,
1343,
266,
62,
615,
9,
83,
559,
62,
42592,
1343,
37456,
62,
615,
1635,
288,
51,
34350,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
731,
323,
796,
334,
62,
615,
9,
83,
559,
62,
5431,
1343,
410,
62,
615,
9,
83,
559,
62,
22556,
1343,
266,
62,
615,
9,
83,
559,
62,
45579,
1343,
37456,
62,
615,
1635,
288,
51,
9892,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
731,
1031,
796,
334,
62,
615,
9,
83,
559,
62,
42592,
1343,
410,
62,
615,
9,
83,
559,
62,
45579,
1343,
266,
62,
615,
9,
83,
559,
62,
3019,
1343,
37456,
62,
615,
1635,
288,
51,
67,
89,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
376,
62,
4703,
62,
5183,
58,
72,
11,
73,
11,
74,
11,
16,
60,
796,
657,
13,
15,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
376,
62,
4703,
62,
5183,
58,
72,
11,
73,
11,
74,
11,
17,
60,
796,
357,
35138,
42012,
62,
87,
615,
9,
83,
559,
62,
5324,
1343,
43030,
42012,
62,
88,
615,
9,
83,
559,
62,
5431,
1343,
43030,
42012,
62,
89,
615,
9,
83,
559,
62,
42592,
8,
1220,
6115,
62,
615,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
376,
62,
4703,
62,
5183,
58,
72,
11,
73,
11,
74,
11,
18,
60,
796,
357,
35138,
42012,
62,
87,
615,
9,
83,
559,
62,
5431,
1343,
43030,
42012,
62,
88,
615,
9,
83,
559,
62,
22556,
1343,
43030,
42012,
62,
89,
615,
9,
83,
559,
62,
45579,
8,
1220,
6115,
62,
615,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
376,
62,
4703,
62,
5183,
58,
72,
11,
73,
11,
74,
11,
19,
60,
796,
357,
35138,
42012,
62,
87,
615,
9,
83,
559,
62,
42592,
1343,
43030,
42012,
62,
88,
615,
9,
83,
559,
62,
45579,
1343,
43030,
42012,
62,
89,
615,
9,
83,
559,
62,
3019,
8,
1220,
6115,
62,
615,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
376,
62,
4703,
62,
5183,
58,
72,
11,
73,
11,
74,
11,
20,
60,
796,
357,
35138,
42012,
62,
87,
615,
9,
11181,
897,
220,
1343,
43030,
42012,
62,
88,
615,
9,
11181,
323,
220,
1343,
43030,
42012,
62,
89,
615,
9,
11181,
1031,
1267,
1220,
6115,
62,
615,
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,
198,
220,
220,
220,
329,
1312,
287,
362,
25,
3846,
87,
9806,
532,
16,
198,
220,
220,
220,
220,
220,
220,
220,
329,
474,
287,
362,
25,
3846,
4948,
897,
532,
16,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
479,
287,
362,
25,
3846,
89,
9806,
10,
16,
532,
16,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
334,
62,
615,
796,
657,
13,
20,
9,
7,
48,
8692,
58,
72,
11,
73,
11,
74,
11,
17,
48688,
48,
8692,
58,
72,
11,
73,
11,
74,
12,
16,
11,
17,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
410,
62,
615,
796,
657,
13,
20,
9,
7,
48,
8692,
58,
72,
11,
73,
11,
74,
11,
18,
48688,
48,
8692,
58,
72,
11,
73,
11,
74,
12,
16,
11,
18,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
266,
62,
615,
796,
657,
13,
20,
9,
7,
48,
8692,
58,
72,
11,
73,
11,
74,
11,
19,
48688,
48,
8692,
58,
72,
11,
73,
11,
74,
12,
16,
11,
19,
12962,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
38779,
62,
615,
220,
220,
220,
220,
796,
657,
13,
20,
9,
7,
30300,
58,
72,
11,
73,
11,
74,
12,
16,
48688,
30300,
58,
72,
11,
73,
11,
74,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
37456,
62,
615,
796,
357,
15,
13,
20,
9,
7,
16,
14,
50033,
58,
72,
11,
73,
11,
74,
12,
16,
48688,
16,
14,
50033,
58,
72,
11,
73,
11,
74,
60,
4008,
61,
32590,
16,
8,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6115,
62,
615,
796,
657,
13,
20,
9,
7,
29048,
58,
72,
11,
73,
11,
74,
48688,
29048,
58,
72,
11,
73,
11,
74,
12,
16,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
288,
463,
29992,
796,
657,
13,
1495,
9,
7,
48,
8692,
58,
72,
10,
16,
11,
73,
11,
74,
11,
17,
60,
532,
1195,
8692,
58,
72,
12,
16,
11,
73,
11,
74,
11,
17,
60,
1343,
1195,
8692,
58,
72,
10,
16,
11,
73,
11,
74,
12,
16,
11,
17,
60,
532,
1195,
8692,
58,
72,
12,
16,
11,
73,
11,
74,
12,
16,
11,
17,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
288,
20306,
29992,
796,
657,
13,
1495,
9,
7,
48,
8692,
58,
72,
10,
16,
11,
73,
11,
74,
11,
18,
60,
532,
1195,
8692,
58,
72,
12,
16,
11,
73,
11,
74,
11,
18,
60,
1343,
1195,
8692,
58,
72,
10,
16,
11,
73,
11,
74,
12,
16,
11,
18,
60,
532,
1195,
8692,
58,
72,
12,
16,
11,
73,
11,
74,
12,
16,
11,
18,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
288,
16993,
29992,
796,
657,
13,
1495,
9,
7,
48,
8692,
58,
72,
10,
16,
11,
73,
11,
74,
11,
19,
60,
532,
1195,
8692,
58,
72,
12,
16,
11,
73,
11,
74,
11,
19,
60,
1343,
1195,
8692,
58,
72,
10,
16,
11,
73,
11,
74,
12,
16,
11,
19,
60,
532,
1195,
8692,
58,
72,
12,
16,
11,
73,
11,
74,
12,
16,
11,
19,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
288,
51,
67,
29992,
796,
657,
13,
1495,
9,
7,
220,
1195,
8692,
58,
72,
10,
16,
11,
73,
11,
74,
11,
19,
60,
14,
220,
357,
48,
8692,
58,
72,
10,
16,
11,
73,
11,
74,
11,
16,
60,
9,
49,
67,
8,
220,
220,
532,
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,
1195,
8692,
58,
72,
12,
16,
11,
73,
11,
74,
11,
19,
60,
14,
220,
357,
48,
8692,
58,
72,
12,
16,
11,
73,
11,
74,
11,
16,
60,
9,
49,
67,
8,
220,
220,
1343,
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,
1195,
8692,
58,
72,
10,
16,
11,
73,
11,
74,
12,
16,
11,
19,
60,
29006,
48,
8692,
58,
72,
10,
16,
11,
73,
11,
74,
12,
16,
11,
16,
60,
9,
49,
67,
8,
532,
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,
1195,
8692,
58,
72,
12,
16,
11,
73,
11,
74,
12,
16,
11,
19,
60,
29006,
48,
8692,
58,
72,
12,
16,
11,
73,
11,
74,
12,
16,
11,
16,
60,
9,
49,
67,
8,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
288,
463,
17167,
796,
657,
13,
1495,
9,
7,
48,
8692,
58,
72,
11,
73,
10,
16,
11,
74,
11,
17,
60,
532,
1195,
8692,
58,
72,
11,
73,
12,
16,
11,
74,
11,
17,
60,
1343,
1195,
8692,
58,
72,
11,
73,
10,
16,
11,
74,
12,
16,
11,
17,
60,
532,
1195,
8692,
58,
72,
11,
73,
12,
16,
11,
74,
12,
16,
11,
17,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
288,
85,
15255,
64,
796,
657,
13,
1495,
9,
7,
48,
8692,
58,
72,
11,
73,
10,
16,
11,
74,
11,
18,
60,
532,
1195,
8692,
58,
72,
11,
73,
12,
16,
11,
74,
11,
18,
60,
1343,
1195,
8692,
58,
72,
11,
73,
10,
16,
11,
74,
12,
16,
11,
18,
60,
532,
1195,
8692,
58,
72,
11,
73,
12,
16,
11,
74,
12,
16,
11,
18,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
43756,
15255,
64,
796,
657,
13,
1495,
9,
7,
48,
8692,
58,
72,
11,
73,
10,
16,
11,
74,
11,
19,
60,
532,
1195,
8692,
58,
72,
11,
73,
12,
16,
11,
74,
11,
19,
60,
1343,
1195,
8692,
58,
72,
11,
73,
10,
16,
11,
74,
12,
16,
11,
19,
60,
532,
1195,
8692,
58,
72,
11,
73,
12,
16,
11,
74,
12,
16,
11,
19,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
288,
51,
15255,
64,
796,
657,
13,
1495,
9,
7,
1195,
8692,
58,
72,
11,
73,
10,
16,
11,
74,
11,
19,
60,
14,
220,
357,
48,
8692,
58,
72,
11,
73,
10,
16,
11,
74,
11,
16,
60,
9,
49,
67,
8,
220,
220,
532,
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,
1195,
8692,
58,
72,
11,
73,
12,
16,
11,
74,
11,
19,
60,
14,
220,
357,
48,
8692,
58,
72,
11,
73,
12,
16,
11,
74,
11,
16,
60,
9,
49,
67,
8,
220,
220,
1343,
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,
1195,
8692,
58,
72,
11,
73,
10,
16,
11,
74,
12,
16,
11,
19,
60,
29006,
48,
8692,
58,
72,
11,
73,
10,
16,
11,
74,
12,
16,
11,
16,
60,
9,
49,
67,
8,
532,
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,
1195,
8692,
58,
72,
11,
73,
12,
16,
11,
74,
12,
16,
11,
19,
60,
29006,
48,
8692,
58,
72,
11,
73,
12,
16,
11,
74,
12,
16,
11,
16,
60,
9,
49,
67,
8,
1267,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
288,
463,
89,
17167,
796,
1195,
8692,
58,
72,
11,
73,
11,
74,
11,
17,
45297,
48,
8692,
58,
72,
11,
73,
11,
74,
12,
16,
11,
17,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
288,
20306,
89,
17167,
796,
1195,
8692,
58,
72,
11,
73,
11,
74,
11,
18,
45297,
48,
8692,
58,
72,
11,
73,
11,
74,
12,
16,
11,
18,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
288,
16993,
89,
17167,
796,
1195,
8692,
58,
72,
11,
73,
11,
74,
11,
19,
45297,
48,
8692,
58,
72,
11,
73,
11,
74,
12,
16,
11,
19,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
288,
51,
67,
89,
17167,
796,
357,
48,
8692,
58,
72,
11,
73,
11,
74,
11,
20,
60,
29006,
48,
8692,
58,
72,
11,
73,
11,
74,
11,
16,
60,
9,
49,
67,
8,
532,
1195,
8692,
58,
72,
11,
73,
11,
74,
12,
16,
11,
20,
60,
29006,
48,
8692,
58,
72,
11,
73,
11,
74,
12,
16,
11,
16,
60,
9,
49,
67,
4008,
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,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
43030,
31554,
62,
87,
615,
796,
657,
13,
1495,
9,
7,
43030,
31554,
58,
72,
11,
73,
11,
74,
11,
16,
60,
1343,
43030,
31554,
58,
72,
10,
16,
11,
73,
11,
74,
11,
16,
60,
1343,
43030,
31554,
58,
72,
11,
73,
11,
74,
12,
16,
11,
16,
60,
1343,
43030,
31554,
58,
72,
10,
16,
11,
73,
11,
74,
12,
16,
11,
16,
60,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
43030,
31554,
62,
88,
615,
796,
657,
13,
1495,
9,
7,
43030,
31554,
58,
72,
11,
73,
11,
74,
11,
17,
60,
1343,
43030,
31554,
58,
72,
10,
16,
11,
73,
11,
74,
11,
17,
60,
1343,
43030,
31554,
58,
72,
11,
73,
11,
74,
12,
16,
11,
17,
60,
1343,
43030,
31554,
58,
72,
10,
16,
11,
73,
11,
74,
12,
16,
11,
17,
60,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
43030,
31554,
62,
89,
615,
796,
657,
13,
1495,
9,
7,
43030,
31554,
58,
72,
11,
73,
11,
74,
11,
18,
60,
1343,
43030,
31554,
58,
72,
10,
16,
11,
73,
11,
74,
11,
18,
60,
1343,
43030,
31554,
58,
72,
11,
73,
11,
74,
12,
16,
11,
18,
60,
1343,
43030,
31554,
58,
72,
10,
16,
11,
73,
11,
74,
12,
16,
11,
18,
60,
1267,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
43030,
42012,
62,
87,
615,
796,
657,
13,
1495,
9,
7,
43030,
42012,
58,
72,
11,
73,
11,
74,
11,
16,
60,
1343,
43030,
42012,
58,
72,
11,
73,
10,
16,
11,
74,
11,
16,
60,
1343,
43030,
42012,
58,
72,
11,
73,
11,
74,
12,
16,
11,
16,
60,
1343,
43030,
42012,
58,
72,
11,
73,
10,
16,
11,
74,
12,
16,
11,
16,
60,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
43030,
42012,
62,
88,
615,
796,
657,
13,
1495,
9,
7,
43030,
42012,
58,
72,
11,
73,
11,
74,
11,
17,
60,
1343,
43030,
42012,
58,
72,
11,
73,
10,
16,
11,
74,
11,
17,
60,
1343,
43030,
42012,
58,
72,
11,
73,
11,
74,
12,
16,
11,
17,
60,
1343,
43030,
42012,
58,
72,
11,
73,
10,
16,
11,
74,
12,
16,
11,
17,
60,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
43030,
42012,
62,
89,
615,
796,
657,
13,
1495,
9,
7,
43030,
42012,
58,
72,
11,
73,
11,
74,
11,
18,
60,
1343,
43030,
42012,
58,
72,
11,
73,
10,
16,
11,
74,
11,
18,
60,
1343,
43030,
42012,
58,
72,
11,
73,
11,
74,
12,
16,
11,
18,
60,
1343,
43030,
42012,
58,
72,
11,
73,
10,
16,
11,
74,
12,
16,
11,
18,
60,
1267,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
43030,
26903,
62,
87,
615,
796,
43030,
26903,
58,
72,
11,
73,
11,
74,
11,
16,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
43030,
26903,
62,
88,
615,
796,
43030,
26903,
58,
72,
11,
73,
11,
74,
11,
17,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
43030,
26903,
62,
89,
615,
796,
43030,
26903,
58,
72,
11,
73,
11,
74,
11,
18,
60,
628,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
288,
463,
87,
796,
43030,
31554,
62,
87,
615,
9,
67,
463,
29992,
1343,
43030,
42012,
62,
87,
615,
9,
67,
463,
17167,
1343,
35138,
26903,
62,
87,
615,
9,
67,
463,
89,
17167,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
288,
463,
88,
796,
43030,
31554,
62,
88,
615,
9,
67,
463,
29992,
1343,
43030,
42012,
62,
88,
615,
9,
67,
463,
17167,
1343,
35138,
26903,
62,
88,
615,
9,
67,
463,
89,
17167,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
288,
463,
89,
796,
43030,
31554,
62,
89,
615,
9,
67,
463,
29992,
1343,
43030,
42012,
62,
89,
615,
9,
67,
463,
17167,
1343,
35138,
26903,
62,
89,
615,
9,
67,
463,
89,
17167,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
288,
20306,
87,
796,
43030,
31554,
62,
87,
615,
9,
67,
20306,
29992,
1343,
43030,
42012,
62,
87,
615,
9,
67,
85,
15255,
64,
1343,
35138,
26903,
62,
87,
615,
9,
67,
20306,
89,
17167,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
288,
85,
9892,
796,
43030,
31554,
62,
88,
615,
9,
67,
20306,
29992,
1343,
43030,
42012,
62,
88,
615,
9,
67,
85,
15255,
64,
1343,
35138,
26903,
62,
88,
615,
9,
67,
20306,
89,
17167,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
288,
20306,
89,
796,
43030,
31554,
62,
89,
615,
9,
67,
20306,
29992,
1343,
43030,
42012,
62,
89,
615,
9,
67,
85,
15255,
64,
1343,
35138,
26903,
62,
89,
615,
9,
67,
20306,
89,
17167,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
288,
16993,
87,
796,
43030,
31554,
62,
87,
615,
9,
67,
16993,
29992,
1343,
43030,
42012,
62,
87,
615,
9,
67,
86,
15255,
64,
1343,
35138,
26903,
62,
87,
615,
9,
67,
16993,
89,
17167,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
43756,
9892,
796,
43030,
31554,
62,
88,
615,
9,
67,
16993,
29992,
1343,
43030,
42012,
62,
88,
615,
9,
67,
86,
15255,
64,
1343,
35138,
26903,
62,
88,
615,
9,
67,
16993,
89,
17167,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
288,
16993,
89,
796,
43030,
31554,
62,
89,
615,
9,
67,
16993,
29992,
1343,
43030,
42012,
62,
89,
615,
9,
67,
86,
15255,
64,
1343,
35138,
26903,
62,
89,
615,
9,
67,
16993,
89,
17167,
198,
220,
220,
220,
220,
220,
220,
220,
220,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
256,
559,
62,
5324,
796,
362,
14,
18,
9,
30300,
62,
615,
9,
7,
17,
9,
67,
463,
87,
532,
288,
85,
9892,
532,
288,
16993,
89,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
256,
559,
62,
22556,
796,
362,
14,
18,
9,
30300,
62,
615,
9,
7,
17,
9,
67,
85,
9892,
532,
288,
16993,
89,
532,
288,
463,
87,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
256,
559,
62,
3019,
796,
362,
14,
18,
9,
30300,
62,
615,
9,
7,
17,
9,
67,
16993,
89,
532,
288,
463,
87,
532,
288,
85,
9892,
8,
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,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
256,
559,
62,
5431,
796,
38779,
62,
615,
9,
7,
67,
463,
88,
1343,
288,
20306,
87,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
256,
559,
62,
45579,
796,
38779,
62,
615,
9,
7,
67,
20306,
89,
1343,
43756,
9892,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
256,
559,
62,
42592,
796,
38779,
62,
615,
9,
7,
67,
16993,
87,
1343,
288,
463,
89,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
288,
51,
34350,
796,
43030,
31554,
62,
87,
615,
9,
67,
51,
67,
29992,
1343,
43030,
42012,
62,
87,
615,
9,
67,
51,
15255,
64,
1343,
43030,
26903,
62,
87,
615,
9,
67,
51,
67,
89,
17167,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
288,
51,
9892,
796,
43030,
31554,
62,
88,
615,
9,
67,
51,
67,
29992,
1343,
43030,
42012,
62,
88,
615,
9,
67,
51,
15255,
64,
1343,
43030,
26903,
62,
88,
615,
9,
67,
51,
67,
89,
17167,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
288,
51,
67,
89,
796,
43030,
31554,
62,
89,
615,
9,
67,
51,
67,
29992,
1343,
43030,
42012,
62,
89,
615,
9,
67,
51,
15255,
64,
1343,
43030,
26903,
62,
89,
615,
9,
67,
51,
67,
89,
17167,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
731,
897,
796,
334,
62,
615,
9,
83,
559,
62,
5324,
1343,
410,
62,
615,
9,
83,
559,
62,
5431,
1343,
266,
62,
615,
9,
83,
559,
62,
42592,
1343,
37456,
62,
615,
1635,
288,
51,
34350,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
731,
323,
796,
334,
62,
615,
9,
83,
559,
62,
5431,
1343,
410,
62,
615,
9,
83,
559,
62,
22556,
1343,
266,
62,
615,
9,
83,
559,
62,
45579,
1343,
37456,
62,
615,
1635,
288,
51,
9892,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
731,
1031,
796,
334,
62,
615,
9,
83,
559,
62,
42592,
1343,
410,
62,
615,
9,
83,
559,
62,
45579,
1343,
266,
62,
615,
9,
83,
559,
62,
3019,
1343,
37456,
62,
615,
1635,
288,
51,
67,
89,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
402,
62,
4703,
62,
5183,
58,
72,
11,
73,
11,
74,
11,
16,
60,
796,
657,
13,
15,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
402,
62,
4703,
62,
5183,
58,
72,
11,
73,
11,
74,
11,
17,
60,
796,
357,
35138,
26903,
62,
87,
615,
9,
83,
559,
62,
5324,
1343,
43030,
26903,
62,
88,
615,
9,
83,
559,
62,
5431,
1343,
43030,
26903,
62,
89,
615,
9,
83,
559,
62,
42592,
8,
1220,
6115,
62,
615,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
402,
62,
4703,
62,
5183,
58,
72,
11,
73,
11,
74,
11,
18,
60,
796,
357,
35138,
26903,
62,
87,
615,
9,
83,
559,
62,
5431,
1343,
43030,
26903,
62,
88,
615,
9,
83,
559,
62,
22556,
1343,
43030,
26903,
62,
89,
615,
9,
83,
559,
62,
45579,
8,
1220,
6115,
62,
615,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
402,
62,
4703,
62,
5183,
58,
72,
11,
73,
11,
74,
11,
19,
60,
796,
357,
35138,
26903,
62,
87,
615,
9,
83,
559,
62,
42592,
1343,
43030,
26903,
62,
88,
615,
9,
83,
559,
62,
45579,
1343,
43030,
26903,
62,
89,
615,
9,
83,
559,
62,
3019,
8,
1220,
6115,
62,
615,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
402,
62,
4703,
62,
5183,
58,
72,
11,
73,
11,
74,
11,
20,
60,
796,
357,
35138,
26903,
62,
87,
615,
9,
11181,
897,
220,
1343,
43030,
26903,
62,
88,
615,
9,
11181,
323,
220,
1343,
43030,
26903,
62,
89,
615,
9,
11181,
1031,
1267,
1220,
6115,
62,
615,
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,
198,
220,
220,
220,
1441,
412,
62,
4703,
62,
5183,
11,
376,
62,
4703,
62,
5183,
11,
402,
62,
4703,
62,
5183,
198,
437,
198
] | 1.356213 | 11,291 |
using Base.Broadcast: broadcasted
bstyle = Base.Broadcast.DefaultArrayStyle{1}()
@testset "broadcast" begin
for (mr,br,sr) in ((OneToMRange(10), OneTo(10), OneToSRange(10)),
(UnitMRange(1, 10), UnitRange(1, 10), UnitSRange(1, 10)),
(StepMRange(1, 1, 10), StepRange(1, 1, 10), StepSRange(1, 1, 10)),
(LinMRange(1, 10, 10), LinRange(1, 10, 10), LinSRange(1, 10, 10)),
(StepMRangeLen(1., 1., 10), StepRangeLen(1., 1., 10), StepSRangeLen(1., 1., 10))
)
@test broadcasted(bstyle, +, mr) == broadcast(+, br)
@test broadcasted(bstyle, +, sr) == broadcast(+, br)
@test broadcasted(bstyle, -, mr) == broadcast(-, br)
@test broadcasted(bstyle, -, sr) == broadcast(-, br)
@test broadcasted(bstyle, +, 1, mr) == broadcast(+, 1, br)
@test broadcasted(bstyle, +, 1, sr) == broadcast(+, 1, br)
@test broadcasted(bstyle, -, 1, mr) == broadcast(-, 1, br)
@test broadcasted(bstyle, -, 1, sr) == broadcast(-, 1, br)
@test broadcasted(bstyle, +, mr, 1) == broadcast(+, br, 1)
@test broadcasted(bstyle, +, sr, 1) == broadcast(+, br, 1)
@test broadcasted(bstyle, -, mr, 1) == broadcast(-, br, 1)
@test broadcasted(bstyle, -, sr, 1) == broadcast(-, br, 1)
@test broadcasted(bstyle, *, 1, mr) == broadcast(*, 1, br)
@test broadcasted(bstyle, *, 1, sr) == broadcast(*, 1, br)
@test broadcasted(bstyle, *, mr, 1) == broadcast(*, br, 1)
@test broadcasted(bstyle, *, sr, 1) == broadcast(*, br, 1)
@test broadcasted(bstyle, \, 1, mr) == broadcast(\, 1, br)
@test broadcasted(bstyle, \, 1, sr) == broadcast(\, 1, br)
@test /(mr, 2) == /(br, 2)
@test /(sr, 2) == /(br, 2)
@test -(mr, (2 .* br)) == -(br, (2 .* br))
@test -(sr, (2 .* br)) == -(br, (2 .* br))
@test -((2 .* br), mr) == -((2 .* br), br)
@test -((2 .* br), sr) == -((2 .* br), br)
@test +(mr, (1 .+ br)) == +(br, (1 .+ br))
@test +(sr, (1 .+ br)) == +(br, (1 .+ br))
@test +((1 .+ br), mr) == +((1 .+ br), br)
@test +((1 .+ br), sr) == +((1 .+ br), br)
@test *(mr, 2) == *(sr, 2) == *(br, 2)
@test *(2, mr) == *(2, sr) == *(2, br)
end
end
| [
3500,
7308,
13,
30507,
2701,
25,
7025,
276,
198,
65,
7635,
796,
7308,
13,
30507,
2701,
13,
19463,
19182,
21466,
90,
16,
92,
3419,
198,
198,
31,
9288,
2617,
366,
36654,
2701,
1,
2221,
198,
220,
220,
220,
329,
357,
43395,
11,
1671,
11,
27891,
8,
287,
14808,
3198,
2514,
13599,
858,
7,
940,
828,
220,
220,
220,
220,
220,
220,
220,
220,
1881,
2514,
7,
940,
828,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1881,
2514,
12562,
858,
7,
940,
36911,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
357,
26453,
13599,
858,
7,
16,
11,
838,
828,
220,
220,
220,
220,
220,
220,
11801,
17257,
7,
16,
11,
838,
828,
220,
220,
220,
220,
220,
220,
11801,
12562,
858,
7,
16,
11,
838,
36911,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
357,
8600,
13599,
858,
7,
16,
11,
352,
11,
838,
828,
220,
220,
220,
5012,
17257,
7,
16,
11,
352,
11,
838,
828,
220,
220,
220,
5012,
12562,
858,
7,
16,
11,
352,
11,
838,
36911,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
357,
14993,
13599,
858,
7,
16,
11,
838,
11,
838,
828,
220,
220,
220,
5164,
17257,
7,
16,
11,
838,
11,
838,
828,
220,
220,
220,
5164,
12562,
858,
7,
16,
11,
838,
11,
838,
36911,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
357,
8600,
13599,
858,
30659,
7,
16,
1539,
352,
1539,
838,
828,
5012,
17257,
30659,
7,
16,
1539,
352,
1539,
838,
828,
5012,
12562,
858,
30659,
7,
16,
1539,
352,
1539,
838,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
2488,
9288,
7025,
276,
7,
65,
7635,
11,
1343,
11,
285,
81,
8,
6624,
7025,
7,
28200,
865,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2488,
9288,
7025,
276,
7,
65,
7635,
11,
1343,
11,
19677,
8,
6624,
7025,
7,
28200,
865,
8,
628,
220,
220,
220,
220,
220,
220,
220,
2488,
9288,
7025,
276,
7,
65,
7635,
11,
532,
11,
285,
81,
8,
6624,
220,
7025,
7,
20995,
865,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2488,
9288,
7025,
276,
7,
65,
7635,
11,
532,
11,
19677,
8,
6624,
220,
7025,
7,
20995,
865,
8,
628,
220,
220,
220,
220,
220,
220,
220,
2488,
9288,
7025,
276,
7,
65,
7635,
11,
1343,
11,
352,
11,
285,
81,
8,
6624,
7025,
7,
28200,
352,
11,
865,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2488,
9288,
7025,
276,
7,
65,
7635,
11,
1343,
11,
352,
11,
19677,
8,
6624,
7025,
7,
28200,
352,
11,
865,
8,
628,
220,
220,
220,
220,
220,
220,
220,
2488,
9288,
7025,
276,
7,
65,
7635,
11,
532,
11,
352,
11,
285,
81,
8,
6624,
7025,
7,
20995,
352,
11,
865,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2488,
9288,
7025,
276,
7,
65,
7635,
11,
532,
11,
352,
11,
19677,
8,
6624,
7025,
7,
20995,
352,
11,
865,
8,
628,
220,
220,
220,
220,
220,
220,
220,
2488,
9288,
7025,
276,
7,
65,
7635,
11,
1343,
11,
285,
81,
11,
352,
8,
6624,
7025,
7,
28200,
865,
11,
352,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2488,
9288,
7025,
276,
7,
65,
7635,
11,
1343,
11,
19677,
11,
352,
8,
6624,
7025,
7,
28200,
865,
11,
352,
8,
628,
220,
220,
220,
220,
220,
220,
220,
2488,
9288,
7025,
276,
7,
65,
7635,
11,
532,
11,
285,
81,
11,
352,
8,
220,
6624,
7025,
7,
20995,
865,
11,
352,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2488,
9288,
7025,
276,
7,
65,
7635,
11,
532,
11,
19677,
11,
352,
8,
220,
6624,
7025,
7,
20995,
865,
11,
352,
8,
628,
220,
220,
220,
220,
220,
220,
220,
2488,
9288,
7025,
276,
7,
65,
7635,
11,
1635,
11,
352,
11,
285,
81,
8,
6624,
7025,
7,
25666,
352,
11,
865,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2488,
9288,
7025,
276,
7,
65,
7635,
11,
1635,
11,
352,
11,
19677,
8,
6624,
7025,
7,
25666,
352,
11,
865,
8,
628,
220,
220,
220,
220,
220,
220,
220,
2488,
9288,
7025,
276,
7,
65,
7635,
11,
1635,
11,
285,
81,
11,
352,
8,
6624,
7025,
7,
25666,
865,
11,
352,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2488,
9288,
7025,
276,
7,
65,
7635,
11,
1635,
11,
19677,
11,
352,
8,
6624,
7025,
7,
25666,
865,
11,
352,
8,
628,
220,
220,
220,
220,
220,
220,
220,
2488,
9288,
7025,
276,
7,
65,
7635,
11,
3467,
11,
352,
11,
285,
81,
8,
6624,
7025,
38016,
11,
352,
11,
865,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2488,
9288,
7025,
276,
7,
65,
7635,
11,
3467,
11,
352,
11,
19677,
8,
6624,
7025,
38016,
11,
352,
11,
865,
8,
628,
220,
220,
220,
220,
220,
220,
220,
2488,
9288,
1220,
7,
43395,
11,
362,
8,
6624,
1220,
7,
1671,
11,
362,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2488,
9288,
1220,
7,
27891,
11,
362,
8,
6624,
1220,
7,
1671,
11,
362,
8,
628,
220,
220,
220,
220,
220,
220,
220,
2488,
9288,
532,
7,
43395,
11,
357,
17,
764,
9,
865,
4008,
6624,
532,
7,
1671,
11,
357,
17,
764,
9,
865,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
2488,
9288,
532,
7,
27891,
11,
357,
17,
764,
9,
865,
4008,
6624,
532,
7,
1671,
11,
357,
17,
764,
9,
865,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
2488,
9288,
532,
19510,
17,
764,
9,
865,
828,
285,
81,
8,
6624,
532,
19510,
17,
764,
9,
865,
828,
865,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2488,
9288,
532,
19510,
17,
764,
9,
865,
828,
19677,
8,
6624,
532,
19510,
17,
764,
9,
865,
828,
865,
8,
628,
220,
220,
220,
220,
220,
220,
220,
2488,
9288,
1343,
7,
43395,
11,
357,
16,
764,
10,
865,
4008,
6624,
1343,
7,
1671,
11,
357,
16,
764,
10,
865,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
2488,
9288,
1343,
7,
27891,
11,
357,
16,
764,
10,
865,
4008,
6624,
1343,
7,
1671,
11,
357,
16,
764,
10,
865,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
2488,
9288,
1343,
19510,
16,
764,
10,
865,
828,
285,
81,
8,
6624,
1343,
19510,
16,
764,
10,
865,
828,
865,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2488,
9288,
1343,
19510,
16,
764,
10,
865,
828,
19677,
8,
6624,
1343,
19510,
16,
764,
10,
865,
828,
865,
8,
628,
220,
220,
220,
220,
220,
220,
220,
2488,
9288,
1635,
7,
43395,
11,
362,
8,
6624,
1635,
7,
27891,
11,
362,
8,
6624,
1635,
7,
1671,
11,
362,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2488,
9288,
1635,
7,
17,
11,
285,
81,
8,
6624,
1635,
7,
17,
11,
19677,
8,
6624,
1635,
7,
17,
11,
865,
8,
198,
220,
220,
220,
886,
198,
437,
198
] | 1.934572 | 1,238 |
@testset "BidAsk functions" begin
dt = DateTime(2000, 1, 1)
ba = BidAsk(dt, 500.0, 501.1)
@test midprice(ba) == (500.0 + 501.1)/2
@test midprice(500.0, 501.1) == (500.0 + 501.1)/2
@test spread(ba) == 501.1 - 500.0
@test spread(500.0, 501.1) == 501.1 - 500.0
end
| [
31,
9288,
2617,
366,
33,
312,
25214,
5499,
1,
2221,
198,
220,
220,
220,
288,
83,
796,
7536,
7575,
7,
11024,
11,
352,
11,
352,
8,
198,
220,
220,
220,
26605,
796,
43484,
25214,
7,
28664,
11,
5323,
13,
15,
11,
24555,
13,
16,
8,
628,
220,
220,
220,
2488,
9288,
3095,
20888,
7,
7012,
8,
6624,
357,
4059,
13,
15,
1343,
24555,
13,
16,
20679,
17,
198,
220,
220,
220,
2488,
9288,
3095,
20888,
7,
4059,
13,
15,
11,
24555,
13,
16,
8,
6624,
357,
4059,
13,
15,
1343,
24555,
13,
16,
20679,
17,
628,
220,
220,
220,
2488,
9288,
4104,
7,
7012,
8,
6624,
24555,
13,
16,
532,
5323,
13,
15,
198,
220,
220,
220,
2488,
9288,
4104,
7,
4059,
13,
15,
11,
24555,
13,
16,
8,
6624,
24555,
13,
16,
532,
5323,
13,
15,
198,
437,
198
] | 2.057143 | 140 |
using ApproxTools
using Test
using LinearAlgebra
const BitsFloats = (Float32,Float64)
const Floats = (BitsFloats..., BigFloat)
const Reals = (Int, Floats...)
rnc(reals::Type) = (reals,complex.(reals))
rnc(reals::Tuple) = (reals...,complex.(reals)...)
include("tucker.jl")
include("grideval.jl")
include("LogNumbers.jl")
include("LinearCombinations.jl")
include("approximate.jl")
include("inner_products.jl")
include("points/ChebyshevPoints.jl")
include("points/Midpoints.jl")
include("points/TrapezoidalPoints.jl")
include("bases.jl")
| [
3500,
2034,
13907,
33637,
198,
198,
3500,
6208,
198,
3500,
44800,
2348,
29230,
198,
198,
9979,
44733,
33574,
1381,
796,
357,
43879,
2624,
11,
43879,
2414,
8,
198,
9979,
29075,
1381,
796,
357,
33,
896,
33574,
1381,
986,
11,
4403,
43879,
8,
198,
9979,
797,
874,
796,
357,
5317,
11,
29075,
1381,
23029,
198,
81,
10782,
7,
260,
874,
3712,
6030,
8,
796,
357,
260,
874,
11,
41887,
12195,
260,
874,
4008,
198,
81,
10782,
7,
260,
874,
3712,
51,
29291,
8,
796,
357,
260,
874,
986,
11,
41887,
12195,
260,
874,
8,
23029,
198,
198,
17256,
7203,
83,
12603,
13,
20362,
4943,
198,
17256,
7203,
2164,
485,
2100,
13,
20362,
4943,
198,
17256,
7203,
11187,
49601,
13,
20362,
4943,
198,
17256,
7203,
14993,
451,
20575,
7352,
13,
20362,
4943,
198,
17256,
7203,
1324,
13907,
1920,
13,
20362,
4943,
198,
17256,
7203,
5083,
62,
29498,
13,
20362,
4943,
198,
17256,
7203,
13033,
14,
7376,
48209,
258,
85,
40710,
13,
20362,
4943,
198,
17256,
7203,
13033,
14,
22622,
13033,
13,
20362,
4943,
198,
17256,
7203,
13033,
14,
51,
13484,
89,
47502,
40710,
13,
20362,
4943,
198,
17256,
7203,
65,
1386,
13,
20362,
4943,
198
] | 2.787565 | 193 |
# L2 DistLoss
#Pkg.add("Latexify")
using LossFunctions
using LaTeXStrings, Measures, Latexify
gr(bg=:white)
l2fn = "L(r)=r^2"
l2dist = latexify(l2fn)
Plots.plot(L2DistLoss(), c=:olive, linewidth=2, annotation=(1, 3.3, L"L\left( r \right) = |r^{2}|", 18))
| [
2,
406,
17,
4307,
43,
793,
198,
2,
47,
10025,
13,
2860,
7203,
26302,
87,
1958,
4943,
198,
198,
3500,
22014,
24629,
2733,
198,
3500,
4689,
49568,
13290,
654,
11,
45040,
11,
18319,
87,
1958,
198,
2164,
7,
35904,
28,
25,
11186,
8,
198,
75,
17,
22184,
796,
366,
43,
7,
81,
47505,
81,
61,
17,
1,
198,
75,
17,
17080,
796,
47038,
1958,
7,
75,
17,
22184,
8,
198,
3646,
1747,
13,
29487,
7,
43,
17,
20344,
43,
793,
22784,
269,
28,
25,
349,
425,
11,
9493,
413,
5649,
28,
17,
11,
23025,
16193,
16,
11,
513,
13,
18,
11,
406,
1,
43,
59,
9464,
7,
374,
3467,
3506,
8,
796,
930,
81,
36796,
17,
92,
91,
1600,
1248,
4008,
198
] | 2.098361 | 122 |
#___ ____ ___ _____ _ _ _ _
#| \/ | | |_ / __ \ | | | | (_| |
#| . . | | | | / \/ | | | |_ __ _| |_ ___
#| |\/| | | | | | | | | | '_ \| | __/ _ \
#| | | | |___/\__/ | \__/\ | |_| | | | | | || (_) |
#_______\_____\____/ \____/ _____|_|___|_____\_____ _____ _____
#| ___ \ (_) | | \ \ / / / __ | _ / __ | _ |
#| |_/ _ __ ___ _ ___ ___| |_ \ V / `' / /| |/' `' / /| |/' |
#| __| '__/ _ \| |/ _ \/ __| __|/ \ / / | /| | / / | /| |
#| | | | | (_) | | __| (__| |_/ /^\ \ ./ /__\ |_/ ./ /__\ |_/ /
#\_| |_| \___/| |\___|\___|\__\/ \/ \_____/\___/\_____/\___/
# _/ |
# |__/
#
# This code is part of the proposal of the team "MLJC UniTo" - University of Turin
# for "ProjectX 2020" Climate Change for AI.
# The code is licensed under MIT 3.0
# Please read readme or comments for credits and further information.
# Compiler: Julia 1.5
# Short description of this file: Non Linear Burger Equation
using NeuralPDE, Flux, ModelingToolkit, Optim, DiffEqFlux
using GalacticOptim
using Base
using Plots, PyPlot
#GalacticOptim
# 3D PDE
@parameters x t θ
@variables u(..)
@derivatives Dxx''~x
#@derivatives Dyy''~y
@derivatives Dx'~x
#@derivatives Dy'~y
@derivatives Dt'~t
Re = 2500.0
# 3D PDE
eq = Dt(u(x,t,θ)) + u(x,t,θ) * Dx(u(x,t,θ)) ~ 1/Re * Dxx(u(x,t,θ))
#eq = Dt(u(x,y,t,θ)) + u(x,y,t,θ) * Dx(u(x,y,t,θ)) ~ 1/Re * (Dxx(u(x,y,t,θ)) + Dyy(u(x,y,t,θ)))
# Initial and boundary conditions
A0 = 1.0
muX0 = 0.
muY0 = 0.
sgX0 = 1.0
sgY0 = 1.0
bcs = [u(x,0,θ) ~ A0 * exp(-(((x-muX0)^2/(2*sgX0^2))))]#+((y-muY0)^2/(2*sgY0^2))))]
#bcs = [u(x,y,0,θ) ~ exp(x+y)*cos(x+y) ,
# u(0,y,t,θ) ~ exp(y)*cos(y+4t),
# u(2,y,t,θ) ~ exp(2+y)*cos(2+y+4t) ,
# u(x,0,t,θ) ~ exp(x)*cos(x+4t),
# u(x,2,t,θ) ~ exp(x+2)*cos(x+2+4t)]
# Space and time domains
domains = [x ∈ IntervalDomain(-5.0,5.0),
t ∈ IntervalDomain(-5.0,5.0)]
# Discretization
dx = 0.5; dt = 0.5
# Neural network
chain = FastChain(FastDense(2,16,Flux.σ),FastDense(16,16,Flux.σ),FastDense(16,1))
discretization = NeuralPDE.PhysicsInformedNN([dx,dt],
chain,
strategy = NeuralPDE.StochasticTraining(include_frac=0.9))
pde_system = PDESystem(eq,bcs,domains,[x,t],[u])
prob = NeuralPDE.discretize(pde_system,discretization)
cb = function (p,l)
println("Current loss is: $l")
return false
end
res = GalacticOptim.solve(prob, ADAM(0.1), progress = true; cb = cb, maxiters=500)
phi = discretization.phi
xs,ts = [domain.domain.lower:dx:domain.domain.upper for domain in domains]
#xs,ys,ts = [domain.domain.lower:dx:domain.domain.upper for domain in domains]
#u_predict = [reshape([first(phi([x,y,t],res.minimizer)) for x in xs for y in ys], (length(xs),length(ys))) for t in ts]
analytic_sol_func(x,t) = [exp(-t)*sin(pi*x), exp(-t)*cos(pi*x), (1+pi^2)*exp(-t)]
#u_real = [reshape([first(analytic_sol_func(x,t)[i] for x in xs for y in ys], (length(xs),length(ys))) for t in ts]
u_real = [[analytic_sol_func(x,t)[i] for t in ts for x in xs] for i in 1:3]
u_predict = [[phi([x,t],res.minimizer)[i] for t in ts for x in xs] for i in 1:1]
u_predict = u_predict[1]
#u_predict = [reshape([first(phi([x,t],res.minimizer)) for x in xs for t in ts])]
diff_u = [abs.(u_real[i] .- u_predict[i] ) for i in 1:3]
p2 = Plots.plot(xs, ts, u_predict, st=:surface,title = "predict")
Plots.plot(p2)
for i in 1:3
p1 = Plots.plot(xs, ts, u_real[i], st=:surface,title = "u$i, analytic");
p2 = Plots.plot(xs, ts, u_predict[i], st=:surface,title = "predict");
#p3 = Plots.plot(xs, ts, diff_u[i],linetype=:contourf,title = "error");
#plot(p1,p2,p3)
Plots.plot(p2)
Plots.savefig("sol_U$i")
end
maxlim = maximum(maximum(u_predict[t]) for t = 1:length(ts))
minlim = minimum(minimum(u_predict[t]) for t = 1:length(ts))
result = @animate for time = 1:length(ts)
Plots.plot(xs, ys, u_predict[time],st=:surface,camera=(30,30), zlim=(minlim,maxlim), clim=(minlim,maxlim),
title = string("ψ: max = ",round(maxlim, digits = 3)," min = ", round(minlim, digits = 3),"\\n"," t = ",time))
end
gif(result, "burger_surface.gif", fps = 6)
result = @animate for time = 1:length(ts)
Plots.plot(xs, ys, u_predict[time],st=:contour,camera=(30,30), zlim=(minlim,maxlim), clim=(minlim,maxlim),
title = string("ψ: max = ",round(maxlim, digits = 3)," min = ", round(minlim, digits = 3),"\\n"," t = ",time))
end
gif(result, "burger_contour.gif", fps = 6)
| [
2,
17569,
220,
220,
1427,
220,
220,
220,
220,
220,
220,
46444,
220,
29343,
220,
220,
4808,
220,
220,
4808,
220,
220,
220,
220,
220,
220,
4808,
4808,
198,
2,
91,
220,
3467,
14,
220,
930,
930,
220,
220,
220,
220,
930,
62,
220,
1220,
220,
11593,
3467,
930,
930,
930,
930,
220,
220,
220,
220,
44104,
91,
930,
198,
2,
91,
764,
220,
764,
930,
930,
220,
220,
220,
220,
220,
220,
930,
930,
1220,
220,
3467,
14,
930,
930,
930,
930,
62,
11593,
220,
4808,
91,
930,
62,
46444,
198,
2,
91,
930,
11139,
91,
930,
930,
220,
220,
220,
220,
220,
220,
930,
930,
930,
220,
220,
220,
220,
930,
930,
930,
930,
705,
62,
3467,
91,
930,
11593,
14,
4808,
3467,
198,
2,
91,
930,
220,
930,
930,
930,
17569,
14,
59,
834,
14,
930,
3467,
834,
14,
59,
930,
930,
62,
91,
930,
930,
930,
930,
930,
8614,
44104,
8,
930,
198,
2,
37405,
59,
29343,
59,
1427,
14,
3467,
1427,
14,
220,
220,
29343,
91,
62,
91,
17569,
91,
29343,
59,
29343,
220,
29343,
220,
29343,
198,
2,
91,
46444,
3467,
220,
220,
220,
220,
220,
220,
220,
44104,
8,
220,
220,
220,
220,
220,
220,
220,
220,
930,
930,
3467,
3467,
1220,
1220,
1220,
11593,
220,
930,
220,
4808,
220,
1220,
11593,
220,
930,
220,
4808,
220,
930,
198,
2,
91,
930,
62,
14,
4808,
11593,
46444,
220,
4808,
220,
46444,
220,
46444,
91,
930,
62,
3467,
569,
1220,
220,
4600,
6,
1220,
1220,
91,
930,
14,
6,
4600,
6,
1220,
1220,
91,
930,
14,
6,
930,
198,
2,
91,
220,
11593,
91,
705,
834,
14,
4808,
3467,
91,
930,
14,
4808,
3467,
14,
11593,
91,
11593,
91,
14,
220,
220,
3467,
220,
220,
220,
1220,
1220,
930,
220,
1220,
91,
930,
1220,
1220,
930,
220,
1220,
91,
930,
198,
2,
91,
930,
220,
930,
930,
930,
44104,
8,
930,
930,
220,
11593,
91,
357,
834,
91,
930,
62,
14,
1220,
61,
59,
3467,
24457,
1220,
834,
59,
930,
62,
14,
24457,
1220,
834,
59,
930,
62,
14,
1220,
198,
2,
59,
62,
91,
220,
930,
62,
91,
220,
3467,
17569,
14,
91,
930,
59,
17569,
91,
59,
17569,
91,
59,
834,
11139,
220,
220,
3467,
14,
3467,
29343,
14,
59,
17569,
14,
59,
29343,
14,
59,
17569,
14,
198,
2,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4808,
14,
930,
198,
2,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
930,
834,
14,
198,
2,
198,
2,
770,
2438,
318,
636,
286,
262,
6961,
286,
262,
1074,
366,
5805,
34382,
43376,
2514,
1,
532,
2059,
286,
3831,
259,
198,
2,
329,
366,
16775,
55,
12131,
1,
13963,
9794,
329,
9552,
13,
198,
2,
383,
2438,
318,
11971,
739,
17168,
513,
13,
15,
198,
2,
4222,
1100,
1100,
1326,
393,
3651,
329,
10824,
290,
2252,
1321,
13,
198,
198,
2,
3082,
5329,
25,
22300,
352,
13,
20,
198,
198,
2,
10073,
6764,
286,
428,
2393,
25,
8504,
44800,
28983,
7889,
341,
198,
198,
3500,
47986,
5760,
36,
11,
1610,
2821,
11,
9104,
278,
25391,
15813,
11,
30011,
11,
10631,
36,
80,
37,
22564,
198,
3500,
23509,
27871,
320,
198,
3500,
7308,
198,
3500,
1345,
1747,
11,
9485,
43328,
198,
2,
26552,
12009,
27871,
320,
198,
2,
513,
35,
350,
7206,
198,
31,
17143,
7307,
2124,
256,
7377,
116,
198,
31,
25641,
2977,
334,
7,
492,
8,
198,
31,
1082,
452,
2929,
360,
5324,
7061,
93,
87,
198,
2,
31,
1082,
452,
2929,
360,
22556,
7061,
93,
88,
198,
31,
1082,
452,
2929,
360,
87,
6,
93,
87,
198,
2,
31,
1082,
452,
2929,
23524,
6,
93,
88,
198,
31,
1082,
452,
2929,
360,
83,
6,
93,
83,
198,
198,
3041,
796,
33507,
13,
15,
198,
198,
2,
513,
35,
350,
7206,
198,
27363,
220,
796,
360,
83,
7,
84,
7,
87,
11,
83,
11,
138,
116,
4008,
1343,
334,
7,
87,
11,
83,
11,
138,
116,
8,
1635,
360,
87,
7,
84,
7,
87,
11,
83,
11,
138,
116,
4008,
5299,
352,
14,
3041,
1635,
360,
5324,
7,
84,
7,
87,
11,
83,
11,
138,
116,
4008,
198,
2,
27363,
220,
796,
360,
83,
7,
84,
7,
87,
11,
88,
11,
83,
11,
138,
116,
4008,
1343,
334,
7,
87,
11,
88,
11,
83,
11,
138,
116,
8,
1635,
360,
87,
7,
84,
7,
87,
11,
88,
11,
83,
11,
138,
116,
4008,
5299,
352,
14,
3041,
1635,
357,
35,
5324,
7,
84,
7,
87,
11,
88,
11,
83,
11,
138,
116,
4008,
1343,
360,
22556,
7,
84,
7,
87,
11,
88,
11,
83,
11,
138,
116,
22305,
198,
198,
2,
20768,
290,
18645,
3403,
198,
198,
32,
15,
220,
220,
796,
352,
13,
15,
198,
30300,
55,
15,
796,
657,
13,
198,
30300,
56,
15,
796,
657,
13,
198,
45213,
55,
15,
796,
352,
13,
15,
198,
45213,
56,
15,
796,
352,
13,
15,
198,
198,
65,
6359,
796,
685,
84,
7,
87,
11,
15,
11,
138,
116,
8,
5299,
317,
15,
1635,
1033,
32590,
19510,
7,
87,
12,
30300,
55,
15,
8,
61,
17,
29006,
17,
9,
45213,
55,
15,
61,
17,
35514,
60,
2,
10,
19510,
88,
12,
30300,
56,
15,
8,
61,
17,
29006,
17,
9,
45213,
56,
15,
61,
17,
35514,
60,
198,
198,
2,
65,
6359,
796,
685,
84,
7,
87,
11,
88,
11,
15,
11,
138,
116,
8,
5299,
1033,
7,
87,
10,
88,
27493,
6966,
7,
87,
10,
88,
8,
837,
198,
2,
220,
220,
220,
220,
220,
220,
334,
7,
15,
11,
88,
11,
83,
11,
138,
116,
8,
5299,
1033,
7,
88,
27493,
6966,
7,
88,
10,
19,
83,
828,
198,
2,
220,
220,
220,
220,
220,
220,
334,
7,
17,
11,
88,
11,
83,
11,
138,
116,
8,
5299,
1033,
7,
17,
10,
88,
27493,
6966,
7,
17,
10,
88,
10,
19,
83,
8,
837,
198,
2,
220,
220,
220,
220,
220,
220,
334,
7,
87,
11,
15,
11,
83,
11,
138,
116,
8,
5299,
1033,
7,
87,
27493,
6966,
7,
87,
10,
19,
83,
828,
198,
2,
220,
220,
220,
220,
220,
220,
334,
7,
87,
11,
17,
11,
83,
11,
138,
116,
8,
5299,
1033,
7,
87,
10,
17,
27493,
6966,
7,
87,
10,
17,
10,
19,
83,
15437,
628,
220,
220,
220,
220,
220,
220,
1303,
4687,
290,
640,
18209,
198,
3438,
1299,
796,
685,
87,
18872,
230,
4225,
2100,
43961,
32590,
20,
13,
15,
11,
20,
13,
15,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
256,
18872,
230,
4225,
2100,
43961,
32590,
20,
13,
15,
11,
20,
13,
15,
15437,
198,
198,
2,
8444,
1186,
1634,
198,
34350,
796,
657,
13,
20,
26,
288,
83,
796,
657,
13,
20,
198,
198,
2,
47986,
3127,
198,
7983,
796,
12549,
35491,
7,
22968,
35,
1072,
7,
17,
11,
1433,
11,
37,
22564,
13,
38392,
828,
22968,
35,
1072,
7,
1433,
11,
1433,
11,
37,
22564,
13,
38392,
828,
22968,
35,
1072,
7,
1433,
11,
16,
4008,
198,
198,
15410,
1186,
1634,
796,
47986,
5760,
36,
13,
2725,
23154,
818,
12214,
6144,
26933,
34350,
11,
28664,
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,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6333,
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,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4811,
796,
47986,
5760,
36,
13,
1273,
5374,
3477,
44357,
7,
17256,
62,
31944,
28,
15,
13,
24,
4008,
198,
79,
2934,
62,
10057,
796,
14340,
1546,
6781,
7,
27363,
11,
65,
6359,
11,
3438,
1299,
17414,
87,
11,
83,
38430,
84,
12962,
198,
1676,
65,
796,
47986,
5760,
36,
13,
15410,
1186,
1096,
7,
79,
2934,
62,
10057,
11,
15410,
1186,
1634,
8,
198,
198,
21101,
796,
2163,
357,
79,
11,
75,
8,
198,
220,
220,
220,
44872,
7203,
11297,
2994,
318,
25,
720,
75,
4943,
198,
220,
220,
220,
1441,
3991,
198,
437,
198,
198,
411,
796,
23509,
27871,
320,
13,
82,
6442,
7,
1676,
65,
11,
5984,
2390,
7,
15,
13,
16,
828,
4371,
796,
2081,
26,
269,
65,
796,
269,
65,
11,
3509,
270,
364,
28,
4059,
8,
198,
34846,
796,
1221,
1186,
1634,
13,
34846,
198,
198,
34223,
11,
912,
796,
685,
27830,
13,
27830,
13,
21037,
25,
34350,
25,
27830,
13,
27830,
13,
45828,
329,
7386,
287,
18209,
60,
198,
198,
2,
34223,
11,
893,
11,
912,
796,
685,
27830,
13,
27830,
13,
21037,
25,
34350,
25,
27830,
13,
27830,
13,
45828,
329,
7386,
287,
18209,
60,
198,
198,
2,
84,
62,
79,
17407,
796,
685,
3447,
1758,
26933,
11085,
7,
34846,
26933,
87,
11,
88,
11,
83,
4357,
411,
13,
1084,
320,
7509,
4008,
329,
2124,
287,
2124,
82,
329,
331,
287,
331,
82,
4357,
357,
13664,
7,
34223,
828,
13664,
7,
893,
22305,
329,
256,
287,
40379,
60,
628,
198,
38200,
13370,
62,
34453,
62,
20786,
7,
87,
11,
83,
8,
796,
685,
11201,
32590,
83,
27493,
31369,
7,
14415,
9,
87,
828,
1033,
32590,
83,
27493,
6966,
7,
14415,
9,
87,
828,
357,
16,
10,
14415,
61,
17,
27493,
11201,
32590,
83,
15437,
198,
2,
84,
62,
5305,
220,
796,
685,
3447,
1758,
26933,
11085,
7,
38200,
13370,
62,
34453,
62,
20786,
7,
87,
11,
83,
38381,
72,
60,
329,
2124,
287,
2124,
82,
329,
331,
287,
331,
82,
4357,
357,
13664,
7,
34223,
828,
13664,
7,
893,
22305,
329,
256,
287,
40379,
60,
198,
84,
62,
5305,
220,
796,
16410,
38200,
13370,
62,
34453,
62,
20786,
7,
87,
11,
83,
38381,
72,
60,
329,
256,
287,
40379,
329,
2124,
287,
2124,
82,
60,
329,
1312,
287,
352,
25,
18,
60,
198,
198,
84,
62,
79,
17407,
220,
796,
16410,
34846,
26933,
87,
11,
83,
4357,
411,
13,
1084,
320,
7509,
38381,
72,
60,
329,
256,
287,
40379,
329,
2124,
287,
2124,
82,
60,
329,
1312,
287,
352,
25,
16,
60,
198,
84,
62,
79,
17407,
796,
334,
62,
79,
17407,
58,
16,
60,
198,
2,
84,
62,
79,
17407,
796,
685,
3447,
1758,
26933,
11085,
7,
34846,
26933,
87,
11,
83,
4357,
411,
13,
1084,
320,
7509,
4008,
329,
2124,
287,
2124,
82,
329,
256,
287,
40379,
12962,
60,
198,
198,
26069,
62,
84,
796,
685,
8937,
12195,
84,
62,
5305,
58,
72,
60,
764,
12,
334,
62,
79,
17407,
58,
72,
60,
1267,
329,
1312,
287,
352,
25,
18,
60,
198,
198,
79,
17,
796,
1345,
1747,
13,
29487,
7,
34223,
11,
40379,
11,
334,
62,
79,
17407,
11,
336,
28,
25,
42029,
11,
7839,
796,
366,
79,
17407,
4943,
198,
3646,
1747,
13,
29487,
7,
79,
17,
8,
198,
198,
1640,
1312,
287,
352,
25,
18,
198,
220,
220,
220,
279,
16,
796,
1345,
1747,
13,
29487,
7,
34223,
11,
40379,
11,
334,
62,
5305,
58,
72,
4357,
336,
28,
25,
42029,
11,
7839,
796,
366,
84,
3,
72,
11,
49166,
15341,
198,
220,
220,
220,
279,
17,
796,
1345,
1747,
13,
29487,
7,
34223,
11,
40379,
11,
334,
62,
79,
17407,
58,
72,
4357,
336,
28,
25,
42029,
11,
7839,
796,
366,
79,
17407,
15341,
198,
220,
220,
220,
1303,
79,
18,
796,
1345,
1747,
13,
29487,
7,
34223,
11,
40379,
11,
814,
62,
84,
58,
72,
4357,
2815,
2963,
431,
28,
25,
3642,
454,
69,
11,
7839,
796,
366,
18224,
15341,
198,
220,
220,
220,
1303,
29487,
7,
79,
16,
11,
79,
17,
11,
79,
18,
8,
198,
220,
220,
220,
1345,
1747,
13,
29487,
7,
79,
17,
8,
198,
220,
220,
220,
1345,
1747,
13,
21928,
5647,
7203,
34453,
62,
52,
3,
72,
4943,
198,
437,
628,
198,
198,
9806,
2475,
796,
5415,
7,
47033,
7,
84,
62,
79,
17407,
58,
83,
12962,
329,
256,
796,
352,
25,
13664,
7,
912,
4008,
198,
1084,
2475,
796,
5288,
7,
39504,
7,
84,
62,
79,
17407,
58,
83,
12962,
329,
256,
796,
352,
25,
13664,
7,
912,
4008,
628,
198,
20274,
796,
2488,
45685,
329,
640,
796,
352,
25,
13664,
7,
912,
8,
198,
220,
220,
220,
1345,
1747,
13,
29487,
7,
34223,
11,
331,
82,
11,
334,
62,
79,
17407,
58,
2435,
4357,
301,
28,
25,
42029,
11,
25695,
16193,
1270,
11,
1270,
828,
1976,
2475,
16193,
1084,
2475,
11,
9806,
2475,
828,
5424,
16193,
1084,
2475,
11,
9806,
2475,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3670,
796,
4731,
7203,
139,
230,
25,
3509,
796,
33172,
744,
7,
9806,
2475,
11,
19561,
796,
513,
27267,
949,
796,
33172,
2835,
7,
1084,
2475,
11,
19561,
796,
513,
27267,
6852,
77,
2430,
256,
796,
33172,
2435,
4008,
198,
437,
198,
198,
27908,
7,
20274,
11,
366,
6236,
1362,
62,
42029,
13,
27908,
1600,
32977,
796,
718,
8,
198,
198,
20274,
796,
2488,
45685,
329,
640,
796,
352,
25,
13664,
7,
912,
8,
198,
220,
220,
220,
1345,
1747,
13,
29487,
7,
34223,
11,
331,
82,
11,
334,
62,
79,
17407,
58,
2435,
4357,
301,
28,
25,
3642,
454,
11,
25695,
16193,
1270,
11,
1270,
828,
1976,
2475,
16193,
1084,
2475,
11,
9806,
2475,
828,
5424,
16193,
1084,
2475,
11,
9806,
2475,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3670,
796,
4731,
7203,
139,
230,
25,
3509,
796,
33172,
744,
7,
9806,
2475,
11,
19561,
796,
513,
27267,
949,
796,
33172,
2835,
7,
1084,
2475,
11,
19561,
796,
513,
27267,
6852,
77,
2430,
256,
796,
33172,
2435,
4008,
198,
437,
198,
198,
27908,
7,
20274,
11,
366,
6236,
1362,
62,
3642,
454,
13,
27908,
1600,
32977,
796,
718,
8,
198
] | 1.977106 | 2,315 |
"""
read_dump_prim(dump_name::String)
This will read data in `dump_name` file directly, returning a Dict variable, without spliting them into different array.
"""
function read_dump_prim(dump_name::String)
io = open(dump_name, "r")
str = read(io, String)
# Reading all digital data
reg = r"\b[\d\se\+ -\.]+\n"
res = findall(reg, str)
res = [str[n] for n in res]
num_steps = Int64(length(res) / 4)
# Reading Simulation Info
step_vec = parse(Int64, res[1][2:end])
num_atoms = parse(Int64, res[2][2:end])
box_info = [str2float(x) for x in split(res[3], "\n")[2:end-1]]
box_info = Array(hcat(box_info...)')
box_temp = copy_array(box_info)
atom_info = [str2float(x) for x in split(res[4], "\n")[2:end-1]]
atom_info = Array(hcat(atom_info...)')
atom_temp = copy_array(atom_info)
box_info = Array{Float64}(undef, (num_steps, size(box_info, 1), size(box_info, 2)))
box_info[1, :, :] .= box_temp
atom_info = Array{Float64}(undef, (num_steps, size(atom_info, 1), size(atom_info, 2)))
atom_info[1, :, :] .= sortslices(atom_temp, dims=1)
# Rearanging Data
for step = 2:num_steps
step_vec = vcat(step_vec, parse(Int64, res[(step-1)*4+1][2:end]))
box_info[step, :, :] = Array(hcat([str2float(x) for x in split(res[(step-1)*4+3], "\n")[2:end-1]]...)')
atom_temp = Array(hcat([str2float(x) for x in split(res[(step-1)*4+4], "\n")[2:end-1]]...)')
atom_info[step, :, :] = sortslices(atom_temp, dims=1)
end
# Output
res = Dict(
"step_vec" => step_vec,
"num_atoms" => num_atoms,
"num_steps" => num_steps,
"box_info" => box_info,
"atom_info" => atom_info,
)
end
"""
split_info!(data::Dict; id=false, atom_type=false, mol=false, element=false, charge=false, mass=false, coord=false, coord_scl=false, vel=false, force=false, acc=false)
This will split data readed from dump file, adding variable named same as `kwg` before to `data`.
The value of `kwg` can be `false` or column range of property of interest.
# Example
```julia-repl
dump_name = "xxxx" # name of dump file
data = read_dump_prim(dump_name)
split_info!(data, id=1, atom_type=2, coord=3:5)
```
Code above will add three elements, named as "id", "atom_type", and "coord", to data which contains variable in column 1, 2, 3:5 of `data["atom_info"]`
"""
function split_info!(data::Dict; id=false, atom_type=false, mol=false, element=false, charge=false, mass=false, coord=false, coord_scl=false, vel=false, force=false, acc=false)
atom_info = data["atom_info"]
if id != false
data["id"] = convert.(Int64, atom_info[1, :, id])
println("\"id\"\t\thas been added to `data` ")
end
if atom_type != false
data["atom_type"] = convert.(Int64, atom_info[1, :, atom_type])
println("\"atom_type\"\thas been added to `data` ")
end
if mol != false
data["mol"] = convert.(Int64, atom_info[1, :, mol])
println("\"mol\"\thas been added to `data`")
end
if element != false
data["element"] = convert.(Int64, atom_info[1, :, element])
println("\"element\"\thas been added to `data`")
end
if charge != false
data["charge"] = atom_info[1, :, charge]
println("\"charge\"\thas been added to `data`")
end
if mass != false
data["mass"] = atom_info[1, :, mass]
println("\"mass\"\t\thas been added to `data`")
end
if coord != false
data["coord"] = atom_info[:, :, coord]
println("\"coord\"\t\thas been added to `data`")
end
if coord_scl != false
data["coord_scl"] = atom_info[:, :, coord_scl]
println("\"coord_scl\"\thas been added to `data` ")
end
if vel != false
data["vel"] = atom_info[:, :, vel]
println("\"vel\"\t\thas been added to `data`")
end
if acc != false
data["acc"] = atom_info[:, :, acc]
println("\"acc\"\thas been added to `data`")
end
if force != false
data["force"] = atom_info[:, :, force]
println("\"force\"\t\thas been added to `data`")
end
end
"""
read_dump(dump_name::String; id=false, atom_type=false, mol=false, element=false, charge=false, mass=false, coord=false, coord_scl=false, vel=false, force=false, acc=false)
This will read data in `dump_name` file and return a Dict which contains elements
- `step_vec`
- `num_atoms`
- `num_steps`
- `box_info`
- `atom_info`
# `kwg`
Each `kwg` can be `false` or column range of property of interest in `atom_info`. If a non-`false` `kwg` is activated, a element with the same name as `kwg` will be add to Dict that will return.
# Example
```julia-repl
dump_name = "xxxx" # name of dump file
data = read_dump(dump_name, id=1, atom_type=2, coord=3:5)
```
Code above will return a Dict contains elements:
- `step_vec`
- `num_atoms`
- `num_steps`
- `box_info`
- `atom_info`
- `id`
- `atom_type`
- `coord`
Where `id`, `atom_type`, and `coord` are values of `atom_info` in column 1, 2, 3:5 respectively.
"""
function read_dump(dump_name::String; id=false, atom_type=false, mol=false, element=false, charge=false, mass=false, coord=false, coord_scl=false, vel=false, force=false, acc=false)
data = read_dump_prim(dump_name)
split_info!(data, id=id, atom_type=atom_type, mol=mol, element=element, charge=charge, mass=mass,
coord=coord, coord_scl=coord_scl, vel=vel, acc=acc, force=force)
return data
end
"""
function split_atom(data::Dict, atom_type::Int64)
This will return a new Dict contain elements below:
- "step_vec"
- "num_atoms"
- "num_steps"
- "box_info"
- "atom_info"
# Notice
- 1) "atom_type" should be included in `data`, which is created by `read_dump`
- 2) `split_info!` should be called to get details of "atom_info"
"""
function split_atom(data::Dict, atom_type::Int64)
try
data["atom_type"]
catch
error("\"atom_type\" has not been included in `data` !")
end
pos = findall(x->x==atom_type, data["atom_type"])
res = Dict()
# Output
res = Dict(
"step_vec" => data["step_vec"],
"num_atoms" => length(pos),
"num_steps" => data["num_steps"],
"box_info" => data["box_info"],
"atom_info" => data["atom_info"][:, pos, :],
)
@printf("\nInformation of atom with \"atom_type=%d\" has been created!\n", atom_type)
return res
end
"""
function momentum!(data::Dict)
This will add a component called "momentum" into `data` while `vel` and `mass` is contained in `data`
"""
function momentum!(data::Dict)
try
data["mass"]
catch
error("Info of \"mass\" is not contained in `data`")
end
try
data["vel"]
catch
error("Info of \"vel\" is not contained in `data`")
end
momentum = zeros(size(data["vel"]))
mass_diag = diag(data["mass"])
for dim = 1 : 3
momentum[:, :, dim] .= data["vel"][:, :, dim] * mass_diag
end
data["momentum"] = momentum
println("\"momentum\"\thas been added to `data`")
end
"""
function mass!(data::Dict, mass_vec, id_vec=false)
This will add a component called "mass" into `data`. Elements in `mass_vec` are the mass of atoms with id correspond to `id_vec`. If `id_vec` is set to default, it means `id_vec = [1, 2, 3, ... length(mass_vec)]'
"""
function mass!(data::Dict, mass_vec, id_vec=false)
if id_vec == false
id_vec = [i for i = 1:length(mass_vec)]
end
id = copy_array(data["atom_type"][1, :])
mass = zeros(size(id))
for i = 1:length(mass_vec)
mass[findall(x->x==id_vec[i], id)] .= mass_vec[i]
end
data["mass"] = mass
println("\"mass\"\thas been added to `data`")
end
"""
function time_step!(data::Dict, time_len, converter, dump_len)
This will add a component, which is an array contain all information needed to calulate the time in MD_simulation, called "time_step" into `data`.
# Parameters:
- `data`: Dict variable create by `read_dump()`.
- `time_len`: length of time step of simulation.
- `converter`: unit converter that convert time_len to second.
- `dump_len`: length of dump step.
"""
function time_step!(data::Dict, time_len, converter)
data["time_step"] = [time_len, converter, data["num_steps"]]
println("\"time_step\"\thas been added to `data`")
end
"""
function coord_scl!(data::Dict)
This will add a component, which is the scaled coordinate within range [0, 1], called "coord_scl" into `data`.
"""
function coord_scl!(data::Dict)
try
data["coord"]
catch
error("\"coord\" has not been included in `data` !")
end
box_inv = genr_box_inv(data)
coord_scl = zeros(size(data["coord"]))
for step = 1:data["num_steps"]
coord_scl[step, :, :] = data["coord"][step, :, :] * box_inv
end
data["coord_scl"] = coord_scl
println("\"coord_scl\"\thas been added to `data`")
end | [
37811,
198,
220,
220,
220,
1100,
62,
39455,
62,
19795,
7,
39455,
62,
3672,
3712,
10100,
8,
198,
198,
1212,
481,
1100,
1366,
287,
4600,
39455,
62,
3672,
63,
2393,
3264,
11,
8024,
257,
360,
713,
7885,
11,
1231,
4328,
1780,
606,
656,
1180,
7177,
13,
198,
37811,
198,
8818,
1100,
62,
39455,
62,
19795,
7,
39455,
62,
3672,
3712,
10100,
8,
198,
220,
220,
220,
33245,
796,
1280,
7,
39455,
62,
3672,
11,
366,
81,
4943,
198,
220,
220,
220,
965,
796,
1100,
7,
952,
11,
10903,
8,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
11725,
477,
4875,
1366,
198,
220,
220,
220,
842,
796,
374,
1,
59,
65,
58,
59,
67,
59,
325,
59,
10,
532,
59,
8183,
10,
59,
77,
1,
198,
220,
220,
220,
581,
796,
1064,
439,
7,
2301,
11,
965,
8,
198,
220,
220,
220,
581,
796,
685,
2536,
58,
77,
60,
329,
299,
287,
581,
60,
198,
220,
220,
220,
997,
62,
20214,
796,
2558,
2414,
7,
13664,
7,
411,
8,
1220,
604,
8,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
11725,
41798,
14151,
198,
220,
220,
220,
2239,
62,
35138,
796,
21136,
7,
5317,
2414,
11,
581,
58,
16,
7131,
17,
25,
437,
12962,
198,
220,
220,
220,
997,
62,
265,
3150,
796,
21136,
7,
5317,
2414,
11,
581,
58,
17,
7131,
17,
25,
437,
12962,
198,
220,
220,
220,
3091,
62,
10951,
796,
685,
2536,
17,
22468,
7,
87,
8,
329,
2124,
287,
6626,
7,
411,
58,
18,
4357,
37082,
77,
4943,
58,
17,
25,
437,
12,
16,
11907,
198,
220,
220,
220,
3091,
62,
10951,
796,
15690,
7,
71,
9246,
7,
3524,
62,
10951,
23029,
11537,
198,
220,
220,
220,
3091,
62,
29510,
796,
4866,
62,
18747,
7,
3524,
62,
10951,
8,
198,
220,
220,
220,
22037,
62,
10951,
796,
685,
2536,
17,
22468,
7,
87,
8,
329,
2124,
287,
6626,
7,
411,
58,
19,
4357,
37082,
77,
4943,
58,
17,
25,
437,
12,
16,
11907,
198,
220,
220,
220,
22037,
62,
10951,
796,
15690,
7,
71,
9246,
7,
37696,
62,
10951,
23029,
11537,
198,
220,
220,
220,
22037,
62,
29510,
796,
4866,
62,
18747,
7,
37696,
62,
10951,
8,
198,
220,
220,
220,
220,
198,
220,
220,
220,
3091,
62,
10951,
796,
15690,
90,
43879,
2414,
92,
7,
917,
891,
11,
357,
22510,
62,
20214,
11,
2546,
7,
3524,
62,
10951,
11,
352,
828,
2546,
7,
3524,
62,
10951,
11,
362,
22305,
198,
220,
220,
220,
3091,
62,
10951,
58,
16,
11,
1058,
11,
1058,
60,
764,
28,
3091,
62,
29510,
198,
220,
220,
220,
22037,
62,
10951,
796,
15690,
90,
43879,
2414,
92,
7,
917,
891,
11,
357,
22510,
62,
20214,
11,
2546,
7,
37696,
62,
10951,
11,
352,
828,
2546,
7,
37696,
62,
10951,
11,
362,
22305,
198,
220,
220,
220,
22037,
62,
10951,
58,
16,
11,
1058,
11,
1058,
60,
764,
28,
10524,
677,
274,
7,
37696,
62,
29510,
11,
5391,
82,
28,
16,
8,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
30144,
4924,
6060,
198,
220,
220,
220,
329,
2239,
796,
362,
25,
22510,
62,
20214,
198,
220,
220,
220,
220,
220,
220,
220,
2239,
62,
35138,
796,
410,
9246,
7,
9662,
62,
35138,
11,
21136,
7,
5317,
2414,
11,
581,
58,
7,
9662,
12,
16,
27493,
19,
10,
16,
7131,
17,
25,
437,
60,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
3091,
62,
10951,
58,
9662,
11,
1058,
11,
1058,
60,
796,
15690,
7,
71,
9246,
26933,
2536,
17,
22468,
7,
87,
8,
329,
2124,
287,
6626,
7,
411,
58,
7,
9662,
12,
16,
27493,
19,
10,
18,
4357,
37082,
77,
4943,
58,
17,
25,
437,
12,
16,
11907,
23029,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
22037,
62,
29510,
796,
15690,
7,
71,
9246,
26933,
2536,
17,
22468,
7,
87,
8,
329,
2124,
287,
6626,
7,
411,
58,
7,
9662,
12,
16,
27493,
19,
10,
19,
4357,
37082,
77,
4943,
58,
17,
25,
437,
12,
16,
11907,
23029,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
22037,
62,
10951,
58,
9662,
11,
1058,
11,
1058,
60,
796,
10524,
677,
274,
7,
37696,
62,
29510,
11,
5391,
82,
28,
16,
8,
198,
220,
220,
220,
886,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
25235,
198,
220,
220,
220,
581,
796,
360,
713,
7,
198,
220,
220,
220,
220,
220,
220,
220,
366,
9662,
62,
35138,
1,
5218,
2239,
62,
35138,
11,
198,
220,
220,
220,
220,
220,
220,
220,
366,
22510,
62,
265,
3150,
1,
5218,
997,
62,
265,
3150,
11,
198,
220,
220,
220,
220,
220,
220,
220,
366,
22510,
62,
20214,
1,
5218,
997,
62,
20214,
11,
198,
220,
220,
220,
220,
220,
220,
220,
366,
3524,
62,
10951,
1,
5218,
3091,
62,
10951,
11,
198,
220,
220,
220,
220,
220,
220,
220,
366,
37696,
62,
10951,
1,
5218,
22037,
62,
10951,
11,
198,
220,
220,
220,
1267,
198,
437,
198,
198,
37811,
198,
220,
220,
220,
6626,
62,
10951,
0,
7,
7890,
3712,
35,
713,
26,
4686,
28,
9562,
11,
22037,
62,
4906,
28,
9562,
11,
18605,
28,
9562,
11,
5002,
28,
9562,
11,
3877,
28,
9562,
11,
2347,
28,
9562,
11,
6349,
28,
9562,
11,
6349,
62,
38528,
28,
9562,
11,
11555,
28,
9562,
11,
2700,
28,
9562,
11,
697,
28,
9562,
8,
198,
198,
1212,
481,
6626,
1366,
1100,
276,
422,
10285,
2393,
11,
4375,
7885,
3706,
976,
355,
4600,
46265,
70,
63,
878,
284,
4600,
7890,
44646,
198,
464,
1988,
286,
4600,
46265,
70,
63,
460,
307,
4600,
9562,
63,
393,
5721,
2837,
286,
3119,
286,
1393,
13,
198,
198,
2,
17934,
198,
198,
15506,
63,
73,
43640,
12,
35666,
198,
39455,
62,
3672,
796,
366,
12343,
1,
1303,
1438,
286,
10285,
2393,
198,
7890,
796,
1100,
62,
39455,
62,
19795,
7,
39455,
62,
3672,
8,
198,
35312,
62,
10951,
0,
7,
7890,
11,
4686,
28,
16,
11,
22037,
62,
4906,
28,
17,
11,
6349,
28,
18,
25,
20,
8,
198,
15506,
63,
198,
10669,
2029,
481,
751,
1115,
4847,
11,
3706,
355,
366,
312,
1600,
366,
37696,
62,
4906,
1600,
290,
366,
37652,
1600,
284,
1366,
543,
4909,
7885,
287,
5721,
352,
11,
362,
11,
513,
25,
20,
286,
4600,
7890,
14692,
37696,
62,
10951,
8973,
63,
198,
37811,
198,
8818,
6626,
62,
10951,
0,
7,
7890,
3712,
35,
713,
26,
4686,
28,
9562,
11,
22037,
62,
4906,
28,
9562,
11,
18605,
28,
9562,
11,
5002,
28,
9562,
11,
3877,
28,
9562,
11,
2347,
28,
9562,
11,
6349,
28,
9562,
11,
6349,
62,
38528,
28,
9562,
11,
11555,
28,
9562,
11,
2700,
28,
9562,
11,
697,
28,
9562,
8,
198,
220,
220,
220,
22037,
62,
10951,
796,
1366,
14692,
37696,
62,
10951,
8973,
198,
220,
220,
220,
611,
4686,
14512,
3991,
198,
220,
220,
220,
220,
220,
220,
220,
1366,
14692,
312,
8973,
796,
10385,
12195,
5317,
2414,
11,
22037,
62,
10951,
58,
16,
11,
1058,
11,
4686,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
44872,
7203,
7879,
312,
7879,
59,
83,
59,
400,
292,
587,
2087,
284,
4600,
7890,
63,
366,
8,
198,
220,
220,
220,
886,
198,
220,
220,
220,
611,
22037,
62,
4906,
14512,
3991,
198,
220,
220,
220,
220,
220,
220,
220,
1366,
14692,
37696,
62,
4906,
8973,
796,
10385,
12195,
5317,
2414,
11,
22037,
62,
10951,
58,
16,
11,
1058,
11,
22037,
62,
4906,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
44872,
7203,
7879,
37696,
62,
4906,
7879,
59,
400,
292,
587,
2087,
284,
4600,
7890,
63,
366,
8,
198,
220,
220,
220,
886,
198,
220,
220,
220,
611,
18605,
14512,
3991,
198,
220,
220,
220,
220,
220,
220,
220,
1366,
14692,
43132,
8973,
796,
10385,
12195,
5317,
2414,
11,
22037,
62,
10951,
58,
16,
11,
1058,
11,
18605,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
44872,
7203,
7879,
43132,
7879,
59,
400,
292,
587,
2087,
284,
4600,
7890,
63,
4943,
198,
220,
220,
220,
886,
198,
220,
220,
220,
611,
5002,
14512,
3991,
198,
220,
220,
220,
220,
220,
220,
220,
1366,
14692,
30854,
8973,
796,
10385,
12195,
5317,
2414,
11,
22037,
62,
10951,
58,
16,
11,
1058,
11,
5002,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
44872,
7203,
7879,
30854,
7879,
59,
400,
292,
587,
2087,
284,
4600,
7890,
63,
4943,
198,
220,
220,
220,
886,
198,
220,
220,
220,
611,
3877,
14512,
3991,
198,
220,
220,
220,
220,
220,
220,
220,
1366,
14692,
10136,
8973,
796,
22037,
62,
10951,
58,
16,
11,
1058,
11,
3877,
60,
198,
220,
220,
220,
220,
220,
220,
220,
44872,
7203,
7879,
10136,
7879,
59,
400,
292,
587,
2087,
284,
4600,
7890,
63,
4943,
198,
220,
220,
220,
886,
198,
220,
220,
220,
611,
2347,
14512,
3991,
198,
220,
220,
220,
220,
220,
220,
220,
1366,
14692,
22208,
8973,
796,
22037,
62,
10951,
58,
16,
11,
1058,
11,
2347,
60,
198,
220,
220,
220,
220,
220,
220,
220,
44872,
7203,
7879,
22208,
7879,
59,
83,
59,
400,
292,
587,
2087,
284,
4600,
7890,
63,
4943,
198,
220,
220,
220,
886,
198,
220,
220,
220,
611,
6349,
14512,
3991,
198,
220,
220,
220,
220,
220,
220,
220,
1366,
14692,
37652,
8973,
796,
22037,
62,
10951,
58,
45299,
1058,
11,
6349,
60,
198,
220,
220,
220,
220,
220,
220,
220,
44872,
7203,
7879,
37652,
7879,
59,
83,
59,
400,
292,
587,
2087,
284,
4600,
7890,
63,
4943,
198,
220,
220,
220,
886,
198,
220,
220,
220,
611,
6349,
62,
38528,
14512,
3991,
198,
220,
220,
220,
220,
220,
220,
220,
1366,
14692,
37652,
62,
38528,
8973,
796,
22037,
62,
10951,
58,
45299,
1058,
11,
6349,
62,
38528,
60,
198,
220,
220,
220,
220,
220,
220,
220,
44872,
7203,
7879,
37652,
62,
38528,
7879,
59,
400,
292,
587,
2087,
284,
4600,
7890,
63,
366,
8,
198,
220,
220,
220,
886,
198,
220,
220,
220,
611,
11555,
14512,
3991,
198,
220,
220,
220,
220,
220,
220,
220,
1366,
14692,
626,
8973,
796,
22037,
62,
10951,
58,
45299,
1058,
11,
11555,
60,
198,
220,
220,
220,
220,
220,
220,
220,
44872,
7203,
7879,
626,
7879,
59,
83,
59,
400,
292,
587,
2087,
284,
4600,
7890,
63,
4943,
198,
220,
220,
220,
886,
198,
220,
220,
220,
611,
697,
14512,
3991,
198,
220,
220,
220,
220,
220,
220,
220,
1366,
14692,
4134,
8973,
796,
22037,
62,
10951,
58,
45299,
1058,
11,
697,
60,
198,
220,
220,
220,
220,
220,
220,
220,
44872,
7203,
7879,
4134,
7879,
59,
400,
292,
587,
2087,
284,
4600,
7890,
63,
4943,
198,
220,
220,
220,
886,
198,
220,
220,
220,
611,
2700,
14512,
3991,
198,
220,
220,
220,
220,
220,
220,
220,
1366,
14692,
3174,
8973,
796,
22037,
62,
10951,
58,
45299,
1058,
11,
2700,
60,
198,
220,
220,
220,
220,
220,
220,
220,
44872,
7203,
7879,
3174,
7879,
59,
83,
59,
400,
292,
587,
2087,
284,
4600,
7890,
63,
4943,
198,
220,
220,
220,
886,
198,
437,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
37811,
198,
220,
220,
220,
1100,
62,
39455,
7,
39455,
62,
3672,
3712,
10100,
26,
4686,
28,
9562,
11,
22037,
62,
4906,
28,
9562,
11,
18605,
28,
9562,
11,
5002,
28,
9562,
11,
3877,
28,
9562,
11,
2347,
28,
9562,
11,
6349,
28,
9562,
11,
6349,
62,
38528,
28,
9562,
11,
11555,
28,
9562,
11,
2700,
28,
9562,
11,
697,
28,
9562,
8,
198,
198,
1212,
481,
1100,
1366,
287,
4600,
39455,
62,
3672,
63,
2393,
290,
1441,
257,
360,
713,
543,
4909,
4847,
198,
12,
4600,
9662,
62,
35138,
63,
198,
12,
4600,
22510,
62,
265,
3150,
63,
198,
12,
4600,
22510,
62,
20214,
63,
198,
12,
4600,
3524,
62,
10951,
63,
198,
12,
4600,
37696,
62,
10951,
63,
198,
198,
2,
4600,
46265,
70,
63,
198,
198,
10871,
4600,
46265,
70,
63,
460,
307,
4600,
9562,
63,
393,
5721,
2837,
286,
3119,
286,
1393,
287,
4600,
37696,
62,
10951,
44646,
1002,
257,
1729,
12,
63,
9562,
63,
4600,
46265,
70,
63,
318,
13906,
11,
257,
5002,
351,
262,
976,
1438,
355,
4600,
46265,
70,
63,
481,
307,
751,
284,
360,
713,
326,
481,
1441,
13,
198,
198,
2,
17934,
198,
198,
15506,
63,
73,
43640,
12,
35666,
198,
39455,
62,
3672,
796,
366,
12343,
1,
220,
1303,
1438,
286,
10285,
2393,
198,
7890,
796,
1100,
62,
39455,
7,
39455,
62,
3672,
11,
4686,
28,
16,
11,
22037,
62,
4906,
28,
17,
11,
6349,
28,
18,
25,
20,
8,
198,
15506,
63,
198,
10669,
2029,
481,
1441,
257,
360,
713,
4909,
4847,
25,
198,
12,
4600,
9662,
62,
35138,
63,
198,
12,
4600,
22510,
62,
265,
3150,
63,
198,
12,
4600,
22510,
62,
20214,
63,
198,
12,
4600,
3524,
62,
10951,
63,
198,
12,
4600,
37696,
62,
10951,
63,
198,
12,
4600,
312,
63,
198,
12,
4600,
37696,
62,
4906,
63,
198,
12,
4600,
37652,
63,
198,
198,
8496,
4600,
312,
47671,
4600,
37696,
62,
4906,
47671,
290,
4600,
37652,
63,
389,
3815,
286,
4600,
37696,
62,
10951,
63,
287,
5721,
352,
11,
362,
11,
513,
25,
20,
8148,
13,
198,
37811,
198,
8818,
1100,
62,
39455,
7,
39455,
62,
3672,
3712,
10100,
26,
4686,
28,
9562,
11,
22037,
62,
4906,
28,
9562,
11,
18605,
28,
9562,
11,
5002,
28,
9562,
11,
3877,
28,
9562,
11,
2347,
28,
9562,
11,
6349,
28,
9562,
11,
6349,
62,
38528,
28,
9562,
11,
11555,
28,
9562,
11,
2700,
28,
9562,
11,
697,
28,
9562,
8,
198,
220,
220,
220,
1366,
796,
1100,
62,
39455,
62,
19795,
7,
39455,
62,
3672,
8,
198,
220,
220,
220,
6626,
62,
10951,
0,
7,
7890,
11,
4686,
28,
312,
11,
22037,
62,
4906,
28,
37696,
62,
4906,
11,
18605,
28,
43132,
11,
5002,
28,
30854,
11,
3877,
28,
10136,
11,
2347,
28,
22208,
11,
220,
198,
220,
220,
220,
220,
220,
220,
220,
6349,
28,
37652,
11,
6349,
62,
38528,
28,
37652,
62,
38528,
11,
11555,
28,
626,
11,
697,
28,
4134,
11,
2700,
28,
3174,
8,
198,
220,
220,
220,
1441,
1366,
198,
437,
198,
198,
37811,
198,
8818,
6626,
62,
37696,
7,
7890,
3712,
35,
713,
11,
22037,
62,
4906,
3712,
5317,
2414,
8,
198,
1212,
481,
1441,
257,
649,
360,
713,
3994,
4847,
2174,
25,
198,
12,
366,
9662,
62,
35138,
1,
198,
12,
366,
22510,
62,
265,
3150,
1,
198,
12,
366,
22510,
62,
20214,
1,
198,
12,
366,
3524,
62,
10951,
1,
198,
12,
366,
37696,
62,
10951,
1,
198,
2,
17641,
198,
12,
352,
8,
366,
37696,
62,
4906,
1,
815,
307,
3017,
287,
4600,
7890,
47671,
543,
318,
2727,
416,
4600,
961,
62,
39455,
63,
198,
12,
362,
8,
4600,
35312,
62,
10951,
0,
63,
815,
307,
1444,
284,
651,
3307,
286,
366,
37696,
62,
10951,
1,
198,
37811,
198,
8818,
6626,
62,
37696,
7,
7890,
3712,
35,
713,
11,
22037,
62,
4906,
3712,
5317,
2414,
8,
198,
220,
220,
220,
1949,
198,
220,
220,
220,
220,
220,
220,
220,
1366,
14692,
37696,
62,
4906,
8973,
198,
220,
220,
220,
4929,
198,
220,
220,
220,
220,
220,
220,
220,
4049,
7203,
7879,
37696,
62,
4906,
7879,
468,
407,
587,
3017,
287,
4600,
7890,
63,
220,
2474,
8,
198,
220,
220,
220,
886,
198,
220,
220,
220,
1426,
796,
1064,
439,
7,
87,
3784,
87,
855,
37696,
62,
4906,
11,
1366,
14692,
37696,
62,
4906,
8973,
8,
198,
220,
220,
220,
581,
796,
360,
713,
3419,
198,
220,
220,
220,
1303,
25235,
198,
220,
220,
220,
581,
796,
360,
713,
7,
198,
220,
220,
220,
220,
220,
220,
220,
366,
9662,
62,
35138,
1,
5218,
1366,
14692,
9662,
62,
35138,
33116,
198,
220,
220,
220,
220,
220,
220,
220,
366,
22510,
62,
265,
3150,
1,
5218,
4129,
7,
1930,
828,
198,
220,
220,
220,
220,
220,
220,
220,
366,
22510,
62,
20214,
1,
5218,
1366,
14692,
22510,
62,
20214,
33116,
198,
220,
220,
220,
220,
220,
220,
220,
366,
3524,
62,
10951,
1,
5218,
1366,
14692,
3524,
62,
10951,
33116,
198,
220,
220,
220,
220,
220,
220,
220,
366,
37696,
62,
10951,
1,
5218,
1366,
14692,
37696,
62,
10951,
1,
7131,
45299,
1426,
11,
1058,
4357,
198,
220,
220,
220,
1267,
198,
220,
220,
220,
2488,
37435,
7203,
59,
77,
21918,
286,
22037,
351,
19990,
37696,
62,
4906,
28,
4,
67,
7879,
468,
587,
2727,
0,
59,
77,
1600,
22037,
62,
4906,
8,
198,
220,
220,
220,
1441,
581,
198,
437,
198,
198,
37811,
198,
220,
220,
220,
2163,
12858,
0,
7,
7890,
3712,
35,
713,
8,
198,
198,
1212,
481,
751,
257,
7515,
1444,
366,
32542,
298,
388,
1,
656,
4600,
7890,
63,
981,
4600,
626,
63,
290,
4600,
22208,
63,
318,
7763,
287,
4600,
7890,
63,
198,
37811,
198,
8818,
12858,
0,
7,
7890,
3712,
35,
713,
8,
198,
220,
220,
220,
1949,
198,
220,
220,
220,
220,
220,
220,
220,
1366,
14692,
22208,
8973,
198,
220,
220,
220,
4929,
198,
220,
220,
220,
220,
220,
220,
220,
4049,
7203,
12360,
286,
19990,
22208,
7879,
318,
407,
7763,
287,
4600,
7890,
63,
4943,
198,
220,
220,
220,
886,
198,
220,
220,
220,
1949,
198,
220,
220,
220,
220,
220,
220,
220,
1366,
14692,
626,
8973,
198,
220,
220,
220,
4929,
198,
220,
220,
220,
220,
220,
220,
220,
4049,
7203,
12360,
286,
19990,
626,
7879,
318,
407,
7763,
287,
4600,
7890,
63,
4943,
198,
220,
220,
220,
886,
198,
220,
220,
220,
220,
198,
220,
220,
220,
12858,
796,
1976,
27498,
7,
7857,
7,
7890,
14692,
626,
8973,
4008,
198,
220,
220,
220,
2347,
62,
10989,
363,
796,
2566,
363,
7,
7890,
14692,
22208,
8973,
8,
198,
220,
220,
220,
329,
5391,
796,
352,
1058,
513,
198,
220,
220,
220,
220,
220,
220,
220,
12858,
58,
45299,
1058,
11,
5391,
60,
764,
28,
1366,
14692,
626,
1,
7131,
45299,
1058,
11,
5391,
60,
1635,
2347,
62,
10989,
363,
198,
220,
220,
220,
886,
198,
220,
220,
220,
1366,
14692,
32542,
298,
388,
8973,
796,
12858,
198,
220,
220,
220,
44872,
7203,
7879,
32542,
298,
388,
7879,
59,
400,
292,
587,
2087,
284,
4600,
7890,
63,
4943,
198,
437,
198,
198,
37811,
198,
220,
220,
220,
2163,
2347,
0,
7,
7890,
3712,
35,
713,
11,
2347,
62,
35138,
11,
4686,
62,
35138,
28,
9562,
8,
198,
198,
1212,
481,
751,
257,
7515,
1444,
366,
22208,
1,
656,
4600,
7890,
44646,
26632,
287,
4600,
22208,
62,
35138,
63,
389,
262,
2347,
286,
23235,
351,
4686,
6053,
284,
4600,
312,
62,
35138,
44646,
1002,
4600,
312,
62,
35138,
63,
318,
900,
284,
4277,
11,
340,
1724,
4600,
312,
62,
35138,
796,
685,
16,
11,
362,
11,
513,
11,
2644,
4129,
7,
22208,
62,
35138,
15437,
6,
198,
37811,
198,
8818,
2347,
0,
7,
7890,
3712,
35,
713,
11,
2347,
62,
35138,
11,
4686,
62,
35138,
28,
9562,
8,
198,
220,
220,
220,
611,
4686,
62,
35138,
6624,
3991,
198,
220,
220,
220,
220,
220,
220,
220,
4686,
62,
35138,
796,
685,
72,
329,
1312,
796,
352,
25,
13664,
7,
22208,
62,
35138,
15437,
198,
220,
220,
220,
886,
198,
220,
220,
220,
4686,
796,
4866,
62,
18747,
7,
7890,
14692,
37696,
62,
4906,
1,
7131,
16,
11,
1058,
12962,
198,
220,
220,
220,
2347,
796,
1976,
27498,
7,
7857,
7,
312,
4008,
198,
220,
220,
220,
329,
1312,
796,
352,
25,
13664,
7,
22208,
62,
35138,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2347,
58,
19796,
439,
7,
87,
3784,
87,
855,
312,
62,
35138,
58,
72,
4357,
4686,
15437,
764,
28,
2347,
62,
35138,
58,
72,
60,
198,
220,
220,
220,
886,
198,
220,
220,
220,
1366,
14692,
22208,
8973,
796,
2347,
198,
220,
220,
220,
44872,
7203,
7879,
22208,
7879,
59,
400,
292,
587,
2087,
284,
4600,
7890,
63,
4943,
198,
437,
198,
198,
37811,
198,
220,
220,
220,
2163,
640,
62,
9662,
0,
7,
7890,
3712,
35,
713,
11,
640,
62,
11925,
11,
38394,
11,
10285,
62,
11925,
8,
198,
198,
1212,
481,
751,
257,
7515,
11,
543,
318,
281,
7177,
3994,
477,
1321,
2622,
284,
2386,
5039,
262,
640,
287,
10670,
62,
14323,
1741,
11,
1444,
366,
2435,
62,
9662,
1,
656,
4600,
7890,
44646,
198,
198,
2,
40117,
25,
198,
12,
4600,
7890,
63,
25,
360,
713,
7885,
2251,
416,
4600,
961,
62,
39455,
3419,
44646,
198,
12,
4600,
2435,
62,
11925,
63,
25,
4129,
286,
640,
2239,
286,
18640,
13,
198,
12,
4600,
1102,
332,
353,
63,
25,
4326,
38394,
326,
10385,
640,
62,
11925,
284,
1218,
13,
198,
12,
4600,
39455,
62,
11925,
63,
25,
4129,
286,
10285,
2239,
13,
198,
37811,
198,
8818,
640,
62,
9662,
0,
7,
7890,
3712,
35,
713,
11,
640,
62,
11925,
11,
38394,
8,
198,
220,
220,
220,
1366,
14692,
2435,
62,
9662,
8973,
796,
685,
2435,
62,
11925,
11,
38394,
11,
1366,
14692,
22510,
62,
20214,
8973,
60,
198,
220,
220,
220,
44872,
7203,
7879,
2435,
62,
9662,
7879,
59,
400,
292,
587,
2087,
284,
4600,
7890,
63,
4943,
198,
437,
198,
198,
37811,
198,
220,
220,
220,
2163,
6349,
62,
38528,
0,
7,
7890,
3712,
35,
713,
8,
198,
198,
1212,
481,
751,
257,
7515,
11,
543,
318,
262,
27464,
20435,
1626,
2837,
685,
15,
11,
352,
4357,
1444,
366,
37652,
62,
38528,
1,
656,
4600,
7890,
44646,
220,
198,
37811,
198,
8818,
6349,
62,
38528,
0,
7,
7890,
3712,
35,
713,
8,
198,
220,
220,
220,
1949,
220,
198,
220,
220,
220,
220,
220,
220,
220,
1366,
14692,
37652,
8973,
198,
220,
220,
220,
4929,
198,
220,
220,
220,
220,
220,
220,
220,
4049,
7203,
7879,
37652,
7879,
468,
407,
587,
3017,
287,
4600,
7890,
63,
220,
2474,
8,
198,
220,
220,
220,
886,
198,
220,
220,
220,
3091,
62,
16340,
796,
2429,
81,
62,
3524,
62,
16340,
7,
7890,
8,
198,
220,
220,
220,
6349,
62,
38528,
796,
1976,
27498,
7,
7857,
7,
7890,
14692,
37652,
8973,
4008,
198,
220,
220,
220,
220,
198,
220,
220,
220,
329,
2239,
796,
352,
25,
7890,
14692,
22510,
62,
20214,
8973,
198,
220,
220,
220,
220,
220,
220,
220,
6349,
62,
38528,
58,
9662,
11,
1058,
11,
1058,
60,
796,
1366,
14692,
37652,
1,
7131,
9662,
11,
1058,
11,
1058,
60,
1635,
3091,
62,
16340,
198,
220,
220,
220,
886,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1366,
14692,
37652,
62,
38528,
8973,
796,
6349,
62,
38528,
198,
220,
220,
220,
44872,
7203,
7879,
37652,
62,
38528,
7879,
59,
400,
292,
587,
2087,
284,
4600,
7890,
63,
4943,
198,
437
] | 2.398121 | 3,725 |
using CalibrationErrors
using Literate: Literate
using Pkg: Pkg
if haskey(ENV, "GITHUB_ACTIONS")
# Print `@debug` statements (https://github.com/JuliaDocs/Documenter.jl/issues/955)
ENV["JULIA_DEBUG"] = "Documenter"
# Bypass the accept download prompt
ENV["DATADEPS_ALWAYS_ACCEPT"] = "true"
end
const EXAMPLES = ("classification", "distribution")
const INPUT = joinpath(@__DIR__, "..", "examples")
const OUTPUT = joinpath(@__DIR__, "src", "examples")
ispath(OUTPUT) && rm(OUTPUT; recursive=true)
mkpath(joinpath(OUTPUT, "figures"))
# Add link to nbviewer below the first heading of level 1
function preprocess(content)
sub = SubstitutionString(
"""
\\0
#
#md # [](@__NBVIEWER_ROOT_URL__/examples/@__NAME__.ipynb)
#md #
# You are seeing the
#md # HTML output generated by [Documenter.jl](https://github.com/JuliaDocs/Documenter.jl) and
#nb # notebook output generated by
# [Literate.jl](https://github.com/fredrikekre/Literate.jl) from the
# [Julia source file](@__REPO_ROOT_URL__/examples/@__NAME__/script.jl).
# The corresponding
#md # notebook can be viewed in [nbviewer](@__NBVIEWER_ROOT_URL__/examples/@__NAME__.ipynb).
#nb # HTML output can be viewed [here](https://devmotion.github.io/CalibrationErrors.jl/dev/examples/@__NAME__/).
#md #
#md # ```@setup @__NAME__
#md # using Pkg: Pkg
#md # Pkg.activate("$(INPUT)/@__NAME__")
#md # Pkg.instantiate()
#md # ```
#
""",
)
return replace(content, r"^# # [^\n]*"m => sub; count=1)
end
for name in EXAMPLES
file = joinpath(INPUT, name, "script.jl")
# Activate project environment
Pkg.activate(dirname(file)) do
Pkg.instantiate()
Literate.markdown(file, OUTPUT; name=name, documenter=true, preprocess=preprocess)
Literate.notebook(file, OUTPUT; name=name, documenter=true, preprocess=preprocess)
end
end
using Documenter
makedocs(;
modules=[CalibrationErrors],
authors="David Widmann <[email protected]>",
repo="https://github.com/devmotion/CalibrationErrors.jl/blob/{commit}{path}#L{line}",
sitename="CalibrationErrors.jl",
format=Documenter.HTML(;
prettyurls=get(ENV, "CI", "false") == "true",
canonical="https://devmotion.github.io/CalibrationErrors.jl",
assets=String[],
),
pages=[
"index.md",
"introduction.md",
"ece.md",
"kce.md",
"others.md",
"Examples" => [joinpath("examples", "$(name).md") for name in EXAMPLES],
],
strict=true,
checkdocs=:exports,
)
deploydocs(;
repo="github.com/devmotion/CalibrationErrors.jl.git",
push_preview=true,
devbranch="main",
)
| [
3500,
2199,
571,
1358,
9139,
5965,
198,
3500,
17667,
378,
25,
17667,
378,
198,
3500,
350,
10025,
25,
350,
10025,
198,
198,
361,
468,
2539,
7,
1677,
53,
11,
366,
38,
10554,
10526,
62,
10659,
11053,
4943,
198,
220,
220,
220,
1303,
12578,
4600,
31,
24442,
63,
6299,
357,
5450,
1378,
12567,
13,
785,
14,
16980,
544,
23579,
82,
14,
24941,
263,
13,
20362,
14,
37165,
14,
24,
2816,
8,
198,
220,
220,
220,
12964,
53,
14692,
41,
6239,
3539,
62,
30531,
8973,
796,
366,
24941,
263,
1,
198,
220,
220,
220,
1303,
2750,
6603,
262,
2453,
4321,
6152,
198,
220,
220,
220,
12964,
53,
14692,
35,
1404,
19266,
3705,
62,
1847,
42451,
62,
2246,
42006,
8973,
796,
366,
7942,
1,
198,
437,
198,
198,
9979,
7788,
2390,
6489,
1546,
796,
5855,
4871,
2649,
1600,
366,
17080,
3890,
4943,
198,
9979,
3268,
30076,
796,
4654,
6978,
7,
31,
834,
34720,
834,
11,
366,
492,
1600,
366,
1069,
12629,
4943,
198,
9979,
16289,
30076,
796,
4654,
6978,
7,
31,
834,
34720,
834,
11,
366,
10677,
1600,
366,
1069,
12629,
4943,
198,
198,
271,
6978,
7,
2606,
7250,
3843,
8,
11405,
42721,
7,
2606,
7250,
3843,
26,
45115,
28,
7942,
8,
198,
28015,
6978,
7,
22179,
6978,
7,
2606,
7250,
3843,
11,
366,
5647,
942,
48774,
198,
198,
2,
3060,
2792,
284,
299,
65,
1177,
263,
2174,
262,
717,
9087,
286,
1241,
352,
198,
8818,
662,
14681,
7,
11299,
8,
198,
220,
220,
220,
850,
796,
24944,
2738,
10100,
7,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
6852,
15,
198,
2,
198,
2,
9132,
1303,
685,
0,
58,
16151,
5450,
1378,
9600,
13,
26662,
82,
13,
952,
14,
14774,
469,
14,
12860,
12,
46803,
1177,
263,
12,
41734,
26576,
13,
21370,
70,
15437,
7,
31,
834,
32819,
28206,
1137,
62,
13252,
2394,
62,
21886,
834,
14,
1069,
12629,
14,
31,
834,
20608,
834,
13,
541,
2047,
65,
8,
198,
2,
9132,
1303,
198,
2,
921,
389,
4379,
262,
198,
2,
9132,
1303,
11532,
5072,
7560,
416,
685,
24941,
263,
13,
20362,
16151,
5450,
1378,
12567,
13,
785,
14,
16980,
544,
23579,
82,
14,
24941,
263,
13,
20362,
8,
290,
198,
2,
46803,
1303,
20922,
5072,
7560,
416,
198,
2,
685,
43460,
378,
13,
20362,
16151,
5450,
1378,
12567,
13,
785,
14,
39193,
8760,
74,
260,
14,
43460,
378,
13,
20362,
8,
422,
262,
198,
2,
685,
16980,
544,
2723,
2393,
16151,
31,
834,
2200,
16402,
62,
13252,
2394,
62,
21886,
834,
14,
1069,
12629,
14,
31,
834,
20608,
834,
14,
12048,
13,
20362,
737,
198,
2,
383,
11188,
198,
2,
9132,
1303,
20922,
460,
307,
9569,
287,
685,
46803,
1177,
263,
16151,
31,
834,
32819,
28206,
1137,
62,
13252,
2394,
62,
21886,
834,
14,
1069,
12629,
14,
31,
834,
20608,
834,
13,
541,
2047,
65,
737,
198,
2,
46803,
1303,
11532,
5072,
460,
307,
9569,
685,
1456,
16151,
5450,
1378,
7959,
38714,
13,
12567,
13,
952,
14,
9771,
571,
1358,
9139,
5965,
13,
20362,
14,
7959,
14,
1069,
12629,
14,
31,
834,
20608,
834,
14,
737,
198,
2,
9132,
1303,
198,
2,
9132,
1303,
7559,
63,
31,
40406,
2488,
834,
20608,
834,
198,
2,
9132,
1303,
1262,
350,
10025,
25,
350,
10025,
198,
2,
9132,
1303,
350,
10025,
13,
39022,
7203,
3,
7,
1268,
30076,
20679,
31,
834,
20608,
834,
4943,
198,
2,
9132,
1303,
350,
10025,
13,
8625,
415,
9386,
3419,
198,
2,
9132,
1303,
7559,
63,
198,
2,
198,
220,
220,
220,
220,
220,
220,
220,
13538,
1600,
198,
220,
220,
220,
1267,
198,
220,
220,
220,
1441,
6330,
7,
11299,
11,
374,
1,
61,
2,
1303,
685,
61,
59,
77,
60,
9,
1,
76,
5218,
850,
26,
954,
28,
16,
8,
198,
437,
198,
198,
1640,
1438,
287,
7788,
2390,
6489,
1546,
198,
220,
220,
220,
2393,
796,
4654,
6978,
7,
1268,
30076,
11,
1438,
11,
366,
12048,
13,
20362,
4943,
628,
220,
220,
220,
1303,
33120,
1628,
2858,
198,
220,
220,
220,
350,
10025,
13,
39022,
7,
15908,
3672,
7,
7753,
4008,
466,
198,
220,
220,
220,
220,
220,
220,
220,
350,
10025,
13,
8625,
415,
9386,
3419,
628,
220,
220,
220,
220,
220,
220,
220,
17667,
378,
13,
4102,
2902,
7,
7753,
11,
16289,
30076,
26,
1438,
28,
3672,
11,
3188,
263,
28,
7942,
11,
662,
14681,
28,
3866,
14681,
8,
198,
220,
220,
220,
220,
220,
220,
220,
17667,
378,
13,
11295,
2070,
7,
7753,
11,
16289,
30076,
26,
1438,
28,
3672,
11,
3188,
263,
28,
7942,
11,
662,
14681,
28,
3866,
14681,
8,
198,
220,
220,
220,
886,
198,
437,
198,
198,
3500,
16854,
263,
198,
198,
76,
4335,
420,
82,
7,
26,
198,
220,
220,
220,
13103,
41888,
9771,
571,
1358,
9139,
5965,
4357,
198,
220,
220,
220,
7035,
2625,
11006,
24801,
9038,
1279,
67,
8490,
13,
28029,
9038,
31,
270,
13,
12303,
13,
325,
29,
1600,
198,
220,
220,
220,
29924,
2625,
5450,
1378,
12567,
13,
785,
14,
7959,
38714,
14,
9771,
571,
1358,
9139,
5965,
13,
20362,
14,
2436,
672,
14,
90,
41509,
18477,
6978,
92,
2,
43,
90,
1370,
92,
1600,
198,
220,
220,
220,
1650,
12453,
2625,
9771,
571,
1358,
9139,
5965,
13,
20362,
1600,
198,
220,
220,
220,
5794,
28,
24941,
263,
13,
28656,
7,
26,
198,
220,
220,
220,
220,
220,
220,
220,
2495,
6371,
82,
28,
1136,
7,
1677,
53,
11,
366,
25690,
1600,
366,
9562,
4943,
6624,
366,
7942,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
40091,
2625,
5450,
1378,
7959,
38714,
13,
12567,
13,
952,
14,
9771,
571,
1358,
9139,
5965,
13,
20362,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
6798,
28,
10100,
58,
4357,
198,
220,
220,
220,
10612,
198,
220,
220,
220,
5468,
41888,
198,
220,
220,
220,
220,
220,
220,
220,
366,
9630,
13,
9132,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
27427,
596,
13,
9132,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
68,
344,
13,
9132,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
74,
344,
13,
9132,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
847,
82,
13,
9132,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
27730,
1,
5218,
685,
22179,
6978,
7203,
1069,
12629,
1600,
17971,
7,
3672,
737,
9132,
4943,
329,
1438,
287,
7788,
2390,
6489,
1546,
4357,
198,
220,
220,
220,
16589,
198,
220,
220,
220,
7646,
28,
7942,
11,
198,
220,
220,
220,
2198,
31628,
28,
25,
1069,
3742,
11,
198,
8,
198,
198,
2934,
1420,
31628,
7,
26,
198,
220,
220,
220,
29924,
2625,
12567,
13,
785,
14,
7959,
38714,
14,
9771,
571,
1358,
9139,
5965,
13,
20362,
13,
18300,
1600,
198,
220,
220,
220,
4574,
62,
3866,
1177,
28,
7942,
11,
198,
220,
220,
220,
1614,
1671,
3702,
2625,
12417,
1600,
198,
8,
198
] | 2.385841 | 1,130 |
# Below url is pinned to a specific commit -- if xiaoliangstd updates the repo
# with changes, you may want to investigate them.
mini_cheetah_url = "https://raw.githubusercontent.com/xiaoliangstd/MiniCheetah_description/f8e30e3d9f1077d096483010ddfbaa16e928a37c/cheetah_description/"
urdfpath = "xacro/mini_cheetah.urdf"
meshpaths = [
"meshes/mini_body.obj";
"meshes/mini_abad.obj";
"meshes/mini_upper_link.obj";
"meshes/mini_lower_link.obj"
]
datadir = "cheetah_description"
ispath(datadir) || mkpath(datadir)
download(mini_cheetah_url * urdfpath, joinpath(datadir, "mini_cheetah.urdf"))
for meshpath in meshpaths
meshdir, meshfilename = splitdir(meshpath)
meshdir = joinpath(datadir, meshdir)
ispath(meshdir) || mkpath(meshdir)
download(mini_cheetah_url * meshpath, joinpath(datadir, meshpath))
end
| [
2,
10383,
19016,
318,
25711,
284,
257,
2176,
4589,
1377,
611,
2124,
544,
11106,
648,
19282,
5992,
262,
29924,
198,
2,
351,
2458,
11,
345,
743,
765,
284,
9161,
606,
13,
198,
45313,
62,
2395,
316,
993,
62,
6371,
796,
366,
5450,
1378,
1831,
13,
12567,
43667,
13,
785,
14,
36072,
11106,
648,
19282,
14,
39234,
7376,
316,
993,
62,
11213,
14,
69,
23,
68,
1270,
68,
18,
67,
24,
69,
940,
3324,
67,
2931,
2414,
5999,
20943,
1860,
69,
7012,
64,
1433,
68,
24,
2078,
64,
2718,
66,
14,
2395,
316,
993,
62,
11213,
30487,
198,
198,
2799,
69,
6978,
796,
366,
87,
330,
305,
14,
45313,
62,
2395,
316,
993,
13,
2799,
69,
1,
198,
198,
76,
5069,
6978,
82,
796,
685,
198,
220,
220,
220,
366,
6880,
956,
14,
45313,
62,
2618,
13,
26801,
8172,
198,
220,
220,
220,
366,
6880,
956,
14,
45313,
62,
17325,
13,
26801,
8172,
198,
220,
220,
220,
366,
6880,
956,
14,
45313,
62,
45828,
62,
8726,
13,
26801,
8172,
198,
220,
220,
220,
366,
6880,
956,
14,
45313,
62,
21037,
62,
8726,
13,
26801,
1,
198,
220,
220,
220,
2361,
198,
198,
19608,
324,
343,
796,
366,
2395,
316,
993,
62,
11213,
1,
198,
271,
6978,
7,
19608,
324,
343,
8,
8614,
33480,
6978,
7,
19608,
324,
343,
8,
198,
15002,
7,
45313,
62,
2395,
316,
993,
62,
6371,
1635,
220,
2799,
69,
6978,
11,
4654,
6978,
7,
19608,
324,
343,
11,
366,
45313,
62,
2395,
316,
993,
13,
2799,
69,
48774,
198,
198,
1640,
19609,
6978,
287,
19609,
6978,
82,
198,
220,
220,
220,
19609,
15908,
11,
19609,
34345,
796,
6626,
15908,
7,
76,
5069,
6978,
8,
198,
220,
220,
220,
19609,
15908,
796,
4654,
6978,
7,
19608,
324,
343,
11,
19609,
15908,
8,
198,
220,
220,
220,
318,
6978,
7,
76,
5069,
15908,
8,
8614,
33480,
6978,
7,
76,
5069,
15908,
8,
198,
220,
220,
220,
4321,
7,
45313,
62,
2395,
316,
993,
62,
6371,
1635,
19609,
6978,
11,
4654,
6978,
7,
19608,
324,
343,
11,
19609,
6978,
4008,
198,
437,
198
] | 2.44898 | 343 |
cd(@__DIR__); include("setups/grid7x3.jl");
## DAG
D = natural_eigdist(𝚽, 𝛌, Q; distance = :DAG)
E = transform(fit(MDS, D, maxoutdim=2, distances=true))
plt = grid7x3_mds_heatmaps(E, 𝚽; backend = :pyplot)
savefig(plt, "../figs/Grid7x3_MDS_DAG.png")
display(plt)
| [
10210,
7,
31,
834,
34720,
834,
1776,
2291,
7203,
2617,
4739,
14,
25928,
22,
87,
18,
13,
20362,
15341,
198,
198,
2235,
360,
4760,
198,
35,
796,
3288,
62,
68,
328,
17080,
7,
47728,
248,
121,
11,
220,
47728,
249,
234,
11,
1195,
26,
5253,
796,
1058,
35,
4760,
8,
198,
36,
796,
6121,
7,
11147,
7,
44,
5258,
11,
360,
11,
3509,
448,
27740,
28,
17,
11,
18868,
28,
7942,
4008,
198,
489,
83,
796,
10706,
22,
87,
18,
62,
9132,
82,
62,
25080,
31803,
7,
36,
11,
220,
47728,
248,
121,
26,
30203,
796,
1058,
9078,
29487,
8,
198,
21928,
5647,
7,
489,
83,
11,
366,
40720,
5647,
82,
14,
41339,
22,
87,
18,
62,
44,
5258,
62,
35,
4760,
13,
11134,
4943,
198,
13812,
7,
489,
83,
8,
198
] | 1.992424 | 132 |
module LabRig
using CImGui, DataStructures
using CImGui.CSyntax
using CImGui.CSyntax.CStatic
using DataStructures
import ThreadPools.@tspawnat
const ZEISS_TID = 3
const PIPELINE_THREADS = 4:8
include("gamepad.jl")
include("manipulator.jl")
include("pressure.jl")
include("zeiss.jl")
include("daq.jl")
#include("camera.jl")
include("gui.jl")
export Gamepad, Manipulator, Pressure, GUI, CImGui, CSyntax, CStatic, Zeiss, DAQ # Camera
function init_subsystems()
Pressure.initialize()
@tspawnat ZEISS_TID Zeiss.server_init()
end
end # module
| [
21412,
3498,
49,
328,
198,
198,
3500,
327,
3546,
8205,
72,
11,
6060,
44909,
942,
198,
3500,
327,
3546,
8205,
72,
13,
7902,
33567,
897,
198,
3500,
327,
3546,
8205,
72,
13,
7902,
33567,
897,
13,
34,
45442,
198,
3500,
6060,
44909,
942,
198,
11748,
14122,
47,
10141,
13,
31,
912,
79,
3832,
265,
198,
9979,
1168,
36,
16744,
62,
51,
2389,
796,
513,
198,
9979,
350,
4061,
3698,
8881,
62,
4221,
15675,
50,
796,
604,
25,
23,
198,
198,
17256,
7203,
6057,
15636,
13,
20362,
4943,
198,
17256,
7203,
805,
541,
8927,
13,
20362,
4943,
198,
17256,
7203,
36151,
13,
20362,
4943,
198,
17256,
7203,
2736,
747,
13,
20362,
4943,
198,
17256,
7203,
48539,
13,
20362,
4943,
198,
2,
17256,
7203,
25695,
13,
20362,
4943,
198,
17256,
7203,
48317,
13,
20362,
4943,
198,
198,
39344,
3776,
15636,
11,
35045,
8927,
11,
30980,
11,
25757,
11,
327,
3546,
8205,
72,
11,
9429,
33567,
897,
11,
327,
45442,
11,
9033,
747,
11,
17051,
48,
1303,
20432,
628,
198,
8818,
2315,
62,
7266,
10057,
82,
3419,
198,
220,
220,
220,
30980,
13,
36733,
1096,
3419,
198,
220,
220,
220,
2488,
912,
79,
3832,
265,
1168,
36,
16744,
62,
51,
2389,
9033,
747,
13,
15388,
62,
15003,
3419,
198,
437,
198,
198,
437,
1303,
8265,
198
] | 2.586854 | 213 |
module DiffusionMCMCTools
using DiffusionDefinition, ObservationSchemes, GuidedProposals
using Random, Distributions
const DD = DiffusionDefinition
const OBS = ObservationSchemes
const GP = GuidedProposals
const _LL = Val(:ll)
const _P_ONLY = Val(:P_only)
#temporary
import GuidedProposals: is_critical_update
OBS.var_parameter_names(P::DD.DiffusionProcess) = DD.var_parameter_names(P)
include("sampling_unit.jl")
include("sampling_pair.jl")
include("sampling_ensemble.jl")
include("block.jl")
include("biblock.jl")
include("block_collection.jl")
include("block_ensemble.jl")
include("param_names_collections.jl")
# sampling_unit.jl
export SamplingUnit
export draw_proposal_path!
# sampling_pair.jl
export SamplingPair
# sampling_ensemble.jl
export SamplingEnsemble
# block.jl
export Block
export set_ll!, save_ll!, find_W_for_X!, recompute_path!, loglikhd!
# biblock.jl
export BiBlock
export accept_reject_proposal_path!, set_accepted!
export swap_paths!, swap_XX!, swap_WW!, swap_PP!, swap_ll!
export ll_of_accepted, accpt_rate, loglikhd°!
export set_proposal_law!
# block_collection.jl
export BlockCollection
export fetch_ll, fetch_ll°
# block_ensemble.jl
export BlockEnsemble
# param_names_collections.jl
export ParamNamesUnit
export ParamNamesBlock
export ParamNamesRecording
export ParamNamesAllObs
end
| [
21412,
10631,
4241,
9655,
44,
4177,
10141,
628,
220,
220,
220,
1262,
10631,
4241,
36621,
11,
11086,
13208,
27054,
6880,
11,
1962,
1384,
24331,
418,
874,
198,
220,
220,
220,
1262,
14534,
11,
46567,
507,
628,
220,
220,
220,
1500,
20084,
796,
10631,
4241,
36621,
198,
220,
220,
220,
1500,
440,
4462,
796,
11086,
13208,
27054,
6880,
198,
220,
220,
220,
1500,
14714,
796,
1962,
1384,
24331,
418,
874,
198,
220,
220,
220,
1500,
4808,
3069,
796,
3254,
7,
25,
297,
8,
198,
220,
220,
220,
1500,
4808,
47,
62,
1340,
11319,
796,
3254,
7,
25,
47,
62,
8807,
8,
628,
220,
220,
220,
1303,
11498,
5551,
198,
220,
220,
220,
1330,
1962,
1384,
24331,
418,
874,
25,
318,
62,
34666,
62,
19119,
628,
220,
220,
220,
440,
4462,
13,
7785,
62,
17143,
2357,
62,
14933,
7,
47,
3712,
16458,
13,
28813,
4241,
18709,
8,
796,
20084,
13,
7785,
62,
17143,
2357,
62,
14933,
7,
47,
8,
628,
220,
220,
220,
2291,
7203,
37687,
11347,
62,
20850,
13,
20362,
4943,
198,
220,
220,
220,
2291,
7203,
37687,
11347,
62,
24874,
13,
20362,
4943,
198,
220,
220,
220,
2291,
7203,
37687,
11347,
62,
1072,
11306,
13,
20362,
4943,
628,
220,
220,
220,
2291,
7203,
9967,
13,
20362,
4943,
198,
220,
220,
220,
2291,
7203,
65,
571,
5354,
13,
20362,
4943,
198,
220,
220,
220,
2291,
7203,
9967,
62,
43681,
13,
20362,
4943,
198,
220,
220,
220,
2291,
7203,
9967,
62,
1072,
11306,
13,
20362,
4943,
628,
220,
220,
220,
2291,
7203,
17143,
62,
14933,
62,
4033,
26448,
13,
20362,
4943,
628,
220,
220,
220,
1303,
19232,
62,
20850,
13,
20362,
198,
220,
220,
220,
10784,
3409,
11347,
26453,
198,
220,
220,
220,
10784,
3197,
62,
1676,
40007,
62,
6978,
0,
628,
220,
220,
220,
1303,
19232,
62,
24874,
13,
20362,
198,
220,
220,
220,
10784,
3409,
11347,
47,
958,
628,
220,
220,
220,
1303,
19232,
62,
1072,
11306,
13,
20362,
198,
220,
220,
220,
10784,
3409,
11347,
4834,
15140,
628,
220,
220,
220,
1303,
2512,
13,
20362,
198,
220,
220,
220,
10784,
9726,
198,
220,
220,
220,
10784,
900,
62,
297,
28265,
3613,
62,
297,
28265,
1064,
62,
54,
62,
1640,
62,
55,
28265,
48765,
1133,
62,
6978,
28265,
2604,
75,
13848,
67,
0,
628,
220,
220,
220,
1303,
275,
571,
5354,
13,
20362,
198,
220,
220,
220,
10784,
8436,
12235,
198,
220,
220,
220,
10784,
2453,
62,
260,
752,
62,
1676,
40007,
62,
6978,
28265,
900,
62,
13635,
276,
0,
198,
220,
220,
220,
10784,
16075,
62,
6978,
82,
28265,
16075,
62,
8051,
28265,
16075,
62,
17947,
28265,
16075,
62,
10246,
28265,
16075,
62,
297,
0,
198,
220,
220,
220,
10784,
32660,
62,
1659,
62,
13635,
276,
11,
697,
457,
62,
4873,
11,
2604,
75,
13848,
67,
7200,
0,
198,
220,
220,
220,
10784,
900,
62,
1676,
40007,
62,
6270,
0,
628,
220,
220,
220,
1303,
2512,
62,
43681,
13,
20362,
198,
220,
220,
220,
10784,
9726,
36307,
198,
220,
220,
220,
10784,
21207,
62,
297,
11,
21207,
62,
297,
7200,
628,
220,
220,
220,
1303,
2512,
62,
1072,
11306,
13,
20362,
198,
220,
220,
220,
10784,
9726,
4834,
15140,
628,
220,
220,
220,
1303,
5772,
62,
14933,
62,
4033,
26448,
13,
20362,
198,
220,
220,
220,
10784,
25139,
36690,
26453,
198,
220,
220,
220,
10784,
25139,
36690,
12235,
198,
220,
220,
220,
10784,
25139,
36690,
6690,
1284,
198,
220,
220,
220,
10784,
25139,
36690,
3237,
31310,
198,
437,
198
] | 2.631579 | 570 |
# Definition of CuckooFilter and associated methods
"""
CuckooFilter{F}
A cuckoo filter. `F` is the type of fingerprint used by the filter (defaults
to `UInt8`).
# Examples
```jldoctest; setup = :(using CuckooFilters)
julia> filter = CuckooFilter{AbstractVector{UInt8}}();
julia> b"hello, world!" ∈ filter
false
julia> insert!(filter, b"hello, world!")
true
julia> b"hello, world!" ∈ filter
true
julia> delete!(filter, b"hello, world!")
true
julia> b"hello, world!" ∈ filter
false
```
"""
struct CuckooFilter{T,F}
buckets :: Array{Bucket{F},1}
max_bucket_kicks :: Int64
max_bucket_size :: Int64
end
CuckooFilter{T}() where T = CuckooFilter{T, fingerprint_type(T)}()
function CuckooFilter{T,F}(;
n_buckets = 1000,
max_bucket_kicks = 100,
max_bucket_size = 4
) where {T,F}
buckets = [Bucket{F}() for i = 1:n_buckets]
CuckooFilter{T,F}(buckets, 100, 4)
end
function getbucket(filter, i)
n_buckets = length(filter.buckets)
i = (i % n_buckets) + 1
return filter.buckets[i]
end
insert_unique!(filter::CuckooFilter, key) = insert!(filter, key, true)
function Base.insert!(
filter::CuckooFilter{T},
key::T,
unique = false
) where T
if unique && key ∈ filter
return false
end
f = fingerprint(key)
h₁ = hash(key)
# Probe first bucket to see if it has an empty entry
b₁ = getbucket(filter, h₁)
if !isfull(b₁, filter.max_bucket_size)
insert!(b₁, f)
return true
end
# Probe second bucket to see if it has an empty entry
h₂ = h₁ ⊻ hash(f)
b₂ = getbucket(filter, h₂)
if !isfull(b₂, filter.max_bucket_size)
insert!(b₂, f)
return true
end
# If both buckets are full, we need to relocate an existing
# item from one of the two buckets and move it to another
# bucket
b, h = rand(((h₁, b₁), (h₂, b₂)))
for i = 1:filter.max_bucket_kicks
original_f = f
# Swap the fingerprint f with a random fingerprint from
# the bucket
rand_idx = rand(1:length(b))
f = b[rand_idx]
b[rand_idx] = original_f
# Attempt to insert the fingerprint into a new bucket
h = h ⊻ hash(f)
b = getbucket(f, h)
if !isfull(b)
insert!(b, f)
return true
end
end
# If we've reached this point, we've gone through the maximum
# number of possible iterations to try and kick fingerprints
# through the cuckoo filter. We treat the hash table as full.
error("Cuckoo filter is full")
end
function Base.delete!(filter::CuckooFilter{T}, key::T) where T
# Delete the key from its first possible bucket if it is inside
# of that bucket
f = fingerprint(key)
h₁ = hash(key)
b₁ = getbucket(filter, h₁)
if delete!(b₁, f)
return true
end
# If the first deletion failed, then we attempt to delete the
# key from its second bucket
h₂ = h₁ ⊻ hash(f)
b₂ = getbucket(filter, h₂)
delete!(b₂, f)
end
function Base.in(key::T, filter::CuckooFilter{T}) where T
# Check whether the key's fingerprint is in its first possible
# bucket
f = fingerprint(key)
h₁ = hash(key)
if f ∈ getbucket(filter, h₁)
return true
end
# Check whether the fingerprint is in its second possible bucket
h₂ = h₁ ⊻ hash(f)
f ∈ getbucket(filter, h₂)
end
| [
2,
30396,
286,
327,
1347,
2238,
22417,
290,
3917,
5050,
198,
198,
37811,
198,
220,
220,
220,
327,
1347,
2238,
22417,
90,
37,
92,
198,
198,
32,
269,
1347,
2238,
8106,
13,
4600,
37,
63,
318,
262,
2099,
286,
25338,
973,
416,
262,
8106,
357,
12286,
82,
198,
1462,
4600,
52,
5317,
23,
63,
737,
198,
198,
2,
21066,
198,
198,
15506,
63,
73,
335,
38441,
395,
26,
9058,
796,
36147,
3500,
327,
1347,
2238,
11928,
1010,
8,
198,
73,
43640,
29,
8106,
796,
327,
1347,
2238,
22417,
90,
23839,
38469,
90,
52,
5317,
23,
11709,
9783,
198,
198,
73,
43640,
29,
275,
1,
31373,
11,
995,
2474,
18872,
230,
8106,
198,
9562,
198,
198,
73,
43640,
29,
7550,
0,
7,
24455,
11,
275,
1,
31373,
11,
995,
2474,
8,
198,
7942,
198,
198,
73,
43640,
29,
275,
1,
31373,
11,
995,
2474,
18872,
230,
8106,
198,
7942,
198,
198,
73,
43640,
29,
12233,
0,
7,
24455,
11,
275,
1,
31373,
11,
995,
2474,
8,
198,
7942,
198,
198,
73,
43640,
29,
275,
1,
31373,
11,
995,
2474,
18872,
230,
8106,
198,
9562,
198,
15506,
63,
198,
37811,
198,
7249,
327,
1347,
2238,
22417,
90,
51,
11,
37,
92,
198,
220,
220,
220,
38674,
7904,
15690,
90,
33,
38811,
90,
37,
5512,
16,
92,
198,
220,
220,
220,
3509,
62,
27041,
316,
62,
74,
3378,
7904,
2558,
2414,
198,
220,
220,
220,
3509,
62,
27041,
316,
62,
7857,
7904,
2558,
2414,
198,
437,
198,
198,
34,
1347,
2238,
22417,
90,
51,
92,
3419,
810,
309,
796,
327,
1347,
2238,
22417,
90,
51,
11,
25338,
62,
4906,
7,
51,
38165,
3419,
198,
198,
8818,
327,
1347,
2238,
22417,
90,
51,
11,
37,
92,
7,
26,
198,
220,
220,
220,
299,
62,
27041,
1039,
796,
8576,
11,
198,
220,
220,
220,
3509,
62,
27041,
316,
62,
74,
3378,
796,
1802,
11,
198,
220,
220,
220,
3509,
62,
27041,
316,
62,
7857,
796,
604,
198,
8,
810,
1391,
51,
11,
37,
92,
198,
220,
220,
220,
38674,
796,
685,
33,
38811,
90,
37,
92,
3419,
329,
1312,
796,
352,
25,
77,
62,
27041,
1039,
60,
198,
220,
220,
220,
327,
1347,
2238,
22417,
90,
51,
11,
37,
92,
7,
27041,
1039,
11,
1802,
11,
604,
8,
198,
437,
198,
198,
8818,
651,
27041,
316,
7,
24455,
11,
1312,
8,
198,
220,
220,
220,
299,
62,
27041,
1039,
796,
4129,
7,
24455,
13,
27041,
1039,
8,
198,
220,
220,
220,
1312,
796,
357,
72,
4064,
299,
62,
27041,
1039,
8,
1343,
352,
198,
220,
220,
220,
1441,
8106,
13,
27041,
1039,
58,
72,
60,
198,
437,
198,
198,
28463,
62,
34642,
0,
7,
24455,
3712,
34,
1347,
2238,
22417,
11,
1994,
8,
796,
7550,
0,
7,
24455,
11,
1994,
11,
2081,
8,
198,
198,
8818,
7308,
13,
28463,
0,
7,
198,
220,
220,
220,
8106,
3712,
34,
1347,
2238,
22417,
90,
51,
5512,
198,
220,
220,
220,
1994,
3712,
51,
11,
198,
220,
220,
220,
3748,
796,
3991,
198,
8,
810,
309,
198,
220,
220,
220,
611,
3748,
11405,
1994,
18872,
230,
8106,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
3991,
198,
220,
220,
220,
886,
628,
220,
220,
220,
277,
796,
25338,
7,
2539,
8,
198,
220,
220,
220,
289,
158,
224,
223,
796,
12234,
7,
2539,
8,
628,
220,
220,
220,
1303,
42600,
717,
19236,
284,
766,
611,
340,
468,
281,
6565,
5726,
198,
220,
220,
220,
275,
158,
224,
223,
796,
651,
27041,
316,
7,
24455,
11,
289,
158,
224,
223,
8,
198,
220,
220,
220,
611,
5145,
4468,
724,
7,
65,
158,
224,
223,
11,
8106,
13,
9806,
62,
27041,
316,
62,
7857,
8,
198,
220,
220,
220,
220,
220,
220,
220,
7550,
0,
7,
65,
158,
224,
223,
11,
277,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
2081,
198,
220,
220,
220,
886,
628,
220,
220,
220,
1303,
42600,
1218,
19236,
284,
766,
611,
340,
468,
281,
6565,
5726,
198,
220,
220,
220,
289,
158,
224,
224,
796,
289,
158,
224,
223,
2343,
232,
119,
12234,
7,
69,
8,
198,
220,
220,
220,
275,
158,
224,
224,
796,
651,
27041,
316,
7,
24455,
11,
289,
158,
224,
224,
8,
198,
220,
220,
220,
611,
5145,
4468,
724,
7,
65,
158,
224,
224,
11,
8106,
13,
9806,
62,
27041,
316,
62,
7857,
8,
198,
220,
220,
220,
220,
220,
220,
220,
7550,
0,
7,
65,
158,
224,
224,
11,
277,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
2081,
198,
220,
220,
220,
886,
628,
220,
220,
220,
1303,
1002,
1111,
38674,
389,
1336,
11,
356,
761,
284,
36867,
281,
4683,
198,
220,
220,
220,
1303,
2378,
422,
530,
286,
262,
734,
38674,
290,
1445,
340,
284,
1194,
198,
220,
220,
220,
1303,
19236,
198,
220,
220,
220,
275,
11,
289,
796,
43720,
19510,
7,
71,
158,
224,
223,
11,
275,
158,
224,
223,
828,
357,
71,
158,
224,
224,
11,
275,
158,
224,
224,
22305,
198,
220,
220,
220,
329,
1312,
796,
352,
25,
24455,
13,
9806,
62,
27041,
316,
62,
74,
3378,
198,
220,
220,
220,
220,
220,
220,
220,
2656,
62,
69,
796,
277,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
48408,
262,
25338,
277,
351,
257,
4738,
25338,
422,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
262,
19236,
198,
220,
220,
220,
220,
220,
220,
220,
43720,
62,
312,
87,
796,
43720,
7,
16,
25,
13664,
7,
65,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
277,
796,
275,
58,
25192,
62,
312,
87,
60,
198,
220,
220,
220,
220,
220,
220,
220,
275,
58,
25192,
62,
312,
87,
60,
796,
2656,
62,
69,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
25770,
284,
7550,
262,
25338,
656,
257,
649,
19236,
198,
220,
220,
220,
220,
220,
220,
220,
289,
796,
289,
2343,
232,
119,
12234,
7,
69,
8,
198,
220,
220,
220,
220,
220,
220,
220,
275,
796,
651,
27041,
316,
7,
69,
11,
289,
8,
198,
220,
220,
220,
220,
220,
220,
220,
611,
5145,
4468,
724,
7,
65,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7550,
0,
7,
65,
11,
277,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
2081,
198,
220,
220,
220,
220,
220,
220,
220,
886,
198,
220,
220,
220,
886,
628,
220,
220,
220,
1303,
1002,
356,
1053,
4251,
428,
966,
11,
356,
1053,
3750,
832,
262,
5415,
198,
220,
220,
220,
1303,
1271,
286,
1744,
34820,
284,
1949,
290,
4829,
34290,
198,
220,
220,
220,
1303,
832,
262,
269,
1347,
2238,
8106,
13,
775,
2190,
262,
12234,
3084,
355,
1336,
13,
198,
220,
220,
220,
4049,
7203,
34,
1347,
2238,
8106,
318,
1336,
4943,
198,
437,
198,
198,
8818,
7308,
13,
33678,
0,
7,
24455,
3712,
34,
1347,
2238,
22417,
90,
51,
5512,
1994,
3712,
51,
8,
810,
309,
198,
220,
220,
220,
1303,
23520,
262,
1994,
422,
663,
717,
1744,
19236,
611,
340,
318,
2641,
198,
220,
220,
220,
1303,
286,
326,
19236,
198,
220,
220,
220,
277,
796,
25338,
7,
2539,
8,
198,
220,
220,
220,
289,
158,
224,
223,
796,
12234,
7,
2539,
8,
198,
220,
220,
220,
275,
158,
224,
223,
796,
651,
27041,
316,
7,
24455,
11,
289,
158,
224,
223,
8,
198,
220,
220,
220,
611,
12233,
0,
7,
65,
158,
224,
223,
11,
277,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
2081,
198,
220,
220,
220,
886,
628,
220,
220,
220,
1303,
1002,
262,
717,
39948,
4054,
11,
788,
356,
2230,
284,
12233,
262,
198,
220,
220,
220,
1303,
1994,
422,
663,
1218,
19236,
198,
220,
220,
220,
289,
158,
224,
224,
796,
289,
158,
224,
223,
2343,
232,
119,
12234,
7,
69,
8,
198,
220,
220,
220,
275,
158,
224,
224,
796,
651,
27041,
316,
7,
24455,
11,
289,
158,
224,
224,
8,
198,
220,
220,
220,
12233,
0,
7,
65,
158,
224,
224,
11,
277,
8,
198,
437,
198,
198,
8818,
7308,
13,
259,
7,
2539,
3712,
51,
11,
8106,
3712,
34,
1347,
2238,
22417,
90,
51,
30072,
810,
309,
198,
220,
220,
220,
1303,
6822,
1771,
262,
1994,
338,
25338,
318,
287,
663,
717,
1744,
198,
220,
220,
220,
1303,
19236,
198,
220,
220,
220,
277,
796,
25338,
7,
2539,
8,
198,
220,
220,
220,
289,
158,
224,
223,
796,
12234,
7,
2539,
8,
198,
220,
220,
220,
611,
277,
18872,
230,
651,
27041,
316,
7,
24455,
11,
289,
158,
224,
223,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
2081,
198,
220,
220,
220,
886,
628,
220,
220,
220,
1303,
6822,
1771,
262,
25338,
318,
287,
663,
1218,
1744,
19236,
198,
220,
220,
220,
289,
158,
224,
224,
796,
289,
158,
224,
223,
2343,
232,
119,
12234,
7,
69,
8,
198,
220,
220,
220,
277,
18872,
230,
651,
27041,
316,
7,
24455,
11,
289,
158,
224,
224,
8,
198,
437,
628,
198
] | 2.276094 | 1,485 |
using Optim
export dmdobjective, projBl2
# This file is available under the terms of the MIT License
@doc """
Functions for evaluating the objective and gradient.
"""
function prox_null(x)
return
end
function dmdobjective(params;updatep=true)
if updatep
return aBFunc(params)
else
return BFunc(params)
end
end
function BFunc(params)
T = eltype(params.X);
# update residual
BLAS.gemm!('N', 'N', T(1.0), params.P, params.B, T(0.0), params.R);
params.R .-= params.X
#
return params.lossFunc(view(params.R, :, params.ikeep))
end
function bFunc(params, id)
T = eltype(params.X);
# update residual
BLAS.gemv!('N', T(1.0), params.P, params.b[id], T(0.0), params.r[id]);
params.r[id] .-= params.x[id]
#
return params.lossFunc(params.r[id])
end
function bGrad(gbr, params, id)
T = eltype(params.X);
Tr = typeof(real(params.X[1]));
# update residual
BLAS.gemv!('N', T(1.0), params.P, params.b[id], T(0.0), params.r[id]);
params.r[id] .-= params.x[id];
#
params.lossGrad(params.r[id]);
#
gb = vr2vc(gbr);
BLAS.gemv!('T', T(1.0), params.P, params.r[id], T(0.0), gb);
gbr[1:2:end] .*= Tr(2.0);
gbr[2:2:end] .*= Tr(-2.0);
end
function bFuncGrad(gbr, params, id)
T = eltype(params.X);
Tr = typeof(real(params.X[1]));
# update residual
BLAS.gemv!('N', T(1.0), params.P, params.b[id], T(0.0), params.r[id]);
params.r[id] .-= params.x[id];
#
f = params.lossFunc(params.r[id])
params.lossGrad(params.r[id]);
#
gb = vr2vc(gbr);
BLAS.gemv!('T', T(1.0), params.P, params.r[id], T(0.0), gb);
gbr[1:2:end] .*= Tr(2.0);
gbr[2:2:end] .*= Tr(-2.0);
return f
end
function bfg!(ft, gbr, br, params, id)
copyto!(params.br[id], br);
if ft != nothing && gbr != nothing
return bFuncGrad(gbr, params, id);
end
if ft == nothing && gbr != nothing
bGrad(gbr, params, id)
return
end
if ft != nothing && gbr == nothing
return bFunc(params, id)
end
end
function projb(params, id)
# define the function and gradient interface for optim
#
function obfg!(f, g, x)
return bfg!(f, g, x, params, id)
end
optimfg! = Optim.only_fg!(obfg!)
res = optimize(optimfg!, params.br[id], params.inner_solver,
params.inner_opts);
copyto!(params.br[id], res.minimizer);
end
function projB(params)
for id = 1:params.n
projb(params, id);
end
end
function abFunc(params, id)
# update P
update_P!(params);
# partially minimize over b
if params.inner_directl2
projbl2(params,id);
else
projb(params,id);
end
#
return bFunc(params, id)
end
function aBFunc(params)
# update P
update_P!(params);
# partially minimize over B
if params.inner_directl2
projBl2(params);
else
projB(params);
end
#
return BFunc(params)
end
function abGrad(gar, params, id)
# update P
update_P!(params);
#
T = eltype(params.X);
Tr = typeof(real(params.X[1]));
# partially minimize over b
if params.inner_directl2
projbl2(params,id);
else
projb(params,id);
end
# update residual
BLAS.gemv!('N', T(1.0), params.P, params.b[id], T(0.0), params.r[id]);
params.r[id] .-= params.x[id];
#
params.lossGrad(params.r[id]);
#
ga = vr2vc(gar);
#
params.r[id] .*= params.t;
BLAS.gemv!('T', T(1.0), params.P, params.r[id], T(0.0), ga);
ga .*= params.b[id];
#
gar[1:2:end] .*= Tr(2.0);
gar[2:2:end] .*= Tr(-2.0);
end
function aBGrad(gar, params)
# update P
update_P!(params);
#
T = eltype(params.X);
Tr = typeof(real(params.X[1]));
# partially minimize over B
if params.inner_directl2
projBl2(params);
else
projB(params);
end
# trim
trimstandard(params)
# update residual
BLAS.gemm!('N', 'N', T(1.0), params.P, params.B, T(0.0), params.R);
params.R .-= params.X
#
params.lossGrad(params.R);
#
ga = vr2vc(gar);
#
params.R .*= params.t;
BLAS.gemm!('T', 'N', T(1.0), params.P, params.R, T(0.0), params.tM);
params.tM .*= params.B;
sum!(ga, view(params.tM, :, params.ikeep));
#
gar[1:2:end] .*= Tr(2.0);
gar[2:2:end] .*= Tr(-2.0);
end
function aBFuncGrad(gar, params)
# update P
update_P!(params);
#
T = eltype(params.X);
Tr = typeof(real(params.X[1]));
# partially minimize over B
if params.inner_directl2
projBl2(params);
else
projB(params);
end
# trim
trimstandard(params)
# update residual
BLAS.gemm!('N', 'N', T(1.0), params.P, params.B, T(0.0), params.R);
params.R .-= params.X
#
f = params.lossFunc(view(params.R, :, params.ikeep))
params.lossGrad(params.R);
#
ga = vr2vc(gar);
#
params.R .*= params.t;
BLAS.gemm!('T', 'N', T(1.0), params.P, params.R, T(0.0), params.tM);
params.tM .*= params.B;
sum!(ga, view(params.tM, :, params.ikeep));
#
gar[1:2:end] .*= Tr(2.0);
gar[2:2:end] .*= Tr(-2.0);
return f
end
#####################################################
# L2 Penalty
function updateqr!(params)
if params.a != params.qra
qrfact = params.qrfact;
# grab pointers
fact = qrfact.factors
jpvt = qrfact.jpvt
tau = qrfact.τ
# prep and call factorization
copyto!(fact, params.P)
jpvt .= 0 # do not forget!
LinearAlgebra.LAPACK.geqp3!(fact, jpvt, tau)
copyto!(params.qra, params.a)
end
end
function projbl2(params, id)
updateqr!(params)
copyto!(params.qrtemp[id], params.x[id])
ldiv!(params.qrfact, params.qrtemp[id])
k = params.k
copyto!(params.b[id], view(params.qrtemp[id], 1:k))
end
function projBl2(params)
if any(isinf, params.P)
params.B .= 0.0
else
updateqr!(params)
copyto!(params.qrTemp, params.X)
ldiv!(params.qrfact, params.qrTemp)
k = params.k
copyto!(params.B, view(params.qrTemp, 1:k, :))
end
end
################################################
# trimming
function trimstandard(params)
if params.n == params.nkeep
return
end
T = eltype(params.X)
# update residual
BLAS.gemm!('N', 'N', T(1.0), params.P, params.B, T(0.0), params.R);
params.R .-= params.X
for id = 1:params.n
params.tcnorm[id] = params.lossFunc(params.r[id])
end
sortperm!(params.idsort, params.tcnorm, rev=false)
copyto!(params.ikeep, view(params.idsort, 1:params.nkeep))
sort!(params.ikeep)
end
| [
3500,
30011,
198,
39344,
288,
9132,
15252,
425,
11,
386,
73,
3629,
17,
198,
198,
2,
770,
2393,
318,
1695,
739,
262,
2846,
286,
262,
17168,
13789,
198,
198,
31,
15390,
37227,
198,
24629,
2733,
329,
22232,
262,
9432,
290,
31312,
13,
198,
37811,
198,
198,
8818,
14793,
62,
8423,
7,
87,
8,
198,
220,
220,
220,
1441,
198,
437,
628,
198,
198,
8818,
288,
9132,
15252,
425,
7,
37266,
26,
19119,
79,
28,
7942,
8,
198,
220,
220,
220,
611,
4296,
79,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
257,
29499,
19524,
7,
37266,
8,
198,
220,
220,
220,
2073,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
41646,
19524,
7,
37266,
8,
198,
220,
220,
220,
886,
198,
437,
198,
198,
8818,
41646,
19524,
7,
37266,
8,
198,
220,
220,
220,
309,
796,
1288,
4906,
7,
37266,
13,
55,
1776,
198,
220,
220,
220,
1303,
4296,
29598,
198,
220,
220,
220,
9878,
1921,
13,
24090,
76,
0,
10786,
45,
3256,
705,
45,
3256,
309,
7,
16,
13,
15,
828,
42287,
13,
47,
11,
42287,
13,
33,
11,
309,
7,
15,
13,
15,
828,
42287,
13,
49,
1776,
198,
220,
220,
220,
42287,
13,
49,
764,
12,
28,
42287,
13,
55,
198,
220,
220,
220,
1303,
198,
220,
220,
220,
1441,
42287,
13,
22462,
37,
19524,
7,
1177,
7,
37266,
13,
49,
11,
1058,
11,
42287,
13,
522,
538,
4008,
198,
437,
198,
198,
8818,
275,
37,
19524,
7,
37266,
11,
4686,
8,
198,
220,
220,
220,
309,
796,
1288,
4906,
7,
37266,
13,
55,
1776,
198,
220,
220,
220,
1303,
4296,
29598,
198,
220,
220,
220,
9878,
1921,
13,
24090,
85,
0,
10786,
45,
3256,
309,
7,
16,
13,
15,
828,
42287,
13,
47,
11,
42287,
13,
65,
58,
312,
4357,
309,
7,
15,
13,
15,
828,
42287,
13,
81,
58,
312,
36563,
198,
220,
220,
220,
42287,
13,
81,
58,
312,
60,
764,
12,
28,
42287,
13,
87,
58,
312,
60,
198,
220,
220,
220,
1303,
198,
220,
220,
220,
1441,
42287,
13,
22462,
37,
19524,
7,
37266,
13,
81,
58,
312,
12962,
198,
437,
198,
198,
8818,
275,
42731,
7,
70,
1671,
11,
42287,
11,
4686,
8,
198,
220,
220,
220,
309,
796,
1288,
4906,
7,
37266,
13,
55,
1776,
198,
220,
220,
220,
833,
796,
2099,
1659,
7,
5305,
7,
37266,
13,
55,
58,
16,
12962,
1776,
198,
220,
220,
220,
1303,
4296,
29598,
198,
220,
220,
220,
9878,
1921,
13,
24090,
85,
0,
10786,
45,
3256,
309,
7,
16,
13,
15,
828,
42287,
13,
47,
11,
42287,
13,
65,
58,
312,
4357,
309,
7,
15,
13,
15,
828,
42287,
13,
81,
58,
312,
36563,
198,
220,
220,
220,
42287,
13,
81,
58,
312,
60,
764,
12,
28,
42287,
13,
87,
58,
312,
11208,
198,
220,
220,
220,
1303,
198,
220,
220,
220,
42287,
13,
22462,
42731,
7,
37266,
13,
81,
58,
312,
36563,
198,
220,
220,
220,
1303,
198,
220,
220,
220,
308,
65,
796,
410,
81,
17,
28435,
7,
70,
1671,
1776,
198,
220,
220,
220,
9878,
1921,
13,
24090,
85,
0,
10786,
51,
3256,
309,
7,
16,
13,
15,
828,
42287,
13,
47,
11,
42287,
13,
81,
58,
312,
4357,
309,
7,
15,
13,
15,
828,
308,
65,
1776,
198,
220,
220,
220,
308,
1671,
58,
16,
25,
17,
25,
437,
60,
764,
9,
28,
833,
7,
17,
13,
15,
1776,
198,
220,
220,
220,
308,
1671,
58,
17,
25,
17,
25,
437,
60,
764,
9,
28,
833,
32590,
17,
13,
15,
1776,
198,
437,
198,
198,
8818,
275,
37,
19524,
42731,
7,
70,
1671,
11,
42287,
11,
4686,
8,
198,
220,
220,
220,
309,
796,
1288,
4906,
7,
37266,
13,
55,
1776,
198,
220,
220,
220,
833,
796,
2099,
1659,
7,
5305,
7,
37266,
13,
55,
58,
16,
12962,
1776,
198,
220,
220,
220,
1303,
4296,
29598,
198,
220,
220,
220,
9878,
1921,
13,
24090,
85,
0,
10786,
45,
3256,
309,
7,
16,
13,
15,
828,
42287,
13,
47,
11,
42287,
13,
65,
58,
312,
4357,
309,
7,
15,
13,
15,
828,
42287,
13,
81,
58,
312,
36563,
198,
220,
220,
220,
42287,
13,
81,
58,
312,
60,
764,
12,
28,
42287,
13,
87,
58,
312,
11208,
198,
220,
220,
220,
1303,
628,
220,
220,
220,
220,
198,
220,
220,
220,
277,
796,
42287,
13,
22462,
37,
19524,
7,
37266,
13,
81,
58,
312,
12962,
198,
220,
220,
220,
220,
198,
220,
220,
220,
42287,
13,
22462,
42731,
7,
37266,
13,
81,
58,
312,
36563,
198,
220,
220,
220,
1303,
198,
220,
220,
220,
308,
65,
796,
410,
81,
17,
28435,
7,
70,
1671,
1776,
198,
220,
220,
220,
9878,
1921,
13,
24090,
85,
0,
10786,
51,
3256,
309,
7,
16,
13,
15,
828,
42287,
13,
47,
11,
42287,
13,
81,
58,
312,
4357,
309,
7,
15,
13,
15,
828,
308,
65,
1776,
198,
220,
220,
220,
308,
1671,
58,
16,
25,
17,
25,
437,
60,
764,
9,
28,
833,
7,
17,
13,
15,
1776,
198,
220,
220,
220,
308,
1671,
58,
17,
25,
17,
25,
437,
60,
764,
9,
28,
833,
32590,
17,
13,
15,
1776,
628,
220,
220,
220,
1441,
277,
198,
437,
628,
198,
8818,
275,
40616,
0,
7,
701,
11,
308,
1671,
11,
865,
11,
42287,
11,
4686,
8,
198,
220,
220,
220,
4866,
1462,
0,
7,
37266,
13,
1671,
58,
312,
4357,
865,
1776,
198,
220,
220,
220,
611,
10117,
14512,
2147,
11405,
308,
1671,
14512,
2147,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
275,
37,
19524,
42731,
7,
70,
1671,
11,
42287,
11,
4686,
1776,
198,
220,
220,
220,
886,
198,
220,
220,
220,
611,
10117,
6624,
2147,
11405,
308,
1671,
14512,
2147,
198,
220,
220,
220,
220,
220,
220,
220,
275,
42731,
7,
70,
1671,
11,
42287,
11,
4686,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
198,
220,
220,
220,
886,
198,
220,
220,
220,
611,
10117,
14512,
2147,
11405,
308,
1671,
6624,
2147,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
275,
37,
19524,
7,
37266,
11,
4686,
8,
198,
220,
220,
220,
886,
198,
437,
198,
198,
8818,
386,
73,
65,
7,
37266,
11,
4686,
8,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
8160,
262,
2163,
290,
31312,
7071,
329,
6436,
198,
220,
220,
220,
1303,
628,
220,
220,
220,
2163,
909,
40616,
0,
7,
69,
11,
308,
11,
2124,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
275,
40616,
0,
7,
69,
11,
308,
11,
2124,
11,
42287,
11,
4686,
8,
198,
220,
220,
220,
886,
198,
220,
220,
220,
220,
198,
220,
220,
220,
6436,
40616,
0,
796,
30011,
13,
8807,
62,
40616,
0,
7,
672,
40616,
8133,
198,
220,
220,
220,
581,
796,
27183,
7,
40085,
40616,
28265,
42287,
13,
1671,
58,
312,
4357,
42287,
13,
5083,
62,
82,
14375,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
42287,
13,
5083,
62,
404,
912,
1776,
198,
220,
220,
220,
220,
198,
220,
220,
220,
4866,
1462,
0,
7,
37266,
13,
1671,
58,
312,
4357,
581,
13,
1084,
320,
7509,
1776,
198,
198,
437,
198,
198,
8818,
386,
73,
33,
7,
37266,
8,
198,
220,
220,
220,
329,
4686,
796,
352,
25,
37266,
13,
77,
198,
220,
220,
220,
220,
220,
220,
220,
386,
73,
65,
7,
37266,
11,
4686,
1776,
198,
220,
220,
220,
886,
198,
437,
198,
198,
8818,
450,
37,
19524,
7,
37266,
11,
4686,
8,
198,
220,
220,
220,
1303,
4296,
350,
198,
220,
220,
220,
4296,
62,
47,
0,
7,
37266,
1776,
198,
220,
220,
220,
1303,
12387,
17775,
625,
275,
198,
220,
220,
220,
611,
42287,
13,
5083,
62,
12942,
75,
17,
198,
220,
220,
220,
220,
220,
220,
220,
386,
73,
2436,
17,
7,
37266,
11,
312,
1776,
198,
220,
220,
220,
2073,
198,
220,
220,
220,
220,
220,
220,
220,
386,
73,
65,
7,
37266,
11,
312,
1776,
198,
220,
220,
220,
886,
198,
220,
220,
220,
1303,
198,
220,
220,
220,
1441,
275,
37,
19524,
7,
37266,
11,
4686,
8,
198,
437,
198,
198,
8818,
257,
29499,
19524,
7,
37266,
8,
198,
220,
220,
220,
1303,
4296,
350,
198,
220,
220,
220,
4296,
62,
47,
0,
7,
37266,
1776,
198,
220,
220,
220,
1303,
12387,
17775,
625,
347,
198,
220,
220,
220,
611,
42287,
13,
5083,
62,
12942,
75,
17,
198,
220,
220,
220,
220,
220,
220,
220,
386,
73,
3629,
17,
7,
37266,
1776,
198,
220,
220,
220,
2073,
198,
220,
220,
220,
220,
220,
220,
220,
386,
73,
33,
7,
37266,
1776,
198,
220,
220,
220,
886,
198,
220,
220,
220,
1303,
198,
220,
220,
220,
1441,
41646,
19524,
7,
37266,
8,
198,
437,
198,
198,
8818,
450,
42731,
7,
4563,
11,
42287,
11,
4686,
8,
198,
220,
220,
220,
1303,
4296,
350,
198,
220,
220,
220,
4296,
62,
47,
0,
7,
37266,
1776,
198,
220,
220,
220,
1303,
198,
220,
220,
220,
309,
796,
1288,
4906,
7,
37266,
13,
55,
1776,
198,
220,
220,
220,
833,
796,
2099,
1659,
7,
5305,
7,
37266,
13,
55,
58,
16,
12962,
1776,
198,
220,
220,
220,
1303,
12387,
17775,
625,
275,
628,
220,
220,
220,
611,
42287,
13,
5083,
62,
12942,
75,
17,
198,
220,
220,
220,
220,
220,
220,
220,
386,
73,
2436,
17,
7,
37266,
11,
312,
1776,
198,
220,
220,
220,
2073,
198,
220,
220,
220,
220,
220,
220,
220,
386,
73,
65,
7,
37266,
11,
312,
1776,
198,
220,
220,
220,
886,
198,
220,
220,
220,
1303,
4296,
29598,
198,
220,
220,
220,
9878,
1921,
13,
24090,
85,
0,
10786,
45,
3256,
309,
7,
16,
13,
15,
828,
42287,
13,
47,
11,
42287,
13,
65,
58,
312,
4357,
309,
7,
15,
13,
15,
828,
42287,
13,
81,
58,
312,
36563,
198,
220,
220,
220,
42287,
13,
81,
58,
312,
60,
764,
12,
28,
42287,
13,
87,
58,
312,
11208,
198,
220,
220,
220,
1303,
198,
220,
220,
220,
42287,
13,
22462,
42731,
7,
37266,
13,
81,
58,
312,
36563,
198,
220,
220,
220,
1303,
198,
220,
220,
220,
31986,
796,
410,
81,
17,
28435,
7,
4563,
1776,
198,
220,
220,
220,
1303,
198,
220,
220,
220,
42287,
13,
81,
58,
312,
60,
764,
9,
28,
42287,
13,
83,
26,
198,
220,
220,
220,
9878,
1921,
13,
24090,
85,
0,
10786,
51,
3256,
309,
7,
16,
13,
15,
828,
42287,
13,
47,
11,
42287,
13,
81,
58,
312,
4357,
309,
7,
15,
13,
15,
828,
31986,
1776,
198,
220,
220,
220,
31986,
764,
9,
28,
42287,
13,
65,
58,
312,
11208,
198,
220,
220,
220,
1303,
198,
220,
220,
220,
5482,
58,
16,
25,
17,
25,
437,
60,
764,
9,
28,
833,
7,
17,
13,
15,
1776,
198,
220,
220,
220,
5482,
58,
17,
25,
17,
25,
437,
60,
764,
9,
28,
833,
32590,
17,
13,
15,
1776,
198,
437,
198,
198,
8818,
257,
40469,
6335,
7,
4563,
11,
42287,
8,
198,
220,
220,
220,
1303,
4296,
350,
198,
220,
220,
220,
4296,
62,
47,
0,
7,
37266,
1776,
198,
220,
220,
220,
1303,
198,
220,
220,
220,
309,
796,
1288,
4906,
7,
37266,
13,
55,
1776,
198,
220,
220,
220,
833,
796,
2099,
1659,
7,
5305,
7,
37266,
13,
55,
58,
16,
12962,
1776,
198,
220,
220,
220,
1303,
12387,
17775,
625,
347,
628,
220,
220,
220,
611,
42287,
13,
5083,
62,
12942,
75,
17,
198,
220,
220,
220,
220,
220,
220,
220,
386,
73,
3629,
17,
7,
37266,
1776,
198,
220,
220,
220,
2073,
198,
220,
220,
220,
220,
220,
220,
220,
386,
73,
33,
7,
37266,
1776,
198,
220,
220,
220,
886,
628,
220,
220,
220,
1303,
15797,
198,
220,
220,
220,
15797,
20307,
7,
37266,
8,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
4296,
29598,
198,
220,
220,
220,
9878,
1921,
13,
24090,
76,
0,
10786,
45,
3256,
705,
45,
3256,
309,
7,
16,
13,
15,
828,
42287,
13,
47,
11,
42287,
13,
33,
11,
309,
7,
15,
13,
15,
828,
42287,
13,
49,
1776,
198,
220,
220,
220,
42287,
13,
49,
764,
12,
28,
42287,
13,
55,
198,
220,
220,
220,
1303,
198,
220,
220,
220,
42287,
13,
22462,
42731,
7,
37266,
13,
49,
1776,
198,
220,
220,
220,
1303,
198,
220,
220,
220,
31986,
796,
410,
81,
17,
28435,
7,
4563,
1776,
198,
220,
220,
220,
1303,
198,
220,
220,
220,
42287,
13,
49,
764,
9,
28,
42287,
13,
83,
26,
198,
220,
220,
220,
9878,
1921,
13,
24090,
76,
0,
10786,
51,
3256,
705,
45,
3256,
309,
7,
16,
13,
15,
828,
42287,
13,
47,
11,
42287,
13,
49,
11,
309,
7,
15,
13,
15,
828,
42287,
13,
83,
44,
1776,
198,
220,
220,
220,
42287,
13,
83,
44,
764,
9,
28,
42287,
13,
33,
26,
198,
220,
220,
220,
2160,
0,
7,
4908,
11,
1570,
7,
37266,
13,
83,
44,
11,
1058,
11,
42287,
13,
522,
538,
18125,
198,
220,
220,
220,
1303,
198,
220,
220,
220,
5482,
58,
16,
25,
17,
25,
437,
60,
764,
9,
28,
833,
7,
17,
13,
15,
1776,
198,
220,
220,
220,
5482,
58,
17,
25,
17,
25,
437,
60,
764,
9,
28,
833,
32590,
17,
13,
15,
1776,
198,
437,
198,
198,
8818,
257,
29499,
19524,
42731,
7,
4563,
11,
42287,
8,
198,
220,
220,
220,
1303,
4296,
350,
198,
220,
220,
220,
4296,
62,
47,
0,
7,
37266,
1776,
198,
220,
220,
220,
1303,
198,
220,
220,
220,
309,
796,
1288,
4906,
7,
37266,
13,
55,
1776,
198,
220,
220,
220,
833,
796,
2099,
1659,
7,
5305,
7,
37266,
13,
55,
58,
16,
12962,
1776,
198,
220,
220,
220,
1303,
12387,
17775,
625,
347,
198,
220,
220,
220,
611,
42287,
13,
5083,
62,
12942,
75,
17,
198,
220,
220,
220,
220,
220,
220,
220,
386,
73,
3629,
17,
7,
37266,
1776,
198,
220,
220,
220,
2073,
198,
220,
220,
220,
220,
220,
220,
220,
386,
73,
33,
7,
37266,
1776,
198,
220,
220,
220,
886,
628,
220,
220,
220,
1303,
15797,
198,
220,
220,
220,
15797,
20307,
7,
37266,
8,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
4296,
29598,
198,
220,
220,
220,
9878,
1921,
13,
24090,
76,
0,
10786,
45,
3256,
705,
45,
3256,
309,
7,
16,
13,
15,
828,
42287,
13,
47,
11,
42287,
13,
33,
11,
309,
7,
15,
13,
15,
828,
42287,
13,
49,
1776,
198,
220,
220,
220,
42287,
13,
49,
764,
12,
28,
42287,
13,
55,
198,
220,
220,
220,
1303,
628,
220,
220,
220,
277,
796,
42287,
13,
22462,
37,
19524,
7,
1177,
7,
37266,
13,
49,
11,
1058,
11,
42287,
13,
522,
538,
4008,
220,
220,
220,
220,
198,
220,
220,
220,
220,
198,
220,
220,
220,
42287,
13,
22462,
42731,
7,
37266,
13,
49,
1776,
198,
220,
220,
220,
1303,
198,
220,
220,
220,
31986,
796,
410,
81,
17,
28435,
7,
4563,
1776,
198,
220,
220,
220,
1303,
198,
220,
220,
220,
42287,
13,
49,
764,
9,
28,
42287,
13,
83,
26,
198,
220,
220,
220,
9878,
1921,
13,
24090,
76,
0,
10786,
51,
3256,
705,
45,
3256,
309,
7,
16,
13,
15,
828,
42287,
13,
47,
11,
42287,
13,
49,
11,
309,
7,
15,
13,
15,
828,
42287,
13,
83,
44,
1776,
198,
220,
220,
220,
42287,
13,
83,
44,
764,
9,
28,
42287,
13,
33,
26,
198,
220,
220,
220,
2160,
0,
7,
4908,
11,
1570,
7,
37266,
13,
83,
44,
11,
1058,
11,
42287,
13,
522,
538,
18125,
198,
220,
220,
220,
1303,
198,
220,
220,
220,
5482,
58,
16,
25,
17,
25,
437,
60,
764,
9,
28,
833,
7,
17,
13,
15,
1776,
198,
220,
220,
220,
5482,
58,
17,
25,
17,
25,
437,
60,
764,
9,
28,
833,
32590,
17,
13,
15,
1776,
628,
220,
220,
220,
1441,
277,
198,
437,
628,
198,
29113,
14468,
4242,
2,
198,
2,
406,
17,
41676,
198,
198,
8818,
4296,
80,
81,
0,
7,
37266,
8,
198,
220,
220,
220,
611,
42287,
13,
64,
14512,
42287,
13,
80,
430,
198,
220,
220,
220,
220,
220,
220,
220,
10662,
81,
22584,
796,
42287,
13,
80,
81,
22584,
26,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
5552,
32007,
198,
220,
220,
220,
220,
220,
220,
220,
1109,
796,
10662,
81,
22584,
13,
22584,
669,
198,
220,
220,
220,
220,
220,
220,
220,
474,
79,
36540,
796,
10662,
81,
22584,
13,
34523,
36540,
198,
220,
220,
220,
220,
220,
220,
220,
256,
559,
796,
10662,
81,
22584,
13,
32830,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
3143,
290,
869,
5766,
1634,
198,
220,
220,
220,
220,
220,
220,
220,
4866,
1462,
0,
7,
22584,
11,
42287,
13,
47,
8,
198,
220,
220,
220,
220,
220,
220,
220,
474,
79,
36540,
764,
28,
657,
1303,
466,
407,
6044,
0,
198,
220,
220,
220,
220,
220,
220,
220,
44800,
2348,
29230,
13,
43,
2969,
8120,
13,
469,
80,
79,
18,
0,
7,
22584,
11,
474,
79,
36540,
11,
256,
559,
8,
198,
220,
220,
220,
220,
220,
220,
220,
4866,
1462,
0,
7,
37266,
13,
80,
430,
11,
42287,
13,
64,
8,
198,
220,
220,
220,
886,
198,
437,
628,
198,
8818,
386,
73,
2436,
17,
7,
37266,
11,
4686,
8,
198,
220,
220,
220,
4296,
80,
81,
0,
7,
37266,
8,
198,
220,
220,
220,
4866,
1462,
0,
7,
37266,
13,
80,
81,
29510,
58,
312,
4357,
42287,
13,
87,
58,
312,
12962,
198,
220,
220,
220,
300,
7146,
0,
7,
37266,
13,
80,
81,
22584,
11,
42287,
13,
80,
81,
29510,
58,
312,
12962,
198,
220,
220,
220,
479,
796,
42287,
13,
74,
198,
220,
220,
220,
4866,
1462,
0,
7,
37266,
13,
65,
58,
312,
4357,
1570,
7,
37266,
13,
80,
81,
29510,
58,
312,
4357,
352,
25,
74,
4008,
198,
437,
198,
198,
8818,
386,
73,
3629,
17,
7,
37266,
8,
198,
220,
220,
220,
611,
597,
7,
271,
10745,
11,
42287,
13,
47,
8,
198,
220,
220,
220,
220,
220,
220,
220,
42287,
13,
33,
764,
28,
657,
13,
15,
198,
220,
220,
220,
2073,
198,
220,
220,
220,
220,
220,
220,
220,
4296,
80,
81,
0,
7,
37266,
8,
198,
220,
220,
220,
220,
220,
220,
220,
4866,
1462,
0,
7,
37266,
13,
80,
81,
30782,
11,
42287,
13,
55,
8,
198,
220,
220,
220,
220,
220,
220,
220,
300,
7146,
0,
7,
37266,
13,
80,
81,
22584,
11,
42287,
13,
80,
81,
30782,
8,
198,
220,
220,
220,
220,
220,
220,
220,
479,
796,
42287,
13,
74,
198,
220,
220,
220,
220,
220,
220,
220,
4866,
1462,
0,
7,
37266,
13,
33,
11,
1570,
7,
37266,
13,
80,
81,
30782,
11,
352,
25,
74,
11,
1058,
4008,
198,
220,
220,
220,
886,
198,
437,
198,
198,
29113,
14468,
198,
2,
15797,
2229,
198,
198,
8818,
15797,
20307,
7,
37266,
8,
198,
220,
220,
220,
611,
42287,
13,
77,
6624,
42287,
13,
77,
14894,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
198,
220,
220,
220,
886,
198,
220,
220,
220,
309,
796,
1288,
4906,
7,
37266,
13,
55,
8,
198,
220,
220,
220,
1303,
4296,
29598,
198,
220,
220,
220,
9878,
1921,
13,
24090,
76,
0,
10786,
45,
3256,
705,
45,
3256,
309,
7,
16,
13,
15,
828,
42287,
13,
47,
11,
42287,
13,
33,
11,
309,
7,
15,
13,
15,
828,
42287,
13,
49,
1776,
198,
220,
220,
220,
42287,
13,
49,
764,
12,
28,
42287,
13,
55,
198,
220,
220,
220,
329,
4686,
796,
352,
25,
37266,
13,
77,
198,
220,
220,
220,
220,
220,
220,
220,
42287,
13,
23047,
27237,
58,
312,
60,
796,
42287,
13,
22462,
37,
19524,
7,
37266,
13,
81,
58,
312,
12962,
198,
220,
220,
220,
886,
198,
220,
220,
220,
3297,
16321,
0,
7,
37266,
13,
2340,
419,
11,
42287,
13,
23047,
27237,
11,
2710,
28,
9562,
8,
198,
220,
220,
220,
4866,
1462,
0,
7,
37266,
13,
522,
538,
11,
1570,
7,
37266,
13,
2340,
419,
11,
352,
25,
37266,
13,
77,
14894,
4008,
198,
220,
220,
220,
3297,
0,
7,
37266,
13,
522,
538,
8,
198,
437,
220,
220,
220,
220,
198
] | 2.022761 | 3,339 |
# ==================================================================================================================
function solveStokes_penalty( U, P, θ, r, Ucartesian,Upolar, g, ρ, η, 𝓒,
theta, rr, TT,
∂Ωu, ufix, ifree,
PhaseID, EL2NOD, EL2NODP,
KKidx, GGidx, invMMidx,
to)
@timeit to "Stokes" begin
@timeit to "Assembly" KK, GG, invMM, Rhs =
assembly_stokes_penalty(EL2NOD, EL2NODP, theta, rr, g, ρ, η, 𝓒, PhaseID, KKidx, GGidx, invMMidx)
@timeit to "BCs" begin
KK, GG, Rhs = _prepare_matrices_penalty(KK, GG, Rhs, TT)
U, Rhs = _apply_bcs(U,KK,Rhs,∂Ωu,ufix)
end
@timeit to "Solve" U, P = PowellHesteness(U, P, KK, invMM, GG, Rhs, ifree)
@timeit to "Remove net rotation" U, Ucart, Upolar, Ucartesian = updatevelocity(U,Ucartesian, Upolar, θ, r,TT)
# @timeit to "Remove nullspace" U, Ucart, Upolar, Ucartesian = updatevelocity2(U, Ucartesian, Upolar, ρ, EL2NOD, TT, theta, rr, r)
end
return Ucartesian,Upolar,U,Ucart,P,to
end
# ==================================================================================================================
@inline function _apply_bcs_penalty(U, KK, Rhs, ∂Ω, vfix)
U[∂Ω] = vfix # write prescribed temperature values
Rhs -= KK[:,∂Ω] * vfix
return U,Rhs
end
@inline function _prepare_matrices_penalty(KK, GG, Fb,TT)
dropzeros!(GG)
KK = SparseMatrixCSC(Symmetric(KK,:L))
dropzeros!(KK)
transTT = SparseMatrixCSC(TT')
KK = transTT*KK*TT
GG = transTT*GG
Fb = transTT*Fb
KK = SparseMatrixCSC(Symmetric(KK,:L))
return KK,GG,Fb
end
function assembly_stokes_penalty(EL2NOD, EL2NODP, theta, r, g, ρ, η, 𝓒, PhaseID, KKidx, GGidx, invMMidx)
penalty = 1e6
# ============================================ MODEL AND BLOCKING PARAMETERS
ndim = 2
# nvert = 3
# EL2NOD0 = deepcopy(EL2NOD)
nnodel = size(EL2NOD,1)
nel = size(EL2NOD,2)
nelblk = min(nel, 1200)
nblk = ceil(Int,nel/nelblk)
il = one(nelblk); iu = nelblk
# =========== PREPARE INTEGRATION POINTS & DERIVATIVES wrt LOCAL COORDINATES
nip = 6
# nUdof = ndim*maximum(EL2NOD)
# nPdof = maximum(EL2NODP)
nUdofel = ndim * nnodel
nPdofel = size(EL2NODP,1)
ni, nn, nnP, nn3 = Val(nip), Val(nnodel), Val(3), Val(3)
N,dNds,_,w_ip = _get_SF(ni,nn)
NP,_,_,_ = _get_SF(ni,nnP)
N3,_,dN3ds,_ = _get_SF(ni,nn3)
# ============================================================= ALLOCATIONS
detJ_PL = Vector{Float64}(undef,nelblk)
R_31 = similar(detJ_PL) # = detJa_PL*dxi_dth
R_21 = similar(detJ_PL) # = -detJa_PL*deta_dth
Th_31 = similar(detJ_PL) # = -detJa_PL*dxi_dr
Th_21 = similar(detJ_PL) # = detJa_PL*deta_dr
# NxN = Array{Float64,2}(undef,3,3)
# ang_dist = Array{Float64,2}(undef,3,nelblk)
# VCOORD_th = similar(ang_dist)
# VCOORD_r = similar(ang_dist)
dNdx = Array{Float64,2}(undef,nelblk,size(dNds[1],2))
dNdy = similar(dNdx)
ω = Vector{Float64}(undef,Int(nelblk))
invJx_double = Array{Float64,2}(undef,Int(nelblk),ndim) # storage for x-components of Jacobi matrix
invJz_double = similar(invJx_double) # storage for z-components of Jacobi matrix
# ==================================== STORAGE FOR DATA OF ELEMENTS IN BLOCK
K_blk = fill(0.0, nelblk, Int(nUdofel*(nUdofel+1)/2))
# symmetric stiffness matrix, dim=vel dofs, but only upper triangle
M_blk = fill(0.0, nelblk, Int(nPdofel*(nPdofel+1)/2))
# symmetric mass matrix, dim=pressure nodes, but only upper triangle
G_blk = fill(0.0, nelblk, nPdofel*nUdofel)
# asymmetric gradient matrix, vel dofs x pressure nodes
Fb_blk = fill(0.0, nelblk, nUdofel)
# storage for entries in bouyancy force vector
invM_blk = fill(0.0, nelblk, nPdofel*nPdofel)
invMG_blk = fill(0.0, nelblk, nPdofel*nUdofel)
# ==================================== STORAGE FOR DATA OF ALL ELEMENT MATRICES/VECTORS
K_all = Array{Float64,2}(undef, Int(nUdofel*(nUdofel+1)/2),nel)
M_all = Array{Float64,2}(undef, Int(nPdofel*(nPdofel+1)/2),nel)
G_all = Array{Float64,2}(undef, nUdofel*nPdofel,nel)
Fb_all = Array{Float64,2}(undef, nUdofel,nel)
invM_all = Array{Float64,2}(undef, nPdofel*nPdofel,nel)
#=========================================================================
BLOCK LOOP - MATRIX COMPUTATION
=========================================================================#
for ib in 1:nblk
#===========================================================================
CALCULATE JACOBIAN, ITS DETERMINANT AND INVERSE
===========================================================================#
"""
NOTE: For triangular elements with non-curved edges the Jacobian is
the same for all integration points (i.e. calculated once
before the integration loop). Further, linear 3-node shape are
sufficient to calculate the Jacobian.
"""
# idx = @views EL2NOD[1:nvert,il:iu]
# VCOORD_th = reshape(theta[idx],nvert,nelblk)
# VCOORD_r = reshape(r[idx],nvert,nelblk)
VCOORD_th = view(theta,:,il:iu)
VCOORD_r = view(r,:,il:iu)
J_th = (VCOORD_th'*dN3ds')
J_r = (VCOORD_r'*dN3ds')
_fill_R_J!(J_th,J_r,VCOORD_th,VCOORD_r,
R_31,R_21,Th_31,Th_21,detJ_PL)
# ------------------------ NUMERICAL INTEGRATION LOOP (GAUSS QUADRATURE)
_ip_loop_penalty!(K_blk, M_blk, G_blk, Fb_blk,
g, η, 𝓒, ρ, EL2NOD, PhaseID,il:iu,
dNds, w_ip, nip, nnodel, nelblk, nPdofel,nUdofel,
dNdx,dNdy,N,N3,NP,
ω,invJx_double, invJz_double, detJ_PL,
R_21,R_31,Th_21,Th_31,
VCOORD_th,VCOORD_r)
_invM!(invM_blk, M_blk, detJ_PL)
_fill_invMxG!(invMG_blk, invM_blk, G_blk, nPdofel, nUdofel)
_fill_KplusGxinvMxGt(K_blk, invMG_blk, G_blk, nPdofel, nUdofel, penalty)
# --------------------------------------- WRITE DATA INTO GLOBAL STORAGE
@views begin
K_all[:,il:iu] .= K_blk'
G_all[:,il:iu] .= G_blk'
M_all[:,il:iu] .= M_blk'
Fb_all[:,il:iu] .= Fb_blk'
invM_all[:,il:iu] .= invM_blk'
end
# -------------------------------------------------- RESET BLOCK MATRICES
fill!(K_blk,0.0)
fill!(G_blk,0.0)
fill!(M_blk,0.0)
fill!(Fb_blk,0.0)
fill!(invM_blk,0.0)
fill!(invMG_blk,0.0)
# -------------------------------- READJUST START, END AND SIZE OF BLOCK
il += nelblk;
if ib == nblk-1
# ------------ Account for different number of elements in last block
nelblk = nel - il + 1 # new block size
# --------------------------------- Reallocate at blocks at the edge
detJ_PL = Vector{Float64}(undef,nelblk)
R_31 = similar(detJ_PL)
R_21 = similar(detJ_PL)
Th_31 = similar(detJ_PL)
Th_21 = similar(detJ_PL)
# ang_dist = Array{Float64,2}(undef,3,nelblk)
dNdx = Array{Float64,2}(undef,nelblk,size(dNds[1],2))
dNdy = similar(dNdx)
K_blk = fill(0.0, nelblk, Int(nUdofel*(nUdofel+1)/2))
M_blk = fill(0.0, nelblk, Int(nPdofel*(nPdofel+1)/2))
G_blk = fill(0.0, nelblk, nPdofel*nUdofel)
Fb_blk = fill(0.0, nelblk, nUdofel)
ω = Vector{Float64}(undef,Int(nelblk))
invJx_double = Array{Float64,2}(undef,Int(nelblk),ndim)
invJz_double = similar(invJx_double)
invM_blk = fill(0.0, nelblk, nPdofel*nPdofel)
invMG_blk = fill(0.0, nelblk, nPdofel*nUdofel)
end
iu += nelblk
end # end block loop
# #===========================================================================
# ASSEMBLY OF GLOBAL SPARSE MATRICES AND RHS-VECTOR
# ===========================================================================#
KK, GG, invMM, Fb =
_create_stokes_matrices_penalty(EL2NOD, nUdofel, ndim,
KKidx, GGidx, invMMidx,
K_all, G_all, invM_all, Fb_all)
return KK, GG, invMM, Fb
end # END OF ASSEMBLY FUNCTION
function _ip_loop_penalty!( K_blk, M_blk, G_blk, Fb_blk,
g, η, 𝓒, ρ, EL2NOD, PhaseID,els,
dNds, w_ip, nip, nnodel, nelblk, nPdofel,nUdofel,
dNdx,dNdy,N,N3,NP,
ω,invJx_double, invJz_double, detJ_PL,
R_21,R_31,Th_21,Th_31,
VCOORD_th,VCOORD_r)
sin_ip = similar(detJ_PL)
cos_ip = similar(detJ_PL)
for ip=1:nip
N_ip = N3[ip]
# NP_blk = repeat(NP[ip],nelblk,1)
NP_blk = NP[ip].*ones(nelblk)
#=======================================================================
PROPERTIES OF ELEMENTS AT ip-TH EVALUATION POINT
=======================================================================#
Dens_blk = _element_density(ρ,EL2NOD,PhaseID,els,NP[ip])
Visc_blk = _element_viscosity(η,EL2NOD,PhaseID,els,NP[ip])
# Gravitational force at ip-th integration point
Fg_blk = g * Dens_blk
#==========================================================================================================
CALCULATE 2nd JACOBIAN (FROM CARTESIAN TO POLAR COORDINATES --> curved edges), ITS DETERMINANT AND INVERSE
===========================================================================================================
NOTE: For triangular elements with curved edges the Jacobian needs to be computed at each integration
point (inside the integration loop). =#
th_ip = VCOORD_th'*N_ip'
r_ip = VCOORD_r'*N_ip'
_derivative_weights!(dNds[ip],ω,dNdx,dNdy,w_ip[ip],th_ip,r_ip,sin_ip,cos_ip,
R_21,R_31,Th_21,Th_31,detJ_PL,invJx_double,invJz_double)
_fill_Kblk!(K_blk, 𝓒, Visc_blk, Val(η), ω, dNdx, dNdy, nnodel, els, ip)
_fill_Gblk!(G_blk, NP_blk, ω, dNdx, dNdy, nPdofel,nUdofel,nnodel)
_fill_Mblk_penalty!(M_blk, NP_blk, ω, nPdofel)
_fill_Fbblk!(Fb_blk,Fg_blk, N[ip],
ω, sin_ip,cos_ip,nUdofel)
end # end integration point loop
end # ENF OF IP_LOOP FUNCTION
@inline function _fill_Mblk_penalty!(M_blk, NP_blk, ω, nPdofel)
# "weight" divided by viscosity at integration point in all elements
indx = 1;
for i in 1:nPdofel
@inbounds @simd for j in i:nPdofel
M_blk[:,indx] .+= ω.*view(NP_blk,:,i).*view(NP_blk,:,j)
indx += 1
end
end
end
function _invM!(invM_blk, M_blk, detJ)
TMP = 1.0./detJ
M_blk = M_blk .* TMP
# M_blk = M_blk .* TMP[:,ones[1,nPdofel*[nPdofel+1]/2]];
# How to calculate the determinante of several symmetric 3x3 matrices:
# det[M] = M11*M22*M33 + M12*M23*M31 + M13*M21*M32
# - M13*M22*M31 - M12*M21*M33 - M11*M23*M32
# written in 1-index notation:
# = M1 *M5 *M9 + M4 *M8 *M3 + M7 *M2 *M6
# - M7 *M5 *M3 - M4 *M2 *M9 - M1 *M8 *M6
# considering symmetry and using lower triangular part only
# [M4=M2, M7=M3, M8=M6]
# = M1 *M5 *M9 + M2 *M6 *M3 + M3 *M2 *M6
# - M3 *M5 *M3 - M2 *M2 *M9 - M1 *M6 *M6
# and knowing where the 6 different values are stored in M_blk
# [1-->M1, 2-->M2, 3-->M3, 4-->M5, 5-->M6, 6-->M9]
# = M_blk1*M_blk4*M_blk6 + M_blk2*M_blk5*M_blk3 + M_blk3*M_blk2*M_blk5
# - M_blk3*M_blk4*M_blk3 - M_blk2*M_blk2*M_blk6 - M_blk1*M_blk5*M_blk5
# re-arranging
# = M_blk1 * [M_blk4*M_blk6 - M_blk5*M_blk5]
# + M_blk2 * [M_blk5*M_blk3 - M_blk2*M_blk6]
# + M_blk3 * [M_blk2*M_blk5 - M_blk4*M_blk3]
detM_blk = @. M_blk[:,1] * (M_blk[:,4]*M_blk[:,6] - M_blk[:,5]*M_blk[:,5]) +
M_blk[:,2] * (M_blk[:,5]*M_blk[:,3] - M_blk[:,2]*M_blk[:,6]) +
M_blk[:,3] * (M_blk[:,2]*M_blk[:,5] - M_blk[:,4]*M_blk[:,3])
detM_blk ./=TMP
# The determinante is used to calculate the inverse of the symmetric
# 3x3 element mass matrices. The same logic as above is used.
invM_blk[:,1] = @views @. (M_blk[:,4]*M_blk[:,6] - M_blk[:,5]*M_blk[:,5])/detM_blk;
invM_blk[:,2] = @views @. (M_blk[:,5]*M_blk[:,3] - M_blk[:,2]*M_blk[:,6])/detM_blk;
invM_blk[:,3] = @views @. (M_blk[:,2]*M_blk[:,5] - M_blk[:,4]*M_blk[:,3])/detM_blk;
invM_blk[:,4] = @views invM_blk[:,2];
invM_blk[:,5] = @views @. (M_blk[:,1]*M_blk[:,6] - M_blk[:,3]*M_blk[:,3])/detM_blk;
invM_blk[:,6] = @views @. (M_blk[:,2]*M_blk[:,3] - M_blk[:,1]*M_blk[:,5])/detM_blk;
invM_blk[:,7] = @views invM_blk[:,3];
invM_blk[:,8] = @views invM_blk[:,6];
invM_blk[:,9] = @views @. (M_blk[:,1]*M_blk[:,4] - M_blk[:,5]*M_blk[:,5])/detM_blk;
end
function _fill_invMxG!(invMG_blk, invM_blk, G_blk, nPdofel, nUdofel)
# --------------------------invM*G'----------------------------
for i=1:nPdofel
for j=1:nUdofel
for k=1:nPdofel
invMG_blk[:,(i-1)*nUdofel+j] = @views invMG_blk[:,(i-1)*nUdofel+j] +
invM_blk[:,(i-1)*nPdofel+k].*G_blk[:,(k-1)*nUdofel+j];
end
end
end
end
function _fill_KplusGxinvMxGt(K_blk, invMG_blk, G_blk, nPdofel, nUdofel, penalty)
# -----------------K = K + penalty*G*invM*G'-------------------
indx = 1;
for i=1:nUdofel
for j=i:nUdofel
for k=1:nPdofel
K_blk[:,indx] = @views K_blk[:,indx] +
penalty*G_blk[:,(k-1)*nUdofel+i].*invMG_blk[:,(k-1)*nUdofel+j];
end
indx += 1;
end
end
end
@inline function _create_stokes_matrices_penalty(EL2NOD,nUdofel,ndim,
KKidx, GGidx, invMMidx,
K_all, G_all, invM_all, Fb_all)
nel = size(EL2NOD,2)
#==========================================================================
ASSEMBLY OF GLOBAL STIFFNESS MATRIX
==========================================================================#
# convert triplet data to sparse global stiffness matrix (assembly)
KK = sparse(KKidx._i ,KKidx._j, vec(K_all))
#==========================================================================
ASSEMBLY OF GLOBAL GRADIENT MATRIX
==========================================================================#
# convert triplet data to sparse global gradient matrix (assembly)
GG = sparse(GGidx._i ,GGidx._j ,vec(G_all))
#==========================================================================
ASSEMBLY OF GLOBAL FORCE VECTOR
==========================================================================#
EL2DOF = Array{Int64}(undef,nUdofel, nel)
@views EL2DOF[1:ndim:nUdofel,:] .= @. ndim*(EL2NOD-1)+1
@views EL2DOF[2:ndim:nUdofel,:] .= @. ndim*(EL2NOD-1)+2
Fb = accumarray(vec(EL2DOF),vec(Fb_all));
#==========================================================================
ASSEMBLY OF GLOBAL (1/VISCOSITY)-SCALED MASS MATRIX
==========================================================================#
# convert triplet data to sparse global matrix
invMM = sparse(invMMidx._i ,invMMidx._j , vec(invM_all))
return KK, GG, invMM, Fb
end
# POWELL-HESTENESS SOLVER ================================================================
@inline function PowellHesteness(U, P, KK, M⁻¹, GG, Rhs, ifree)
itmax_PH = 50
itmin_PH = 2
# itnum = 0
norm∇U = Vector{Float64}(undef, itmax_PH)
Rhs .+= GG*P
LL = factorize(KK[ifree, ifree])
# LL = cholesky(KK[ifree, ifree])
GGᵀ = GG'
# Uifree = U[ifree]
# Rhsifree = Rhs[ifree]
penalty = 1e6
for itPH = 1:itmax_PH
@inbounds U[ifree] .= LL\Rhs[ifree]
∇U = -GGᵀ*U
# rm0space!(∇U)
ΔP = penalty*M⁻¹*∇U
Rhs .+= GG*ΔP
P .+= ΔP
# Check convergence -----------------------------------------------
norm∇U[itPH] = mynorm(∇U)
if (itPH > itmin_PH) && (norm∇U[itPH]/norm∇U[itPH-1] > 0.1)
println("\n", itPH," Powell-Hesteness iterations\n")
break
end
end
# Ux = U[1:2:end]
# Uz = U[2:2:end]
# M = sum(mean(ρ[EL2NOD],dims=1)'.*area_el)
# Ax = sum(mean(ρ[EL2NOD].*Ux[EL2NOD], dims=1)'.*area_el)
# Az = sum(mean(ρ[EL2NOD].*Uz[EL2NOD], dims=1)'.*area_el)
# A = @. (Ax+Az)/M
# U .-=A
return U, P
end # END POWELL-HESTENESS SOLVER | [
2,
38093,
10052,
4770,
28,
198,
8818,
8494,
1273,
3369,
62,
3617,
6017,
7,
471,
11,
350,
11,
220,
7377,
116,
11,
374,
11,
471,
26674,
35610,
11,
4933,
6192,
11,
308,
11,
18074,
223,
11,
7377,
115,
11,
220,
47728,
241,
240,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
262,
8326,
11,
374,
81,
11,
26653,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
18872,
224,
138,
102,
84,
11,
334,
13049,
11,
611,
631,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
18983,
2389,
11,
17852,
17,
45,
3727,
11,
17852,
17,
45,
3727,
47,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
509,
48374,
87,
11,
37442,
312,
87,
11,
800,
12038,
312,
87,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
284,
8,
198,
220,
220,
220,
2488,
2435,
270,
284,
366,
1273,
3369,
1,
2221,
198,
220,
220,
220,
220,
220,
220,
220,
2488,
2435,
270,
284,
366,
49670,
1,
509,
42,
11,
37442,
11,
800,
12038,
11,
10323,
82,
796,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10474,
62,
301,
3369,
62,
3617,
6017,
7,
3698,
17,
45,
3727,
11,
17852,
17,
45,
3727,
47,
11,
262,
8326,
11,
374,
81,
11,
308,
11,
18074,
223,
11,
7377,
115,
11,
220,
47728,
241,
240,
11,
18983,
2389,
11,
509,
48374,
87,
11,
37442,
312,
87,
11,
800,
12038,
312,
87,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2488,
2435,
270,
284,
366,
2749,
82,
1,
2221,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
509,
42,
11,
37442,
11,
10323,
82,
796,
4808,
46012,
533,
62,
6759,
45977,
62,
3617,
6017,
7,
16601,
11,
37442,
11,
10323,
82,
11,
26653,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
471,
11,
10323,
82,
796,
4808,
39014,
62,
65,
6359,
7,
52,
11,
16601,
11,
49,
11994,
11,
24861,
224,
138,
102,
84,
11,
3046,
844,
8,
198,
220,
220,
220,
220,
220,
220,
220,
886,
198,
220,
220,
220,
220,
220,
220,
220,
2488,
2435,
270,
284,
366,
50,
6442,
1,
471,
11,
350,
796,
19675,
39,
395,
9449,
7,
52,
11,
350,
11,
509,
42,
11,
800,
12038,
11,
37442,
11,
10323,
82,
11,
611,
631,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2488,
2435,
270,
284,
366,
27914,
2010,
13179,
1,
471,
11,
471,
26674,
11,
3205,
6192,
11,
471,
26674,
35610,
796,
4296,
626,
11683,
7,
52,
11,
52,
26674,
35610,
11,
3205,
6192,
11,
220,
7377,
116,
11,
374,
11,
15751,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
2488,
2435,
270,
284,
366,
27914,
9242,
13200,
1,
220,
471,
11,
471,
26674,
11,
3205,
6192,
11,
471,
26674,
35610,
796,
4296,
626,
11683,
17,
7,
52,
11,
471,
26674,
35610,
11,
3205,
6192,
11,
18074,
223,
11,
17852,
17,
45,
3727,
11,
26653,
11,
262,
8326,
11,
374,
81,
11,
374,
8,
628,
220,
220,
220,
886,
198,
220,
220,
220,
1441,
471,
26674,
35610,
11,
4933,
6192,
11,
52,
11,
52,
26674,
11,
47,
11,
1462,
198,
437,
198,
2,
38093,
10052,
4770,
28,
198,
198,
31,
45145,
2163,
4808,
39014,
62,
65,
6359,
62,
3617,
6017,
7,
52,
11,
509,
42,
11,
10323,
82,
11,
18872,
224,
138,
102,
11,
410,
13049,
8,
198,
220,
220,
220,
471,
58,
24861,
224,
138,
102,
60,
796,
410,
13049,
1303,
3551,
14798,
5951,
3815,
198,
220,
220,
220,
10323,
82,
48185,
509,
42,
58,
45299,
24861,
224,
138,
102,
60,
1635,
410,
13049,
198,
220,
220,
220,
1441,
471,
11,
49,
11994,
198,
437,
198,
198,
31,
45145,
2163,
4808,
46012,
533,
62,
6759,
45977,
62,
3617,
6017,
7,
16601,
11,
37442,
11,
376,
65,
11,
15751,
8,
198,
220,
220,
220,
220,
198,
220,
220,
220,
4268,
9107,
418,
0,
7,
11190,
8,
220,
220,
220,
198,
220,
220,
220,
509,
42,
796,
1338,
17208,
46912,
34,
6173,
7,
13940,
3020,
19482,
7,
16601,
11,
25,
43,
4008,
198,
220,
220,
220,
4268,
9107,
418,
0,
7,
16601,
8,
198,
220,
220,
220,
1007,
15751,
796,
1338,
17208,
46912,
34,
6173,
7,
15751,
11537,
198,
220,
220,
220,
509,
42,
796,
1007,
15751,
9,
16601,
9,
15751,
198,
220,
220,
220,
37442,
796,
1007,
15751,
9,
11190,
198,
220,
220,
220,
376,
65,
796,
1007,
15751,
9,
37,
65,
198,
220,
220,
220,
509,
42,
796,
1338,
17208,
46912,
34,
6173,
7,
13940,
3020,
19482,
7,
16601,
11,
25,
43,
4008,
198,
220,
220,
220,
1441,
509,
42,
11,
11190,
11,
37,
65,
198,
437,
198,
198,
8818,
10474,
62,
301,
3369,
62,
3617,
6017,
7,
3698,
17,
45,
3727,
11,
17852,
17,
45,
3727,
47,
11,
262,
8326,
11,
374,
11,
308,
11,
18074,
223,
11,
7377,
115,
11,
220,
47728,
241,
240,
11,
18983,
2389,
11,
509,
48374,
87,
11,
37442,
312,
87,
11,
800,
12038,
312,
87,
8,
220,
198,
220,
220,
220,
7389,
796,
352,
68,
21,
198,
220,
220,
220,
1303,
46111,
2559,
18604,
19164,
3698,
5357,
9878,
11290,
2751,
29463,
2390,
2767,
4877,
198,
220,
220,
220,
299,
27740,
796,
362,
198,
220,
220,
220,
1303,
299,
1851,
796,
513,
198,
220,
220,
220,
1303,
17852,
17,
45,
3727,
15,
796,
2769,
30073,
7,
3698,
17,
45,
3727,
8,
198,
220,
220,
220,
299,
77,
375,
417,
796,
2546,
7,
3698,
17,
45,
3727,
11,
16,
8,
198,
220,
220,
220,
299,
417,
796,
2546,
7,
3698,
17,
45,
3727,
11,
17,
8,
198,
220,
220,
220,
299,
417,
2436,
74,
796,
949,
7,
4954,
11,
24938,
8,
198,
220,
220,
220,
299,
2436,
74,
796,
2906,
346,
7,
5317,
11,
4954,
14,
4954,
2436,
74,
8,
198,
220,
220,
220,
4229,
796,
530,
7,
4954,
2436,
74,
1776,
1312,
84,
796,
299,
417,
2436,
74,
198,
220,
220,
220,
1303,
796,
2559,
855,
22814,
47,
12203,
17828,
7156,
49,
6234,
19922,
1268,
4694,
1222,
360,
1137,
3824,
1404,
42472,
1319,
83,
37347,
1847,
7375,
12532,
1268,
29462,
198,
220,
220,
220,
299,
541,
796,
718,
198,
220,
220,
220,
1303,
299,
52,
67,
1659,
796,
299,
27740,
9,
47033,
7,
3698,
17,
45,
3727,
8,
198,
220,
220,
220,
1303,
299,
47,
67,
1659,
796,
5415,
7,
3698,
17,
45,
3727,
47,
8,
198,
220,
220,
220,
299,
52,
67,
1659,
417,
796,
299,
27740,
1635,
299,
77,
375,
417,
198,
220,
220,
220,
299,
47,
67,
1659,
417,
796,
2546,
7,
3698,
17,
45,
3727,
47,
11,
16,
8,
198,
220,
220,
220,
37628,
11,
299,
77,
11,
299,
77,
47,
11,
299,
77,
18,
796,
3254,
7,
77,
541,
828,
3254,
7,
20471,
375,
417,
828,
3254,
7,
18,
828,
3254,
7,
18,
8,
198,
220,
220,
220,
399,
11,
67,
45,
9310,
11,
62,
11,
86,
62,
541,
796,
4808,
1136,
62,
20802,
7,
8461,
11,
20471,
8,
198,
220,
220,
220,
28498,
11,
62,
11,
62,
11,
62,
796,
4808,
1136,
62,
20802,
7,
8461,
11,
20471,
47,
8,
198,
220,
220,
220,
399,
18,
11,
62,
11,
67,
45,
18,
9310,
11,
62,
796,
4808,
1136,
62,
20802,
7,
8461,
11,
20471,
18,
8,
198,
220,
220,
220,
1303,
46111,
4770,
25609,
11096,
4503,
18421,
198,
220,
220,
220,
1062,
41,
62,
6489,
796,
20650,
90,
43879,
2414,
92,
7,
917,
891,
11,
4954,
2436,
74,
8,
198,
220,
220,
220,
371,
62,
3132,
796,
2092,
7,
15255,
41,
62,
6489,
8,
1303,
796,
220,
1062,
33186,
62,
6489,
9,
67,
29992,
62,
67,
400,
198,
220,
220,
220,
371,
62,
2481,
796,
2092,
7,
15255,
41,
62,
6489,
8,
1303,
796,
532,
15255,
33186,
62,
6489,
9,
15255,
64,
62,
67,
400,
198,
220,
220,
220,
536,
62,
3132,
796,
2092,
7,
15255,
41,
62,
6489,
8,
1303,
796,
532,
15255,
33186,
62,
6489,
9,
67,
29992,
62,
7109,
198,
220,
220,
220,
536,
62,
2481,
796,
2092,
7,
15255,
41,
62,
6489,
8,
1303,
796,
220,
1062,
33186,
62,
6489,
9,
15255,
64,
62,
7109,
198,
220,
220,
220,
1303,
399,
87,
45,
796,
15690,
90,
43879,
2414,
11,
17,
92,
7,
917,
891,
11,
18,
11,
18,
8,
198,
220,
220,
220,
1303,
3550,
62,
17080,
220,
220,
220,
220,
220,
220,
220,
796,
15690,
90,
43879,
2414,
11,
17,
92,
7,
917,
891,
11,
18,
11,
4954,
2436,
74,
8,
198,
220,
220,
220,
1303,
569,
8220,
12532,
62,
400,
220,
220,
220,
220,
220,
220,
796,
2092,
7,
648,
62,
17080,
8,
198,
220,
220,
220,
1303,
569,
8220,
12532,
62,
81,
220,
220,
220,
220,
220,
220,
220,
796,
2092,
7,
648,
62,
17080,
8,
198,
220,
220,
220,
288,
45,
34350,
796,
15690,
90,
43879,
2414,
11,
17,
92,
7,
917,
891,
11,
4954,
2436,
74,
11,
7857,
7,
67,
45,
9310,
58,
16,
4357,
17,
4008,
198,
220,
220,
220,
288,
45,
9892,
796,
2092,
7,
67,
45,
34350,
8,
198,
220,
220,
220,
18074,
231,
796,
20650,
90,
43879,
2414,
92,
7,
917,
891,
11,
5317,
7,
4954,
2436,
74,
4008,
198,
220,
220,
220,
800,
41,
87,
62,
23352,
796,
15690,
90,
43879,
2414,
11,
17,
92,
7,
917,
891,
11,
5317,
7,
4954,
2436,
74,
828,
358,
320,
8,
220,
220,
220,
1303,
6143,
329,
2124,
12,
5589,
3906,
286,
12806,
72,
17593,
198,
220,
220,
220,
800,
41,
89,
62,
23352,
796,
2092,
7,
16340,
41,
87,
62,
23352,
8,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
6143,
329,
1976,
12,
5589,
3906,
286,
12806,
72,
17593,
220,
220,
198,
220,
220,
220,
1303,
46111,
18604,
46366,
11879,
7473,
42865,
3963,
40342,
28957,
3268,
9878,
11290,
198,
220,
220,
220,
509,
62,
2436,
74,
796,
6070,
7,
15,
13,
15,
11,
299,
417,
2436,
74,
11,
2558,
7,
77,
52,
67,
1659,
417,
9,
7,
77,
52,
67,
1659,
417,
10,
16,
20679,
17,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
23606,
19482,
49586,
17593,
11,
5391,
28,
626,
466,
9501,
11,
475,
691,
6727,
22950,
198,
220,
220,
220,
337,
62,
2436,
74,
796,
6070,
7,
15,
13,
15,
11,
299,
417,
2436,
74,
11,
2558,
7,
77,
47,
67,
1659,
417,
9,
7,
77,
47,
67,
1659,
417,
10,
16,
20679,
17,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
23606,
19482,
2347,
17593,
11,
5391,
28,
36151,
13760,
11,
475,
691,
6727,
22950,
198,
220,
220,
220,
402,
62,
2436,
74,
796,
6070,
7,
15,
13,
15,
11,
299,
417,
2436,
74,
11,
299,
47,
67,
1659,
417,
9,
77,
52,
67,
1659,
417,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
30372,
19482,
31312,
17593,
11,
11555,
466,
9501,
2124,
3833,
13760,
198,
220,
220,
220,
376,
65,
62,
2436,
74,
796,
6070,
7,
15,
13,
15,
11,
299,
417,
2436,
74,
11,
299,
52,
67,
1659,
417,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
6143,
329,
12784,
287,
35833,
88,
3883,
2700,
15879,
220,
220,
220,
220,
198,
220,
220,
220,
800,
44,
62,
2436,
74,
796,
6070,
7,
15,
13,
15,
11,
299,
417,
2436,
74,
11,
299,
47,
67,
1659,
417,
9,
77,
47,
67,
1659,
417,
8,
198,
220,
220,
220,
800,
20474,
62,
2436,
74,
796,
6070,
7,
15,
13,
15,
11,
299,
417,
2436,
74,
11,
299,
47,
67,
1659,
417,
9,
77,
52,
67,
1659,
417,
8,
628,
220,
220,
220,
1303,
46111,
18604,
220,
46366,
11879,
7473,
42865,
3963,
11096,
40342,
10979,
36775,
49,
34444,
14,
53,
9782,
20673,
198,
220,
220,
220,
509,
62,
439,
796,
15690,
90,
43879,
2414,
11,
17,
92,
7,
917,
891,
11,
2558,
7,
77,
52,
67,
1659,
417,
9,
7,
77,
52,
67,
1659,
417,
10,
16,
20679,
17,
828,
4954,
8,
198,
220,
220,
220,
337,
62,
439,
796,
15690,
90,
43879,
2414,
11,
17,
92,
7,
917,
891,
11,
2558,
7,
77,
47,
67,
1659,
417,
9,
7,
77,
47,
67,
1659,
417,
10,
16,
20679,
17,
828,
4954,
8,
198,
220,
220,
220,
402,
62,
439,
796,
15690,
90,
43879,
2414,
11,
17,
92,
7,
917,
891,
11,
299,
52,
67,
1659,
417,
9,
77,
47,
67,
1659,
417,
11,
4954,
8,
198,
220,
220,
220,
376,
65,
62,
439,
796,
15690,
90,
43879,
2414,
11,
17,
92,
7,
917,
891,
11,
299,
52,
67,
1659,
417,
11,
4954,
8,
198,
220,
220,
220,
800,
44,
62,
439,
796,
15690,
90,
43879,
2414,
11,
17,
92,
7,
917,
891,
11,
299,
47,
67,
1659,
417,
9,
77,
47,
67,
1659,
417,
11,
4954,
8,
628,
220,
220,
220,
1303,
23926,
2559,
28,
198,
220,
220,
220,
9878,
11290,
17579,
3185,
532,
36775,
7112,
55,
24301,
3843,
6234,
198,
220,
220,
220,
38093,
2559,
2,
198,
220,
220,
220,
329,
24283,
287,
352,
25,
77,
2436,
74,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
23926,
2559,
18604,
198,
220,
220,
220,
220,
220,
220,
220,
33290,
34,
6239,
6158,
449,
2246,
46,
3483,
1565,
11,
42437,
38267,
1137,
23678,
8643,
5357,
3268,
28884,
36,
198,
220,
220,
220,
220,
220,
220,
220,
38093,
2559,
855,
2,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
24550,
25,
1114,
46963,
4847,
351,
1729,
12,
22019,
1079,
13015,
262,
12806,
666,
318,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
262,
976,
329,
477,
11812,
2173,
357,
72,
13,
68,
13,
10488,
1752,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
878,
262,
11812,
9052,
737,
7735,
11,
14174,
513,
12,
17440,
5485,
389,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6751,
284,
15284,
262,
12806,
666,
13,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
4686,
87,
220,
220,
220,
220,
220,
220,
796,
2488,
33571,
17852,
17,
45,
3727,
58,
16,
25,
77,
1851,
11,
346,
25,
16115,
60,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
569,
8220,
12532,
62,
400,
796,
27179,
1758,
7,
1169,
8326,
58,
312,
87,
4357,
77,
1851,
11,
4954,
2436,
74,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
569,
8220,
12532,
62,
81,
220,
796,
27179,
1758,
7,
81,
58,
312,
87,
4357,
77,
1851,
11,
4954,
2436,
74,
8,
198,
220,
220,
220,
220,
220,
220,
220,
569,
8220,
12532,
62,
400,
796,
1570,
7,
1169,
8326,
11,
45299,
346,
25,
16115,
8,
198,
220,
220,
220,
220,
220,
220,
220,
569,
8220,
12532,
62,
81,
796,
1570,
7,
81,
11,
45299,
346,
25,
16115,
8,
628,
220,
220,
220,
220,
220,
220,
220,
449,
62,
400,
220,
220,
220,
796,
357,
53,
8220,
12532,
62,
400,
6,
9,
67,
45,
18,
9310,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
449,
62,
81,
220,
220,
220,
220,
796,
357,
53,
8220,
12532,
62,
81,
6,
9,
67,
45,
18,
9310,
11537,
628,
220,
220,
220,
220,
220,
220,
220,
4808,
20797,
62,
49,
62,
41,
0,
7,
41,
62,
400,
11,
41,
62,
81,
11,
53,
8220,
12532,
62,
400,
11,
53,
8220,
12532,
62,
81,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
371,
62,
3132,
11,
49,
62,
2481,
11,
817,
62,
3132,
11,
817,
62,
2481,
11,
15255,
41,
62,
6489,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
220,
22369,
36871,
1137,
20151,
17828,
7156,
49,
6234,
17579,
3185,
357,
9273,
32835,
19604,
2885,
49,
40086,
8,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
4808,
541,
62,
26268,
62,
3617,
6017,
0,
7,
42,
62,
2436,
74,
11,
337,
62,
2436,
74,
11,
402,
62,
2436,
74,
11,
376,
65,
62,
2436,
74,
11,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
308,
11,
7377,
115,
11,
220,
47728,
241,
240,
11,
18074,
223,
11,
17852,
17,
45,
3727,
11,
18983,
2389,
11,
346,
25,
16115,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
288,
45,
9310,
11,
266,
62,
541,
11,
299,
541,
11,
299,
77,
375,
417,
11,
299,
417,
2436,
74,
11,
299,
47,
67,
1659,
417,
11,
77,
52,
67,
1659,
417,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
288,
45,
34350,
11,
67,
45,
9892,
11,
45,
11,
45,
18,
11,
22182,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
18074,
231,
11,
16340,
41,
87,
62,
23352,
11,
800,
41,
89,
62,
23352,
11,
1062,
41,
62,
6489,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
371,
62,
2481,
11,
49,
62,
3132,
11,
817,
62,
2481,
11,
817,
62,
3132,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
569,
8220,
12532,
62,
400,
11,
53,
8220,
12532,
62,
81,
8,
628,
220,
220,
220,
220,
220,
220,
220,
4808,
16340,
44,
0,
7,
16340,
44,
62,
2436,
74,
11,
337,
62,
2436,
74,
11,
1062,
41,
62,
6489,
8,
628,
220,
220,
220,
220,
220,
220,
220,
4808,
20797,
62,
16340,
44,
87,
38,
0,
7,
16340,
20474,
62,
2436,
74,
11,
800,
44,
62,
2436,
74,
11,
402,
62,
2436,
74,
11,
299,
47,
67,
1659,
417,
11,
299,
52,
67,
1659,
417,
8,
628,
220,
220,
220,
220,
220,
220,
220,
4808,
20797,
62,
42,
9541,
38,
87,
16340,
44,
87,
38,
83,
7,
42,
62,
2436,
74,
11,
800,
20474,
62,
2436,
74,
11,
402,
62,
2436,
74,
11,
299,
47,
67,
1659,
417,
11,
299,
52,
67,
1659,
417,
11,
7389,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
20368,
26866,
44423,
42865,
39319,
10188,
9864,
1847,
46366,
11879,
198,
220,
220,
220,
220,
220,
220,
220,
2488,
33571,
2221,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
509,
62,
439,
58,
45299,
346,
25,
16115,
60,
764,
28,
509,
62,
2436,
74,
6,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
402,
62,
439,
58,
45299,
346,
25,
16115,
60,
764,
28,
402,
62,
2436,
74,
6,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
337,
62,
439,
58,
45299,
346,
25,
16115,
60,
764,
28,
337,
62,
2436,
74,
6,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
376,
65,
62,
439,
58,
45299,
346,
25,
16115,
60,
764,
28,
376,
65,
62,
2436,
74,
6,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
800,
44,
62,
439,
58,
45299,
346,
25,
16115,
60,
764,
28,
800,
44,
62,
2436,
74,
6,
198,
220,
220,
220,
220,
220,
220,
220,
886,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
20368,
1783,
438,
15731,
2767,
9878,
11290,
36775,
49,
34444,
198,
220,
220,
220,
220,
220,
220,
220,
6070,
0,
7,
42,
62,
2436,
74,
11,
15,
13,
15,
8,
198,
220,
220,
220,
220,
220,
220,
220,
6070,
0,
7,
38,
62,
2436,
74,
11,
15,
13,
15,
8,
198,
220,
220,
220,
220,
220,
220,
220,
6070,
0,
7,
44,
62,
2436,
74,
11,
15,
13,
15,
8,
198,
220,
220,
220,
220,
220,
220,
220,
6070,
0,
7,
37,
65,
62,
2436,
74,
11,
15,
13,
15,
8,
198,
220,
220,
220,
220,
220,
220,
220,
6070,
0,
7,
16340,
44,
62,
2436,
74,
11,
15,
13,
15,
8,
198,
220,
220,
220,
220,
220,
220,
220,
6070,
0,
7,
16340,
20474,
62,
2436,
74,
11,
15,
13,
15,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
20368,
20832,
25008,
33303,
11,
23578,
5357,
311,
35400,
3963,
9878,
11290,
198,
220,
220,
220,
220,
220,
220,
220,
4229,
15853,
299,
417,
2436,
74,
26,
198,
220,
220,
220,
220,
220,
220,
220,
611,
24283,
6624,
299,
2436,
74,
12,
16,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
220,
10541,
10781,
329,
1180,
1271,
286,
4847,
287,
938,
2512,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
299,
417,
2436,
74,
796,
299,
417,
532,
4229,
1343,
352,
220,
1303,
649,
2512,
2546,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
20368,
12,
797,
439,
13369,
379,
7021,
379,
262,
5743,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1062,
41,
62,
6489,
796,
20650,
90,
43879,
2414,
92,
7,
917,
891,
11,
4954,
2436,
74,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
371,
62,
3132,
796,
2092,
7,
15255,
41,
62,
6489,
8,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
371,
62,
2481,
796,
2092,
7,
15255,
41,
62,
6489,
8,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
536,
62,
3132,
796,
2092,
7,
15255,
41,
62,
6489,
8,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
536,
62,
2481,
796,
2092,
7,
15255,
41,
62,
6489,
8,
220,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
220,
220,
220,
3550,
62,
17080,
796,
15690,
90,
43879,
2414,
11,
17,
92,
7,
917,
891,
11,
18,
11,
4954,
2436,
74,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
288,
45,
34350,
796,
15690,
90,
43879,
2414,
11,
17,
92,
7,
917,
891,
11,
4954,
2436,
74,
11,
7857,
7,
67,
45,
9310,
58,
16,
4357,
17,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
288,
45,
9892,
796,
2092,
7,
67,
45,
34350,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
509,
62,
2436,
74,
796,
6070,
7,
15,
13,
15,
11,
299,
417,
2436,
74,
11,
2558,
7,
77,
52,
67,
1659,
417,
9,
7,
77,
52,
67,
1659,
417,
10,
16,
20679,
17,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
337,
62,
2436,
74,
796,
6070,
7,
15,
13,
15,
11,
299,
417,
2436,
74,
11,
2558,
7,
77,
47,
67,
1659,
417,
9,
7,
77,
47,
67,
1659,
417,
10,
16,
20679,
17,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
402,
62,
2436,
74,
796,
6070,
7,
15,
13,
15,
11,
299,
417,
2436,
74,
11,
299,
47,
67,
1659,
417,
9,
77,
52,
67,
1659,
417,
8,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
376,
65,
62,
2436,
74,
796,
6070,
7,
15,
13,
15,
11,
299,
417,
2436,
74,
11,
299,
52,
67,
1659,
417,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
18074,
231,
796,
20650,
90,
43879,
2414,
92,
7,
917,
891,
11,
5317,
7,
4954,
2436,
74,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
800,
41,
87,
62,
23352,
796,
15690,
90,
43879,
2414,
11,
17,
92,
7,
917,
891,
11,
5317,
7,
4954,
2436,
74,
828,
358,
320,
8,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
800,
41,
89,
62,
23352,
796,
2092,
7,
16340,
41,
87,
62,
23352,
8,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
800,
44,
62,
2436,
74,
796,
6070,
7,
15,
13,
15,
11,
299,
417,
2436,
74,
11,
299,
47,
67,
1659,
417,
9,
77,
47,
67,
1659,
417,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
800,
20474,
62,
2436,
74,
796,
6070,
7,
15,
13,
15,
11,
299,
417,
2436,
74,
11,
299,
47,
67,
1659,
417,
9,
77,
52,
67,
1659,
417,
8,
198,
220,
220,
220,
220,
220,
220,
220,
886,
198,
220,
220,
220,
220,
220,
220,
220,
1312,
84,
15853,
299,
417,
2436,
74,
628,
220,
220,
220,
886,
1303,
886,
2512,
9052,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
1303,
23926,
2559,
18604,
198,
220,
220,
220,
1303,
24994,
3620,
9148,
56,
3963,
10188,
9864,
1847,
6226,
1503,
5188,
36775,
49,
34444,
5357,
371,
7998,
12,
53,
9782,
1581,
198,
220,
220,
220,
1303,
38093,
2559,
855,
2,
198,
220,
220,
220,
509,
42,
11,
37442,
11,
800,
12038,
11,
376,
65,
796,
220,
198,
220,
220,
220,
220,
220,
220,
220,
4808,
17953,
62,
301,
3369,
62,
6759,
45977,
62,
3617,
6017,
7,
3698,
17,
45,
3727,
11,
299,
52,
67,
1659,
417,
11,
299,
27740,
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,
220,
220,
220,
220,
220,
220,
220,
220,
509,
48374,
87,
11,
37442,
312,
87,
11,
800,
12038,
312,
87,
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,
220,
220,
220,
220,
220,
220,
220,
220,
509,
62,
439,
11,
402,
62,
439,
11,
800,
44,
62,
439,
11,
376,
65,
62,
439,
8,
628,
220,
220,
220,
1441,
509,
42,
11,
37442,
11,
800,
12038,
11,
376,
65,
198,
220,
220,
220,
220,
198,
437,
1303,
23578,
3963,
24994,
3620,
9148,
56,
29397,
4177,
2849,
198,
198,
8818,
4808,
541,
62,
26268,
62,
3617,
6017,
0,
7,
509,
62,
2436,
74,
11,
337,
62,
2436,
74,
11,
402,
62,
2436,
74,
11,
376,
65,
62,
2436,
74,
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,
308,
11,
7377,
115,
11,
220,
47728,
241,
240,
11,
18074,
223,
11,
17852,
17,
45,
3727,
11,
18983,
2389,
11,
1424,
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,
288,
45,
9310,
11,
266,
62,
541,
11,
299,
541,
11,
299,
77,
375,
417,
11,
299,
417,
2436,
74,
11,
299,
47,
67,
1659,
417,
11,
77,
52,
67,
1659,
417,
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,
288,
45,
34350,
11,
67,
45,
9892,
11,
45,
11,
45,
18,
11,
22182,
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,
18074,
231,
11,
16340,
41,
87,
62,
23352,
11,
800,
41,
89,
62,
23352,
11,
1062,
41,
62,
6489,
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,
371,
62,
2481,
11,
49,
62,
3132,
11,
817,
62,
2481,
11,
817,
62,
3132,
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,
569,
8220,
12532,
62,
400,
11,
53,
8220,
12532,
62,
81,
8,
628,
220,
220,
220,
7813,
62,
541,
220,
796,
2092,
7,
15255,
41,
62,
6489,
8,
198,
220,
220,
220,
8615,
62,
541,
220,
796,
2092,
7,
15255,
41,
62,
6489,
8,
628,
220,
220,
220,
329,
20966,
28,
16,
25,
77,
541,
628,
220,
220,
220,
220,
220,
220,
220,
399,
62,
541,
796,
399,
18,
58,
541,
60,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
28498,
62,
2436,
74,
796,
9585,
7,
22182,
58,
541,
4357,
4954,
2436,
74,
11,
16,
8,
198,
220,
220,
220,
220,
220,
220,
220,
28498,
62,
2436,
74,
796,
28498,
58,
541,
4083,
9,
1952,
7,
4954,
2436,
74,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
23926,
1421,
18604,
198,
220,
220,
220,
220,
220,
220,
220,
4810,
3185,
17395,
11015,
3963,
40342,
28957,
5161,
20966,
12,
4221,
8696,
1847,
52,
6234,
19922,
12394,
198,
220,
220,
220,
220,
220,
220,
220,
38093,
50155,
2,
198,
220,
220,
220,
220,
220,
220,
220,
360,
641,
62,
2436,
74,
220,
220,
220,
796,
4808,
30854,
62,
43337,
7,
33643,
11,
3698,
17,
45,
3727,
11,
35645,
2389,
11,
1424,
11,
22182,
58,
541,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
569,
2304,
62,
2436,
74,
220,
220,
220,
796,
4808,
30854,
62,
85,
2304,
16579,
7,
138,
115,
11,
3698,
17,
45,
3727,
11,
35645,
2389,
11,
1424,
11,
22182,
58,
541,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
220,
32599,
22181,
2700,
379,
20966,
12,
400,
11812,
966,
198,
220,
220,
220,
220,
220,
220,
220,
376,
70,
62,
2436,
74,
220,
220,
220,
220,
220,
796,
308,
1635,
360,
641,
62,
2436,
74,
220,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
23926,
10052,
2559,
855,
198,
220,
220,
220,
220,
220,
220,
220,
33290,
34,
6239,
6158,
362,
358,
449,
2246,
46,
3483,
1565,
357,
10913,
2662,
327,
7227,
1546,
16868,
5390,
20634,
1503,
7375,
12532,
1268,
29462,
14610,
26929,
13015,
828,
42437,
38267,
1137,
23678,
8643,
5357,
3268,
28884,
36,
198,
220,
220,
220,
220,
220,
220,
220,
38093,
10052,
2559,
855,
198,
220,
220,
220,
220,
220,
220,
220,
24550,
25,
1114,
46963,
4847,
351,
26929,
13015,
262,
12806,
666,
2476,
284,
307,
29231,
379,
1123,
11812,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
966,
357,
48787,
262,
11812,
9052,
737,
796,
2,
198,
220,
220,
220,
220,
220,
220,
220,
294,
62,
541,
220,
220,
796,
569,
8220,
12532,
62,
400,
6,
9,
45,
62,
541,
6,
198,
220,
220,
220,
220,
220,
220,
220,
374,
62,
541,
220,
220,
220,
796,
569,
8220,
12532,
62,
81,
6,
9,
45,
62,
541,
6,
628,
220,
220,
220,
220,
220,
220,
220,
4808,
1082,
452,
876,
62,
43775,
0,
7,
67,
45,
9310,
58,
541,
4357,
49535,
11,
67,
45,
34350,
11,
67,
45,
9892,
11,
86,
62,
541,
58,
541,
4357,
400,
62,
541,
11,
81,
62,
541,
11,
31369,
62,
541,
11,
6966,
62,
541,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
371,
62,
2481,
11,
49,
62,
3132,
11,
817,
62,
2481,
11,
817,
62,
3132,
11,
15255,
41,
62,
6489,
11,
16340,
41,
87,
62,
23352,
11,
16340,
41,
89,
62,
23352,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
4808,
20797,
62,
42,
2436,
74,
0,
7,
42,
62,
2436,
74,
11,
220,
47728,
241,
240,
11,
569,
2304,
62,
2436,
74,
11,
3254,
7,
138,
115,
828,
18074,
231,
11,
288,
45,
34350,
11,
288,
45,
9892,
11,
299,
77,
375,
417,
11,
1288,
82,
11,
20966,
8,
628,
220,
220,
220,
220,
220,
220,
220,
4808,
20797,
62,
38,
2436,
74,
0,
7,
38,
62,
2436,
74,
11,
28498,
62,
2436,
74,
11,
18074,
231,
11,
288,
45,
34350,
11,
288,
45,
9892,
11,
299,
47,
67,
1659,
417,
11,
77,
52,
67,
1659,
417,
11,
20471,
375,
417,
8,
628,
220,
220,
220,
220,
220,
220,
220,
4808,
20797,
62,
44,
2436,
74,
62,
3617,
6017,
0,
7,
44,
62,
2436,
74,
11,
28498,
62,
2436,
74,
11,
18074,
231,
11,
299,
47,
67,
1659,
417,
8,
628,
220,
220,
220,
220,
220,
220,
220,
4808,
20797,
62,
37,
65,
2436,
74,
0,
7,
37,
65,
62,
2436,
74,
11,
37,
70,
62,
2436,
74,
11,
399,
58,
541,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
18074,
231,
11,
7813,
62,
541,
11,
6966,
62,
541,
11,
77,
52,
67,
1659,
417,
8,
628,
220,
220,
220,
886,
1303,
886,
11812,
966,
9052,
198,
437,
1303,
12964,
37,
3963,
6101,
62,
21982,
3185,
29397,
4177,
2849,
198,
198,
31,
45145,
2163,
4808,
20797,
62,
44,
2436,
74,
62,
3617,
6017,
0,
7,
44,
62,
2436,
74,
11,
28498,
62,
2436,
74,
11,
18074,
231,
11,
299,
47,
67,
1659,
417,
8,
198,
220,
220,
220,
1303,
366,
6551,
1,
9086,
416,
1490,
6966,
414,
379,
11812,
966,
287,
477,
4847,
198,
220,
220,
220,
773,
87,
796,
352,
26,
198,
220,
220,
220,
329,
1312,
287,
352,
25,
77,
47,
67,
1659,
417,
198,
220,
220,
220,
220,
220,
220,
220,
2488,
259,
65,
3733,
2488,
14323,
67,
329,
474,
287,
1312,
25,
77,
47,
67,
1659,
417,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
337,
62,
2436,
74,
58,
45299,
521,
87,
60,
764,
47932,
220,
18074,
231,
15885,
1177,
7,
22182,
62,
2436,
74,
11,
45299,
72,
737,
9,
1177,
7,
22182,
62,
2436,
74,
11,
45299,
73,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
773,
87,
15853,
352,
198,
220,
220,
220,
220,
220,
220,
220,
886,
198,
220,
220,
220,
886,
198,
437,
628,
198,
8818,
4808,
16340,
44,
0,
7,
16340,
44,
62,
2436,
74,
11,
337,
62,
2436,
74,
11,
1062,
41,
8,
198,
220,
220,
220,
309,
7378,
220,
220,
796,
352,
13,
15,
19571,
15255,
41,
198,
220,
220,
220,
337,
62,
2436,
74,
796,
337,
62,
2436,
74,
764,
9,
309,
7378,
198,
220,
220,
220,
1303,
337,
62,
2436,
74,
796,
337,
62,
2436,
74,
764,
9,
309,
7378,
58,
45299,
1952,
58,
16,
11,
77,
47,
67,
1659,
417,
9,
58,
77,
47,
67,
1659,
417,
10,
16,
60,
14,
17,
60,
11208,
628,
220,
220,
220,
1303,
1374,
284,
15284,
262,
3416,
12427,
286,
1811,
23606,
19482,
513,
87,
18,
2603,
45977,
25,
198,
220,
220,
220,
1303,
1062,
58,
44,
60,
796,
220,
220,
337,
1157,
9,
44,
1828,
9,
44,
2091,
1343,
337,
1065,
9,
44,
1954,
9,
44,
3132,
1343,
337,
1485,
9,
44,
2481,
9,
44,
2624,
198,
220,
220,
220,
1303,
220,
220,
220,
220,
220,
220,
220,
220,
220,
532,
337,
1485,
9,
44,
1828,
9,
44,
3132,
532,
337,
1065,
9,
44,
2481,
9,
44,
2091,
532,
337,
1157,
9,
44,
1954,
9,
44,
2624,
198,
220,
220,
220,
1303,
220,
220,
3194,
287,
352,
12,
9630,
33274,
25,
198,
220,
220,
220,
1303,
220,
220,
220,
220,
220,
220,
220,
796,
220,
220,
337,
16,
1635,
44,
20,
1635,
44,
24,
220,
1343,
337,
19,
1635,
44,
23,
1635,
44,
18,
220,
1343,
337,
22,
1635,
44,
17,
1635,
44,
21,
198,
220,
220,
220,
1303,
220,
220,
220,
220,
220,
220,
220,
220,
220,
532,
337,
22,
1635,
44,
20,
1635,
44,
18,
220,
532,
337,
19,
1635,
44,
17,
1635,
44,
24,
220,
532,
337,
16,
1635,
44,
23,
1635,
44,
21,
198,
220,
220,
220,
1303,
220,
220,
6402,
40686,
290,
1262,
2793,
46963,
636,
691,
198,
220,
220,
220,
1303,
220,
220,
685,
44,
19,
28,
44,
17,
11,
337,
22,
28,
44,
18,
11,
337,
23,
28,
44,
21,
60,
198,
220,
220,
220,
1303,
220,
220,
220,
220,
220,
220,
220,
796,
220,
220,
337,
16,
1635,
44,
20,
1635,
44,
24,
220,
1343,
337,
17,
1635,
44,
21,
1635,
44,
18,
220,
1343,
337,
18,
1635,
44,
17,
1635,
44,
21,
198,
220,
220,
220,
1303,
220,
220,
220,
220,
220,
220,
220,
220,
220,
532,
337,
18,
1635,
44,
20,
1635,
44,
18,
220,
532,
337,
17,
1635,
44,
17,
1635,
44,
24,
220,
532,
337,
16,
1635,
44,
21,
1635,
44,
21,
198,
220,
220,
220,
1303,
220,
220,
290,
6970,
810,
262,
718,
1180,
3815,
389,
8574,
287,
337,
62,
2436,
74,
198,
220,
220,
220,
1303,
220,
220,
685,
16,
46904,
44,
16,
11,
362,
46904,
44,
17,
11,
513,
46904,
44,
18,
11,
604,
46904,
44,
20,
11,
642,
46904,
44,
21,
11,
718,
46904,
44,
24,
60,
198,
220,
220,
220,
1303,
220,
220,
220,
220,
220,
220,
220,
796,
220,
220,
337,
62,
2436,
74,
16,
9,
44,
62,
2436,
74,
19,
9,
44,
62,
2436,
74,
21,
1343,
337,
62,
2436,
74,
17,
9,
44,
62,
2436,
74,
20,
9,
44,
62,
2436,
74,
18,
1343,
337,
62,
2436,
74,
18,
9,
44,
62,
2436,
74,
17,
9,
44,
62,
2436,
74,
20,
198,
220,
220,
220,
1303,
220,
220,
220,
220,
220,
220,
220,
220,
220,
532,
337,
62,
2436,
74,
18,
9,
44,
62,
2436,
74,
19,
9,
44,
62,
2436,
74,
18,
532,
337,
62,
2436,
74,
17,
9,
44,
62,
2436,
74,
17,
9,
44,
62,
2436,
74,
21,
532,
337,
62,
2436,
74,
16,
9,
44,
62,
2436,
74,
20,
9,
44,
62,
2436,
74,
20,
198,
220,
220,
220,
1303,
220,
220,
302,
12,
3258,
4924,
198,
220,
220,
220,
1303,
220,
220,
220,
220,
220,
220,
220,
796,
220,
220,
337,
62,
2436,
74,
16,
1635,
685,
44,
62,
2436,
74,
19,
9,
44,
62,
2436,
74,
21,
532,
337,
62,
2436,
74,
20,
9,
44,
62,
2436,
74,
20,
60,
220,
198,
220,
220,
220,
1303,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1343,
337,
62,
2436,
74,
17,
1635,
685,
44,
62,
2436,
74,
20,
9,
44,
62,
2436,
74,
18,
532,
337,
62,
2436,
74,
17,
9,
44,
62,
2436,
74,
21,
60,
198,
220,
220,
220,
1303,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1343,
337,
62,
2436,
74,
18,
1635,
685,
44,
62,
2436,
74,
17,
9,
44,
62,
2436,
74,
20,
532,
337,
62,
2436,
74,
19,
9,
44,
62,
2436,
74,
18,
60,
198,
220,
220,
220,
1062,
44,
62,
2436,
74,
796,
2488,
13,
337,
62,
2436,
74,
58,
45299,
16,
60,
1635,
357,
44,
62,
2436,
74,
58,
45299,
19,
60,
9,
44,
62,
2436,
74,
58,
45299,
21,
60,
532,
337,
62,
2436,
74,
58,
45299,
20,
60,
9,
44,
62,
2436,
74,
58,
45299,
20,
12962,
1343,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
337,
62,
2436,
74,
58,
45299,
17,
60,
1635,
357,
44,
62,
2436,
74,
58,
45299,
20,
60,
9,
44,
62,
2436,
74,
58,
45299,
18,
60,
532,
337,
62,
2436,
74,
58,
45299,
17,
60,
9,
44,
62,
2436,
74,
58,
45299,
21,
12962,
1343,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
337,
62,
2436,
74,
58,
45299,
18,
60,
1635,
357,
44,
62,
2436,
74,
58,
45299,
17,
60,
9,
44,
62,
2436,
74,
58,
45299,
20,
60,
532,
337,
62,
2436,
74,
58,
45299,
19,
60,
9,
44,
62,
2436,
74,
58,
45299,
18,
12962,
198,
220,
220,
220,
1062,
44,
62,
2436,
74,
24457,
28,
51,
7378,
628,
220,
220,
220,
1303,
383,
3416,
12427,
318,
973,
284,
15284,
262,
34062,
286,
262,
23606,
19482,
220,
198,
220,
220,
220,
1303,
513,
87,
18,
5002,
2347,
2603,
45977,
13,
383,
976,
9156,
355,
2029,
318,
973,
13,
198,
220,
220,
220,
800,
44,
62,
2436,
74,
58,
45299,
16,
60,
796,
2488,
33571,
2488,
13,
357,
44,
62,
2436,
74,
58,
45299,
19,
60,
9,
44,
62,
2436,
74,
58,
45299,
21,
60,
532,
337,
62,
2436,
74,
58,
45299,
20,
60,
9,
44,
62,
2436,
74,
58,
45299,
20,
12962,
14,
15255,
44,
62,
2436,
74,
26,
198,
220,
220,
220,
800,
44,
62,
2436,
74,
58,
45299,
17,
60,
796,
2488,
33571,
2488,
13,
357,
44,
62,
2436,
74,
58,
45299,
20,
60,
9,
44,
62,
2436,
74,
58,
45299,
18,
60,
532,
337,
62,
2436,
74,
58,
45299,
17,
60,
9,
44,
62,
2436,
74,
58,
45299,
21,
12962,
14,
15255,
44,
62,
2436,
74,
26,
198,
220,
220,
220,
800,
44,
62,
2436,
74,
58,
45299,
18,
60,
796,
2488,
33571,
2488,
13,
357,
44,
62,
2436,
74,
58,
45299,
17,
60,
9,
44,
62,
2436,
74,
58,
45299,
20,
60,
532,
337,
62,
2436,
74,
58,
45299,
19,
60,
9,
44,
62,
2436,
74,
58,
45299,
18,
12962,
14,
15255,
44,
62,
2436,
74,
26,
198,
220,
220,
220,
800,
44,
62,
2436,
74,
58,
45299,
19,
60,
796,
2488,
33571,
800,
44,
62,
2436,
74,
58,
45299,
17,
11208,
198,
220,
220,
220,
800,
44,
62,
2436,
74,
58,
45299,
20,
60,
796,
2488,
33571,
2488,
13,
357,
44,
62,
2436,
74,
58,
45299,
16,
60,
9,
44,
62,
2436,
74,
58,
45299,
21,
60,
532,
337,
62,
2436,
74,
58,
45299,
18,
60,
9,
44,
62,
2436,
74,
58,
45299,
18,
12962,
14,
15255,
44,
62,
2436,
74,
26,
198,
220,
220,
220,
800,
44,
62,
2436,
74,
58,
45299,
21,
60,
796,
2488,
33571,
2488,
13,
357,
44,
62,
2436,
74,
58,
45299,
17,
60,
9,
44,
62,
2436,
74,
58,
45299,
18,
60,
532,
337,
62,
2436,
74,
58,
45299,
16,
60,
9,
44,
62,
2436,
74,
58,
45299,
20,
12962,
14,
15255,
44,
62,
2436,
74,
26,
198,
220,
220,
220,
800,
44,
62,
2436,
74,
58,
45299,
22,
60,
796,
2488,
33571,
800,
44,
62,
2436,
74,
58,
45299,
18,
11208,
198,
220,
220,
220,
800,
44,
62,
2436,
74,
58,
45299,
23,
60,
796,
2488,
33571,
800,
44,
62,
2436,
74,
58,
45299,
21,
11208,
198,
220,
220,
220,
800,
44,
62,
2436,
74,
58,
45299,
24,
60,
796,
2488,
33571,
2488,
13,
357,
44,
62,
2436,
74,
58,
45299,
16,
60,
9,
44,
62,
2436,
74,
58,
45299,
19,
60,
532,
337,
62,
2436,
74,
58,
45299,
20,
60,
9,
44,
62,
2436,
74,
58,
45299,
20,
12962,
14,
15255,
44,
62,
2436,
74,
26,
198,
198,
437,
628,
198,
8818,
4808,
20797,
62,
16340,
44,
87,
38,
0,
7,
16340,
20474,
62,
2436,
74,
11,
800,
44,
62,
2436,
74,
11,
402,
62,
2436,
74,
11,
299,
47,
67,
1659,
417,
11,
299,
52,
67,
1659,
417,
8,
198,
220,
220,
220,
1303,
220,
22369,
438,
16340,
44,
9,
38,
6,
1783,
10541,
198,
220,
220,
220,
329,
1312,
28,
16,
25,
77,
47,
67,
1659,
417,
198,
220,
220,
220,
220,
220,
220,
220,
329,
474,
28,
16,
25,
77,
52,
67,
1659,
417,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
479,
28,
16,
25,
77,
47,
67,
1659,
417,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
800,
20474,
62,
2436,
74,
58,
45299,
7,
72,
12,
16,
27493,
77,
52,
67,
1659,
417,
10,
73,
60,
796,
2488,
33571,
800,
20474,
62,
2436,
74,
58,
45299,
7,
72,
12,
16,
27493,
77,
52,
67,
1659,
417,
10,
73,
60,
1343,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
800,
44,
62,
2436,
74,
58,
45299,
7,
72,
12,
16,
27493,
77,
47,
67,
1659,
417,
10,
74,
4083,
9,
38,
62,
2436,
74,
58,
45299,
7,
74,
12,
16,
27493,
77,
52,
67,
1659,
417,
10,
73,
11208,
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,
198,
8818,
4808,
20797,
62,
42,
9541,
38,
87,
16340,
44,
87,
38,
83,
7,
42,
62,
2436,
74,
11,
800,
20474,
62,
2436,
74,
11,
402,
62,
2436,
74,
11,
299,
47,
67,
1659,
417,
11,
299,
52,
67,
1659,
417,
11,
7389,
8,
198,
220,
220,
220,
1303,
34400,
12,
42,
796,
509,
1343,
7389,
9,
38,
9,
16340,
44,
9,
38,
6,
1783,
6329,
198,
220,
220,
220,
773,
87,
796,
352,
26,
198,
220,
220,
220,
329,
1312,
28,
16,
25,
77,
52,
67,
1659,
417,
198,
220,
220,
220,
220,
220,
220,
220,
329,
474,
28,
72,
25,
77,
52,
67,
1659,
417,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
479,
28,
16,
25,
77,
47,
67,
1659,
417,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
509,
62,
2436,
74,
58,
45299,
521,
87,
60,
796,
2488,
33571,
509,
62,
2436,
74,
58,
45299,
521,
87,
60,
1343,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7389,
9,
38,
62,
2436,
74,
58,
45299,
7,
74,
12,
16,
27493,
77,
52,
67,
1659,
417,
10,
72,
4083,
9,
16340,
20474,
62,
2436,
74,
58,
45299,
7,
74,
12,
16,
27493,
77,
52,
67,
1659,
417,
10,
73,
11208,
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,
773,
87,
15853,
352,
26,
198,
220,
220,
220,
220,
220,
220,
220,
886,
198,
220,
220,
220,
886,
198,
437,
628,
198,
31,
45145,
2163,
4808,
17953,
62,
301,
3369,
62,
6759,
45977,
62,
3617,
6017,
7,
3698,
17,
45,
3727,
11,
77,
52,
67,
1659,
417,
11,
358,
320,
11,
198,
220,
220,
220,
509,
48374,
87,
11,
37442,
312,
87,
11,
800,
12038,
312,
87,
11,
198,
220,
220,
220,
509,
62,
439,
11,
402,
62,
439,
11,
800,
44,
62,
439,
11,
376,
65,
62,
439,
8,
628,
220,
220,
220,
299,
417,
220,
220,
220,
220,
796,
2546,
7,
3698,
17,
45,
3727,
11,
17,
8,
198,
220,
220,
198,
220,
220,
220,
1303,
23926,
2559,
855,
198,
220,
220,
220,
24994,
3620,
9148,
56,
3963,
10188,
9864,
1847,
3563,
29267,
31097,
36775,
7112,
55,
198,
220,
220,
220,
38093,
2559,
46249,
198,
220,
220,
220,
1303,
220,
10385,
15055,
83,
1366,
284,
29877,
3298,
49586,
17593,
357,
41873,
8,
198,
220,
220,
220,
509,
42,
796,
29877,
7,
16601,
312,
87,
13557,
72,
837,
16601,
312,
87,
13557,
73,
11,
43030,
7,
42,
62,
439,
4008,
628,
220,
220,
220,
1303,
23926,
2559,
855,
198,
220,
220,
220,
24994,
3620,
9148,
56,
3963,
10188,
9864,
1847,
10863,
2885,
28495,
36775,
7112,
55,
198,
220,
220,
220,
38093,
2559,
46249,
198,
220,
220,
220,
1303,
10385,
15055,
83,
1366,
284,
29877,
3298,
31312,
17593,
357,
41873,
8,
198,
220,
220,
220,
37442,
796,
29877,
7,
11190,
312,
87,
13557,
72,
837,
11190,
312,
87,
13557,
73,
837,
35138,
7,
38,
62,
439,
4008,
628,
220,
220,
220,
1303,
23926,
2559,
855,
198,
220,
220,
220,
24994,
3620,
9148,
56,
3963,
10188,
9864,
1847,
7473,
5222,
569,
9782,
1581,
198,
220,
220,
220,
38093,
2559,
46249,
198,
220,
220,
220,
17852,
17,
18227,
37,
796,
15690,
90,
5317,
2414,
92,
7,
917,
891,
11,
77,
52,
67,
1659,
417,
11,
299,
417,
8,
198,
220,
220,
220,
2488,
33571,
17852,
17,
18227,
37,
58,
16,
25,
358,
320,
25,
77,
52,
67,
1659,
417,
11,
47715,
764,
28,
2488,
13,
299,
27740,
9,
7,
3698,
17,
45,
3727,
12,
16,
47762,
16,
198,
220,
220,
220,
2488,
33571,
17852,
17,
18227,
37,
58,
17,
25,
358,
320,
25,
77,
52,
67,
1659,
417,
11,
47715,
764,
28,
2488,
13,
299,
27740,
9,
7,
3698,
17,
45,
3727,
12,
16,
47762,
17,
198,
220,
220,
220,
376,
65,
796,
10507,
18747,
7,
35138,
7,
3698,
17,
18227,
37,
828,
35138,
7,
37,
65,
62,
439,
18125,
628,
220,
220,
220,
1303,
23926,
2559,
855,
198,
220,
220,
220,
24994,
3620,
9148,
56,
3963,
10188,
9864,
1847,
357,
16,
14,
29817,
34,
2640,
9050,
13219,
6173,
1847,
1961,
337,
10705,
36775,
7112,
55,
198,
220,
220,
220,
38093,
2559,
46249,
198,
220,
220,
220,
1303,
10385,
15055,
83,
1366,
284,
29877,
3298,
17593,
198,
220,
220,
220,
800,
12038,
796,
29877,
7,
16340,
12038,
312,
87,
13557,
72,
837,
16340,
12038,
312,
87,
13557,
73,
837,
43030,
7,
16340,
44,
62,
439,
4008,
628,
220,
220,
220,
1441,
509,
42,
11,
37442,
11,
800,
12038,
11,
376,
65,
198,
198,
437,
198,
198,
2,
24148,
23304,
12,
39,
6465,
1677,
7597,
36817,
5959,
46111,
4770,
25609,
18604,
198,
31,
45145,
220,
2163,
19675,
39,
395,
9449,
7,
52,
11,
350,
11,
509,
42,
11,
337,
46256,
119,
126,
117,
11,
37442,
11,
10323,
82,
11,
611,
631,
8,
198,
220,
220,
220,
220,
198,
220,
220,
220,
340,
9806,
62,
11909,
796,
2026,
198,
220,
220,
220,
340,
1084,
62,
11909,
796,
362,
198,
220,
220,
220,
1303,
340,
22510,
796,
657,
198,
220,
220,
220,
2593,
24861,
229,
52,
796,
20650,
90,
43879,
2414,
92,
7,
917,
891,
11,
340,
9806,
62,
11909,
8,
628,
220,
220,
220,
10323,
82,
764,
47932,
37442,
9,
47,
628,
220,
220,
220,
27140,
796,
5766,
1096,
7,
16601,
58,
361,
631,
11,
611,
631,
12962,
198,
220,
220,
220,
1303,
27140,
796,
442,
4316,
2584,
7,
16601,
58,
361,
631,
11,
611,
631,
12962,
198,
220,
220,
220,
37442,
39611,
222,
796,
37442,
6,
198,
220,
220,
220,
1303,
471,
361,
631,
796,
471,
58,
361,
631,
60,
198,
220,
220,
220,
1303,
10323,
82,
361,
631,
796,
10323,
82,
58,
361,
631,
60,
198,
220,
220,
220,
7389,
796,
352,
68,
21,
628,
220,
220,
220,
329,
340,
11909,
796,
352,
25,
270,
9806,
62,
11909,
198,
220,
220,
220,
220,
220,
220,
220,
2488,
259,
65,
3733,
471,
58,
361,
631,
60,
764,
28,
27140,
59,
49,
11994,
58,
361,
631,
60,
198,
220,
220,
220,
220,
220,
220,
220,
18872,
229,
52,
796,
532,
11190,
39611,
222,
9,
52,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
42721,
15,
13200,
0,
7,
24861,
229,
52,
8,
198,
220,
220,
220,
220,
220,
220,
220,
37455,
47,
796,
7389,
9,
44,
46256,
119,
126,
117,
9,
24861,
229,
52,
198,
220,
220,
220,
220,
220,
220,
220,
10323,
82,
764,
47932,
37442,
9,
138,
242,
47,
198,
220,
220,
220,
220,
220,
220,
220,
350,
764,
47932,
37455,
47,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
6822,
40826,
20368,
24305,
198,
220,
220,
220,
220,
220,
220,
220,
2593,
24861,
229,
52,
58,
270,
11909,
60,
796,
616,
27237,
7,
24861,
229,
52,
8,
628,
220,
220,
220,
220,
220,
220,
220,
611,
357,
270,
11909,
1875,
340,
1084,
62,
11909,
8,
11405,
357,
27237,
24861,
229,
52,
58,
270,
11909,
60,
14,
27237,
24861,
229,
52,
58,
270,
11909,
12,
16,
60,
1875,
657,
13,
16,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
44872,
7203,
59,
77,
1600,
340,
11909,
553,
19675,
12,
39,
395,
9449,
34820,
59,
77,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2270,
198,
220,
220,
220,
220,
220,
220,
220,
886,
628,
220,
220,
220,
886,
628,
220,
220,
220,
1303,
471,
87,
796,
471,
58,
16,
25,
17,
25,
437,
60,
198,
220,
220,
220,
1303,
40919,
796,
471,
58,
17,
25,
17,
25,
437,
60,
198,
220,
220,
220,
1303,
337,
796,
2160,
7,
32604,
7,
33643,
58,
3698,
17,
45,
3727,
4357,
67,
12078,
28,
16,
8,
4458,
9,
20337,
62,
417,
8,
198,
220,
220,
220,
1303,
12176,
796,
220,
2160,
7,
32604,
7,
33643,
58,
3698,
17,
45,
3727,
4083,
9,
52,
87,
58,
3698,
17,
45,
3727,
4357,
5391,
82,
28,
16,
8,
4458,
9,
20337,
62,
417,
8,
198,
220,
220,
220,
1303,
7578,
796,
220,
2160,
7,
32604,
7,
33643,
58,
3698,
17,
45,
3727,
4083,
9,
52,
89,
58,
3698,
17,
45,
3727,
4357,
5391,
82,
28,
16,
8,
4458,
9,
20337,
62,
417,
8,
198,
220,
220,
220,
1303,
317,
796,
2488,
13,
357,
31554,
10,
26903,
20679,
44,
198,
220,
220,
220,
1303,
471,
764,
12,
28,
32,
220,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1441,
471,
11,
350,
198,
198,
437,
1303,
23578,
24148,
23304,
12,
39,
6465,
1677,
7597,
36817,
5959
] | 1.910936 | 8,870 |
module MaxHelpingHandHintsFlagController
using ..Ahorn, Maple
@mapdef Entity "MaxHelpingHand/HintsFlagController" HintsFlagController(x::Integer, y::Integer, outputFlag::String="hints", not::Bool=false)
const placements = Ahorn.PlacementDict(
"Hints Flag Controller (max480's Helping Hand)" => Ahorn.EntityPlacement(
HintsFlagController
)
)
function Ahorn.selection(entity::HintsFlagController)
x, y = Ahorn.position(entity)
return Ahorn.Rectangle(x - 12, y - 12, 24, 24)
end
function Ahorn.editingOptions(effect::HintsFlagController)
return Dict{String, Any}(
)
end
function Ahorn.render(ctx::Ahorn.Cairo.CairoContext, entity::HintsFlagController, room::Maple.Room)
if entity.not
Ahorn.drawSprite(ctx, "ahorn/MaxHelpingHand/hints_flag_controller_inv", 0, 0)
else
Ahorn.drawSprite(ctx, "ahorn/MaxHelpingHand/hints_flag_controller", 0, 0)
end
end
end
| [
171,
119,
123,
21412,
5436,
12621,
13886,
12885,
39,
29503,
34227,
22130,
198,
198,
3500,
11485,
10910,
1211,
11,
21249,
198,
198,
31,
8899,
4299,
20885,
366,
11518,
12621,
13886,
12885,
14,
39,
29503,
34227,
22130,
1,
367,
29503,
34227,
22130,
7,
87,
3712,
46541,
11,
331,
3712,
46541,
11,
5072,
34227,
3712,
10100,
2625,
71,
29503,
1600,
407,
3712,
33,
970,
28,
9562,
8,
198,
198,
9979,
21957,
3196,
796,
7900,
1211,
13,
3646,
5592,
35,
713,
7,
198,
220,
220,
220,
366,
39,
29503,
19762,
22741,
357,
9806,
22148,
338,
10478,
278,
7157,
16725,
5218,
7900,
1211,
13,
32398,
3646,
5592,
7,
198,
220,
220,
220,
220,
220,
220,
220,
367,
29503,
34227,
22130,
198,
220,
220,
220,
1267,
198,
8,
198,
198,
8818,
7900,
1211,
13,
49283,
7,
26858,
3712,
39,
29503,
34227,
22130,
8,
198,
220,
220,
220,
2124,
11,
331,
796,
7900,
1211,
13,
9150,
7,
26858,
8,
628,
220,
220,
220,
1441,
7900,
1211,
13,
45474,
9248,
7,
87,
532,
1105,
11,
331,
532,
1105,
11,
1987,
11,
1987,
8,
198,
437,
198,
198,
8818,
7900,
1211,
13,
276,
1780,
29046,
7,
10760,
3712,
39,
29503,
34227,
22130,
8,
198,
220,
220,
220,
1441,
360,
713,
90,
10100,
11,
4377,
92,
7,
198,
220,
220,
220,
1267,
198,
437,
198,
198,
8818,
7900,
1211,
13,
13287,
7,
49464,
3712,
10910,
1211,
13,
34,
18131,
13,
34,
18131,
21947,
11,
9312,
3712,
39,
29503,
34227,
22130,
11,
2119,
3712,
13912,
293,
13,
41178,
8,
198,
220,
220,
220,
611,
9312,
13,
1662,
198,
220,
220,
220,
220,
220,
220,
220,
7900,
1211,
13,
19334,
38454,
578,
7,
49464,
11,
366,
993,
1211,
14,
11518,
12621,
13886,
12885,
14,
71,
29503,
62,
32109,
62,
36500,
62,
16340,
1600,
657,
11,
657,
8,
198,
220,
220,
220,
2073,
198,
220,
220,
220,
220,
220,
220,
220,
7900,
1211,
13,
19334,
38454,
578,
7,
49464,
11,
366,
993,
1211,
14,
11518,
12621,
13886,
12885,
14,
71,
29503,
62,
32109,
62,
36500,
1600,
657,
11,
657,
8,
198,
220,
220,
220,
886,
198,
437,
198,
198,
437,
198
] | 2.633238 | 349 |
"""
Main module for `GigaSOM.jl` - Huge-scale, high-performance flow cytometry clustering
The documentation is here: http://LCSB-BioCore.github.io/GigaSOM.jl
"""
module GigaSOM
using CSV
using DataFrames
using Distances
using Distributed
using Distributions
using FCSFiles
using FileIO
using DistributedArrays
using NearestNeighbors
using Serialization
using StableRNGs
include("base/structs.jl")
include("base/dataops.jl")
include("base/distributed.jl")
include("base/trainutils.jl")
include("analysis/core.jl")
include("analysis/embedding.jl")
include("io/dio.jl")
include("io/input.jl")
include("io/process.jl")
include("io/splitting.jl")
# include visualization files
# include("visualization/plotting.jl")
#core
export initGigaSOM, trainGigaSOM, mapToGigaSOM
#trainutils
export linearRadius, expRadius, gaussianKernel, bubbleKernel, thresholdKernel, distMatrix
#embedding
export embedGigaSOM
# structs
export Som, LoadedDataInfo
#io/input
export readFlowset,
readFlowFrame,
loadFCS,
loadFCSHeader,
getFCSSize,
loadFCSSizes,
loadFCSSet,
selectFCSColumns,
distributeFCSFileVector,
distributeFileVector,
getCSVSize,
loadCSV,
loadCSVSizes,
loadCSVSet
#io/splitting
export slicesof, vcollectSlice, collectSlice
#io/process
export cleanNames!, getMetaData, getMarkerNames
# plotting
export plotCounts, plotPCA
#dataops (higher-level operations on data)
export dcopy,
dselect,
dapply_cols,
dapply_rows,
dstat,
dstat_buckets,
dcount,
dcount_buckets,
dscale,
dtransform_asinh,
dmedian,
dmedian_buckets,
mapbuckets,
catmapbuckets
#distributed data tools
export save_at,
get_from,
get_val_from,
remove_from,
distribute_array,
distribute_darray,
undistribute,
distributed_transform,
distributed_mapreduce,
distributed_foreach,
distributed_collect,
distributed_export,
distributed_import,
distributed_unlink
end # module
| [
37811,
198,
13383,
8265,
329,
4600,
38,
13827,
50,
2662,
13,
20362,
63,
532,
35225,
12,
9888,
11,
1029,
12,
26585,
5202,
27104,
15748,
32966,
1586,
198,
198,
464,
10314,
318,
994,
25,
2638,
1378,
5639,
16811,
12,
42787,
14055,
13,
12567,
13,
952,
14,
38,
13827,
50,
2662,
13,
20362,
198,
37811,
198,
198,
21412,
402,
13827,
50,
2662,
198,
198,
3500,
44189,
198,
3500,
6060,
35439,
198,
3500,
4307,
1817,
198,
3500,
4307,
6169,
198,
3500,
46567,
507,
198,
3500,
376,
7902,
25876,
198,
3500,
9220,
9399,
198,
3500,
4307,
6169,
3163,
20477,
198,
3500,
3169,
12423,
46445,
32289,
198,
3500,
23283,
1634,
198,
3500,
520,
540,
49,
10503,
82,
198,
198,
17256,
7203,
8692,
14,
7249,
82,
13,
20362,
4943,
198,
198,
17256,
7203,
8692,
14,
7890,
2840,
13,
20362,
4943,
198,
17256,
7203,
8692,
14,
17080,
6169,
13,
20362,
4943,
198,
17256,
7203,
8692,
14,
27432,
26791,
13,
20362,
4943,
198,
198,
17256,
7203,
20930,
14,
7295,
13,
20362,
4943,
198,
17256,
7203,
20930,
14,
20521,
12083,
13,
20362,
4943,
198,
198,
17256,
7203,
952,
14,
67,
952,
13,
20362,
4943,
198,
17256,
7203,
952,
14,
15414,
13,
20362,
4943,
198,
17256,
7203,
952,
14,
14681,
13,
20362,
4943,
198,
17256,
7203,
952,
14,
22018,
2535,
13,
20362,
4943,
198,
198,
2,
2291,
32704,
3696,
198,
2,
2291,
7203,
41464,
1634,
14,
29487,
889,
13,
20362,
4943,
198,
198,
2,
7295,
198,
39344,
2315,
38,
13827,
50,
2662,
11,
4512,
38,
13827,
50,
2662,
11,
3975,
2514,
38,
13827,
50,
2662,
198,
198,
2,
27432,
26791,
198,
39344,
14174,
15546,
3754,
11,
1033,
15546,
3754,
11,
31986,
31562,
42,
7948,
11,
14310,
42,
7948,
11,
11387,
42,
7948,
11,
1233,
46912,
198,
198,
2,
20521,
12083,
198,
39344,
11525,
38,
13827,
50,
2662,
198,
198,
2,
2878,
82,
198,
39344,
9995,
11,
42485,
6601,
12360,
198,
198,
2,
952,
14,
15414,
198,
39344,
1100,
7414,
1666,
316,
11,
198,
220,
220,
220,
1100,
37535,
19778,
11,
198,
220,
220,
220,
3440,
4851,
50,
11,
198,
220,
220,
220,
3440,
4851,
9693,
1329,
263,
11,
198,
220,
220,
220,
651,
4851,
5432,
1096,
11,
198,
220,
220,
220,
3440,
4851,
5432,
4340,
11,
198,
220,
220,
220,
3440,
4851,
5432,
316,
11,
198,
220,
220,
220,
2922,
4851,
50,
39470,
82,
11,
198,
220,
220,
220,
14983,
4851,
50,
8979,
38469,
11,
198,
220,
220,
220,
14983,
8979,
38469,
11,
198,
220,
220,
220,
651,
7902,
53,
10699,
11,
198,
220,
220,
220,
3440,
7902,
53,
11,
198,
220,
220,
220,
3440,
7902,
20304,
4340,
11,
198,
220,
220,
220,
3440,
7902,
53,
7248,
198,
198,
2,
952,
14,
22018,
2535,
198,
39344,
24314,
1659,
11,
410,
33327,
11122,
501,
11,
2824,
11122,
501,
198,
198,
2,
952,
14,
14681,
198,
39344,
3424,
36690,
28265,
651,
48526,
6601,
11,
651,
9704,
263,
36690,
198,
198,
2,
29353,
198,
39344,
7110,
12332,
82,
11,
7110,
5662,
32,
198,
198,
2,
7890,
2840,
357,
46503,
12,
5715,
4560,
319,
1366,
8,
198,
39344,
288,
30073,
11,
198,
220,
220,
220,
288,
19738,
11,
198,
220,
220,
220,
288,
39014,
62,
4033,
82,
11,
198,
220,
220,
220,
288,
39014,
62,
8516,
11,
198,
220,
220,
220,
288,
14269,
11,
198,
220,
220,
220,
288,
14269,
62,
27041,
1039,
11,
198,
220,
220,
220,
288,
9127,
11,
198,
220,
220,
220,
288,
9127,
62,
27041,
1039,
11,
198,
220,
220,
220,
288,
9888,
11,
198,
220,
220,
220,
288,
35636,
62,
47337,
71,
11,
198,
220,
220,
220,
288,
1150,
666,
11,
198,
220,
220,
220,
288,
1150,
666,
62,
27041,
1039,
11,
198,
220,
220,
220,
3975,
27041,
1039,
11,
198,
220,
220,
220,
3797,
8899,
27041,
1039,
198,
198,
2,
17080,
6169,
1366,
4899,
198,
39344,
3613,
62,
265,
11,
198,
220,
220,
220,
651,
62,
6738,
11,
198,
220,
220,
220,
651,
62,
2100,
62,
6738,
11,
198,
220,
220,
220,
4781,
62,
6738,
11,
198,
220,
220,
220,
14983,
62,
18747,
11,
198,
220,
220,
220,
14983,
62,
67,
18747,
11,
198,
220,
220,
220,
3318,
396,
4163,
11,
198,
220,
220,
220,
9387,
62,
35636,
11,
198,
220,
220,
220,
9387,
62,
8899,
445,
7234,
11,
198,
220,
220,
220,
9387,
62,
754,
620,
11,
198,
220,
220,
220,
9387,
62,
33327,
11,
198,
220,
220,
220,
9387,
62,
39344,
11,
198,
220,
220,
220,
9387,
62,
11748,
11,
198,
220,
220,
220,
9387,
62,
403,
8726,
628,
198,
437,
1303,
8265,
198
] | 2.659091 | 748 |
dimension(sig) = length(sig)
basis_labels(sig::Tuple) = 1:dimension(sig)
basis_labels(sig::NamedTuple{names}) where names = names
basis_blade_label(sig::Tuple, indices, labels=basis_labels(sig)) = "v$(join(labels[indices]))"
basis_blade_label(sig::NamedTuple, indices, labels=nothing) = join(basis_labels(sig)[indices])
abstract type MetricSignature end
"""
OffsetSignature(sig, indices)
Metric signature `sig` with offset `indices`, enabling non-standard indexing for multivectors.
Example
===
```jldoctest
julia> lorentzian = OffsetSignature((-1,1,1,1), 0:3) # zero-based indexing
⟨-+++⟩ with indices 0:3
(pretty-printed OffsetSignature{(-1, 1, 1, 1), 0:3}())
julia> (1:4)'basis(lorentzian) # construct spacetime 4-vector
Grade-1 Multivector{⟨-+++⟩ with indices 0:3, 1, Vector{Int64}}:
1 v0
2 v1
3 v2
4 v3
julia> ans[0] # get first ("time") component
1
```
"""
struct OffsetSignature{sig,indices} <: MetricSignature end
OffsetSignature(sig,indices) = OffsetSignature{sig,indices}()
Base.getindex(::OffsetSignature{sig}, args...) where sig = getindex(sig, args...)
Base.length(::OffsetSignature{sig}) where sig = length(sig)
basis_labels(::OffsetSignature{sig}) where sig = basis_labels(sig)
basis_blade_label(::OffsetSignature{sig,labels}, indices) where {sig,labels} = basis_blade_label(sig, indices, labels)
"""
Convert human-readable basis vector index or symbol into 1-based integer index
"""
normalize_bv_index(sig, i) = i
normalize_bv_index(sig, i::Symbol) = findfirst(==(i), basis_labels(sig))
function normalize_bv_index(sig::Union{Tuple,NamedTuple}, i::Integer)
r = 1:dimension(sig)
i ∈ r ? i : error("index $i is outside range $r for signature $sig")
end
function normalize_bv_index(osig::OffsetSignature{sig,indices}, ioffset::Integer) where {sig,indices}
i = findfirst(==(ioffset), indices)
isnothing(i) && error("index $ioffset is outside range $indices for $osig")
i
end
"""
Pretty-print metric signature in short, non-parseable form such as ⟨-+++⟩
"""
show_signature(sig) = repr(sig) # fallback
show_signature(sig::Tuple) = "⟨$(join(map(s -> get(Dict(+1=>"+", -1=>"-"), s, s), sig)))⟩"
function show_signature(sig::NamedTuple)
items = map(zip(keys(sig), sig)) do (label, square)
s = get(Dict(+1=>"+", -1=>"-"), square, square)
"$label$s"
end
"⟨$(join(items, ","))⟩"
end
function show_signature(::OffsetSignature{sig,indices}) where {sig,indices}
"$(show_signature(sig)) with indices $indices"
end | [
46156,
7,
82,
328,
8,
796,
4129,
7,
82,
328,
8,
198,
198,
12093,
271,
62,
23912,
1424,
7,
82,
328,
3712,
51,
29291,
8,
796,
352,
25,
46156,
7,
82,
328,
8,
198,
12093,
271,
62,
23912,
1424,
7,
82,
328,
3712,
45,
2434,
51,
29291,
90,
14933,
30072,
810,
3891,
796,
3891,
198,
198,
12093,
271,
62,
22500,
62,
18242,
7,
82,
328,
3712,
51,
29291,
11,
36525,
11,
14722,
28,
12093,
271,
62,
23912,
1424,
7,
82,
328,
4008,
796,
366,
85,
3,
7,
22179,
7,
23912,
1424,
58,
521,
1063,
60,
4008,
1,
198,
12093,
271,
62,
22500,
62,
18242,
7,
82,
328,
3712,
45,
2434,
51,
29291,
11,
36525,
11,
14722,
28,
22366,
8,
796,
4654,
7,
12093,
271,
62,
23912,
1424,
7,
82,
328,
38381,
521,
1063,
12962,
198,
198,
397,
8709,
2099,
3395,
1173,
11712,
1300,
886,
198,
198,
37811,
198,
197,
34519,
11712,
1300,
7,
82,
328,
11,
36525,
8,
198,
198,
9171,
1173,
9877,
4600,
82,
328,
63,
351,
11677,
4600,
521,
1063,
47671,
15882,
1729,
12,
20307,
6376,
278,
329,
1963,
425,
5217,
13,
198,
198,
16281,
198,
18604,
198,
15506,
63,
73,
335,
38441,
395,
198,
73,
43640,
29,
24044,
429,
89,
666,
796,
3242,
2617,
11712,
1300,
19510,
12,
16,
11,
16,
11,
16,
11,
16,
828,
657,
25,
18,
8,
1303,
6632,
12,
3106,
6376,
278,
198,
158,
253,
101,
12,
45340,
158,
253,
102,
351,
36525,
657,
25,
18,
198,
7,
37784,
12,
49695,
3242,
2617,
11712,
1300,
90,
32590,
16,
11,
352,
11,
352,
11,
352,
828,
657,
25,
18,
92,
28955,
198,
198,
73,
43640,
29,
357,
16,
25,
19,
33047,
12093,
271,
7,
31131,
429,
89,
666,
8,
1303,
5678,
34752,
8079,
604,
12,
31364,
198,
42233,
12,
16,
7854,
425,
2715,
90,
158,
253,
101,
12,
45340,
158,
253,
102,
351,
36525,
657,
25,
18,
11,
352,
11,
20650,
90,
5317,
2414,
11709,
25,
198,
352,
410,
15,
198,
362,
410,
16,
198,
513,
410,
17,
198,
604,
410,
18,
198,
198,
73,
43640,
29,
9093,
58,
15,
60,
1303,
651,
717,
5855,
2435,
4943,
7515,
198,
16,
198,
15506,
63,
198,
37811,
198,
7249,
3242,
2617,
11712,
1300,
90,
82,
328,
11,
521,
1063,
92,
1279,
25,
3395,
1173,
11712,
1300,
886,
198,
34519,
11712,
1300,
7,
82,
328,
11,
521,
1063,
8,
796,
3242,
2617,
11712,
1300,
90,
82,
328,
11,
521,
1063,
92,
3419,
198,
14881,
13,
1136,
9630,
7,
3712,
34519,
11712,
1300,
90,
82,
328,
5512,
26498,
23029,
810,
43237,
796,
651,
9630,
7,
82,
328,
11,
26498,
23029,
198,
14881,
13,
13664,
7,
3712,
34519,
11712,
1300,
90,
82,
328,
30072,
810,
43237,
796,
4129,
7,
82,
328,
8,
198,
12093,
271,
62,
23912,
1424,
7,
3712,
34519,
11712,
1300,
90,
82,
328,
30072,
810,
43237,
796,
4308,
62,
23912,
1424,
7,
82,
328,
8,
198,
12093,
271,
62,
22500,
62,
18242,
7,
3712,
34519,
11712,
1300,
90,
82,
328,
11,
23912,
1424,
5512,
36525,
8,
810,
1391,
82,
328,
11,
23912,
1424,
92,
796,
4308,
62,
22500,
62,
18242,
7,
82,
328,
11,
36525,
11,
14722,
8,
628,
198,
37811,
198,
3103,
1851,
1692,
12,
46155,
4308,
15879,
6376,
393,
6194,
656,
352,
12,
3106,
18253,
6376,
198,
37811,
198,
11265,
1096,
62,
65,
85,
62,
9630,
7,
82,
328,
11,
1312,
8,
796,
1312,
198,
11265,
1096,
62,
65,
85,
62,
9630,
7,
82,
328,
11,
1312,
3712,
13940,
23650,
8,
796,
1064,
11085,
7,
855,
7,
72,
828,
4308,
62,
23912,
1424,
7,
82,
328,
4008,
198,
8818,
3487,
1096,
62,
65,
85,
62,
9630,
7,
82,
328,
3712,
38176,
90,
51,
29291,
11,
45,
2434,
51,
29291,
5512,
1312,
3712,
46541,
8,
198,
197,
81,
796,
352,
25,
46156,
7,
82,
328,
8,
198,
197,
72,
18872,
230,
374,
5633,
1312,
1058,
4049,
7203,
9630,
720,
72,
318,
2354,
2837,
720,
81,
329,
9877,
720,
82,
328,
4943,
198,
437,
198,
8818,
3487,
1096,
62,
65,
85,
62,
9630,
7,
418,
328,
3712,
34519,
11712,
1300,
90,
82,
328,
11,
521,
1063,
5512,
33245,
487,
2617,
3712,
46541,
8,
810,
1391,
82,
328,
11,
521,
1063,
92,
198,
197,
72,
796,
1064,
11085,
7,
855,
7,
952,
487,
2617,
828,
36525,
8,
198,
197,
271,
22366,
7,
72,
8,
11405,
4049,
7203,
9630,
720,
952,
487,
2617,
318,
2354,
2837,
720,
521,
1063,
329,
720,
418,
328,
4943,
198,
197,
72,
198,
437,
628,
198,
37811,
198,
35700,
12,
4798,
18663,
9877,
287,
1790,
11,
1729,
12,
29572,
540,
1296,
884,
355,
2343,
253,
101,
12,
45340,
158,
253,
102,
198,
37811,
198,
12860,
62,
12683,
1300,
7,
82,
328,
8,
796,
41575,
7,
82,
328,
8,
1303,
2121,
1891,
198,
12860,
62,
12683,
1300,
7,
82,
328,
3712,
51,
29291,
8,
796,
366,
158,
253,
101,
3,
7,
22179,
7,
8899,
7,
82,
4613,
651,
7,
35,
713,
7,
10,
16,
14804,
1,
10,
1600,
532,
16,
14804,
26793,
12340,
264,
11,
264,
828,
43237,
22305,
158,
253,
102,
1,
198,
8818,
905,
62,
12683,
1300,
7,
82,
328,
3712,
45,
2434,
51,
29291,
8,
198,
197,
23814,
796,
3975,
7,
13344,
7,
13083,
7,
82,
328,
828,
43237,
4008,
466,
357,
18242,
11,
6616,
8,
198,
197,
197,
82,
796,
651,
7,
35,
713,
7,
10,
16,
14804,
1,
10,
1600,
532,
16,
14804,
26793,
12340,
6616,
11,
6616,
8,
198,
197,
197,
1,
3,
18242,
3,
82,
1,
198,
197,
437,
198,
197,
1,
158,
253,
101,
3,
7,
22179,
7,
23814,
11,
366,
553,
4008,
158,
253,
102,
1,
198,
437,
198,
8818,
905,
62,
12683,
1300,
7,
3712,
34519,
11712,
1300,
90,
82,
328,
11,
521,
1063,
30072,
810,
1391,
82,
328,
11,
521,
1063,
92,
198,
197,
1,
3,
7,
12860,
62,
12683,
1300,
7,
82,
328,
4008,
351,
36525,
720,
521,
1063,
1,
198,
437
] | 2.492857 | 980 |
### A Pluto.jl notebook ###
# v0.14.7
using Markdown
using InteractiveUtils
# This Pluto notebook uses @bind for interactivity. When running this notebook outside of Pluto, the following 'mock version' of @bind gives bound variables a default value (instead of an error).
macro bind(def, element)
quote
local el = $(esc(element))
global $(esc(def)) = Core.applicable(Base.get, el) ? Base.get(el) : missing
el
end
end
# ╔═╡ 47d5b09c-c213-11eb-2472-7b23859c3caa
begin
let
using Pkg
Pkg.activate(mktempdir())
Pkg.Registry.update()
Pkg.add("DICOM")
Pkg.add("NIfTI")
Pkg.add("Plots")
Pkg.add(Pkg.PackageSpec(url="https://github.com/Dale-Black/DICOMUtils.jl"))
Pkg.add("Images")
end
using PlutoUI
using DICOM
using NIfTI
using Plots
using DICOMUtils
using LinearAlgebra
using Images
end
# ╔═╡ e991c00b-974b-442c-93c6-55a0b12b27ed
TableOfContents()
# ╔═╡ 718b9504-f15f-41d1-b0ea-3346f17b4cca
md"""
## Load DICOMs
"""
# ╔═╡ a45f05b9-08d6-4277-9c9c-205f60b43391
volpath = "/Users/daleblack/Desktop/80.0";
# ╔═╡ 5e69faec-3f89-4f65-aab1-9429ad1e141b
volseg1 = "/Users/daleblack/Desktop/HEL_SLICER_SEG_0/S_1.20.nii";
# ╔═╡ 0399cca4-b251-451e-bf8c-96ccd207a1df
volseg2 = "/Users/daleblack/Desktop/HEL_SLICER_SEG_0/M_3.0.nii";
# ╔═╡ 20b7a9f9-4308-427f-995f-1f29f7f6df23
md"""
## Check Orientation
"""
# ╔═╡ e36c897d-07ae-4f61-8a5d-6dbdc651431a
vol = dcmdir_parse(volpath)
# ╔═╡ 8fe1a81f-be2d-4254-8029-aca2dc07a609
seg1 = niread(volseg1);
# ╔═╡ 6aea2d01-b4d5-442a-aafa-fec218cc4123
seg2 = niread(volseg2);
# ╔═╡ 644c1446-4206-4857-8aa3-ca87e0a6ff99
volraw = DICOMUtils.load_dcm_array(vol);
# ╔═╡ d729e367-61e4-4ade-b898-d66631443236
seg1raw = copy(seg1.raw);
# ╔═╡ f883ae8f-5761-471e-b80f-ec55a1fca07a
seg2raw = copy(seg2.raw);
# ╔═╡ 7d4ddb3d-0d5e-433c-a8f1-6ff77cdfd1c5
md"""
### Without Reorientation
"""
# ╔═╡ 5d6edfe9-9d47-4c8b-ac6b-ebc35e3b9915
@bind a Slider(1:size(volraw)[3], default=155, show_value=true)
# ╔═╡ b198dedc-0e5e-4c69-a755-387de3997d09
Plots.heatmap(volraw[:,:,a], c=:grays)
# ╔═╡ 4d49321a-7dbe-428b-91c4-c9561055ce0b
Plots.heatmap(seg1raw[:,:,a], c=:grays)
# ╔═╡ 55744a6c-a224-42cc-b590-bc7ec4614bc7
md"""
### Superimpose
"""
# ╔═╡ d4bc98e5-e92b-4b24-ad36-081b9c0d8507
md"""
## With Reorientation
"""
# ╔═╡ 670ec570-8a19-479d-a619-873c8fe9457a
volraw_ornt, affvol, new_affvol = DICOMUtils.orientation(volraw, (("L", "A", "S")));
# ╔═╡ 3bb89d52-da0e-42d2-9368-41c576b3ef11
seg1raw_ornt, aff1, new_aff1 = DICOMUtils.orientation(seg1raw, (("L", "A", "S")));
# ╔═╡ 16da0125-d6ad-45d8-ba30-431ff2fdc7ed
Plots.heatmap(volraw_ornt[:,:,a], c=:grays)
# ╔═╡ 8c49c4d7-8864-4a5d-9797-3e2bacb2f514
Plots.heatmap(seg1raw_ornt[:,:,a], c=:grays)
# ╔═╡ bb387fef-0034-467f-8219-232a5942c264
md"""
## Calcium Scoring
"""
# ╔═╡ 64599dbe-4f10-476b-921b-63872d7482d1
begin
ii1 = [1 2 0 1
1 5 0 1]
ii2 = [1 2 0 1
1 5 0 1]
img = cat(ii1, ii2, dims=3)
end
# ╔═╡ 228e1866-5d50-41a6-b5f3-cce2d49cdfee
spc = [0.625, 0.625, 0.5]
# ╔═╡ 1252701e-6812-49e4-9282-7c51dd92f8cc
begin
mm1 = [1 0 0 1
1 1 0 1]
mm2 = [1 0 0 1
1 1 0 1]
msk = cat(mm1, mm2, dims=3)
end
# ╔═╡ 288e776b-04ae-479f-8ae2-b3232037fe87
function compute_calcium_scores(image, spacing, mask, min_vol=nothing, max_vol=nothing)
binary_mask = mask
voxel_volume = spacing[1] * spacing[2] * spacing[3]
agatston_score = 0
calcium_volume = 0
# Find individual lesions (in 3D) so that we can discard too small or too large lesions
lesion_map = Images.label_components(binary_mask)
n_lesions = length(unique(lesion_map))
for lesion = 1:(n_lesions - 1)
lesion_mask = map(x -> x == lesion, lesion_map)
# Ignore too small or too large lesions
lesion_volume = count(lesion_mask) * voxel_volume
if ((min_vol != nothing) && (lesion_volume < min_vol))
continue
end
if ((max_vol != nothing) && (lesion_volume > max_vol))
continue
end
calcium_volume += lesion_volume
# Calculate Agatston score for this lesion
slices = sort(unique(lesion_mask)) .+ 1
for z = 1:slices[end]
fragment_mask = lesion_mask[z,:,:]
n_pixels = count(fragment_mask)
maximum_intensity = maximum(image[z,:,:][fragment_mask])
if maximum_intensity < 200
coefficient = 1
elseif maximum_intensity < 300
coefficient = 2
elseif maximum_intensity < 400
coefficient = 3
else
coefficient = 4
end
agatston_score += coefficient * n_pixels
end
end
agatston_score *= spacing[1] / 3.0 * spacing[2] * spacing[3]
return agatston_score, calcium_volume
end
# ╔═╡ ea475810-4853-4f6f-97bd-d3faf1b646d6
compute_calcium_scores(img, spc, msk)
# ╔═╡ 165084b0-4ebe-4c28-bdae-24278d7497ae
compute_calcium_scores(img, spc, msk, 0)
# ╔═╡ Cell order:
# ╠═47d5b09c-c213-11eb-2472-7b23859c3caa
# ╠═e991c00b-974b-442c-93c6-55a0b12b27ed
# ╟─718b9504-f15f-41d1-b0ea-3346f17b4cca
# ╠═a45f05b9-08d6-4277-9c9c-205f60b43391
# ╠═5e69faec-3f89-4f65-aab1-9429ad1e141b
# ╠═0399cca4-b251-451e-bf8c-96ccd207a1df
# ╟─20b7a9f9-4308-427f-995f-1f29f7f6df23
# ╠═e36c897d-07ae-4f61-8a5d-6dbdc651431a
# ╠═8fe1a81f-be2d-4254-8029-aca2dc07a609
# ╠═6aea2d01-b4d5-442a-aafa-fec218cc4123
# ╠═644c1446-4206-4857-8aa3-ca87e0a6ff99
# ╠═d729e367-61e4-4ade-b898-d66631443236
# ╠═f883ae8f-5761-471e-b80f-ec55a1fca07a
# ╟─7d4ddb3d-0d5e-433c-a8f1-6ff77cdfd1c5
# ╠═5d6edfe9-9d47-4c8b-ac6b-ebc35e3b9915
# ╠═b198dedc-0e5e-4c69-a755-387de3997d09
# ╠═4d49321a-7dbe-428b-91c4-c9561055ce0b
# ╟─55744a6c-a224-42cc-b590-bc7ec4614bc7
# ╟─d4bc98e5-e92b-4b24-ad36-081b9c0d8507
# ╠═670ec570-8a19-479d-a619-873c8fe9457a
# ╠═3bb89d52-da0e-42d2-9368-41c576b3ef11
# ╠═16da0125-d6ad-45d8-ba30-431ff2fdc7ed
# ╠═8c49c4d7-8864-4a5d-9797-3e2bacb2f514
# ╟─bb387fef-0034-467f-8219-232a5942c264
# ╠═64599dbe-4f10-476b-921b-63872d7482d1
# ╠═228e1866-5d50-41a6-b5f3-cce2d49cdfee
# ╠═1252701e-6812-49e4-9282-7c51dd92f8cc
# ╠═288e776b-04ae-479f-8ae2-b3232037fe87
# ╠═ea475810-4853-4f6f-97bd-d3faf1b646d6
# ╠═165084b0-4ebe-4c28-bdae-24278d7497ae
| [
21017,
317,
32217,
13,
20362,
20922,
44386,
198,
2,
410,
15,
13,
1415,
13,
22,
198,
198,
3500,
2940,
2902,
198,
3500,
21365,
18274,
4487,
198,
198,
2,
770,
32217,
20922,
3544,
2488,
21653,
329,
9427,
3458,
13,
1649,
2491,
428,
20922,
2354,
286,
32217,
11,
262,
1708,
705,
76,
735,
2196,
6,
286,
2488,
21653,
3607,
5421,
9633,
257,
4277,
1988,
357,
38070,
286,
281,
4049,
737,
198,
20285,
305,
11007,
7,
4299,
11,
5002,
8,
198,
220,
220,
220,
9577,
198,
220,
220,
220,
220,
220,
220,
220,
1957,
1288,
796,
29568,
3798,
7,
30854,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
3298,
29568,
3798,
7,
4299,
4008,
796,
7231,
13,
1324,
677,
540,
7,
14881,
13,
1136,
11,
1288,
8,
5633,
7308,
13,
1136,
7,
417,
8,
1058,
4814,
198,
220,
220,
220,
220,
220,
220,
220,
1288,
198,
220,
220,
220,
886,
198,
437,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
6298,
67,
20,
65,
2931,
66,
12,
66,
26427,
12,
1157,
1765,
12,
1731,
4761,
12,
22,
65,
23721,
3270,
66,
18,
6888,
64,
198,
27471,
198,
197,
1616,
198,
197,
197,
3500,
350,
10025,
198,
197,
197,
47,
10025,
13,
39022,
7,
28015,
29510,
15908,
28955,
198,
197,
197,
47,
10025,
13,
8081,
4592,
13,
19119,
3419,
198,
197,
197,
47,
10025,
13,
2860,
7203,
35,
2149,
2662,
4943,
198,
197,
197,
47,
10025,
13,
2860,
7203,
45,
1532,
25621,
4943,
198,
197,
197,
47,
10025,
13,
2860,
7203,
3646,
1747,
4943,
198,
197,
197,
47,
10025,
13,
2860,
7,
47,
10025,
13,
27813,
22882,
7,
6371,
2625,
5450,
1378,
12567,
13,
785,
14,
35,
1000,
12,
9915,
14,
35,
2149,
2662,
18274,
4487,
13,
20362,
48774,
198,
197,
197,
47,
10025,
13,
2860,
7203,
29398,
4943,
198,
197,
437,
628,
197,
3500,
32217,
10080,
198,
197,
3500,
360,
2149,
2662,
198,
197,
3500,
399,
1532,
25621,
198,
197,
3500,
1345,
1747,
198,
197,
3500,
360,
2149,
2662,
18274,
4487,
198,
197,
3500,
44800,
2348,
29230,
198,
197,
3500,
5382,
198,
437,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
304,
2079,
16,
66,
405,
65,
12,
24,
4524,
65,
12,
39506,
66,
12,
6052,
66,
21,
12,
2816,
64,
15,
65,
1065,
65,
1983,
276,
198,
10962,
5189,
15842,
3419,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
767,
1507,
65,
31027,
19,
12,
69,
1314,
69,
12,
3901,
67,
16,
12,
65,
15,
18213,
12,
2091,
3510,
69,
1558,
65,
19,
13227,
198,
9132,
37811,
198,
2235,
8778,
360,
2149,
2662,
82,
198,
37811,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
257,
2231,
69,
2713,
65,
24,
12,
2919,
67,
21,
12,
19,
27019,
12,
24,
66,
24,
66,
12,
21261,
69,
1899,
65,
42117,
6420,
198,
10396,
6978,
796,
12813,
14490,
14,
14597,
13424,
14,
36881,
14,
1795,
13,
15,
8172,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
642,
68,
3388,
13331,
721,
12,
18,
69,
4531,
12,
19,
69,
2996,
12,
64,
397,
16,
12,
5824,
1959,
324,
16,
68,
23756,
65,
198,
10396,
325,
70,
16,
796,
12813,
14490,
14,
14597,
13424,
14,
36881,
14,
39,
3698,
62,
8634,
2149,
1137,
62,
5188,
38,
62,
15,
14,
50,
62,
16,
13,
1238,
13,
77,
4178,
8172,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
7643,
2079,
13227,
19,
12,
65,
28072,
12,
36330,
68,
12,
19881,
23,
66,
12,
4846,
535,
67,
22745,
64,
16,
7568,
198,
10396,
325,
70,
17,
796,
12813,
14490,
14,
14597,
13424,
14,
36881,
14,
39,
3698,
62,
8634,
2149,
1137,
62,
5188,
38,
62,
15,
14,
44,
62,
18,
13,
15,
13,
77,
4178,
8172,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
1160,
65,
22,
64,
24,
69,
24,
12,
19,
21495,
12,
42363,
69,
12,
33438,
69,
12,
16,
69,
1959,
69,
22,
69,
21,
7568,
1954,
198,
9132,
37811,
198,
2235,
6822,
35275,
341,
198,
37811,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
304,
2623,
66,
4531,
22,
67,
12,
2998,
3609,
12,
19,
69,
5333,
12,
23,
64,
20,
67,
12,
21,
9945,
17896,
2996,
1415,
3132,
64,
198,
10396,
796,
288,
28758,
343,
62,
29572,
7,
10396,
6978,
8,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
807,
5036,
16,
64,
6659,
69,
12,
1350,
17,
67,
12,
19,
24970,
12,
1795,
1959,
12,
22260,
17,
17896,
2998,
64,
31751,
198,
325,
70,
16,
796,
299,
557,
324,
7,
10396,
325,
70,
16,
1776,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
718,
44705,
17,
67,
486,
12,
65,
19,
67,
20,
12,
39506,
64,
12,
64,
28485,
12,
69,
721,
28727,
535,
19,
10163,
198,
325,
70,
17,
796,
299,
557,
324,
7,
10396,
325,
70,
17,
1776,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
718,
2598,
66,
1415,
3510,
12,
19,
22136,
12,
2780,
3553,
12,
23,
7252,
18,
12,
6888,
5774,
68,
15,
64,
21,
487,
2079,
198,
10396,
1831,
796,
360,
2149,
2662,
18274,
4487,
13,
2220,
62,
67,
11215,
62,
18747,
7,
10396,
1776,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
288,
48555,
68,
27824,
12,
5333,
68,
19,
12,
19,
671,
12,
65,
23,
4089,
12,
67,
2791,
5066,
1415,
3559,
24940,
198,
325,
70,
16,
1831,
796,
4866,
7,
325,
70,
16,
13,
1831,
1776,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
277,
49287,
3609,
23,
69,
12,
3553,
5333,
12,
38339,
68,
12,
65,
1795,
69,
12,
721,
2816,
64,
16,
69,
6888,
2998,
64,
198,
325,
70,
17,
1831,
796,
4866,
7,
325,
70,
17,
13,
1831,
1776,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
767,
67,
19,
1860,
65,
18,
67,
12,
15,
67,
20,
68,
12,
42117,
66,
12,
64,
23,
69,
16,
12,
21,
487,
3324,
66,
7568,
67,
16,
66,
20,
198,
9132,
37811,
198,
21017,
9170,
797,
13989,
341,
198,
37811,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
642,
67,
21,
276,
5036,
24,
12,
24,
67,
2857,
12,
19,
66,
23,
65,
12,
330,
21,
65,
12,
1765,
66,
2327,
68,
18,
65,
2079,
1314,
198,
31,
21653,
257,
3454,
1304,
7,
16,
25,
7857,
7,
10396,
1831,
38381,
18,
4357,
4277,
28,
18742,
11,
905,
62,
8367,
28,
7942,
8,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
275,
22337,
9395,
66,
12,
15,
68,
20,
68,
12,
19,
66,
3388,
12,
64,
38172,
12,
32220,
2934,
28771,
22,
67,
2931,
198,
3646,
1747,
13,
25080,
8899,
7,
10396,
1831,
58,
45299,
45299,
64,
4357,
269,
28,
25,
2164,
592,
8,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
604,
67,
2920,
36453,
64,
12,
22,
67,
1350,
12,
40173,
65,
12,
6420,
66,
19,
12,
66,
3865,
39132,
2816,
344,
15,
65,
198,
3646,
1747,
13,
25080,
8899,
7,
325,
70,
16,
1831,
58,
45299,
45299,
64,
4357,
269,
28,
25,
2164,
592,
8,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
642,
3553,
2598,
64,
21,
66,
12,
64,
24137,
12,
3682,
535,
12,
65,
36993,
12,
15630,
22,
721,
3510,
1415,
15630,
22,
198,
9132,
37811,
198,
21017,
3115,
320,
3455,
198,
37811,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
288,
19,
15630,
4089,
68,
20,
12,
68,
5892,
65,
12,
19,
65,
1731,
12,
324,
2623,
12,
2919,
16,
65,
24,
66,
15,
67,
25764,
22,
198,
9132,
37811,
198,
2235,
2080,
797,
13989,
341,
198,
37811,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
48136,
721,
39254,
12,
23,
64,
1129,
12,
31714,
67,
12,
64,
21,
1129,
12,
23,
4790,
66,
23,
5036,
24,
33032,
64,
198,
10396,
1831,
62,
273,
429,
11,
1527,
10396,
11,
649,
62,
2001,
10396,
796,
360,
2149,
2662,
18274,
4487,
13,
13989,
341,
7,
10396,
1831,
11,
357,
7203,
43,
1600,
366,
32,
1600,
366,
50,
48774,
1776,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
513,
11848,
4531,
67,
4309,
12,
6814,
15,
68,
12,
3682,
67,
17,
12,
24,
27412,
12,
3901,
66,
37452,
65,
18,
891,
1157,
198,
325,
70,
16,
1831,
62,
273,
429,
11,
1527,
16,
11,
649,
62,
2001,
16,
796,
360,
2149,
2662,
18274,
4487,
13,
13989,
341,
7,
325,
70,
16,
1831,
11,
357,
7203,
43,
1600,
366,
32,
1600,
366,
50,
48774,
1776,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
1467,
6814,
486,
1495,
12,
67,
21,
324,
12,
2231,
67,
23,
12,
7012,
1270,
12,
50080,
487,
17,
16344,
66,
22,
276,
198,
3646,
1747,
13,
25080,
8899,
7,
10396,
1831,
62,
273,
429,
58,
45299,
45299,
64,
4357,
269,
28,
25,
2164,
592,
8,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
807,
66,
2920,
66,
19,
67,
22,
12,
3459,
2414,
12,
19,
64,
20,
67,
12,
24,
44673,
12,
18,
68,
17,
65,
330,
65,
17,
69,
47396,
198,
3646,
1747,
13,
25080,
8899,
7,
325,
70,
16,
1831,
62,
273,
429,
58,
45299,
45299,
64,
4357,
269,
28,
25,
2164,
592,
8,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
275,
65,
32220,
69,
891,
12,
405,
2682,
12,
24669,
69,
12,
6469,
1129,
12,
24339,
64,
3270,
3682,
66,
18897,
198,
9132,
37811,
198,
2235,
2199,
16910,
1446,
3255,
198,
37811,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
718,
2231,
2079,
67,
1350,
12,
19,
69,
940,
12,
35435,
65,
12,
24,
2481,
65,
12,
21,
2548,
4761,
67,
22,
40149,
67,
16,
198,
27471,
198,
197,
4178,
16,
796,
685,
16,
362,
657,
352,
198,
197,
197,
220,
220,
352,
642,
657,
352,
60,
198,
197,
4178,
17,
796,
685,
16,
362,
657,
352,
198,
197,
220,
220,
220,
197,
220,
220,
352,
642,
657,
352,
60,
198,
197,
9600,
796,
3797,
7,
4178,
16,
11,
21065,
17,
11,
5391,
82,
28,
18,
8,
198,
437,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
29041,
68,
1507,
2791,
12,
20,
67,
1120,
12,
3901,
64,
21,
12,
65,
20,
69,
18,
12,
66,
344,
17,
67,
2920,
66,
7568,
1453,
198,
2777,
66,
796,
685,
15,
13,
26704,
11,
657,
13,
26704,
11,
657,
13,
20,
60,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
13151,
1983,
486,
68,
12,
3104,
1065,
12,
2920,
68,
19,
12,
24,
32568,
12,
22,
66,
4349,
1860,
5892,
69,
23,
535,
198,
27471,
198,
197,
3020,
16,
796,
685,
16,
657,
657,
352,
198,
197,
197,
220,
220,
352,
352,
657,
352,
60,
198,
197,
3020,
17,
796,
685,
16,
657,
657,
352,
198,
197,
220,
220,
220,
197,
220,
220,
352,
352,
657,
352,
60,
198,
197,
907,
74,
796,
3797,
7,
3020,
16,
11,
8085,
17,
11,
5391,
82,
28,
18,
8,
198,
437,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
35419,
68,
39509,
65,
12,
3023,
3609,
12,
31714,
69,
12,
23,
3609,
17,
12,
65,
32637,
1238,
2718,
5036,
5774,
198,
8818,
24061,
62,
9948,
16910,
62,
1416,
2850,
7,
9060,
11,
31050,
11,
9335,
11,
949,
62,
10396,
28,
22366,
11,
3509,
62,
10396,
28,
22366,
8,
198,
197,
39491,
62,
27932,
796,
9335,
198,
197,
85,
1140,
417,
62,
29048,
796,
31050,
58,
16,
60,
1635,
31050,
58,
17,
60,
1635,
31050,
58,
18,
60,
198,
197,
198,
197,
363,
265,
3743,
62,
26675,
796,
657,
198,
197,
9948,
16910,
62,
29048,
796,
657,
198,
197,
198,
197,
2,
9938,
1981,
35258,
357,
259,
513,
35,
8,
523,
326,
356,
460,
27537,
1165,
1402,
393,
1165,
1588,
35258,
198,
197,
829,
295,
62,
8899,
796,
5382,
13,
18242,
62,
5589,
3906,
7,
39491,
62,
27932,
8,
198,
197,
77,
62,
829,
507,
796,
4129,
7,
34642,
7,
829,
295,
62,
8899,
4008,
198,
197,
198,
197,
1640,
10287,
295,
796,
352,
37498,
77,
62,
829,
507,
532,
352,
8,
198,
197,
197,
829,
295,
62,
27932,
796,
3975,
7,
87,
4613,
2124,
6624,
10287,
295,
11,
10287,
295,
62,
8899,
8,
198,
197,
197,
198,
197,
197,
2,
41032,
1165,
1402,
393,
1165,
1588,
35258,
198,
197,
197,
829,
295,
62,
29048,
796,
954,
7,
829,
295,
62,
27932,
8,
1635,
410,
1140,
417,
62,
29048,
198,
197,
197,
361,
14808,
1084,
62,
10396,
14512,
2147,
8,
11405,
357,
829,
295,
62,
29048,
1279,
949,
62,
10396,
4008,
198,
197,
197,
197,
43043,
198,
197,
197,
437,
198,
197,
197,
361,
14808,
9806,
62,
10396,
14512,
2147,
8,
11405,
357,
829,
295,
62,
29048,
1875,
3509,
62,
10396,
4008,
198,
197,
197,
197,
43043,
198,
197,
197,
437,
198,
197,
197,
198,
197,
197,
9948,
16910,
62,
29048,
15853,
10287,
295,
62,
29048,
198,
197,
197,
198,
197,
197,
2,
27131,
378,
2449,
265,
3743,
4776,
329,
428,
10287,
295,
198,
197,
197,
82,
677,
274,
796,
3297,
7,
34642,
7,
829,
295,
62,
27932,
4008,
764,
10,
352,
198,
197,
197,
1640,
1976,
796,
352,
25,
82,
677,
274,
58,
437,
60,
198,
197,
197,
197,
8310,
363,
434,
62,
27932,
796,
10287,
295,
62,
27932,
58,
89,
11,
45299,
47715,
198,
197,
197,
197,
77,
62,
79,
14810,
796,
954,
7,
8310,
363,
434,
62,
27932,
8,
198,
197,
197,
197,
47033,
62,
47799,
796,
5415,
7,
9060,
58,
89,
11,
45299,
25,
7131,
8310,
363,
434,
62,
27932,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
5415,
62,
47799,
1279,
939,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
35381,
796,
352,
198,
197,
197,
197,
17772,
361,
5415,
62,
47799,
1279,
5867,
198,
197,
197,
197,
197,
1073,
16814,
796,
362,
198,
197,
197,
197,
17772,
361,
5415,
62,
47799,
1279,
7337,
198,
197,
197,
197,
197,
1073,
16814,
796,
513,
198,
197,
197,
197,
17772,
198,
197,
197,
197,
197,
1073,
16814,
796,
604,
198,
197,
197,
197,
437,
198,
197,
197,
197,
363,
265,
3743,
62,
26675,
15853,
35381,
1635,
299,
62,
79,
14810,
198,
197,
197,
437,
198,
197,
437,
198,
197,
363,
265,
3743,
62,
26675,
1635,
28,
31050,
58,
16,
60,
1220,
513,
13,
15,
1635,
31050,
58,
17,
60,
1635,
31050,
58,
18,
60,
198,
197,
7783,
556,
265,
3743,
62,
26675,
11,
19700,
62,
29048,
198,
437,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
304,
64,
32576,
40215,
12,
2780,
4310,
12,
19,
69,
21,
69,
12,
5607,
17457,
12,
67,
18,
69,
1878,
16,
65,
27720,
67,
21,
198,
5589,
1133,
62,
9948,
16910,
62,
1416,
2850,
7,
9600,
11,
599,
66,
11,
285,
8135,
8,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
1467,
1120,
5705,
65,
15,
12,
19,
68,
1350,
12,
19,
66,
2078,
12,
17457,
3609,
12,
1731,
25870,
67,
22,
38073,
3609,
198,
5589,
1133,
62,
9948,
16910,
62,
1416,
2850,
7,
9600,
11,
599,
66,
11,
285,
8135,
11,
657,
8,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
12440,
1502,
25,
198,
2,
2343,
243,
254,
28670,
2857,
67,
20,
65,
2931,
66,
12,
66,
26427,
12,
1157,
1765,
12,
1731,
4761,
12,
22,
65,
23721,
3270,
66,
18,
6888,
64,
198,
2,
2343,
243,
254,
28670,
68,
2079,
16,
66,
405,
65,
12,
24,
4524,
65,
12,
39506,
66,
12,
6052,
66,
21,
12,
2816,
64,
15,
65,
1065,
65,
1983,
276,
198,
2,
2343,
243,
253,
7280,
45720,
65,
31027,
19,
12,
69,
1314,
69,
12,
3901,
67,
16,
12,
65,
15,
18213,
12,
2091,
3510,
69,
1558,
65,
19,
13227,
198,
2,
2343,
243,
254,
28670,
64,
2231,
69,
2713,
65,
24,
12,
2919,
67,
21,
12,
19,
27019,
12,
24,
66,
24,
66,
12,
21261,
69,
1899,
65,
42117,
6420,
198,
2,
2343,
243,
254,
28670,
20,
68,
3388,
13331,
721,
12,
18,
69,
4531,
12,
19,
69,
2996,
12,
64,
397,
16,
12,
5824,
1959,
324,
16,
68,
23756,
65,
198,
2,
2343,
243,
254,
28670,
3070,
2079,
13227,
19,
12,
65,
28072,
12,
36330,
68,
12,
19881,
23,
66,
12,
4846,
535,
67,
22745,
64,
16,
7568,
198,
2,
2343,
243,
253,
7280,
1238,
65,
22,
64,
24,
69,
24,
12,
19,
21495,
12,
42363,
69,
12,
33438,
69,
12,
16,
69,
1959,
69,
22,
69,
21,
7568,
1954,
198,
2,
2343,
243,
254,
28670,
68,
2623,
66,
4531,
22,
67,
12,
2998,
3609,
12,
19,
69,
5333,
12,
23,
64,
20,
67,
12,
21,
9945,
17896,
2996,
1415,
3132,
64,
198,
2,
2343,
243,
254,
28670,
23,
5036,
16,
64,
6659,
69,
12,
1350,
17,
67,
12,
19,
24970,
12,
1795,
1959,
12,
22260,
17,
17896,
2998,
64,
31751,
198,
2,
2343,
243,
254,
28670,
21,
44705,
17,
67,
486,
12,
65,
19,
67,
20,
12,
39506,
64,
12,
64,
28485,
12,
69,
721,
28727,
535,
19,
10163,
198,
2,
2343,
243,
254,
28670,
29173,
66,
1415,
3510,
12,
19,
22136,
12,
2780,
3553,
12,
23,
7252,
18,
12,
6888,
5774,
68,
15,
64,
21,
487,
2079,
198,
2,
2343,
243,
254,
28670,
67,
48555,
68,
27824,
12,
5333,
68,
19,
12,
19,
671,
12,
65,
23,
4089,
12,
67,
2791,
5066,
1415,
3559,
24940,
198,
2,
2343,
243,
254,
28670,
69,
49287,
3609,
23,
69,
12,
3553,
5333,
12,
38339,
68,
12,
65,
1795,
69,
12,
721,
2816,
64,
16,
69,
6888,
2998,
64,
198,
2,
2343,
243,
253,
7280,
22,
67,
19,
1860,
65,
18,
67,
12,
15,
67,
20,
68,
12,
42117,
66,
12,
64,
23,
69,
16,
12,
21,
487,
3324,
66,
7568,
67,
16,
66,
20,
198,
2,
2343,
243,
254,
28670,
20,
67,
21,
276,
5036,
24,
12,
24,
67,
2857,
12,
19,
66,
23,
65,
12,
330,
21,
65,
12,
1765,
66,
2327,
68,
18,
65,
2079,
1314,
198,
2,
2343,
243,
254,
28670,
65,
22337,
9395,
66,
12,
15,
68,
20,
68,
12,
19,
66,
3388,
12,
64,
38172,
12,
32220,
2934,
28771,
22,
67,
2931,
198,
2,
2343,
243,
254,
28670,
19,
67,
2920,
36453,
64,
12,
22,
67,
1350,
12,
40173,
65,
12,
6420,
66,
19,
12,
66,
3865,
39132,
2816,
344,
15,
65,
198,
2,
2343,
243,
253,
7280,
41948,
2598,
64,
21,
66,
12,
64,
24137,
12,
3682,
535,
12,
65,
36993,
12,
15630,
22,
721,
3510,
1415,
15630,
22,
198,
2,
2343,
243,
253,
7280,
67,
19,
15630,
4089,
68,
20,
12,
68,
5892,
65,
12,
19,
65,
1731,
12,
324,
2623,
12,
2919,
16,
65,
24,
66,
15,
67,
25764,
22,
198,
2,
2343,
243,
254,
28670,
43798,
721,
39254,
12,
23,
64,
1129,
12,
31714,
67,
12,
64,
21,
1129,
12,
23,
4790,
66,
23,
5036,
24,
33032,
64,
198,
2,
2343,
243,
254,
28670,
18,
11848,
4531,
67,
4309,
12,
6814,
15,
68,
12,
3682,
67,
17,
12,
24,
27412,
12,
3901,
66,
37452,
65,
18,
891,
1157,
198,
2,
2343,
243,
254,
28670,
1433,
6814,
486,
1495,
12,
67,
21,
324,
12,
2231,
67,
23,
12,
7012,
1270,
12,
50080,
487,
17,
16344,
66,
22,
276,
198,
2,
2343,
243,
254,
28670,
23,
66,
2920,
66,
19,
67,
22,
12,
3459,
2414,
12,
19,
64,
20,
67,
12,
24,
44673,
12,
18,
68,
17,
65,
330,
65,
17,
69,
47396,
198,
2,
2343,
243,
253,
7280,
11848,
32220,
69,
891,
12,
405,
2682,
12,
24669,
69,
12,
6469,
1129,
12,
24339,
64,
3270,
3682,
66,
18897,
198,
2,
2343,
243,
254,
28670,
49259,
2079,
67,
1350,
12,
19,
69,
940,
12,
35435,
65,
12,
24,
2481,
65,
12,
21,
2548,
4761,
67,
22,
40149,
67,
16,
198,
2,
2343,
243,
254,
28670,
23815,
68,
1507,
2791,
12,
20,
67,
1120,
12,
3901,
64,
21,
12,
65,
20,
69,
18,
12,
66,
344,
17,
67,
2920,
66,
7568,
1453,
198,
2,
2343,
243,
254,
28670,
11623,
1983,
486,
68,
12,
3104,
1065,
12,
2920,
68,
19,
12,
24,
32568,
12,
22,
66,
4349,
1860,
5892,
69,
23,
535,
198,
2,
2343,
243,
254,
28670,
25270,
68,
39509,
65,
12,
3023,
3609,
12,
31714,
69,
12,
23,
3609,
17,
12,
65,
32637,
1238,
2718,
5036,
5774,
198,
2,
2343,
243,
254,
28670,
18213,
32576,
40215,
12,
2780,
4310,
12,
19,
69,
21,
69,
12,
5607,
17457,
12,
67,
18,
69,
1878,
16,
65,
27720,
67,
21,
198,
2,
2343,
243,
254,
28670,
1433,
1120,
5705,
65,
15,
12,
19,
68,
1350,
12,
19,
66,
2078,
12,
17457,
3609,
12,
1731,
25870,
67,
22,
38073,
3609,
198
] | 1.758145 | 3,407 |
using
Test,
AutocorrelationShell,
Wavelets,
LinearAlgebra,
Plots
@testset "Transforms" begin include("testsets/transforms.jl") end
@testset "Visualizations" begin include("testsets/visualizations.jl") end
| [
3500,
220,
198,
220,
220,
220,
6208,
11,
198,
220,
220,
220,
5231,
420,
273,
49501,
23248,
11,
220,
198,
220,
220,
220,
17084,
5289,
11,
220,
198,
220,
220,
220,
44800,
2348,
29230,
11,
220,
198,
220,
220,
220,
1345,
1747,
198,
198,
31,
9288,
2617,
366,
8291,
23914,
1,
2221,
2291,
7203,
41989,
1039,
14,
7645,
23914,
13,
20362,
4943,
886,
198,
31,
9288,
2617,
366,
36259,
4582,
1,
2221,
2291,
7203,
41989,
1039,
14,
41464,
4582,
13,
20362,
4943,
886,
628
] | 2.75 | 84 |
using Random
using naumer_Dimensionality_2022
using CSV
rng = MersenneTwister(4321)
const max_samples = 10000
dataset1 = samplePSD(rng,max_samples,1,1)
dataset2 = samplePSD(rng,max_samples,2,1)
dataset3 = samplePSD(rng,max_samples,3,1)
function minimumDistance(sample, dataset)
return minimum(sqrt.(sum(abs2, dataset .- sample,dims=(1,2))))
end
function EstimateMinDist(rng, dataset, N, iterations)
total = 0
for i in 1:iterations
mini_dataset = dataset[:,:,randperm(max_samples)[1:(N+1)]]
chosen_index = rand(1:(N+1))
chosen_sample = mini_dataset[:,:,chosen_index]
mini_dataset = cat(mini_dataset[:,:,1:chosen_index-1],mini_dataset[:,:,chosen_index+1:end]; dims=3)
dist = minimumDistance(chosen_sample, mini_dataset)
total += dist
end
return total/iterations
end
dist1 = zeros(500)
dist2 = zeros(500)
dist3 = zeros(500)
Threads.@threads for i in 1:500
dist1[i] = EstimateMinDist(rng, dataset1, i, 5000)
dist2[i] = EstimateMinDist(rng, dataset2, i, 5000)
dist3[i] = EstimateMinDist(rng, dataset3, i, 5000)
end
CSV.write("SamplingData.csv",(dist1 = dist1, dist2 = dist2, dist3 = dist3))
| [
3500,
14534,
198,
3500,
12385,
6975,
62,
29271,
3004,
1483,
62,
1238,
1828,
198,
3500,
44189,
198,
198,
81,
782,
796,
337,
364,
29727,
5080,
1694,
7,
3559,
2481,
8,
198,
198,
9979,
3509,
62,
82,
12629,
796,
33028,
198,
198,
19608,
292,
316,
16,
796,
6291,
3705,
35,
7,
81,
782,
11,
9806,
62,
82,
12629,
11,
16,
11,
16,
8,
198,
19608,
292,
316,
17,
796,
6291,
3705,
35,
7,
81,
782,
11,
9806,
62,
82,
12629,
11,
17,
11,
16,
8,
198,
19608,
292,
316,
18,
796,
6291,
3705,
35,
7,
81,
782,
11,
9806,
62,
82,
12629,
11,
18,
11,
16,
8,
198,
198,
8818,
5288,
45767,
7,
39873,
11,
27039,
8,
198,
220,
220,
220,
1441,
5288,
7,
31166,
17034,
12195,
16345,
7,
8937,
17,
11,
27039,
764,
12,
6291,
11,
67,
12078,
16193,
16,
11,
17,
35514,
198,
437,
198,
198,
8818,
10062,
1920,
9452,
20344,
7,
81,
782,
11,
27039,
11,
399,
11,
34820,
8,
198,
220,
220,
220,
2472,
796,
657,
198,
220,
220,
220,
329,
1312,
287,
352,
25,
2676,
602,
198,
220,
220,
220,
220,
220,
220,
220,
9927,
62,
19608,
292,
316,
796,
27039,
58,
45299,
45299,
25192,
16321,
7,
9806,
62,
82,
12629,
38381,
16,
37498,
45,
10,
16,
8,
11907,
198,
220,
220,
220,
220,
220,
220,
220,
7147,
62,
9630,
796,
43720,
7,
16,
37498,
45,
10,
16,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
7147,
62,
39873,
796,
9927,
62,
19608,
292,
316,
58,
45299,
45299,
354,
5233,
62,
9630,
60,
198,
220,
220,
220,
220,
220,
220,
220,
9927,
62,
19608,
292,
316,
796,
3797,
7,
45313,
62,
19608,
292,
316,
58,
45299,
45299,
16,
25,
354,
5233,
62,
9630,
12,
16,
4357,
45313,
62,
19608,
292,
316,
58,
45299,
45299,
354,
5233,
62,
9630,
10,
16,
25,
437,
11208,
5391,
82,
28,
18,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1233,
796,
5288,
45767,
7,
354,
5233,
62,
39873,
11,
9927,
62,
19608,
292,
316,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2472,
15853,
1233,
198,
220,
220,
220,
886,
198,
220,
220,
220,
1441,
2472,
14,
2676,
602,
198,
437,
628,
198,
17080,
16,
796,
1976,
27498,
7,
4059,
8,
198,
17080,
17,
796,
1976,
27498,
7,
4059,
8,
198,
17080,
18,
796,
1976,
27498,
7,
4059,
8,
198,
198,
16818,
82,
13,
31,
16663,
82,
329,
1312,
287,
352,
25,
4059,
198,
220,
220,
220,
1233,
16,
58,
72,
60,
796,
10062,
1920,
9452,
20344,
7,
81,
782,
11,
27039,
16,
11,
1312,
11,
23336,
8,
198,
220,
220,
220,
1233,
17,
58,
72,
60,
796,
10062,
1920,
9452,
20344,
7,
81,
782,
11,
27039,
17,
11,
1312,
11,
23336,
8,
198,
220,
220,
220,
1233,
18,
58,
72,
60,
796,
10062,
1920,
9452,
20344,
7,
81,
782,
11,
27039,
18,
11,
1312,
11,
23336,
8,
198,
437,
628,
198,
7902,
53,
13,
13564,
7203,
16305,
11347,
6601,
13,
40664,
1600,
7,
17080,
16,
796,
1233,
16,
11,
1233,
17,
796,
1233,
17,
11,
1233,
18,
796,
1233,
18,
4008,
198
] | 2.27907 | 516 |
#!/usr/local/bin/julia
# author: zhwang
# date: 2022-03-01
# description: 检查待提交文件中的信息,函数名等,并生成函数信息文件 --- 已有函数信息 ---
function get_info(body::AbstractString)
## 获取代码内容
code_reg = r"## @lc code=start\n([\s\S]*)\n## @lc code=end"
code = match(code_reg, body)
isnothing(code) && throw("未识别到代码内容")
code = code.captures[1]
## 获取函数内容
func_reg1 = r"^function (\w+!?\([\w:{}, ]*\))"
func_reg2 = r"^(\w+!?\([\w:{}, ]*\))[\w: ]*="
funcs = String[]
for line in split(code, '\n')
(func = match(func_reg1, line)) ≢ nothing && push!(funcs, func.captures[1])
(func = match(func_reg2, line)) ≢ nothing && push!(funcs, func.captures[1])
end
## 获取信息部分
author = match(r"# author: ([\w ]+)", body).captures[1]
date = match(r"# date: ([\w-]+)", body).captures[1]
any(isempty, [date, author]) && throw("未检索到信息!")
(code, unique!(funcs)), (author, date)
end
### 检查和准备阶段 ###
cd(Base.source_dir()[1:end-5])
current_files = readdir()
!all(file in current_files for file in ["src", "tools"]) && throw("Script file misplacing: could not find source path `src/`")
problem_path = "submit/problems/"
test_path = "submit/test/"
problems, tests = readdir.([problem_path, test_path])
isempty(problems) && throw("问题集为空,请检查!")
problems != tests && throw("问题集和测试集不匹配,请检查")
sort!(problems; by=i -> parse(Int, split(i, '.')[1]))
num = length(problems)
### 获取信息 ###
codes, authors, dates, funcs = String[], String[], String[], Vector{String}[]
for file in problems
# println("正在处理文件 $file")
content = read(open(problem_path * file, "r"), String)
(code, func), (author, date) = get_info(content)
isempty(func) && throw("未识别到函数:$file")
push!.([authors, dates, codes], [author, date, code])
append!(funcs, [func])
end
println("识别完毕,一共 $num 个文件")
### 检查信息 ###
a = findfirst(i->authors[i]!="zhwang", 1:num)
!isnothing(a) && throw("作者信息错误:$(file[a])")
a = findfirst(i->!occursin(r"2022-\d\d-\d\d", dates[i]), 1:num)
!isnothing(a) && throw("日期未修改:$(file[a])")
println("日期和作者名称检查完毕")
### 检查函数信息 ###
# 1. 检查函数派发是否重复信息
# 2. 输出函数名
func_name(func::String) = replace(func, r"(?<name>\w*!?)\(.*\)" => s"\g<name>")
func_method(func::String) = replace(func, r"(?<sym>[(, ]\w+)::[\w{}]+" => s"\g<sym>")
output = "submit/local_functions.md"
io = open(output, "w")
println(io, "# 基本信息\n## 新提交的函数名\n")
println(io, "| 问题编号 | 函数名 |\n| :---: | :---: |")
for (i, file) in enumerate(problems)
ind = split(file, '.')[1]
func = unique(func_name.(funcs[i]))
for f in func
println(io, "| $ind | `$f` |")
end
end
println(io, "\n## 函数方法\n")
println(io, "| 问题编号 | 函数方法 |\n| :---: | :---: |")
for (i, file) in enumerate(problems)
ind = split(file, '.')[1]
func = unique(func_method.(funcs[i]))
for f in func
println(io, "| $ind | `$f` |")
end
end
close(io)
println("写入完毕,文件保存在 $output 中")
# ## 获取全局信息
# println("检查主仓库的函数信息")
# main_problem_path = "../LeetCode.jl/src/problems/"
# main_problems = readdir(main_problem_path)
# isempty(main_problems) && throw("未能读取到主仓库文件")
# deleteat!(main_problems, length(main_problems))
# sort!(main_problems; by=i -> parse(Int, split(i, '.')[1]))
# total_num = length(main_problems)
# main_funcs = Vector{String}[]
# fails = String[]
# for file in main_problems
# # println("正在处理文件 $file")
# content = read(open(main_problem_path * file, "r"), String)
# (_, func), _ = get_info(content)
# if isempty(func)
# println("未识别到函数:$file")
# push!(fails, file)
# else
# append!(main_funcs, [func])
# end
# end
# println("识别完毕,$(total_num - length(fails)) 个文件成功识别,$(length(fails)) 个文件识别失败")
# for i in fails
# print(stdout, i)
# end
# for (i, file) in enumerate(main_problems)
# file in fails && deleteat!(main_problems, i)
# end
| [
2,
48443,
14629,
14,
12001,
14,
8800,
14,
73,
43640,
198,
2,
1772,
25,
1976,
36599,
648,
198,
2,
3128,
25,
33160,
12,
3070,
12,
486,
198,
2,
6764,
25,
10545,
96,
222,
162,
253,
98,
36181,
227,
162,
237,
238,
12859,
97,
23877,
229,
20015,
114,
40792,
21410,
46479,
94,
162,
223,
107,
171,
120,
234,
49035,
121,
46763,
108,
28938,
235,
163,
255,
231,
171,
120,
234,
33176,
114,
37955,
22755,
238,
49035,
121,
46763,
108,
46479,
94,
162,
223,
107,
23877,
229,
20015,
114,
11420,
10263,
115,
110,
17312,
231,
49035,
121,
46763,
108,
46479,
94,
162,
223,
107,
11420,
198,
198,
8818,
651,
62,
10951,
7,
2618,
3712,
23839,
10100,
8,
198,
220,
220,
220,
22492,
5525,
236,
115,
20998,
244,
47987,
163,
254,
223,
37863,
227,
22522,
117,
198,
220,
220,
220,
2438,
62,
2301,
796,
374,
1,
2235,
2488,
44601,
2438,
28,
9688,
59,
77,
26933,
59,
82,
59,
50,
60,
9,
19415,
77,
2235,
2488,
44601,
2438,
28,
437,
1,
198,
220,
220,
220,
2438,
796,
2872,
7,
8189,
62,
2301,
11,
1767,
8,
198,
220,
220,
220,
318,
22366,
7,
8189,
8,
11405,
3714,
7203,
17312,
103,
46237,
228,
26344,
104,
26344,
108,
47987,
163,
254,
223,
37863,
227,
22522,
117,
4943,
198,
220,
220,
220,
2438,
796,
2438,
13,
27144,
942,
58,
16,
60,
198,
220,
220,
220,
22492,
5525,
236,
115,
20998,
244,
49035,
121,
46763,
108,
37863,
227,
22522,
117,
198,
220,
220,
220,
25439,
62,
2301,
16,
796,
374,
1,
61,
8818,
357,
59,
86,
10,
22857,
59,
26933,
59,
86,
29164,
5512,
2361,
9,
59,
4008,
1,
198,
220,
220,
220,
25439,
62,
2301,
17,
796,
374,
1,
61,
38016,
86,
10,
22857,
59,
26933,
59,
86,
29164,
5512,
2361,
9,
59,
4008,
58,
59,
86,
25,
2361,
9,
2625,
198,
220,
220,
220,
1257,
6359,
796,
10903,
21737,
198,
220,
220,
220,
329,
1627,
287,
6626,
7,
8189,
11,
705,
59,
77,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
357,
20786,
796,
2872,
7,
20786,
62,
2301,
16,
11,
1627,
4008,
15139,
95,
2147,
11405,
4574,
0,
7,
12543,
6359,
11,
25439,
13,
27144,
942,
58,
16,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
357,
20786,
796,
2872,
7,
20786,
62,
2301,
17,
11,
1627,
4008,
15139,
95,
2147,
11405,
4574,
0,
7,
12543,
6359,
11,
25439,
13,
27144,
942,
58,
16,
12962,
198,
220,
220,
220,
886,
198,
220,
220,
220,
22492,
5525,
236,
115,
20998,
244,
46479,
94,
162,
223,
107,
32849,
101,
26344,
228,
198,
220,
220,
220,
1772,
796,
2872,
7,
81,
1,
2,
1772,
25,
29565,
59,
86,
2361,
28988,
1600,
1767,
737,
27144,
942,
58,
16,
60,
198,
220,
220,
220,
3128,
796,
2872,
7,
81,
1,
2,
3128,
25,
29565,
59,
86,
12,
60,
28988,
1600,
1767,
737,
27144,
942,
58,
16,
60,
198,
220,
220,
220,
597,
7,
271,
28920,
11,
685,
4475,
11,
1772,
12962,
11405,
3714,
7203,
17312,
103,
162,
96,
222,
163,
112,
95,
26344,
108,
46479,
94,
162,
223,
107,
171,
120,
223,
4943,
198,
220,
220,
220,
357,
8189,
11,
3748,
0,
7,
12543,
6359,
36911,
357,
9800,
11,
3128,
8,
198,
437,
198,
21017,
10545,
96,
222,
162,
253,
98,
161,
240,
234,
49035,
228,
13783,
229,
165,
246,
35050,
106,
113,
44386,
198,
10210,
7,
14881,
13,
10459,
62,
15908,
3419,
58,
16,
25,
437,
12,
20,
12962,
198,
14421,
62,
16624,
796,
1100,
15908,
3419,
198,
0,
439,
7,
7753,
287,
1459,
62,
16624,
329,
2393,
287,
14631,
10677,
1600,
366,
31391,
8973,
8,
11405,
3714,
7203,
7391,
2393,
2984,
489,
4092,
25,
714,
407,
1064,
2723,
3108,
4600,
10677,
14,
63,
4943,
198,
198,
45573,
62,
6978,
796,
366,
46002,
14,
1676,
22143,
30487,
198,
9288,
62,
6978,
796,
366,
46002,
14,
9288,
30487,
198,
1676,
22143,
11,
5254,
796,
1100,
15908,
12195,
58,
45573,
62,
6978,
11,
1332,
62,
6978,
12962,
198,
271,
28920,
7,
1676,
22143,
8,
11405,
3714,
7203,
29785,
106,
165,
95,
246,
37239,
228,
10310,
118,
163,
102,
118,
171,
120,
234,
46237,
115,
162,
96,
222,
162,
253,
98,
171,
120,
223,
4943,
198,
1676,
22143,
14512,
5254,
11405,
3714,
7203,
29785,
106,
165,
95,
246,
37239,
228,
161,
240,
234,
38184,
233,
46237,
243,
37239,
228,
38834,
44293,
117,
165,
227,
235,
171,
120,
234,
46237,
115,
162,
96,
222,
162,
253,
98,
4943,
198,
30619,
0,
7,
1676,
22143,
26,
416,
28,
72,
4613,
21136,
7,
5317,
11,
6626,
7,
72,
11,
705,
2637,
38381,
16,
60,
4008,
198,
22510,
796,
4129,
7,
1676,
22143,
8,
198,
198,
21017,
5525,
236,
115,
20998,
244,
46479,
94,
162,
223,
107,
44386,
198,
40148,
11,
7035,
11,
9667,
11,
1257,
6359,
796,
10903,
58,
4357,
10903,
58,
4357,
10903,
58,
4357,
20650,
90,
10100,
92,
21737,
198,
1640,
2393,
287,
2761,
198,
220,
220,
220,
1303,
44872,
7203,
29826,
96,
28839,
101,
13783,
226,
49426,
228,
23877,
229,
20015,
114,
720,
7753,
4943,
198,
220,
220,
220,
2695,
796,
1100,
7,
9654,
7,
45573,
62,
6978,
1635,
2393,
11,
366,
81,
12340,
10903,
8,
198,
220,
220,
220,
357,
8189,
11,
25439,
828,
357,
9800,
11,
3128,
8,
796,
651,
62,
10951,
7,
11299,
8,
198,
220,
220,
220,
318,
28920,
7,
20786,
8,
11405,
3714,
7203,
17312,
103,
46237,
228,
26344,
104,
26344,
108,
49035,
121,
46763,
108,
171,
120,
248,
3,
7753,
4943,
198,
220,
220,
220,
4574,
0,
12195,
58,
41617,
11,
9667,
11,
12416,
4357,
685,
9800,
11,
3128,
11,
2438,
12962,
198,
220,
220,
220,
24443,
0,
7,
12543,
6359,
11,
685,
20786,
12962,
198,
437,
220,
198,
35235,
7203,
46237,
228,
26344,
104,
22522,
234,
162,
107,
243,
171,
120,
234,
31660,
17739,
109,
720,
22510,
220,
10310,
103,
23877,
229,
20015,
114,
4943,
198,
198,
21017,
10545,
96,
222,
162,
253,
98,
46479,
94,
162,
223,
107,
44386,
198,
64,
796,
1064,
11085,
7,
72,
3784,
41617,
58,
72,
60,
0,
2625,
23548,
47562,
1600,
352,
25,
22510,
8,
198,
0,
271,
22366,
7,
64,
8,
11405,
3714,
7203,
43291,
38519,
46479,
94,
162,
223,
107,
165,
242,
247,
46237,
107,
171,
120,
248,
3,
7,
7753,
58,
64,
12962,
4943,
198,
64,
796,
1064,
11085,
7,
72,
3784,
0,
13966,
1834,
259,
7,
81,
1,
1238,
1828,
12,
59,
67,
59,
67,
12,
59,
67,
59,
67,
1600,
9667,
58,
72,
46570,
352,
25,
22510,
8,
198,
0,
271,
22366,
7,
64,
8,
11405,
3714,
7203,
33768,
98,
17312,
253,
17312,
103,
46479,
106,
162,
242,
117,
171,
120,
248,
3,
7,
7753,
58,
64,
12962,
4943,
198,
35235,
7203,
33768,
98,
17312,
253,
161,
240,
234,
43291,
38519,
28938,
235,
163,
100,
108,
162,
96,
222,
162,
253,
98,
22522,
234,
162,
107,
243,
4943,
198,
198,
21017,
10545,
96,
222,
162,
253,
98,
49035,
121,
46763,
108,
46479,
94,
162,
223,
107,
44386,
198,
2,
352,
13,
10545,
96,
222,
162,
253,
98,
49035,
121,
46763,
108,
162,
112,
122,
20998,
239,
42468,
28938,
99,
34932,
235,
13783,
235,
46479,
94,
162,
223,
107,
198,
2,
362,
13,
5525,
122,
241,
49035,
118,
49035,
121,
46763,
108,
28938,
235,
198,
20786,
62,
3672,
7,
20786,
3712,
10100,
8,
796,
6330,
7,
20786,
11,
374,
18109,
30,
27,
3672,
29,
59,
86,
9,
0,
10091,
59,
7,
15885,
59,
16725,
5218,
264,
1,
59,
70,
27,
3672,
29,
4943,
198,
20786,
62,
24396,
7,
20786,
3712,
10100,
8,
796,
6330,
7,
20786,
11,
374,
18109,
30,
27,
37047,
36937,
7,
11,
2361,
59,
86,
10,
2599,
33250,
59,
86,
90,
92,
48688,
1,
5218,
264,
1,
59,
70,
27,
37047,
29,
4943,
198,
198,
22915,
796,
366,
46002,
14,
12001,
62,
12543,
2733,
13,
9132,
1,
198,
952,
796,
1280,
7,
22915,
11,
366,
86,
4943,
198,
35235,
7,
952,
11,
25113,
10263,
253,
118,
17312,
105,
46479,
94,
162,
223,
107,
59,
77,
2235,
10545,
244,
108,
162,
237,
238,
12859,
97,
21410,
49035,
121,
46763,
108,
28938,
235,
59,
77,
4943,
198,
35235,
7,
952,
11,
366,
91,
16268,
245,
106,
165,
95,
246,
163,
120,
244,
20998,
115,
930,
10263,
229,
121,
46763,
108,
28938,
235,
930,
59,
77,
91,
1058,
6329,
25,
930,
1058,
6329,
25,
930,
4943,
198,
198,
1640,
357,
72,
11,
2393,
8,
287,
27056,
378,
7,
1676,
22143,
8,
198,
220,
220,
220,
773,
796,
6626,
7,
7753,
11,
705,
2637,
38381,
16,
60,
198,
220,
220,
220,
25439,
796,
3748,
7,
20786,
62,
3672,
12195,
12543,
6359,
58,
72,
60,
4008,
198,
220,
220,
220,
329,
277,
287,
25439,
198,
220,
220,
220,
220,
220,
220,
220,
44872,
7,
952,
11,
366,
91,
720,
521,
930,
4600,
3,
69,
63,
930,
4943,
198,
220,
220,
220,
886,
198,
437,
198,
198,
35235,
7,
952,
11,
37082,
77,
2235,
10263,
229,
121,
46763,
108,
43095,
37345,
243,
59,
77,
4943,
198,
35235,
7,
952,
11,
366,
91,
16268,
245,
106,
165,
95,
246,
163,
120,
244,
20998,
115,
930,
10263,
229,
121,
46763,
108,
43095,
37345,
243,
930,
59,
77,
91,
1058,
6329,
25,
930,
1058,
6329,
25,
930,
4943,
198,
198,
1640,
357,
72,
11,
2393,
8,
287,
27056,
378,
7,
1676,
22143,
8,
198,
220,
220,
220,
773,
796,
6626,
7,
7753,
11,
705,
2637,
38381,
16,
60,
198,
220,
220,
220,
25439,
796,
3748,
7,
20786,
62,
24396,
12195,
12543,
6359,
58,
72,
60,
4008,
198,
220,
220,
220,
329,
277,
287,
25439,
198,
220,
220,
220,
220,
220,
220,
220,
44872,
7,
952,
11,
366,
91,
720,
521,
930,
4600,
3,
69,
63,
930,
4943,
198,
220,
220,
220,
886,
198,
437,
198,
198,
19836,
7,
952,
8,
198,
35235,
7203,
37863,
247,
17739,
98,
22522,
234,
162,
107,
243,
171,
120,
234,
23877,
229,
20015,
114,
46479,
251,
27764,
246,
28839,
101,
720,
22915,
220,
40792,
4943,
198,
198,
2,
22492,
5525,
236,
115,
20998,
244,
17739,
101,
161,
109,
222,
46479,
94,
162,
223,
107,
198,
2,
44872,
7203,
162,
96,
222,
162,
253,
98,
10310,
119,
20015,
241,
41753,
241,
21410,
49035,
121,
46763,
108,
46479,
94,
162,
223,
107,
4943,
198,
2,
1388,
62,
45573,
62,
6978,
796,
366,
40720,
3123,
316,
10669,
13,
20362,
14,
10677,
14,
1676,
22143,
30487,
198,
2,
1388,
62,
1676,
22143,
796,
1100,
15908,
7,
12417,
62,
45573,
62,
6978,
8,
198,
2,
318,
28920,
7,
12417,
62,
1676,
22143,
8,
11405,
3714,
7203,
17312,
103,
47797,
121,
46237,
119,
20998,
244,
26344,
108,
10310,
119,
20015,
241,
41753,
241,
23877,
229,
20015,
114,
4943,
198,
2,
12233,
265,
0,
7,
12417,
62,
1676,
22143,
11,
4129,
7,
12417,
62,
1676,
22143,
4008,
198,
2,
3297,
0,
7,
12417,
62,
1676,
22143,
26,
416,
28,
72,
4613,
21136,
7,
5317,
11,
6626,
7,
72,
11,
705,
2637,
38381,
16,
60,
4008,
198,
2,
2472,
62,
22510,
796,
4129,
7,
12417,
62,
1676,
22143,
8,
198,
198,
2,
1388,
62,
12543,
6359,
796,
20650,
90,
10100,
92,
21737,
198,
2,
10143,
796,
10903,
21737,
198,
2,
329,
2393,
287,
1388,
62,
1676,
22143,
198,
2,
220,
220,
220,
220,
1303,
44872,
7203,
29826,
96,
28839,
101,
13783,
226,
49426,
228,
23877,
229,
20015,
114,
720,
7753,
4943,
198,
2,
220,
220,
220,
220,
2695,
796,
1100,
7,
9654,
7,
12417,
62,
45573,
62,
6978,
1635,
2393,
11,
366,
81,
12340,
10903,
8,
198,
2,
220,
220,
220,
220,
44104,
11,
25439,
828,
4808,
796,
651,
62,
10951,
7,
11299,
8,
198,
2,
220,
220,
220,
220,
611,
318,
28920,
7,
20786,
8,
198,
2,
220,
220,
220,
220,
220,
220,
220,
220,
44872,
7203,
17312,
103,
46237,
228,
26344,
104,
26344,
108,
49035,
121,
46763,
108,
171,
120,
248,
3,
7753,
4943,
198,
2,
220,
220,
220,
220,
220,
220,
220,
220,
4574,
0,
7,
69,
1768,
11,
2393,
8,
198,
2,
220,
220,
220,
220,
2073,
198,
2,
220,
220,
220,
220,
220,
220,
220,
220,
24443,
0,
7,
12417,
62,
12543,
6359,
11,
685,
20786,
12962,
198,
2,
220,
220,
220,
220,
886,
198,
2,
886,
220,
198,
2,
44872,
7203,
46237,
228,
26344,
104,
22522,
234,
162,
107,
243,
171,
120,
234,
3,
7,
23350,
62,
22510,
532,
4129,
7,
69,
1768,
4008,
220,
10310,
103,
23877,
229,
20015,
114,
22755,
238,
27950,
253,
46237,
228,
26344,
104,
171,
120,
234,
3,
7,
13664,
7,
69,
1768,
4008,
220,
10310,
103,
23877,
229,
20015,
114,
46237,
228,
26344,
104,
13783,
109,
164,
112,
98,
4943,
198,
198,
2,
329,
1312,
287,
10143,
198,
2,
220,
220,
220,
220,
3601,
7,
19282,
448,
11,
1312,
8,
198,
2,
886,
198,
2,
329,
357,
72,
11,
2393,
8,
287,
27056,
378,
7,
12417,
62,
1676,
22143,
8,
198,
2,
220,
220,
220,
220,
2393,
287,
10143,
11405,
12233,
265,
0,
7,
12417,
62,
1676,
22143,
11,
1312,
8,
198,
2,
886,
198
] | 1.765552 | 2,154 |
function construct_device!(ps_m::CanonicalModel,
device_model::DeviceModel,
system_formulation::Type{S},
system::PSY.System,
time_range::UnitRange{Int64};
kwargs...) where {S <: PM.AbstractPowerFormulation}
construct_device!(ps_m,
device_model.device,
device_model.formulation,
system_formulation,
system,
time_range;
kwargs...)
return
end
function InitialCondition(ps_m::CanonicalModel,
device::PSY.Device,
value::Float64)
return InitialCondition(device,
PJ.add_parameter(ps_m.JuMPmodel, value))
end | [
8818,
5678,
62,
25202,
0,
7,
862,
62,
76,
3712,
6090,
261,
605,
17633,
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,
3335,
62,
19849,
3712,
24728,
17633,
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,
1080,
62,
687,
1741,
3712,
6030,
90,
50,
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,
1080,
3712,
3705,
56,
13,
11964,
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,
640,
62,
9521,
3712,
26453,
17257,
90,
5317,
2414,
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,
479,
86,
22046,
23029,
810,
1391,
50,
1279,
25,
3122,
13,
23839,
13434,
8479,
1741,
92,
628,
220,
220,
220,
5678,
62,
25202,
0,
7,
862,
62,
76,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3335,
62,
19849,
13,
25202,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3335,
62,
19849,
13,
687,
1741,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1080,
62,
687,
1741,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1080,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
640,
62,
9521,
26,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
479,
86,
22046,
23029,
628,
220,
220,
220,
1441,
198,
198,
437,
198,
198,
8818,
20768,
48362,
7,
862,
62,
76,
3712,
6090,
261,
605,
17633,
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,
3335,
3712,
3705,
56,
13,
24728,
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,
1988,
3712,
43879,
2414,
8,
628,
220,
220,
220,
1441,
20768,
48362,
7,
25202,
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,
44941,
13,
2860,
62,
17143,
2357,
7,
862,
62,
76,
13,
33018,
7378,
19849,
11,
1988,
4008,
198,
198,
437
] | 1.662857 | 525 |
#src Generate README.md by running `using Literate; Literate.markdown("docs/src/README.jl", "."; documenter=false, credit=false, execute=true)`
# <img align="right" width="180px" src="https://avatars.githubusercontent.com/u/58918144?s=200&v=4">
# <!-- DO NOT EDIT README.md directly, instead edit docs/README.jl and generate the markdown-->
# # Probabilistic<wbr>Circuits<wbr>.jl
# [](https://github.com/Juice-jl/ProbabilisticCircuits.jl/actions?query=workflow%3A%22Unit+Tests%22+branch%3Amaster) [](https://codecov.io/gh/Juice-jl/ProbabilisticCircuits.jl) [](https://juice-jl.github.io/ProbabilisticCircuits.jl/stable) [](https://juice-jl.github.io/ProbabilisticCircuits.jl/dev)
# This package provides functionalities for learning/constructing probabilistic circuits and using them to compute various probabilistic queries. It is part of the [Juice package](https://github.com/Juice-jl) (Julia Circuit Empanada).
# ## Example usage
include("usage.jl")
# ## Testing
# To make sure everything is working correctly, you can run our test suite as follows. The first time you run the tests will trigger a few slow downloads of various test resources.
# ```bash
# julia --color=yes -e 'using Pkg; Pkg.test("ProbabilisticCircuits")'
# ```
| [
2,
10677,
2980,
378,
20832,
11682,
13,
9132,
416,
2491,
4600,
3500,
17667,
378,
26,
17667,
378,
13,
4102,
2902,
7203,
31628,
14,
10677,
14,
15675,
11682,
13,
20362,
1600,
366,
526,
26,
3188,
263,
28,
9562,
11,
3884,
28,
9562,
11,
12260,
28,
7942,
8,
63,
220,
198,
198,
2,
1279,
9600,
10548,
2625,
3506,
1,
9647,
2625,
15259,
8416,
1,
12351,
2625,
5450,
1378,
615,
40193,
13,
12567,
43667,
13,
785,
14,
84,
14,
44169,
1507,
18444,
30,
82,
28,
2167,
5,
85,
28,
19,
5320,
198,
198,
2,
37922,
8410,
5626,
48483,
20832,
11682,
13,
9132,
3264,
11,
2427,
4370,
34165,
14,
15675,
11682,
13,
20362,
290,
7716,
262,
1317,
2902,
46904,
198,
198,
2,
1303,
30873,
14991,
2569,
27,
86,
1671,
29,
31560,
15379,
27,
86,
1671,
28401,
20362,
198,
198,
2,
685,
0,
58,
26453,
30307,
16151,
5450,
1378,
12567,
13,
785,
14,
33018,
501,
12,
20362,
14,
2964,
65,
14991,
2569,
31560,
15379,
13,
20362,
14,
1818,
44041,
14,
26453,
4,
1238,
51,
3558,
14,
14774,
469,
13,
21370,
70,
15437,
7,
5450,
1378,
12567,
13,
785,
14,
33018,
501,
12,
20362,
14,
2964,
65,
14991,
2569,
31560,
15379,
13,
20362,
14,
4658,
30,
22766,
28,
1818,
11125,
4,
18,
32,
4,
1828,
26453,
10,
51,
3558,
4,
1828,
10,
1671,
3702,
4,
18,
5840,
1603,
8,
220,
685,
0,
58,
19815,
721,
709,
16151,
5450,
1378,
19815,
721,
709,
13,
952,
14,
456,
14,
33018,
501,
12,
20362,
14,
2964,
65,
14991,
2569,
31560,
15379,
13,
20362,
14,
1671,
3702,
14,
9866,
14,
34960,
14,
14774,
469,
13,
21370,
70,
15437,
7,
5450,
1378,
19815,
721,
709,
13,
952,
14,
456,
14,
33018,
501,
12,
20362,
14,
2964,
65,
14991,
2569,
31560,
15379,
13,
20362,
8,
685,
0,
58,
16151,
5450,
1378,
9600,
13,
26662,
82,
13,
952,
14,
14774,
469,
14,
31628,
12,
31284,
12,
14809,
13,
21370,
70,
15437,
7,
5450,
1378,
14396,
501,
12,
20362,
13,
12567,
13,
952,
14,
2964,
65,
14991,
2569,
31560,
15379,
13,
20362,
14,
31284,
8,
685,
0,
58,
16151,
5450,
1378,
9600,
13,
26662,
82,
13,
952,
14,
14774,
469,
14,
31628,
12,
7959,
12,
17585,
13,
21370,
70,
15437,
7,
5450,
1378,
14396,
501,
12,
20362,
13,
12567,
13,
952,
14,
2964,
65,
14991,
2569,
31560,
15379,
13,
20362,
14,
7959,
8,
198,
198,
2,
770,
5301,
3769,
10345,
871,
329,
4673,
14,
41571,
278,
1861,
14991,
2569,
24907,
290,
1262,
606,
284,
24061,
2972,
1861,
14991,
2569,
20743,
13,
632,
318,
636,
286,
262,
685,
33018,
501,
5301,
16151,
5450,
1378,
12567,
13,
785,
14,
33018,
501,
12,
20362,
8,
357,
16980,
544,
13588,
2295,
6839,
4763,
737,
198,
198,
2,
22492,
17934,
8748,
198,
198,
17256,
7203,
26060,
13,
20362,
4943,
198,
198,
2,
22492,
23983,
198,
198,
2,
1675,
787,
1654,
2279,
318,
1762,
9380,
11,
345,
460,
1057,
674,
1332,
18389,
355,
5679,
13,
383,
717,
640,
345,
1057,
262,
5254,
481,
7616,
257,
1178,
3105,
21333,
286,
2972,
1332,
4133,
13,
198,
198,
2,
7559,
63,
41757,
198,
2,
474,
43640,
1377,
8043,
28,
8505,
532,
68,
705,
3500,
350,
10025,
26,
350,
10025,
13,
9288,
7203,
2964,
65,
14991,
2569,
31560,
15379,
4943,
6,
198,
2,
7559,
63,
198
] | 2.857934 | 542 |
### A Pluto.jl notebook ###
# v0.17.1
using Markdown
using InteractiveUtils
# ╔═╡ 7bd669c8-443f-11ec-045d-bd3b1c74db9b
begin
import Pkg
# activate the shared project environment
Pkg.activate(Base.current_project())
using Omega, Distributions, UnicodePlots
end
# ╔═╡ a5d02f2a-3310-4f7c-a20f-af43332e2306
md"# Bell's Inequality"
# ╔═╡ 88dda8ef-d7c5-44d4-8e6b-13e20dcd2f03
md"### Quantum Model
First let's set up a quantum model"
# ╔═╡ 112d8745-d12e-4e0e-8af5-d069014db356
md"### Hidden Variable Model
In the hidden variable model, both particles contain hidden state that determines their spin when measures."
# ╔═╡ 03441d7c-3421-42eb-bdc4-474d2ab1c70d
# ╔═╡ Cell order:
# ╠═7bd669c8-443f-11ec-045d-bd3b1c74db9b
# ╠═a5d02f2a-3310-4f7c-a20f-af43332e2306
# ╠═88dda8ef-d7c5-44d4-8e6b-13e20dcd2f03
# ╠═112d8745-d12e-4e0e-8af5-d069014db356
# ╠═03441d7c-3421-42eb-bdc4-474d2ab1c70d
| [
21017,
317,
32217,
13,
20362,
20922,
44386,
198,
2,
410,
15,
13,
1558,
13,
16,
198,
198,
3500,
2940,
2902,
198,
3500,
21365,
18274,
4487,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
767,
17457,
36657,
66,
23,
12,
34938,
69,
12,
1157,
721,
12,
40350,
67,
12,
17457,
18,
65,
16,
66,
4524,
9945,
24,
65,
198,
27471,
198,
220,
220,
220,
1330,
350,
10025,
198,
220,
220,
220,
1303,
15155,
262,
4888,
1628,
2858,
198,
220,
220,
220,
350,
10025,
13,
39022,
7,
14881,
13,
14421,
62,
16302,
28955,
198,
220,
220,
220,
1262,
19839,
11,
46567,
507,
11,
34371,
3646,
1747,
198,
437,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
257,
20,
67,
2999,
69,
17,
64,
12,
2091,
940,
12,
19,
69,
22,
66,
12,
64,
1238,
69,
12,
1878,
42117,
2624,
68,
19214,
21,
198,
9132,
1,
2,
7459,
338,
554,
48203,
1,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
9193,
1860,
64,
23,
891,
12,
67,
22,
66,
20,
12,
2598,
67,
19,
12,
23,
68,
21,
65,
12,
1485,
68,
1238,
67,
10210,
17,
69,
3070,
198,
9132,
1,
21017,
29082,
9104,
198,
5962,
1309,
338,
900,
510,
257,
14821,
2746,
1,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
13539,
67,
5774,
2231,
12,
67,
1065,
68,
12,
19,
68,
15,
68,
12,
23,
1878,
20,
12,
67,
3312,
24,
28645,
9945,
32066,
198,
9132,
1,
21017,
20458,
35748,
9104,
198,
818,
262,
7104,
7885,
2746,
11,
1111,
13166,
3994,
7104,
1181,
326,
15947,
511,
7906,
618,
5260,
526,
198,
198,
2,
2343,
243,
242,
28670,
22880,
94,
7643,
39710,
67,
22,
66,
12,
2682,
2481,
12,
3682,
1765,
12,
17457,
66,
19,
12,
38652,
67,
17,
397,
16,
66,
2154,
67,
628,
198,
2,
2343,
243,
242,
28670,
22880,
94,
12440,
1502,
25,
198,
2,
2343,
243,
254,
28670,
22,
17457,
36657,
66,
23,
12,
34938,
69,
12,
1157,
721,
12,
40350,
67,
12,
17457,
18,
65,
16,
66,
4524,
9945,
24,
65,
198,
2,
2343,
243,
254,
28670,
64,
20,
67,
2999,
69,
17,
64,
12,
2091,
940,
12,
19,
69,
22,
66,
12,
64,
1238,
69,
12,
1878,
42117,
2624,
68,
19214,
21,
198,
2,
2343,
243,
254,
28670,
3459,
1860,
64,
23,
891,
12,
67,
22,
66,
20,
12,
2598,
67,
19,
12,
23,
68,
21,
65,
12,
1485,
68,
1238,
67,
10210,
17,
69,
3070,
198,
2,
2343,
243,
254,
28670,
14686,
67,
5774,
2231,
12,
67,
1065,
68,
12,
19,
68,
15,
68,
12,
23,
1878,
20,
12,
67,
3312,
24,
28645,
9945,
32066,
198,
2,
2343,
243,
254,
28670,
3070,
39710,
67,
22,
66,
12,
2682,
2481,
12,
3682,
1765,
12,
17457,
66,
19,
12,
38652,
67,
17,
397,
16,
66,
2154,
67,
198
] | 1.931183 | 465 |
# NOTE: Luxor is using JuliaGraphics/Luxor.jl/pull/48
using Luxor, BitBasis
"""
btable(n, center=O; len=ndigits(n), width=20, title=false)
Draw a table of binary digits with `n` which can be [`BitStr`](@ref) or an `Integer`.
"""
function btable(n::Integer, center=O; len=ndigits(n; base=2), width=20, title=false)
sethue("black")
if title
t = Table(2, len, width, width, center)
else
t = Table(1, len, width, width, center)
end
bstr = string(n, base=2, pad=len)
fontsize(width ÷ 2)
# start plotting
col = 1
if title
for k in 1:size(t, 2)
text(string(len-k+1), t[1, k], halign=:center, valign=:middle)
end
col += 1
end
for j in 1:size(t, 2)
box(t[col, j], width, width, :stroke)
text(string(bstr[j]), t[col, j], halign=:center, valign=:middle)
end
return t
end
function btable(f::Function, n::Integer, center=O;
len=ndigits(n; base=2), width=20, title=false)
gsave()
# before
before = btable(n, O - (0, 50); width=50, title=true)
sethue("blue")
arrow(Point(0, 10), Point(0, 50); linewidth=2)
# after
after = btable(f(n), O+(0, 80); width=50, title=false)
grestore()
return (before, after)
end
function btable(f::Function, n::BitStr, center=O; width=50, title=false)
gsave()
# before
before = btable(n, O - (0, 50); width=50, title=true)
sethue("blue")
arrow(Point(0, 10), Point(0, 50); linewidth=2)
# after
after = btable(f(n), O+(0, 80); width=50, title=false)
grestore()
return (before, after)
end
btable(n::BitStr, center=O; width=50, title=false) =
btable(n.val, center; len=length(n), width=width, title=title)
# TODO: push this to upstream: Luxor
function swaparrow(left::Point, right::Point, action=:fill;
linewidth=1.0, headlength=10, headangle=pi/8, target_angle=pi/3,
fraction=1/5, debug=false)
gsave()
v = right - left
delta = fraction * v.x
C1 = Point(left.x + delta, left.y - delta * tan(target_angle))
C2 = Point(right.x - delta, right.y - delta * tan(target_angle))
arrow(left, C1, C2, right, action;
linewidth=linewidth, rightarrow=true, leftarrow=true)
if debug
line(left, C1, :stroke)
line(right, C2, :stroke)
end
grestore()
end
@png begin
t, _ = btable(breflect, bit"1011"; width=50, title=true)
lineheight = 20
sethue("red")
swaparrow(t[1, 1] - (0, lineheight), t[1, 4] - (0, lineheight), :stroke; linewidth=2, fraction=0.25, target_angle=deg2rad(60))
swaparrow(t[1, 2] - (0, lineheight), t[1, 3] - (0, lineheight), :stroke; linewidth=2, target_angle=deg2rad(80))
end 400 400 "docs/src/assets/breflect"
| [
2,
24550,
25,
17145,
273,
318,
1262,
22300,
18172,
14,
43,
2821,
273,
13,
20362,
14,
31216,
14,
2780,
198,
3500,
17145,
273,
11,
4722,
15522,
271,
198,
198,
37811,
198,
220,
220,
275,
11487,
7,
77,
11,
3641,
28,
46,
26,
18896,
28,
358,
328,
896,
7,
77,
828,
9647,
28,
1238,
11,
3670,
28,
9562,
8,
198,
198,
25302,
257,
3084,
286,
13934,
19561,
351,
4600,
77,
63,
543,
460,
307,
685,
63,
13128,
13290,
63,
16151,
31,
5420,
8,
393,
281,
4600,
46541,
44646,
198,
37811,
198,
8818,
275,
11487,
7,
77,
3712,
46541,
11,
3641,
28,
46,
26,
18896,
28,
358,
328,
896,
7,
77,
26,
2779,
28,
17,
828,
9647,
28,
1238,
11,
3670,
28,
9562,
8,
198,
220,
220,
900,
71,
518,
7203,
13424,
4943,
198,
220,
220,
611,
3670,
198,
220,
220,
220,
220,
220,
256,
796,
8655,
7,
17,
11,
18896,
11,
9647,
11,
9647,
11,
3641,
8,
198,
220,
220,
2073,
198,
220,
220,
220,
220,
220,
256,
796,
8655,
7,
16,
11,
18896,
11,
9647,
11,
9647,
11,
3641,
8,
198,
220,
220,
886,
628,
220,
220,
275,
2536,
796,
4731,
7,
77,
11,
2779,
28,
17,
11,
14841,
28,
11925,
8,
198,
220,
220,
10369,
7857,
7,
10394,
6184,
115,
362,
8,
628,
220,
220,
1303,
923,
29353,
198,
220,
220,
951,
796,
352,
198,
220,
220,
611,
3670,
198,
220,
220,
220,
220,
220,
329,
479,
287,
352,
25,
7857,
7,
83,
11,
362,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
2420,
7,
8841,
7,
11925,
12,
74,
10,
16,
828,
256,
58,
16,
11,
479,
4357,
10284,
570,
28,
25,
16159,
11,
1188,
570,
28,
25,
27171,
8,
198,
220,
220,
220,
220,
220,
886,
198,
220,
220,
220,
220,
220,
951,
15853,
352,
198,
220,
220,
886,
628,
220,
220,
329,
474,
287,
352,
25,
7857,
7,
83,
11,
362,
8,
198,
220,
220,
220,
220,
220,
3091,
7,
83,
58,
4033,
11,
474,
4357,
9647,
11,
9647,
11,
1058,
30757,
8,
198,
220,
220,
220,
220,
220,
2420,
7,
8841,
7,
65,
2536,
58,
73,
46570,
256,
58,
4033,
11,
474,
4357,
10284,
570,
28,
25,
16159,
11,
1188,
570,
28,
25,
27171,
8,
198,
220,
220,
886,
628,
220,
220,
1441,
256,
198,
437,
198,
198,
8818,
275,
11487,
7,
69,
3712,
22203,
11,
299,
3712,
46541,
11,
3641,
28,
46,
26,
198,
220,
220,
18896,
28,
358,
328,
896,
7,
77,
26,
2779,
28,
17,
828,
9647,
28,
1238,
11,
3670,
28,
9562,
8,
198,
220,
220,
308,
21928,
3419,
198,
220,
220,
1303,
878,
198,
220,
220,
878,
796,
275,
11487,
7,
77,
11,
440,
532,
357,
15,
11,
2026,
1776,
9647,
28,
1120,
11,
3670,
28,
7942,
8,
198,
220,
220,
900,
71,
518,
7203,
17585,
4943,
198,
220,
220,
15452,
7,
12727,
7,
15,
11,
838,
828,
6252,
7,
15,
11,
2026,
1776,
9493,
413,
5649,
28,
17,
8,
198,
220,
220,
1303,
706,
198,
220,
220,
706,
796,
275,
11487,
7,
69,
7,
77,
828,
440,
33747,
15,
11,
4019,
1776,
9647,
28,
1120,
11,
3670,
28,
9562,
8,
198,
220,
220,
308,
2118,
382,
3419,
198,
220,
220,
1441,
357,
19052,
11,
706,
8,
198,
437,
198,
198,
8818,
275,
11487,
7,
69,
3712,
22203,
11,
299,
3712,
13128,
13290,
11,
3641,
28,
46,
26,
9647,
28,
1120,
11,
3670,
28,
9562,
8,
198,
220,
220,
308,
21928,
3419,
198,
220,
220,
1303,
878,
198,
220,
220,
878,
796,
275,
11487,
7,
77,
11,
440,
532,
357,
15,
11,
2026,
1776,
9647,
28,
1120,
11,
3670,
28,
7942,
8,
198,
220,
220,
900,
71,
518,
7203,
17585,
4943,
198,
220,
220,
15452,
7,
12727,
7,
15,
11,
838,
828,
6252,
7,
15,
11,
2026,
1776,
9493,
413,
5649,
28,
17,
8,
198,
220,
220,
1303,
706,
198,
220,
220,
706,
796,
275,
11487,
7,
69,
7,
77,
828,
440,
33747,
15,
11,
4019,
1776,
9647,
28,
1120,
11,
3670,
28,
9562,
8,
198,
220,
220,
308,
2118,
382,
3419,
198,
220,
220,
1441,
357,
19052,
11,
706,
8,
198,
437,
198,
198,
65,
11487,
7,
77,
3712,
13128,
13290,
11,
3641,
28,
46,
26,
9647,
28,
1120,
11,
3670,
28,
9562,
8,
796,
198,
220,
220,
275,
11487,
7,
77,
13,
2100,
11,
3641,
26,
18896,
28,
13664,
7,
77,
828,
9647,
28,
10394,
11,
3670,
28,
7839,
8,
198,
198,
2,
16926,
46,
25,
4574,
428,
284,
28717,
25,
17145,
273,
198,
8818,
16075,
6018,
7,
9464,
3712,
12727,
11,
826,
3712,
12727,
11,
2223,
28,
25,
20797,
26,
198,
220,
220,
220,
9493,
413,
5649,
28,
16,
13,
15,
11,
1182,
13664,
28,
940,
11,
1182,
9248,
28,
14415,
14,
23,
11,
2496,
62,
9248,
28,
14415,
14,
18,
11,
198,
220,
220,
220,
13390,
28,
16,
14,
20,
11,
14257,
28,
9562,
8,
198,
220,
220,
220,
308,
21928,
3419,
198,
220,
220,
220,
410,
796,
826,
532,
1364,
198,
220,
220,
220,
25979,
796,
13390,
1635,
410,
13,
87,
198,
220,
220,
220,
327,
16,
796,
6252,
7,
9464,
13,
87,
1343,
25979,
11,
1364,
13,
88,
532,
25979,
1635,
25706,
7,
16793,
62,
9248,
4008,
198,
220,
220,
220,
327,
17,
796,
6252,
7,
3506,
13,
87,
532,
25979,
11,
826,
13,
88,
532,
25979,
1635,
25706,
7,
16793,
62,
9248,
4008,
198,
220,
220,
220,
15452,
7,
9464,
11,
327,
16,
11,
327,
17,
11,
826,
11,
2223,
26,
198,
220,
220,
220,
220,
220,
220,
220,
9493,
413,
5649,
28,
2815,
413,
5649,
11,
826,
6018,
28,
7942,
11,
1364,
6018,
28,
7942,
8,
198,
220,
220,
220,
611,
14257,
198,
220,
220,
220,
220,
220,
220,
220,
1627,
7,
9464,
11,
327,
16,
11,
1058,
30757,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1627,
7,
3506,
11,
327,
17,
11,
1058,
30757,
8,
198,
220,
220,
220,
886,
198,
220,
220,
220,
308,
2118,
382,
3419,
198,
437,
198,
198,
31,
11134,
2221,
198,
220,
220,
256,
11,
4808,
796,
275,
11487,
7,
4679,
69,
801,
11,
1643,
1,
8784,
16,
8172,
9647,
28,
1120,
11,
3670,
28,
7942,
8,
198,
220,
220,
1627,
17015,
796,
1160,
198,
220,
220,
900,
71,
518,
7203,
445,
4943,
198,
220,
220,
16075,
6018,
7,
83,
58,
16,
11,
352,
60,
532,
357,
15,
11,
1627,
17015,
828,
256,
58,
16,
11,
604,
60,
532,
357,
15,
11,
1627,
17015,
828,
1058,
30757,
26,
9493,
413,
5649,
28,
17,
11,
13390,
28,
15,
13,
1495,
11,
2496,
62,
9248,
28,
13500,
17,
6335,
7,
1899,
4008,
198,
220,
220,
16075,
6018,
7,
83,
58,
16,
11,
362,
60,
532,
357,
15,
11,
1627,
17015,
828,
256,
58,
16,
11,
513,
60,
532,
357,
15,
11,
1627,
17015,
828,
1058,
30757,
26,
9493,
413,
5649,
28,
17,
11,
2496,
62,
9248,
28,
13500,
17,
6335,
7,
1795,
4008,
198,
437,
7337,
7337,
366,
31628,
14,
10677,
14,
19668,
14,
4679,
69,
801,
1,
198
] | 2.290987 | 1,165 |
typealias MPIDatatype Union{Char,
Int8, UInt8, Int16, UInt16, Int32, UInt32, Int64,
UInt64,
Float32, Float64, Complex64, Complex128}
typealias MPIBuffertype{T} Union{Ptr{T}, Array{T}, Ref{T}}
if VERSION >= v"0.5.0-"
# TODO: Use Compat for this
fieldoffsets{T}(::Type{T}) = Int[fieldoffset(T, i) for i in 1:nfields(T)]
end
# Define a function mpitype(T) that returns the MPI datatype code for
# a given type T. In the case the the type does not exist, it is created and
# then returned. The dictonary is defined in __init__ so the module can be
# precompiled
# accessor and creation function for getting MPI datatypes
function mpitype{T}(::Type{T})
if haskey(mpitype_dict, T) # if the datatype already exists
return mpitype_dict[T]
end
if !isbits(T)
throw(ArgumentError("Type must be isbits()"))
end
# get the data from the type
fieldtypes = T.types
offsets = fieldoffsets(T)
nfields = Cint(length(fieldtypes))
# put data in MPI format
blocklengths = ones(Cint, nfields)
displacements = zeros(Cptrdiff_t, nfields) # size_t == MPI_Aint ?
types = zeros(Cint, nfields)
for i=1:nfields
displacements[i] = offsets[i]
# create an MPI_Datatype for the current field if it does not exist yet
types[i] = mpitype(fieldtypes[i])
end
# create the datatype
newtype_ref = Ref{Cint}()
flag = Ref{Cint}()
ccall(MPI_TYPE_CREATE_STRUCT, Void, (Ptr{Cint}, Ptr{Cint}, Ptr{Cptrdiff_t},
Ptr{Cint}, Ptr{Cint}, Ptr{Cint}), &nfields, blocklengths,
displacements, types, newtype_ref, flag)
if flag[] != 0
throw(ErrorException("MPI_Type_create_struct returned non-zero exit status"))
end
# commit the datatatype
flag2 = Ref{Cint}()
ccall(MPI_TYPE_COMMIT, Void, (Ptr{Cint}, Ptr{Cint}), newtype_ref, flag2)
if flag2[] != 0
throw(ErrorException("MPI_Type_commit returned non-zero exit status"))
end
# add it to the dictonary of known types
mpitype_dict[T] = newtype_ref[]
mpitype_dict_inverse[newtype_ref[]] = T
return mpitype_dict[T]
end
type Comm
val::Cint
Comm(val::Integer) = new(val)
end
const COMM_NULL = Comm(MPI_COMM_NULL)
const COMM_SELF = Comm(MPI_COMM_SELF)
const COMM_WORLD = Comm(MPI_COMM_WORLD)
type Op
val::Cint
end
const OP_NULL = Op(MPI_OP_NULL)
const BAND = Op(MPI_BAND)
const BOR = Op(MPI_BOR)
const BXOR = Op(MPI_BXOR)
const LAND = Op(MPI_LAND)
const LOR = Op(MPI_LOR)
const LXOR = Op(MPI_LXOR)
const MAX = Op(MPI_MAX)
const MIN = Op(MPI_MIN)
const PROD = Op(MPI_PROD)
const SUM = Op(MPI_SUM)
type Request
val::Cint
buffer
end
const REQUEST_NULL = Request(MPI_REQUEST_NULL, nothing)
type Status
val::Array{Cint,1}
Status() = new(Array(Cint, MPI_STATUS_SIZE))
end
Get_error(stat::Status) = Int(stat.val[MPI_ERROR])
Get_source(stat::Status) = Int(stat.val[MPI_SOURCE])
Get_tag(stat::Status) = Int(stat.val[MPI_TAG])
const ANY_SOURCE = Int(MPI_ANY_SOURCE)
const ANY_TAG = Int(MPI_ANY_TAG)
const TAG_UB = Int(MPI_TAG_UB)
const UNDEFINED = Int(MPI_UNDEFINED)
function serialize(x)
s = IOBuffer()
Base.serialize(s, x)
Base.takebuf_array(s)
end
function deserialize(x)
s = IOBuffer(x)
Base.deserialize(s)
end
# Administrative functions
function Init()
ccall(MPI_INIT, Void, (Ptr{Cint},), &0)
end
function Finalize()
ccall(MPI_FINALIZE, Void, (Ptr{Cint},), &0)
end
function Abort(comm::Comm, errcode::Integer)
ccall(MPI_ABORT, Void, (Ptr{Cint}, Ptr{Cint}, Ptr{Cint}),
&comm.val, &errcode, &0)
end
function Initialized()
flag = Ref{Cint}()
ccall(MPI_INITIALIZED, Void, (Ptr{Cint}, Ptr{Cint}), flag, &0)
flag[] != 0
end
function Finalized()
flag = Ref{Cint}()
ccall(MPI_FINALIZED, Void, (Ptr{Cint}, Ptr{Cint}), flag, &0)
flag[] != 0
end
function Comm_dup(comm::Comm)
newcomm = Ref{Cint}()
ccall(MPI_COMM_DUP, Void, (Ptr{Cint}, Ptr{Cint}, Ptr{Cint}),
&comm.val, newcomm, &0)
MPI.Comm(newcomm[])
end
function Comm_free(comm::Comm)
ccall(MPI_COMM_FREE, Void, (Ptr{Cint}, Ptr{Cint}), &comm.val, &0)
end
function Comm_rank(comm::Comm)
rank = Ref{Cint}()
ccall(MPI_COMM_RANK, Void, (Ptr{Cint}, Ptr{Cint}, Ptr{Cint}),
&comm.val, rank, &0)
Int(rank[])
end
function Comm_size(comm::Comm)
size = Ref{Cint}()
ccall(MPI_COMM_SIZE, Void, (Ptr{Cint}, Ptr{Cint}, Ptr{Cint}),
&comm.val, size, &0)
Int(size[])
end
function type_create(T::DataType)
if !isbits(T)
throw(ArgumentError("Type must be isbits()"))
end
if haskey(mpitype_dict, T) # if the datatype already exists
return nothing
end
# get the data from the type
fieldtypes = T.types
nfields = Cint(length(fieldtypes))
if VERSION < v"0.5.0-dev+2285"
offsets = fieldoffsets(T)
else
offsets = map(idx->fieldoffset(T, idx), 1:nfields)
end
# put data in MPI format
blocklengths = ones(Cint, nfields)
displacements = zeros(Cptrdiff_t, nfields) # size_t == MPI_Aint ?
types = zeros(Cint, nfields)
for i=1:nfields
displacements[i] = offsets[i]
# create an MPI_Datatype for the current field if it does not exist yet
if !haskey(mpitype_dict, fieldtypes[i])
type_create(fieldtypes[i])
end
types[i] = mpitype(fieldtypes[i])
end
# create the datatype
newtype_ref = Ref{Cint}()
flag = Ref{Cint}()
ccall(MPI_TYPE_CREATE_STRUCT, Void, (Ptr{Cint}, Ptr{Cint}, Ptr{Cptrdiff_t},
Ptr{Cint}, Ptr{Cint}, Ptr{Cint}), &nfields, blocklengths, displacements,
types, newtype_ref, flag)
if flag[] != 0
throw(ErrorException("MPI_Type_create_struct returned non-zero exit status"))
end
# commit the datatatype
flag2 = Ref{Cint}()
ccall(MPI_TYPE_COMMIT, Void, (Ptr{Cint}, Ptr{Cint}), newtype_ref, flag2)
if flag2[] != 0
throw(ErrorException("MPI_Type_commit returned non-zero exit status"))
end
# add it to the dictonary of known types
mpitype_dict[T] = newtype_ref[]
return nothing
end
# Point-to-point communication
function Probe(src::Integer, tag::Integer, comm::Comm)
stat = Status()
ccall(MPI_PROBE, Void,
(Ptr{Cint}, Ptr{Cint}, Ptr{Cint}, Ptr{Cint}, Ptr{Cint}),
&src, &tag, &comm.val, stat.val, &0)
stat
end
function Iprobe(src::Integer, tag::Integer, comm::Comm)
flag = Ref{Cint}()
stat = Status()
ccall(MPI_IPROBE, Void,
(Ptr{Cint}, Ptr{Cint}, Ptr{Cint}, Ptr{Cint}, Ptr{Cint}, Ptr{Cint}),
&src, &tag, &comm.val, flag, stat.val, &0)
if flag[] == 0
return false, nothing
end
true, stat
end
function Get_count{T}(stat::Status, ::Type{T})
count = Ref{Cint}()
ccall(MPI_GET_COUNT, Void, (Ptr{Cint}, Ptr{Cint}, Ptr{Cint}, Ptr{Cint}),
stat.val, &mpitype(T), count, &0)
Int(count[])
end
function Send{T}(buf::MPIBuffertype{T}, count::Integer,
dest::Integer, tag::Integer, comm::Comm)
ccall(MPI_SEND, Void,
(Ptr{T}, Ptr{Cint}, Ptr{Cint}, Ptr{Cint}, Ptr{Cint}, Ptr{Cint},
Ptr{Cint}),
buf, &count, &mpitype(T), &dest, &tag, &comm.val, &0)
end
function Send{T}(buf::Array{T}, dest::Integer, tag::Integer,
comm::Comm)
Send(buf, length(buf), dest, tag, comm)
end
function Send{T}(obj::T, dest::Integer, tag::Integer, comm::Comm)
buf = [obj]
Send(buf, dest, tag, comm)
end
function send(obj, dest::Integer, tag::Integer, comm::Comm)
buf = MPI.serialize(obj)
Send(buf, dest, tag, comm)
end
function Isend{T}(buf::MPIBuffertype{T}, count::Integer,
dest::Integer, tag::Integer, comm::Comm)
rval = Ref{Cint}()
ccall(MPI_ISEND, Void,
(Ptr{T}, Ptr{Cint}, Ptr{Cint}, Ptr{Cint}, Ptr{Cint}, Ptr{Cint},
Ptr{Cint}, Ptr{Cint}),
buf, &count, &mpitype(T), &dest, &tag, &comm.val, rval, &0)
Request(rval[], buf)
end
function Isend{T}(buf::Array{T}, dest::Integer, tag::Integer,
comm::Comm)
Isend(buf, length(buf), dest, tag, comm)
end
function Isend{T}(obj::T, dest::Integer, tag::Integer, comm::Comm)
buf = [obj]
Isend(buf, dest, tag, comm)
end
function isend(obj, dest::Integer, tag::Integer, comm::Comm)
buf = MPI.serialize(obj)
Isend(buf, dest, tag, comm)
end
function Recv!{T}(buf::MPIBuffertype{T}, count::Integer,
src::Integer, tag::Integer, comm::Comm)
stat = Status()
ccall(MPI_RECV, Void,
(Ptr{T}, Ptr{Cint}, Ptr{Cint}, Ptr{Cint}, Ptr{Cint}, Ptr{Cint},
Ptr{Cint}, Ptr{Cint}),
buf, &count, &mpitype(T), &src, &tag, &comm.val, stat.val, &0)
stat
end
function Recv!{T}(buf::Array{T}, src::Integer, tag::Integer,
comm::Comm)
Recv!(buf, length(buf), src, tag, comm)
end
function Recv{T}(::Type{T}, src::Integer, tag::Integer, comm::Comm)
buf = Ref{T}()
stat = Recv!(buf, 1, src, tag, comm)
(buf[], stat)
end
function recv(src::Integer, tag::Integer, comm::Comm)
stat = Probe(src, tag, comm)
count = Get_count(stat, UInt8)
buf = Array(UInt8, count)
stat = Recv!(buf, Get_source(stat), Get_tag(stat), comm)
(MPI.deserialize(buf), stat)
end
function Irecv!{T}(buf::MPIBuffertype{T}, count::Integer,
src::Integer, tag::Integer, comm::Comm)
val = Ref{Cint}()
ccall(MPI_IRECV, Void,
(Ptr{T}, Ptr{Cint}, Ptr{Cint}, Ptr{Cint}, Ptr{Cint}, Ptr{Cint},
Ptr{Cint}, Ptr{Cint}),
buf, &count, &mpitype(T), &src, &tag, &comm.val, val, &0)
Request(val[], buf)
end
function Irecv!{T}(buf::Array{T}, src::Integer, tag::Integer,
comm::Comm)
Irecv!(buf, length(buf), src, tag, comm)
end
function irecv(src::Integer, tag::Integer, comm::Comm)
(flag, stat) = Iprobe(src, tag, comm)
if !flag
return (false, nothing, nothing)
end
count = Get_count(stat, UInt8)
buf = Array(UInt8, count)
stat = Recv!(buf, Get_source(stat), Get_tag(stat), comm)
(true, MPI.deserialize(buf), stat)
end
function Wait!(req::Request)
stat = Status()
ccall(MPI_WAIT, Void, (Ptr{Cint}, Ptr{Cint}, Ptr{Cint}),
&req.val, stat.val, &0)
req.buffer = nothing
stat
end
function Test!(req::Request)
flag = Ref{Cint}()
stat = Status()
ccall(MPI_TEST, Void, (Ptr{Cint}, Ptr{Cint}, Ptr{Cint}, Ptr{Cint}),
&req.val, flag, stat.val, &0)
if flag[] == 0
return (false, nothing)
end
req.buffer = nothing
(true, stat)
end
function Waitall!(reqs::Array{Request,1})
count = length(reqs)
reqvals = [reqs[i].val for i in 1:count]
statvals = Array(Cint, MPI_STATUS_SIZE, count)
ccall(MPI_WAITALL, Void,
(Ptr{Cint}, Ptr{Cint}, Ptr{Cint}, Ptr{Cint}),
&count, reqvals, statvals, &0)
stats = Array(Status, count)
for i in 1:count
reqs[i].val = reqvals[i]
reqs[i].buffer = nothing
stats[i] = Status()
for v in 1:MPI_STATUS_SIZE
stats[i].val[v] = statvals[v,i]
end
end
stats
end
function Testall!(reqs::Array{Request,1})
count = length(reqs)
reqvals = [reqs[i].val for i in 1:count]
flag = Ref{Cint}()
statvals = Array(Cint, MPI_STATUS_SIZE, count)
ccall(MPI_TESTALL, Void,
(Ptr{Cint}, Ptr{Cint}, Ptr{Cint}, Ptr{Cint}, Ptr{Cint}),
&count, reqvals, flag, statvals, &0)
if flag[] == 0
return (false, nothing)
end
stats = Array(Status, count)
for i in 1:count
reqs[i].val = reqvals[i]
reqs[i].buffer = nothing
stats[i] = Status()
for v in 1:MPI_STATUS_SIZE
stats[i].val[v] = statvals[v,i]
end
end
(true, stats)
end
function Waitany!(reqs::Array{Request,1})
count = length(reqs)
reqvals = [reqs[i].val for i in 1:count]
ind = Ref{Cint}()
stat = Status()
ccall(MPI_WAITANY, Void,
(Ptr{Cint}, Ptr{Cint}, Ptr{Cint}, Ptr{Cint}, Ptr{Cint}),
&count, reqvals, ind, stat.val, &0)
index = Int(ind[])
reqs[index].val = reqvals[index]
reqs[index].buffer = nothing
(index, stat)
end
function Testany!(reqs::Array{Request,1})
count = length(reqs)
reqvals = [reqs[i].val for i in 1:count]
ind = Ref{Cint}()
flag = Ref{Cint}()
stat = Status()
ccall(MPI_TESTANY, Void,
(Ptr{Cint}, Ptr{Cint}, Ptr{Cint}, Ptr{Cint}, Ptr{Cint}, Ptr{Cint}),
&count, reqvals, ind, flag, stat.val, &0)
index = Int(ind[])
if flag[] == 0 || index == MPI_UNDEFINED
return (false, 0, nothing)
end
reqs[index].val = reqvals[index]
reqs[index].buffer = nothing
(true, index, stat)
end
function Waitsome!(reqs::Array{Request,1})
count = length(reqs)
reqvals = [reqs[i].val for i in 1:count]
outcnt = Ref{Cint}()
inds = Array(Cint, count)
statvals = Array(Cint, MPI_STATUS_SIZE, count)
ccall(MPI_WAITSOME, Void,
(Ptr{Cint}, Ptr{Cint}, Ptr{Cint}, Ptr{Cint}, Ptr{Cint}, Ptr{Cint}),
&count, reqvals, outcnt, inds, statvals, &0)
outcount = Int(outcnt[])
# This can happen if there were no valid requests
if outcount == UNDEFINED
outcount = 0
end
indices = Array(Int, outcount)
stats = Array(Status, outcount)
for i in 1:outcount
ind = Int(inds[i])
reqs[ind].val = reqvals[ind]
reqs[ind].buffer = nothing
indices[i] = inds[i]
stats[i] = Status()
for v in 1:MPI_STATUS_SIZE
stats[i].val[v] = statvals[v,i]
end
end
(indices, stats)
end
function Testsome!(reqs::Array{Request,1})
count = length(reqs)
reqvals = [reqs[i].val for i in 1:count]
outcnt = Ref{Cint}()
inds = Array(Cint, count)
statvals = Array(Cint, MPI_STATUS_SIZE, count)
ccall(MPI_TESTSOME, Void,
(Ptr{Cint}, Ptr{Cint}, Ptr{Cint}, Ptr{Cint}, Ptr{Cint}, Ptr{Cint}),
&count, reqvals, outcnt, inds, statvals, &0)
outcount = outcnt[]
# This can happen if there were no valid requests
if outcount == UNDEFINED
outcount = 0
end
indices = Array(Int, outcount)
stats = Array(Status, outcount)
for i in 1:outcount
ind = Int(inds[i])
reqs[ind].val = reqvals[ind]
reqs[ind].buffer = nothing
indices[i] = inds[i]
stats[i] = Status()
for v in 1:MPI_STATUS_SIZE
stats[i].val[v] = statvals[v,i]
end
end
(indices, stats)
end
function Cancel!(req::Request)
ccall(MPI_CANCEL, Void, (Ptr{Cint},Ptr{Cint}), &req.val, &0)
req.buffer = nothing
nothing
end
# Collective communication
function Barrier(comm::Comm)
ccall(MPI_BARRIER, Void, (Ptr{Cint},Ptr{Cint}), &comm.val, &0)
end
function Bcast!{T}(buffer::MPIBuffertype{T}, count::Integer,
root::Integer, comm::Comm)
ccall(MPI_BCAST, Void,
(Ptr{T}, Ptr{Cint}, Ptr{Cint}, Ptr{Cint}, Ptr{Cint}, Ptr{Cint}),
buffer, &count, &mpitype(T), &root, &comm.val, &0)
buffer
end
function Bcast!{T}(buffer::Array{T}, root::Integer, comm::Comm)
Bcast!(buffer, length(buffer), root, comm)
end
#=
function Bcast{T}(obj::T, root::Integer, comm::Comm)
buf = [T]
Bcast!(buf, root, comm)
buf[1]
end
=#
function bcast(obj, root::Integer, comm::Comm)
isroot = Comm_rank(comm) == root
count = Array(Cint, 1)
if isroot
buf = MPI.serialize(obj)
count[1] = length(buf)
end
Bcast!(count, root, comm)
if !isroot
buf = Array(UInt8, count[1])
end
Bcast!(buf, root, comm)
if !isroot
obj = MPI.deserialize(buf)
end
obj
end
function Reduce{T}(sendbuf::MPIBuffertype{T}, count::Integer,
op::Op, root::Integer, comm::Comm)
isroot = Comm_rank(comm) == root
recvbuf = Array(T, isroot ? count : 0)
ccall(MPI_REDUCE, Void,
(Ptr{T}, Ptr{T}, Ptr{Cint}, Ptr{Cint}, Ptr{Cint}, Ptr{Cint},
Ptr{Cint}, Ptr{Cint}),
sendbuf, recvbuf, &count, &mpitype(T), &op.val, &root, &comm.val,
&0)
isroot ? recvbuf : nothing
end
function Reduce{T}(sendbuf::Array{T}, op::Union{Op,Function}, root::Integer, comm::Comm)
Reduce(sendbuf, length(sendbuf), op, root, comm)
end
function Reduce{T}(object::T, op::Union{Op,Function}, root::Integer, comm::Comm)
isroot = Comm_rank(comm) == root
sendbuf = T[object]
recvbuf = Reduce(sendbuf, op, root, comm)
isroot ? recvbuf[1] : nothing
end
function Allreduce!{T}(sendbuf::MPIBuffertype{T}, recvbuf::MPIBuffertype{T},
count::Integer, op::Op, comm::Comm)
ccall(MPI_ALLREDUCE, Void, (Ptr{T}, Ptr{T}, Ptr{Cint}, Ptr{Cint}, Ptr{Cint},
Ptr{Cint}, Ptr{Cint}), sendbuf, recvbuf, &count, &mpitype(T),
&op.val, &comm.val, &0)
recvbuf
end
function Allreduce!{T}(sendbuf::MPIBuffertype{T}, recvbuf::MPIBuffertype{T},
op::Union{Op,Function}, comm::Comm)
Allreduce!(sendbuf, recvbuf, length(recvbuf), op, comm)
end
function Allreduce{T}(obj::T, op::Union{Op,Function}, comm::Comm)
objref = Ref(obj)
outref = Ref{T}()
Allreduce!(objref, outref, 1, op, comm)
outref[]
end
# allocate receive buffer automatically
function allreduce{T}(sendbuf::MPIBuffertype{T}, op::Union{Op,Function}, comm::Comm)
recvbuf = similar(sendbuf)
Allreduce!(sendbuf, recvbuf, length(recvbuf), op, comm)
end
include("mpi-op.jl")
function Scatter{T}(sendbuf::MPIBuffertype{T},count::Integer, root::Integer,
comm::Comm)
recvbuf = Array(T, count)
ccall(MPI_SCATTER, Void,
(Ptr{T}, Ptr{Cint}, Ptr{Cint}, Ptr{T}, Ptr{Cint}, Ptr{Cint},
Ptr{Cint}, Ptr{Cint}, Ptr{Cint}), sendbuf, &count, &mpitype(T),
recvbuf, &count, &mpitype(T), &root, &comm.val, &0)
recvbuf
end
function Scatterv{T}(sendbuf::MPIBuffertype{T},
counts::Vector{Cint}, root::Integer,
comm::Comm)
recvbuf = Array(T, counts[Comm_rank(comm) + 1])
recvcnt = counts[Comm_rank(comm) + 1]
disps = cumsum(counts) - counts
ccall(MPI_SCATTERV, Void,
(Ptr{T}, Ptr{Cint}, Ptr{Cint}, Ptr{Cint}, Ptr{T}, Ptr{Cint}, Ptr{Cint}, Ptr{Cint}, Ptr{Cint}, Ptr{Cint}),
sendbuf, counts, disps, &mpitype(T), recvbuf, &recvcnt, &mpitype(T), &root, &comm.val, &0)
recvbuf
end
function Gather{T}(sendbuf::MPIBuffertype{T}, count::Integer,
root::Integer, comm::Comm)
isroot = Comm_rank(comm) == root
recvbuf = Array(T, isroot ? Comm_size(comm) * count : 0)
ccall(MPI_GATHER, Void,
(Ptr{T}, Ptr{Cint}, Ptr{Cint}, Ptr{T}, Ptr{Cint}, Ptr{Cint}, Ptr{Cint}, Ptr{Cint}, Ptr{Cint}),
sendbuf, &count, &mpitype(T), recvbuf, &count, &mpitype(T), &root, &comm.val, &0)
isroot ? recvbuf : nothing
end
function Gather{T}(sendbuf::Array{T}, root::Integer, comm::Comm)
Gather(sendbuf, length(sendbuf), root, comm)
end
function Gather{T}(object::T, root::Integer, comm::Comm)
isroot = Comm_rank(comm) == root
sendbuf = T[object]
recvbuf = Gather(sendbuf, root, comm)
isroot ? recvbuf : nothing
end
function Allgather{T}(sendbuf::MPIBuffertype{T}, count::Integer,
comm::Comm)
recvbuf = Array(T, Comm_size(comm) * count)
ccall(MPI_ALLGATHER, Void,
(Ptr{T}, Ptr{Cint}, Ptr{Cint}, Ptr{T}, Ptr{Cint}, Ptr{Cint}, Ptr{Cint}, Ptr{Cint}),
sendbuf, &count, &mpitype(T), recvbuf, &count, &mpitype(T), &comm.val, &0)
recvbuf
end
function Allgather{T}(sendbuf::Array{T}, comm::Comm)
Allgather(sendbuf, length(sendbuf), comm)
end
function Allgather{T}(object::T, comm::Comm)
sendbuf = T[object]
recvbuf = Allgather(sendbuf, comm)
recvbuf
end
function Gatherv{T}(sendbuf::MPIBuffertype{T}, counts::Vector{Cint},
root::Integer, comm::Comm)
isroot = Comm_rank(comm) == root
displs = cumsum(counts) - counts
sendcnt = counts[Comm_rank(comm) + 1]
recvbuf = Array(T, isroot ? sum(counts) : 0)
ccall(MPI_GATHERV, Void,
(Ptr{T}, Ptr{Cint}, Ptr{Cint}, Ptr{T}, Ptr{Cint}, Ptr{Cint}, Ptr{Cint}, Ptr{Cint}, Ptr{Cint}, Ptr{Cint}),
sendbuf, &sendcnt, &mpitype(T), recvbuf, counts, displs, &mpitype(T), &root, &comm.val, &0)
isroot ? recvbuf : nothing
end
function Allgatherv{T}(sendbuf::MPIBuffertype{T}, counts::Vector{Cint},
comm::Comm)
displs = cumsum(counts) - counts
sendcnt = counts[Comm_rank(comm) + 1]
recvbuf = Array(T, sum(counts))
ccall(MPI_ALLGATHERV, Void,
(Ptr{T}, Ptr{Cint}, Ptr{Cint}, Ptr{T}, Ptr{Cint}, Ptr{Cint}, Ptr{Cint}, Ptr{Cint}, Ptr{Cint}),
sendbuf, &sendcnt, &mpitype(T), recvbuf, counts, displs, &mpitype(T), &comm.val, &0)
recvbuf
end
function Alltoall{T}(sendbuf::MPIBuffertype{T}, count::Integer,
comm::Comm)
recvbuf = Array(T, Comm_size(comm)*count)
ccall(MPI_ALLTOALL, Void,
(Ptr{T}, Ptr{Cint}, Ptr{Cint}, Ptr{T}, Ptr{Cint}, Ptr{Cint}, Ptr{Cint}, Ptr{Cint}),
sendbuf, &count, &mpitype(T), recvbuf, &count, &mpitype(T), &comm.val, &0)
recvbuf
end
function Alltoallv{T}(sendbuf::MPIBuffertype{T}, scounts::Vector{Cint},
rcounts::Vector{Cint}, comm::Comm)
recvbuf = Array(T, sum(rcounts))
sdispls = cumsum(scounts) - scounts
rdispls = cumsum(rcounts) - rcounts
ccall(MPI_ALLTOALLV, Void,
(Ptr{T}, Ptr{Cint}, Ptr{Cint}, Ptr{Cint}, Ptr{T}, Ptr{Cint}, Ptr{Cint}, Ptr{Cint}, Ptr{Cint}, Ptr{Cint}),
sendbuf, scounts, sdispls, &mpitype(T), recvbuf, rcounts, rdispls, &mpitype(T), &comm.val, &0)
recvbuf
end
function Scan{T}(sendbuf::MPIBuffertype{T}, count::Integer,
op::Op, comm::Comm)
recvbuf = Array(T, count)
ccall(MPI_SCAN, Void,
(Ptr{T}, Ptr{T}, Ptr{Cint}, Ptr{Cint}, Ptr{Cint}, Ptr{Cint}, Ptr{Cint}),
sendbuf, recvbuf, &count, &mpitype(T), &op.val, &comm.val, &0)
recvbuf
end
function Scan{T}(object::T, op::Op, comm::Comm)
sendbuf = T[object]
Scan(sendbuf,1,op,comm)
end
function Exscan{T}(sendbuf::MPIBuffertype{T}, count::Integer,
op::Op, comm::Comm)
recvbuf = Array(T, count)
ccall(MPI_EXSCAN, Void,
(Ptr{T}, Ptr{T}, Ptr{Cint}, Ptr{Cint}, Ptr{Cint}, Ptr{Cint}, Ptr{Cint}),
sendbuf, recvbuf, &count, &mpitype(T), &op.val, &comm.val, &0)
recvbuf
end
function Exscan{T}(object::T, op::Op, comm::Comm)
sendbuf = T[object]
Exscan(sendbuf,1,op,comm)
end
# Conversion between C and Fortran Comm handles:
if HAVE_MPI_COMM_C2F
# use MPI_Comm_f2c and MPI_Comm_c2f
Base.convert(::Type{CComm}, comm::Comm) =
ccall(:MPI_Comm_f2c, CComm, (Cint,), comm.val)
Base.convert(::Type{Comm}, ccomm::CComm) =
Comm(ccall(:MPI_Comm_c2f, Cint, (CComm,), ccomm))
elseif sizeof(CComm) == sizeof(Cint)
# in MPICH, both C and Fortran use identical Cint comm handles
# and MPI_Comm_c2f is not provided.
Base.convert(::Type{CComm}, comm::Comm) = reinterpret(CComm, comm.val)
Base.convert(::Type{Comm}, ccomm::CComm) = Comm(reinterpret(Cint, ccomm))
else
warn("No MPI_Comm_c2f found - conversion to/from MPI.CComm will not work")
end
| [
4906,
26011,
4904,
2389,
265,
265,
2981,
4479,
90,
12441,
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,
2558,
23,
11,
471,
5317,
23,
11,
2558,
1433,
11,
471,
5317,
1433,
11,
2558,
2624,
11,
471,
5317,
2624,
11,
2558,
2414,
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,
471,
5317,
2414,
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,
48436,
2624,
11,
48436,
2414,
11,
19157,
2414,
11,
19157,
12762,
92,
198,
4906,
26011,
4904,
9865,
13712,
4906,
90,
51,
92,
4479,
90,
46745,
90,
51,
5512,
15690,
90,
51,
5512,
6524,
90,
51,
11709,
198,
198,
361,
44156,
2849,
18189,
410,
1,
15,
13,
20,
13,
15,
21215,
198,
220,
220,
220,
1303,
16926,
46,
25,
5765,
3082,
265,
329,
428,
198,
220,
220,
220,
2214,
8210,
1039,
90,
51,
92,
7,
3712,
6030,
90,
51,
30072,
796,
2558,
58,
3245,
28968,
7,
51,
11,
1312,
8,
329,
1312,
287,
352,
25,
77,
25747,
7,
51,
15437,
198,
437,
198,
198,
2,
2896,
500,
257,
2163,
29034,
414,
431,
7,
51,
8,
326,
5860,
262,
4904,
40,
4818,
265,
2981,
2438,
329,
198,
2,
257,
1813,
2099,
309,
13,
554,
262,
1339,
262,
262,
2099,
857,
407,
2152,
11,
340,
318,
2727,
290,
198,
2,
788,
4504,
13,
383,
8633,
261,
560,
318,
5447,
287,
11593,
15003,
834,
523,
262,
8265,
460,
307,
198,
2,
662,
5589,
3902,
198,
198,
2,
1895,
273,
290,
6282,
2163,
329,
1972,
4904,
40,
4818,
265,
9497,
198,
8818,
29034,
414,
431,
90,
51,
92,
7,
3712,
6030,
90,
51,
30072,
628,
220,
220,
220,
611,
468,
2539,
7,
3149,
414,
431,
62,
11600,
11,
309,
8,
220,
1303,
611,
262,
4818,
265,
2981,
1541,
7160,
198,
220,
220,
220,
220,
220,
1441,
29034,
414,
431,
62,
11600,
58,
51,
60,
198,
220,
220,
220,
886,
628,
220,
220,
220,
611,
5145,
271,
9895,
7,
51,
8,
198,
220,
220,
220,
220,
220,
220,
220,
3714,
7,
28100,
1713,
12331,
7203,
6030,
1276,
307,
318,
9895,
3419,
48774,
198,
220,
220,
220,
886,
628,
220,
220,
220,
1303,
651,
262,
1366,
422,
262,
2099,
198,
220,
220,
220,
2214,
19199,
796,
309,
13,
19199,
198,
220,
220,
220,
49005,
796,
2214,
8210,
1039,
7,
51,
8,
198,
220,
220,
220,
299,
25747,
796,
327,
600,
7,
13664,
7,
3245,
19199,
4008,
628,
220,
220,
220,
1303,
1234,
1366,
287,
4904,
40,
5794,
198,
220,
220,
220,
2512,
13664,
82,
796,
3392,
7,
34,
600,
11,
299,
25747,
8,
198,
220,
220,
220,
7845,
28613,
796,
1976,
27498,
7,
34,
457,
4372,
733,
62,
83,
11,
299,
25747,
8,
220,
1303,
2546,
62,
83,
6624,
4904,
40,
62,
32,
600,
5633,
198,
220,
220,
220,
3858,
796,
1976,
27498,
7,
34,
600,
11,
299,
25747,
8,
198,
220,
220,
220,
329,
1312,
28,
16,
25,
77,
25747,
198,
220,
220,
220,
220,
220,
220,
220,
7845,
28613,
58,
72,
60,
796,
49005,
58,
72,
60,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
2251,
281,
4904,
40,
62,
27354,
265,
2981,
329,
262,
1459,
2214,
611,
340,
857,
407,
2152,
1865,
198,
220,
220,
220,
220,
220,
220,
220,
3858,
58,
72,
60,
796,
29034,
414,
431,
7,
3245,
19199,
58,
72,
12962,
198,
220,
220,
220,
886,
628,
220,
220,
220,
1303,
2251,
262,
4818,
265,
2981,
198,
220,
220,
220,
649,
4906,
62,
5420,
796,
6524,
90,
34,
600,
92,
3419,
198,
220,
220,
220,
6056,
796,
6524,
90,
34,
600,
92,
3419,
198,
220,
220,
220,
269,
13345,
7,
7378,
40,
62,
25216,
62,
43387,
6158,
62,
46126,
11,
18331,
11,
357,
46745,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
5512,
350,
2213,
90,
34,
457,
4372,
733,
62,
83,
5512,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
350,
2213,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
92,
828,
1222,
77,
25747,
11,
2512,
13664,
82,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7845,
28613,
11,
3858,
11,
649,
4906,
62,
5420,
11,
6056,
8,
628,
220,
220,
220,
611,
6056,
21737,
14512,
657,
198,
220,
220,
220,
220,
220,
220,
220,
3714,
7,
12331,
16922,
7203,
7378,
40,
62,
6030,
62,
17953,
62,
7249,
4504,
1729,
12,
22570,
8420,
3722,
48774,
198,
220,
220,
220,
886,
628,
220,
220,
220,
1303,
4589,
262,
4818,
265,
265,
2981,
198,
220,
220,
220,
6056,
17,
796,
6524,
90,
34,
600,
92,
3419,
198,
220,
220,
220,
269,
13345,
7,
7378,
40,
62,
25216,
62,
9858,
36393,
11,
18331,
11,
357,
46745,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
92,
828,
649,
4906,
62,
5420,
11,
6056,
17,
8,
628,
220,
220,
220,
611,
6056,
17,
21737,
14512,
657,
198,
220,
220,
220,
220,
220,
220,
220,
3714,
7,
12331,
16922,
7203,
7378,
40,
62,
6030,
62,
41509,
4504,
1729,
12,
22570,
8420,
3722,
48774,
198,
220,
220,
220,
886,
628,
220,
220,
220,
1303,
751,
340,
284,
262,
8633,
261,
560,
286,
1900,
3858,
198,
220,
220,
220,
29034,
414,
431,
62,
11600,
58,
51,
60,
796,
649,
4906,
62,
5420,
21737,
198,
220,
220,
220,
29034,
414,
431,
62,
11600,
62,
259,
4399,
58,
3605,
4906,
62,
5420,
58,
11907,
796,
309,
628,
220,
220,
220,
1441,
29034,
414,
431,
62,
11600,
58,
51,
60,
198,
437,
628,
198,
4906,
1520,
198,
220,
220,
220,
1188,
3712,
34,
600,
198,
220,
220,
220,
1520,
7,
2100,
3712,
46541,
8,
796,
649,
7,
2100,
8,
198,
437,
198,
9979,
22240,
62,
33991,
220,
796,
1520,
7,
7378,
40,
62,
9858,
44,
62,
33991,
8,
198,
9979,
22240,
62,
50,
37738,
220,
796,
1520,
7,
7378,
40,
62,
9858,
44,
62,
50,
37738,
8,
198,
9979,
22240,
62,
45359,
11163,
796,
1520,
7,
7378,
40,
62,
9858,
44,
62,
45359,
11163,
8,
198,
198,
4906,
8670,
198,
220,
220,
220,
1188,
3712,
34,
600,
198,
437,
198,
9979,
13349,
62,
33991,
796,
8670,
7,
7378,
40,
62,
3185,
62,
33991,
8,
198,
9979,
347,
6981,
220,
220,
220,
796,
8670,
7,
7378,
40,
62,
33,
6981,
8,
198,
9979,
347,
1581,
220,
220,
220,
220,
796,
8670,
7,
7378,
40,
62,
33,
1581,
8,
198,
9979,
347,
55,
1581,
220,
220,
220,
796,
8670,
7,
7378,
40,
62,
33,
55,
1581,
8,
198,
9979,
406,
6981,
220,
220,
220,
796,
8670,
7,
7378,
40,
62,
28182,
8,
198,
9979,
406,
1581,
220,
220,
220,
220,
796,
8670,
7,
7378,
40,
62,
43,
1581,
8,
198,
9979,
44988,
1581,
220,
220,
220,
796,
8670,
7,
7378,
40,
62,
43,
55,
1581,
8,
198,
9979,
25882,
220,
220,
220,
220,
796,
8670,
7,
7378,
40,
62,
22921,
8,
198,
9979,
20625,
220,
220,
220,
220,
796,
8670,
7,
7378,
40,
62,
23678,
8,
198,
9979,
4810,
3727,
220,
220,
220,
796,
8670,
7,
7378,
40,
62,
4805,
3727,
8,
198,
9979,
35683,
220,
220,
220,
220,
796,
8670,
7,
7378,
40,
62,
50,
5883,
8,
198,
198,
4906,
19390,
198,
220,
220,
220,
1188,
3712,
34,
600,
198,
220,
220,
220,
11876,
198,
437,
198,
9979,
4526,
35780,
62,
33991,
796,
19390,
7,
7378,
40,
62,
2200,
35780,
62,
33991,
11,
2147,
8,
198,
198,
4906,
12678,
198,
220,
220,
220,
1188,
3712,
19182,
90,
34,
600,
11,
16,
92,
198,
220,
220,
220,
12678,
3419,
796,
649,
7,
19182,
7,
34,
600,
11,
4904,
40,
62,
35744,
2937,
62,
33489,
4008,
198,
437,
198,
3855,
62,
18224,
7,
14269,
3712,
19580,
8,
796,
2558,
7,
14269,
13,
2100,
58,
7378,
40,
62,
24908,
12962,
198,
3855,
62,
10459,
7,
14269,
3712,
19580,
8,
796,
2558,
7,
14269,
13,
2100,
58,
7378,
40,
62,
47690,
12962,
198,
3855,
62,
12985,
7,
14269,
3712,
19580,
8,
796,
2558,
7,
14269,
13,
2100,
58,
7378,
40,
62,
42197,
12962,
198,
198,
9979,
15529,
62,
47690,
796,
2558,
7,
7378,
40,
62,
31827,
62,
47690,
8,
198,
9979,
15529,
62,
42197,
220,
220,
220,
796,
2558,
7,
7378,
40,
62,
31827,
62,
42197,
8,
198,
9979,
37801,
62,
10526,
220,
220,
220,
220,
796,
2558,
7,
7378,
40,
62,
42197,
62,
10526,
8,
198,
9979,
4725,
7206,
20032,
1961,
220,
796,
2558,
7,
7378,
40,
62,
4944,
7206,
20032,
1961,
8,
198,
198,
8818,
11389,
1096,
7,
87,
8,
198,
220,
220,
220,
264,
796,
314,
9864,
13712,
3419,
198,
220,
220,
220,
7308,
13,
46911,
1096,
7,
82,
11,
2124,
8,
198,
220,
220,
220,
7308,
13,
20657,
29325,
62,
18747,
7,
82,
8,
198,
437,
198,
198,
8818,
748,
48499,
1096,
7,
87,
8,
198,
220,
220,
220,
264,
796,
314,
9864,
13712,
7,
87,
8,
198,
220,
220,
220,
7308,
13,
8906,
48499,
1096,
7,
82,
8,
198,
437,
198,
198,
2,
30048,
5499,
198,
198,
8818,
44707,
3419,
198,
220,
220,
220,
269,
13345,
7,
7378,
40,
62,
1268,
2043,
11,
18331,
11,
357,
46745,
90,
34,
600,
5512,
828,
1222,
15,
8,
198,
437,
198,
198,
8818,
8125,
1096,
3419,
198,
220,
220,
220,
269,
13345,
7,
7378,
40,
62,
37,
17961,
35400,
11,
18331,
11,
357,
46745,
90,
34,
600,
5512,
828,
1222,
15,
8,
198,
437,
198,
198,
8818,
2275,
419,
7,
9503,
3712,
6935,
11,
1931,
6015,
1098,
3712,
46541,
8,
198,
220,
220,
220,
269,
13345,
7,
7378,
40,
62,
6242,
9863,
11,
18331,
11,
357,
46745,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
92,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1222,
9503,
13,
2100,
11,
1222,
263,
6015,
1098,
11,
1222,
15,
8,
198,
437,
198,
198,
8818,
554,
13562,
3419,
198,
220,
220,
220,
6056,
796,
6524,
90,
34,
600,
92,
3419,
198,
220,
220,
220,
269,
13345,
7,
7378,
40,
62,
1268,
2043,
12576,
14887,
1961,
11,
18331,
11,
357,
46745,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
92,
828,
6056,
11,
1222,
15,
8,
198,
220,
220,
220,
6056,
21737,
14512,
657,
198,
437,
198,
198,
8818,
8125,
1143,
3419,
198,
220,
220,
220,
6056,
796,
6524,
90,
34,
600,
92,
3419,
198,
220,
220,
220,
269,
13345,
7,
7378,
40,
62,
37,
17961,
14887,
1961,
11,
18331,
11,
357,
46745,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
92,
828,
6056,
11,
1222,
15,
8,
198,
220,
220,
220,
6056,
21737,
14512,
657,
198,
437,
198,
198,
8818,
1520,
62,
646,
79,
7,
9503,
3712,
6935,
8,
198,
220,
220,
220,
649,
9503,
796,
6524,
90,
34,
600,
92,
3419,
198,
220,
220,
220,
269,
13345,
7,
7378,
40,
62,
9858,
44,
62,
35,
8577,
11,
18331,
11,
357,
46745,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
92,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1222,
9503,
13,
2100,
11,
649,
9503,
11,
1222,
15,
8,
198,
220,
220,
220,
4904,
40,
13,
6935,
7,
3605,
9503,
58,
12962,
198,
437,
198,
198,
8818,
1520,
62,
5787,
7,
9503,
3712,
6935,
8,
198,
220,
220,
220,
269,
13345,
7,
7378,
40,
62,
9858,
44,
62,
39274,
11,
18331,
11,
357,
46745,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
92,
828,
1222,
9503,
13,
2100,
11,
1222,
15,
8,
198,
437,
198,
198,
8818,
1520,
62,
43027,
7,
9503,
3712,
6935,
8,
198,
220,
220,
220,
4279,
796,
6524,
90,
34,
600,
92,
3419,
198,
220,
220,
220,
269,
13345,
7,
7378,
40,
62,
9858,
44,
62,
49,
15154,
11,
18331,
11,
357,
46745,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
92,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1222,
9503,
13,
2100,
11,
4279,
11,
1222,
15,
8,
198,
220,
220,
220,
2558,
7,
43027,
58,
12962,
198,
437,
198,
198,
8818,
1520,
62,
7857,
7,
9503,
3712,
6935,
8,
198,
220,
220,
220,
2546,
796,
6524,
90,
34,
600,
92,
3419,
198,
220,
220,
220,
269,
13345,
7,
7378,
40,
62,
9858,
44,
62,
33489,
11,
18331,
11,
357,
46745,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
92,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1222,
9503,
13,
2100,
11,
2546,
11,
1222,
15,
8,
198,
220,
220,
220,
2558,
7,
7857,
58,
12962,
198,
437,
198,
198,
8818,
2099,
62,
17953,
7,
51,
3712,
6601,
6030,
8,
198,
220,
220,
220,
611,
5145,
271,
9895,
7,
51,
8,
198,
220,
220,
220,
220,
220,
220,
220,
3714,
7,
28100,
1713,
12331,
7203,
6030,
1276,
307,
318,
9895,
3419,
48774,
198,
220,
220,
220,
886,
628,
220,
220,
220,
611,
468,
2539,
7,
3149,
414,
431,
62,
11600,
11,
309,
8,
220,
1303,
611,
262,
4818,
265,
2981,
1541,
7160,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
2147,
198,
220,
220,
220,
886,
628,
220,
220,
220,
1303,
651,
262,
1366,
422,
262,
2099,
198,
220,
220,
220,
2214,
19199,
796,
309,
13,
19199,
198,
220,
220,
220,
299,
25747,
796,
327,
600,
7,
13664,
7,
3245,
19199,
4008,
198,
220,
220,
220,
611,
44156,
2849,
1279,
410,
1,
15,
13,
20,
13,
15,
12,
7959,
10,
1828,
5332,
1,
198,
220,
220,
220,
220,
220,
220,
220,
49005,
796,
2214,
8210,
1039,
7,
51,
8,
198,
220,
220,
220,
2073,
198,
220,
220,
220,
220,
220,
220,
220,
49005,
796,
3975,
7,
312,
87,
3784,
3245,
28968,
7,
51,
11,
4686,
87,
828,
352,
25,
77,
25747,
8,
198,
220,
220,
220,
886,
628,
220,
220,
220,
1303,
1234,
1366,
287,
4904,
40,
5794,
198,
220,
220,
220,
2512,
13664,
82,
796,
3392,
7,
34,
600,
11,
299,
25747,
8,
198,
220,
220,
220,
7845,
28613,
796,
1976,
27498,
7,
34,
457,
4372,
733,
62,
83,
11,
299,
25747,
8,
220,
1303,
2546,
62,
83,
6624,
4904,
40,
62,
32,
600,
5633,
198,
220,
220,
220,
3858,
796,
1976,
27498,
7,
34,
600,
11,
299,
25747,
8,
198,
220,
220,
220,
329,
1312,
28,
16,
25,
77,
25747,
198,
220,
220,
220,
220,
220,
220,
220,
7845,
28613,
58,
72,
60,
796,
49005,
58,
72,
60,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
2251,
281,
4904,
40,
62,
27354,
265,
2981,
329,
262,
1459,
2214,
611,
340,
857,
407,
2152,
1865,
198,
220,
220,
220,
220,
220,
220,
220,
611,
5145,
10134,
2539,
7,
3149,
414,
431,
62,
11600,
11,
2214,
19199,
58,
72,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2099,
62,
17953,
7,
3245,
19199,
58,
72,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
886,
198,
220,
220,
220,
220,
220,
220,
220,
3858,
58,
72,
60,
796,
29034,
414,
431,
7,
3245,
19199,
58,
72,
12962,
198,
220,
220,
220,
886,
628,
220,
220,
220,
1303,
2251,
262,
4818,
265,
2981,
198,
220,
220,
220,
649,
4906,
62,
5420,
796,
6524,
90,
34,
600,
92,
3419,
198,
220,
220,
220,
6056,
796,
6524,
90,
34,
600,
92,
3419,
198,
220,
220,
220,
269,
13345,
7,
7378,
40,
62,
25216,
62,
43387,
6158,
62,
46126,
11,
18331,
11,
357,
46745,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
5512,
350,
2213,
90,
34,
457,
4372,
733,
62,
83,
5512,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
350,
2213,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
92,
828,
1222,
77,
25747,
11,
2512,
13664,
82,
11,
7845,
28613,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3858,
11,
649,
4906,
62,
5420,
11,
6056,
8,
628,
220,
220,
220,
611,
6056,
21737,
14512,
657,
198,
220,
220,
220,
220,
220,
220,
220,
3714,
7,
12331,
16922,
7203,
7378,
40,
62,
6030,
62,
17953,
62,
7249,
4504,
1729,
12,
22570,
8420,
3722,
48774,
198,
220,
220,
220,
886,
628,
220,
220,
220,
1303,
4589,
262,
4818,
265,
265,
2981,
198,
220,
220,
220,
6056,
17,
796,
6524,
90,
34,
600,
92,
3419,
198,
220,
220,
220,
269,
13345,
7,
7378,
40,
62,
25216,
62,
9858,
36393,
11,
18331,
11,
357,
46745,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
92,
828,
649,
4906,
62,
5420,
11,
6056,
17,
8,
628,
220,
220,
220,
611,
6056,
17,
21737,
14512,
657,
198,
220,
220,
220,
220,
220,
220,
220,
3714,
7,
12331,
16922,
7203,
7378,
40,
62,
6030,
62,
41509,
4504,
1729,
12,
22570,
8420,
3722,
48774,
198,
220,
220,
220,
886,
628,
220,
220,
220,
1303,
751,
340,
284,
262,
8633,
261,
560,
286,
1900,
3858,
198,
220,
220,
220,
29034,
414,
431,
62,
11600,
58,
51,
60,
796,
649,
4906,
62,
5420,
21737,
628,
220,
220,
220,
1441,
2147,
198,
437,
198,
198,
2,
6252,
12,
1462,
12,
4122,
6946,
198,
198,
8818,
42600,
7,
10677,
3712,
46541,
11,
7621,
3712,
46541,
11,
725,
3712,
6935,
8,
198,
220,
220,
220,
1185,
796,
12678,
3419,
198,
220,
220,
220,
269,
13345,
7,
7378,
40,
62,
4805,
9864,
36,
11,
18331,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
357,
46745,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
92,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1222,
10677,
11,
1222,
12985,
11,
1222,
9503,
13,
2100,
11,
1185,
13,
2100,
11,
1222,
15,
8,
198,
220,
220,
220,
1185,
198,
437,
198,
198,
8818,
314,
1676,
1350,
7,
10677,
3712,
46541,
11,
7621,
3712,
46541,
11,
725,
3712,
6935,
8,
198,
220,
220,
220,
6056,
796,
6524,
90,
34,
600,
92,
3419,
198,
220,
220,
220,
1185,
796,
12678,
3419,
198,
220,
220,
220,
269,
13345,
7,
7378,
40,
62,
4061,
49,
9864,
36,
11,
18331,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
357,
46745,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
92,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1222,
10677,
11,
1222,
12985,
11,
1222,
9503,
13,
2100,
11,
6056,
11,
1185,
13,
2100,
11,
1222,
15,
8,
198,
220,
220,
220,
611,
6056,
21737,
6624,
657,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
3991,
11,
2147,
198,
220,
220,
220,
886,
198,
220,
220,
220,
2081,
11,
1185,
198,
437,
198,
198,
8818,
3497,
62,
9127,
90,
51,
92,
7,
14269,
3712,
19580,
11,
7904,
6030,
90,
51,
30072,
198,
220,
220,
220,
954,
796,
6524,
90,
34,
600,
92,
3419,
198,
220,
220,
220,
269,
13345,
7,
7378,
40,
62,
18851,
62,
34,
28270,
11,
18331,
11,
357,
46745,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
92,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1185,
13,
2100,
11,
1222,
3149,
414,
431,
7,
51,
828,
954,
11,
1222,
15,
8,
198,
220,
220,
220,
2558,
7,
9127,
58,
12962,
198,
437,
198,
198,
8818,
16290,
90,
51,
92,
7,
29325,
3712,
7378,
9865,
13712,
4906,
90,
51,
5512,
954,
3712,
46541,
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,
2244,
3712,
46541,
11,
7621,
3712,
46541,
11,
725,
3712,
6935,
8,
198,
220,
220,
220,
269,
13345,
7,
7378,
40,
62,
50,
10619,
11,
18331,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
357,
46745,
90,
51,
5512,
350,
2213,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
5512,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
350,
2213,
90,
34,
600,
92,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
42684,
11,
1222,
9127,
11,
1222,
3149,
414,
431,
7,
51,
828,
1222,
16520,
11,
1222,
12985,
11,
1222,
9503,
13,
2100,
11,
1222,
15,
8,
198,
437,
198,
198,
8818,
16290,
90,
51,
92,
7,
29325,
3712,
19182,
90,
51,
5512,
2244,
3712,
46541,
11,
7621,
3712,
46541,
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,
725,
3712,
6935,
8,
198,
220,
220,
220,
16290,
7,
29325,
11,
4129,
7,
29325,
828,
2244,
11,
7621,
11,
725,
8,
198,
437,
198,
198,
8818,
16290,
90,
51,
92,
7,
26801,
3712,
51,
11,
2244,
3712,
46541,
11,
7621,
3712,
46541,
11,
725,
3712,
6935,
8,
198,
220,
220,
220,
42684,
796,
685,
26801,
60,
198,
220,
220,
220,
16290,
7,
29325,
11,
2244,
11,
7621,
11,
725,
8,
198,
437,
198,
198,
8818,
3758,
7,
26801,
11,
2244,
3712,
46541,
11,
7621,
3712,
46541,
11,
725,
3712,
6935,
8,
198,
220,
220,
220,
42684,
796,
4904,
40,
13,
46911,
1096,
7,
26801,
8,
198,
220,
220,
220,
16290,
7,
29325,
11,
2244,
11,
7621,
11,
725,
8,
198,
437,
198,
198,
8818,
1148,
437,
90,
51,
92,
7,
29325,
3712,
7378,
9865,
13712,
4906,
90,
51,
5512,
954,
3712,
46541,
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,
2244,
3712,
46541,
11,
7621,
3712,
46541,
11,
725,
3712,
6935,
8,
198,
220,
220,
220,
374,
2100,
796,
6524,
90,
34,
600,
92,
3419,
198,
220,
220,
220,
269,
13345,
7,
7378,
40,
62,
1797,
10619,
11,
18331,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
357,
46745,
90,
51,
5512,
350,
2213,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
5512,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
350,
2213,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
92,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
42684,
11,
1222,
9127,
11,
1222,
3149,
414,
431,
7,
51,
828,
1222,
16520,
11,
1222,
12985,
11,
1222,
9503,
13,
2100,
11,
374,
2100,
11,
1222,
15,
8,
198,
220,
220,
220,
19390,
7,
81,
2100,
58,
4357,
42684,
8,
198,
437,
198,
198,
8818,
1148,
437,
90,
51,
92,
7,
29325,
3712,
19182,
90,
51,
5512,
2244,
3712,
46541,
11,
7621,
3712,
46541,
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,
725,
3712,
6935,
8,
198,
220,
220,
220,
1148,
437,
7,
29325,
11,
4129,
7,
29325,
828,
2244,
11,
7621,
11,
725,
8,
198,
437,
198,
198,
8818,
1148,
437,
90,
51,
92,
7,
26801,
3712,
51,
11,
2244,
3712,
46541,
11,
7621,
3712,
46541,
11,
725,
3712,
6935,
8,
198,
220,
220,
220,
42684,
796,
685,
26801,
60,
198,
220,
220,
220,
1148,
437,
7,
29325,
11,
2244,
11,
7621,
11,
725,
8,
198,
437,
198,
198,
8818,
318,
437,
7,
26801,
11,
2244,
3712,
46541,
11,
7621,
3712,
46541,
11,
725,
3712,
6935,
8,
198,
220,
220,
220,
42684,
796,
4904,
40,
13,
46911,
1096,
7,
26801,
8,
198,
220,
220,
220,
1148,
437,
7,
29325,
11,
2244,
11,
7621,
11,
725,
8,
198,
437,
198,
198,
8818,
3311,
85,
0,
90,
51,
92,
7,
29325,
3712,
7378,
9865,
13712,
4906,
90,
51,
5512,
954,
3712,
46541,
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,
12351,
3712,
46541,
11,
7621,
3712,
46541,
11,
725,
3712,
6935,
8,
198,
220,
220,
220,
1185,
796,
12678,
3419,
198,
220,
220,
220,
269,
13345,
7,
7378,
40,
62,
2200,
33538,
11,
18331,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
357,
46745,
90,
51,
5512,
350,
2213,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
5512,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
350,
2213,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
92,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
42684,
11,
1222,
9127,
11,
1222,
3149,
414,
431,
7,
51,
828,
1222,
10677,
11,
1222,
12985,
11,
1222,
9503,
13,
2100,
11,
1185,
13,
2100,
11,
1222,
15,
8,
198,
220,
220,
220,
1185,
198,
437,
198,
198,
8818,
3311,
85,
0,
90,
51,
92,
7,
29325,
3712,
19182,
90,
51,
5512,
12351,
3712,
46541,
11,
7621,
3712,
46541,
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,
725,
3712,
6935,
8,
198,
220,
220,
220,
3311,
85,
0,
7,
29325,
11,
4129,
7,
29325,
828,
12351,
11,
7621,
11,
725,
8,
198,
437,
198,
198,
8818,
3311,
85,
90,
51,
92,
7,
3712,
6030,
90,
51,
5512,
12351,
3712,
46541,
11,
7621,
3712,
46541,
11,
725,
3712,
6935,
8,
198,
220,
220,
220,
42684,
796,
6524,
90,
51,
92,
3419,
198,
220,
220,
220,
1185,
796,
3311,
85,
0,
7,
29325,
11,
352,
11,
12351,
11,
7621,
11,
725,
8,
198,
220,
220,
220,
357,
29325,
58,
4357,
1185,
8,
198,
437,
198,
198,
8818,
664,
85,
7,
10677,
3712,
46541,
11,
7621,
3712,
46541,
11,
725,
3712,
6935,
8,
198,
220,
220,
220,
1185,
796,
42600,
7,
10677,
11,
7621,
11,
725,
8,
198,
220,
220,
220,
954,
796,
3497,
62,
9127,
7,
14269,
11,
471,
5317,
23,
8,
198,
220,
220,
220,
42684,
796,
15690,
7,
52,
5317,
23,
11,
954,
8,
198,
220,
220,
220,
1185,
796,
3311,
85,
0,
7,
29325,
11,
3497,
62,
10459,
7,
14269,
828,
3497,
62,
12985,
7,
14269,
828,
725,
8,
198,
220,
220,
220,
357,
7378,
40,
13,
8906,
48499,
1096,
7,
29325,
828,
1185,
8,
198,
437,
198,
198,
8818,
7181,
33967,
0,
90,
51,
92,
7,
29325,
3712,
7378,
9865,
13712,
4906,
90,
51,
5512,
954,
3712,
46541,
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,
12351,
3712,
46541,
11,
7621,
3712,
46541,
11,
725,
3712,
6935,
8,
198,
220,
220,
220,
1188,
796,
6524,
90,
34,
600,
92,
3419,
198,
220,
220,
220,
269,
13345,
7,
7378,
40,
62,
41736,
33538,
11,
18331,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
357,
46745,
90,
51,
5512,
350,
2213,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
5512,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
350,
2213,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
92,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
42684,
11,
1222,
9127,
11,
1222,
3149,
414,
431,
7,
51,
828,
1222,
10677,
11,
1222,
12985,
11,
1222,
9503,
13,
2100,
11,
1188,
11,
1222,
15,
8,
198,
220,
220,
220,
19390,
7,
2100,
58,
4357,
42684,
8,
198,
437,
198,
198,
8818,
7181,
33967,
0,
90,
51,
92,
7,
29325,
3712,
19182,
90,
51,
5512,
12351,
3712,
46541,
11,
7621,
3712,
46541,
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,
725,
3712,
6935,
8,
198,
220,
220,
220,
7181,
33967,
0,
7,
29325,
11,
4129,
7,
29325,
828,
12351,
11,
7621,
11,
725,
8,
198,
437,
198,
198,
8818,
35918,
33967,
7,
10677,
3712,
46541,
11,
7621,
3712,
46541,
11,
725,
3712,
6935,
8,
198,
220,
220,
220,
357,
32109,
11,
1185,
8,
796,
314,
1676,
1350,
7,
10677,
11,
7621,
11,
725,
8,
198,
220,
220,
220,
611,
5145,
32109,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
357,
9562,
11,
2147,
11,
2147,
8,
198,
220,
220,
220,
886,
198,
220,
220,
220,
954,
796,
3497,
62,
9127,
7,
14269,
11,
471,
5317,
23,
8,
198,
220,
220,
220,
42684,
796,
15690,
7,
52,
5317,
23,
11,
954,
8,
198,
220,
220,
220,
1185,
796,
3311,
85,
0,
7,
29325,
11,
3497,
62,
10459,
7,
14269,
828,
3497,
62,
12985,
7,
14269,
828,
725,
8,
198,
220,
220,
220,
357,
7942,
11,
4904,
40,
13,
8906,
48499,
1096,
7,
29325,
828,
1185,
8,
198,
437,
198,
198,
8818,
16314,
0,
7,
42180,
3712,
18453,
8,
198,
220,
220,
220,
1185,
796,
12678,
3419,
198,
220,
220,
220,
269,
13345,
7,
7378,
40,
62,
15543,
2043,
11,
18331,
11,
357,
46745,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
92,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1222,
42180,
13,
2100,
11,
1185,
13,
2100,
11,
1222,
15,
8,
198,
220,
220,
220,
43089,
13,
22252,
796,
2147,
198,
220,
220,
220,
1185,
198,
437,
198,
198,
8818,
6208,
0,
7,
42180,
3712,
18453,
8,
198,
220,
220,
220,
6056,
796,
6524,
90,
34,
600,
92,
3419,
198,
220,
220,
220,
1185,
796,
12678,
3419,
198,
220,
220,
220,
269,
13345,
7,
7378,
40,
62,
51,
6465,
11,
18331,
11,
357,
46745,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
92,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1222,
42180,
13,
2100,
11,
6056,
11,
1185,
13,
2100,
11,
1222,
15,
8,
198,
220,
220,
220,
611,
6056,
21737,
6624,
657,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
357,
9562,
11,
2147,
8,
198,
220,
220,
220,
886,
198,
220,
220,
220,
43089,
13,
22252,
796,
2147,
198,
220,
220,
220,
357,
7942,
11,
1185,
8,
198,
437,
198,
198,
8818,
16314,
439,
0,
7,
42180,
82,
3712,
19182,
90,
18453,
11,
16,
30072,
198,
220,
220,
220,
954,
796,
4129,
7,
42180,
82,
8,
198,
220,
220,
220,
43089,
12786,
796,
685,
42180,
82,
58,
72,
4083,
2100,
329,
1312,
287,
352,
25,
9127,
60,
198,
220,
220,
220,
1185,
12786,
796,
15690,
7,
34,
600,
11,
4904,
40,
62,
35744,
2937,
62,
33489,
11,
954,
8,
198,
220,
220,
220,
269,
13345,
7,
7378,
40,
62,
15543,
2043,
7036,
11,
18331,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
357,
46745,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
92,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1222,
9127,
11,
43089,
12786,
11,
1185,
12786,
11,
1222,
15,
8,
198,
220,
220,
220,
9756,
796,
15690,
7,
19580,
11,
954,
8,
198,
220,
220,
220,
329,
1312,
287,
352,
25,
9127,
198,
220,
220,
220,
220,
220,
220,
220,
43089,
82,
58,
72,
4083,
2100,
796,
43089,
12786,
58,
72,
60,
198,
220,
220,
220,
220,
220,
220,
220,
43089,
82,
58,
72,
4083,
22252,
796,
2147,
198,
220,
220,
220,
220,
220,
220,
220,
9756,
58,
72,
60,
796,
12678,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
329,
410,
287,
352,
25,
7378,
40,
62,
35744,
2937,
62,
33489,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
9756,
58,
72,
4083,
2100,
58,
85,
60,
796,
1185,
12786,
58,
85,
11,
72,
60,
198,
220,
220,
220,
220,
220,
220,
220,
886,
198,
220,
220,
220,
886,
198,
220,
220,
220,
9756,
198,
437,
198,
198,
8818,
6208,
439,
0,
7,
42180,
82,
3712,
19182,
90,
18453,
11,
16,
30072,
198,
220,
220,
220,
954,
796,
4129,
7,
42180,
82,
8,
198,
220,
220,
220,
43089,
12786,
796,
685,
42180,
82,
58,
72,
4083,
2100,
329,
1312,
287,
352,
25,
9127,
60,
198,
220,
220,
220,
6056,
796,
6524,
90,
34,
600,
92,
3419,
198,
220,
220,
220,
1185,
12786,
796,
15690,
7,
34,
600,
11,
4904,
40,
62,
35744,
2937,
62,
33489,
11,
954,
8,
198,
220,
220,
220,
269,
13345,
7,
7378,
40,
62,
51,
6465,
7036,
11,
18331,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
357,
46745,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
92,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1222,
9127,
11,
43089,
12786,
11,
6056,
11,
1185,
12786,
11,
1222,
15,
8,
198,
220,
220,
220,
611,
6056,
21737,
6624,
657,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
357,
9562,
11,
2147,
8,
198,
220,
220,
220,
886,
198,
220,
220,
220,
9756,
796,
15690,
7,
19580,
11,
954,
8,
198,
220,
220,
220,
329,
1312,
287,
352,
25,
9127,
198,
220,
220,
220,
220,
220,
220,
220,
43089,
82,
58,
72,
4083,
2100,
796,
43089,
12786,
58,
72,
60,
198,
220,
220,
220,
220,
220,
220,
220,
43089,
82,
58,
72,
4083,
22252,
796,
2147,
198,
220,
220,
220,
220,
220,
220,
220,
9756,
58,
72,
60,
796,
12678,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
329,
410,
287,
352,
25,
7378,
40,
62,
35744,
2937,
62,
33489,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
9756,
58,
72,
4083,
2100,
58,
85,
60,
796,
1185,
12786,
58,
85,
11,
72,
60,
198,
220,
220,
220,
220,
220,
220,
220,
886,
198,
220,
220,
220,
886,
198,
220,
220,
220,
357,
7942,
11,
9756,
8,
198,
437,
198,
198,
8818,
16314,
1092,
0,
7,
42180,
82,
3712,
19182,
90,
18453,
11,
16,
30072,
198,
220,
220,
220,
954,
796,
4129,
7,
42180,
82,
8,
198,
220,
220,
220,
43089,
12786,
796,
685,
42180,
82,
58,
72,
4083,
2100,
329,
1312,
287,
352,
25,
9127,
60,
198,
220,
220,
220,
773,
796,
6524,
90,
34,
600,
92,
3419,
198,
220,
220,
220,
1185,
796,
12678,
3419,
198,
220,
220,
220,
269,
13345,
7,
7378,
40,
62,
15543,
2043,
31827,
11,
18331,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
357,
46745,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
92,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1222,
9127,
11,
43089,
12786,
11,
773,
11,
1185,
13,
2100,
11,
1222,
15,
8,
198,
220,
220,
220,
6376,
796,
2558,
7,
521,
58,
12962,
198,
220,
220,
220,
43089,
82,
58,
9630,
4083,
2100,
796,
43089,
12786,
58,
9630,
60,
198,
220,
220,
220,
43089,
82,
58,
9630,
4083,
22252,
796,
2147,
198,
220,
220,
220,
357,
9630,
11,
1185,
8,
198,
437,
198,
198,
8818,
6208,
1092,
0,
7,
42180,
82,
3712,
19182,
90,
18453,
11,
16,
30072,
198,
220,
220,
220,
954,
796,
4129,
7,
42180,
82,
8,
198,
220,
220,
220,
43089,
12786,
796,
685,
42180,
82,
58,
72,
4083,
2100,
329,
1312,
287,
352,
25,
9127,
60,
198,
220,
220,
220,
773,
796,
6524,
90,
34,
600,
92,
3419,
198,
220,
220,
220,
6056,
796,
6524,
90,
34,
600,
92,
3419,
198,
220,
220,
220,
1185,
796,
12678,
3419,
198,
220,
220,
220,
269,
13345,
7,
7378,
40,
62,
51,
6465,
31827,
11,
18331,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
357,
46745,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
92,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1222,
9127,
11,
43089,
12786,
11,
773,
11,
6056,
11,
1185,
13,
2100,
11,
1222,
15,
8,
198,
220,
220,
220,
6376,
796,
2558,
7,
521,
58,
12962,
198,
220,
220,
220,
611,
6056,
21737,
6624,
657,
8614,
6376,
6624,
4904,
40,
62,
4944,
7206,
20032,
1961,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
357,
9562,
11,
657,
11,
2147,
8,
198,
220,
220,
220,
886,
198,
220,
220,
220,
43089,
82,
58,
9630,
4083,
2100,
796,
43089,
12786,
58,
9630,
60,
198,
220,
220,
220,
43089,
82,
58,
9630,
4083,
22252,
796,
2147,
198,
220,
220,
220,
357,
7942,
11,
6376,
11,
1185,
8,
198,
437,
198,
198,
8818,
15329,
896,
462,
0,
7,
42180,
82,
3712,
19182,
90,
18453,
11,
16,
30072,
198,
220,
220,
220,
954,
796,
4129,
7,
42180,
82,
8,
198,
220,
220,
220,
43089,
12786,
796,
685,
42180,
82,
58,
72,
4083,
2100,
329,
1312,
287,
352,
25,
9127,
60,
198,
220,
220,
220,
503,
66,
429,
796,
6524,
90,
34,
600,
92,
3419,
198,
220,
220,
220,
773,
82,
796,
15690,
7,
34,
600,
11,
954,
8,
198,
220,
220,
220,
1185,
12786,
796,
15690,
7,
34,
600,
11,
4904,
40,
62,
35744,
2937,
62,
33489,
11,
954,
8,
198,
220,
220,
220,
269,
13345,
7,
7378,
40,
62,
15543,
29722,
13649,
11,
18331,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
357,
46745,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
92,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1222,
9127,
11,
43089,
12786,
11,
503,
66,
429,
11,
773,
82,
11,
1185,
12786,
11,
1222,
15,
8,
198,
220,
220,
220,
503,
9127,
796,
2558,
7,
448,
66,
429,
58,
12962,
198,
220,
220,
220,
1303,
770,
460,
1645,
611,
612,
547,
645,
4938,
7007,
198,
220,
220,
220,
611,
503,
9127,
6624,
4725,
7206,
20032,
1961,
198,
220,
220,
220,
220,
220,
220,
220,
503,
9127,
796,
657,
198,
220,
220,
220,
886,
198,
220,
220,
220,
36525,
796,
15690,
7,
5317,
11,
503,
9127,
8,
198,
220,
220,
220,
9756,
796,
15690,
7,
19580,
11,
503,
9127,
8,
198,
220,
220,
220,
329,
1312,
287,
352,
25,
448,
9127,
198,
220,
220,
220,
220,
220,
220,
220,
773,
796,
2558,
7,
521,
82,
58,
72,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
43089,
82,
58,
521,
4083,
2100,
796,
43089,
12786,
58,
521,
60,
198,
220,
220,
220,
220,
220,
220,
220,
43089,
82,
58,
521,
4083,
22252,
796,
2147,
198,
220,
220,
220,
220,
220,
220,
220,
36525,
58,
72,
60,
796,
773,
82,
58,
72,
60,
198,
220,
220,
220,
220,
220,
220,
220,
9756,
58,
72,
60,
796,
12678,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
329,
410,
287,
352,
25,
7378,
40,
62,
35744,
2937,
62,
33489,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
9756,
58,
72,
4083,
2100,
58,
85,
60,
796,
1185,
12786,
58,
85,
11,
72,
60,
198,
220,
220,
220,
220,
220,
220,
220,
886,
198,
220,
220,
220,
886,
198,
220,
220,
220,
357,
521,
1063,
11,
9756,
8,
198,
437,
198,
198,
8818,
30307,
462,
0,
7,
42180,
82,
3712,
19182,
90,
18453,
11,
16,
30072,
198,
220,
220,
220,
954,
796,
4129,
7,
42180,
82,
8,
198,
220,
220,
220,
43089,
12786,
796,
685,
42180,
82,
58,
72,
4083,
2100,
329,
1312,
287,
352,
25,
9127,
60,
198,
220,
220,
220,
503,
66,
429,
796,
6524,
90,
34,
600,
92,
3419,
198,
220,
220,
220,
773,
82,
796,
15690,
7,
34,
600,
11,
954,
8,
198,
220,
220,
220,
1185,
12786,
796,
15690,
7,
34,
600,
11,
4904,
40,
62,
35744,
2937,
62,
33489,
11,
954,
8,
198,
220,
220,
220,
269,
13345,
7,
7378,
40,
62,
51,
1546,
4694,
13649,
11,
18331,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
357,
46745,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
92,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1222,
9127,
11,
43089,
12786,
11,
503,
66,
429,
11,
773,
82,
11,
1185,
12786,
11,
1222,
15,
8,
198,
220,
220,
220,
503,
9127,
796,
503,
66,
429,
21737,
198,
220,
220,
220,
1303,
770,
460,
1645,
611,
612,
547,
645,
4938,
7007,
198,
220,
220,
220,
611,
503,
9127,
6624,
4725,
7206,
20032,
1961,
198,
220,
220,
220,
220,
220,
220,
220,
503,
9127,
796,
657,
198,
220,
220,
220,
886,
198,
220,
220,
220,
36525,
796,
15690,
7,
5317,
11,
503,
9127,
8,
198,
220,
220,
220,
9756,
796,
15690,
7,
19580,
11,
503,
9127,
8,
198,
220,
220,
220,
329,
1312,
287,
352,
25,
448,
9127,
198,
220,
220,
220,
220,
220,
220,
220,
773,
796,
2558,
7,
521,
82,
58,
72,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
43089,
82,
58,
521,
4083,
2100,
796,
43089,
12786,
58,
521,
60,
198,
220,
220,
220,
220,
220,
220,
220,
43089,
82,
58,
521,
4083,
22252,
796,
2147,
198,
220,
220,
220,
220,
220,
220,
220,
36525,
58,
72,
60,
796,
773,
82,
58,
72,
60,
198,
220,
220,
220,
220,
220,
220,
220,
9756,
58,
72,
60,
796,
12678,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
329,
410,
287,
352,
25,
7378,
40,
62,
35744,
2937,
62,
33489,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
9756,
58,
72,
4083,
2100,
58,
85,
60,
796,
1185,
12786,
58,
85,
11,
72,
60,
198,
220,
220,
220,
220,
220,
220,
220,
886,
198,
220,
220,
220,
886,
198,
220,
220,
220,
357,
521,
1063,
11,
9756,
8,
198,
437,
198,
198,
8818,
27910,
0,
7,
42180,
3712,
18453,
8,
198,
220,
220,
220,
269,
13345,
7,
7378,
40,
62,
34,
20940,
3698,
11,
18331,
11,
357,
46745,
90,
34,
600,
5512,
46745,
90,
34,
600,
92,
828,
1222,
42180,
13,
2100,
11,
1222,
15,
8,
198,
220,
220,
220,
43089,
13,
22252,
796,
2147,
198,
220,
220,
220,
2147,
198,
437,
198,
198,
2,
29128,
6946,
198,
198,
8818,
32804,
7,
9503,
3712,
6935,
8,
198,
220,
220,
220,
269,
13345,
7,
7378,
40,
62,
33,
1503,
7112,
1137,
11,
18331,
11,
357,
46745,
90,
34,
600,
5512,
46745,
90,
34,
600,
92,
828,
1222,
9503,
13,
2100,
11,
1222,
15,
8,
198,
437,
198,
198,
8818,
347,
2701,
0,
90,
51,
92,
7,
22252,
3712,
7378,
9865,
13712,
4906,
90,
51,
5512,
954,
3712,
46541,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6808,
3712,
46541,
11,
725,
3712,
6935,
8,
198,
220,
220,
220,
269,
13345,
7,
7378,
40,
62,
2749,
11262,
11,
18331,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
357,
46745,
90,
51,
5512,
350,
2213,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
92,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
11876,
11,
1222,
9127,
11,
1222,
3149,
414,
431,
7,
51,
828,
1222,
15763,
11,
1222,
9503,
13,
2100,
11,
1222,
15,
8,
198,
220,
220,
220,
11876,
198,
437,
198,
198,
8818,
347,
2701,
0,
90,
51,
92,
7,
22252,
3712,
19182,
90,
51,
5512,
6808,
3712,
46541,
11,
725,
3712,
6935,
8,
198,
220,
220,
220,
347,
2701,
0,
7,
22252,
11,
4129,
7,
22252,
828,
6808,
11,
725,
8,
198,
437,
198,
198,
2,
28,
198,
8818,
347,
2701,
90,
51,
92,
7,
26801,
3712,
51,
11,
6808,
3712,
46541,
11,
725,
3712,
6935,
8,
198,
220,
220,
220,
42684,
796,
685,
51,
60,
198,
220,
220,
220,
347,
2701,
0,
7,
29325,
11,
6808,
11,
725,
8,
198,
220,
220,
220,
42684,
58,
16,
60,
198,
437,
198,
46249,
198,
198,
8818,
275,
2701,
7,
26801,
11,
6808,
3712,
46541,
11,
725,
3712,
6935,
8,
198,
220,
220,
220,
318,
15763,
796,
1520,
62,
43027,
7,
9503,
8,
6624,
6808,
198,
220,
220,
220,
954,
796,
15690,
7,
34,
600,
11,
352,
8,
198,
220,
220,
220,
611,
318,
15763,
198,
220,
220,
220,
220,
220,
220,
220,
42684,
796,
4904,
40,
13,
46911,
1096,
7,
26801,
8,
198,
220,
220,
220,
220,
220,
220,
220,
954,
58,
16,
60,
796,
4129,
7,
29325,
8,
198,
220,
220,
220,
886,
198,
220,
220,
220,
347,
2701,
0,
7,
9127,
11,
6808,
11,
725,
8,
198,
220,
220,
220,
611,
5145,
271,
15763,
198,
220,
220,
220,
220,
220,
220,
220,
42684,
796,
15690,
7,
52,
5317,
23,
11,
954,
58,
16,
12962,
198,
220,
220,
220,
886,
198,
220,
220,
220,
347,
2701,
0,
7,
29325,
11,
6808,
11,
725,
8,
198,
220,
220,
220,
611,
5145,
271,
15763,
198,
220,
220,
220,
220,
220,
220,
220,
26181,
796,
4904,
40,
13,
8906,
48499,
1096,
7,
29325,
8,
198,
220,
220,
220,
886,
198,
220,
220,
220,
26181,
198,
437,
198,
198,
8818,
44048,
90,
51,
92,
7,
21280,
29325,
3712,
7378,
9865,
13712,
4906,
90,
51,
5512,
954,
3712,
46541,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1034,
3712,
18257,
11,
6808,
3712,
46541,
11,
725,
3712,
6935,
8,
198,
220,
220,
220,
318,
15763,
796,
1520,
62,
43027,
7,
9503,
8,
6624,
6808,
198,
220,
220,
220,
664,
85,
29325,
796,
15690,
7,
51,
11,
318,
15763,
5633,
954,
1058,
657,
8,
198,
220,
220,
220,
269,
13345,
7,
7378,
40,
62,
22083,
52,
5222,
11,
18331,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
357,
46745,
90,
51,
5512,
350,
2213,
90,
51,
5512,
350,
2213,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
5512,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
350,
2213,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
92,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3758,
29325,
11,
664,
85,
29325,
11,
1222,
9127,
11,
1222,
3149,
414,
431,
7,
51,
828,
1222,
404,
13,
2100,
11,
1222,
15763,
11,
1222,
9503,
13,
2100,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1222,
15,
8,
198,
220,
220,
220,
318,
15763,
5633,
664,
85,
29325,
1058,
2147,
198,
437,
198,
198,
8818,
44048,
90,
51,
92,
7,
21280,
29325,
3712,
19182,
90,
51,
5512,
1034,
3712,
38176,
90,
18257,
11,
22203,
5512,
6808,
3712,
46541,
11,
725,
3712,
6935,
8,
198,
220,
220,
220,
44048,
7,
21280,
29325,
11,
4129,
7,
21280,
29325,
828,
1034,
11,
6808,
11,
725,
8,
198,
437,
198,
198,
8818,
44048,
90,
51,
92,
7,
15252,
3712,
51,
11,
1034,
3712,
38176,
90,
18257,
11,
22203,
5512,
6808,
3712,
46541,
11,
725,
3712,
6935,
8,
198,
220,
220,
220,
318,
15763,
796,
1520,
62,
43027,
7,
9503,
8,
6624,
6808,
198,
220,
220,
220,
3758,
29325,
796,
309,
58,
15252,
60,
198,
220,
220,
220,
664,
85,
29325,
796,
44048,
7,
21280,
29325,
11,
1034,
11,
6808,
11,
725,
8,
198,
220,
220,
220,
318,
15763,
5633,
664,
85,
29325,
58,
16,
60,
1058,
2147,
198,
437,
198,
198,
8818,
1439,
445,
7234,
0,
90,
51,
92,
7,
21280,
29325,
3712,
7378,
9865,
13712,
4906,
90,
51,
5512,
664,
85,
29325,
3712,
7378,
9865,
13712,
4906,
90,
51,
5512,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
954,
3712,
46541,
11,
1034,
3712,
18257,
11,
725,
3712,
6935,
8,
198,
220,
220,
220,
269,
13345,
7,
7378,
40,
62,
7036,
22083,
52,
5222,
11,
18331,
11,
357,
46745,
90,
51,
5512,
350,
2213,
90,
51,
5512,
350,
2213,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
5512,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
350,
2213,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
92,
828,
3758,
29325,
11,
664,
85,
29325,
11,
1222,
9127,
11,
1222,
3149,
414,
431,
7,
51,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1222,
404,
13,
2100,
11,
1222,
9503,
13,
2100,
11,
1222,
15,
8,
628,
220,
220,
220,
664,
85,
29325,
198,
437,
198,
198,
8818,
1439,
445,
7234,
0,
90,
51,
92,
7,
21280,
29325,
3712,
7378,
9865,
13712,
4906,
90,
51,
5512,
664,
85,
29325,
3712,
7378,
9865,
13712,
4906,
90,
51,
5512,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1034,
3712,
38176,
90,
18257,
11,
22203,
5512,
725,
3712,
6935,
8,
198,
220,
220,
220,
1439,
445,
7234,
0,
7,
21280,
29325,
11,
664,
85,
29325,
11,
4129,
7,
8344,
85,
29325,
828,
1034,
11,
725,
8,
198,
437,
198,
198,
8818,
1439,
445,
7234,
90,
51,
92,
7,
26801,
3712,
51,
11,
1034,
3712,
38176,
90,
18257,
11,
22203,
5512,
725,
3712,
6935,
8,
198,
220,
220,
220,
26181,
5420,
796,
6524,
7,
26801,
8,
198,
220,
220,
220,
503,
5420,
796,
6524,
90,
51,
92,
3419,
198,
220,
220,
220,
1439,
445,
7234,
0,
7,
26801,
5420,
11,
503,
5420,
11,
352,
11,
1034,
11,
725,
8,
628,
220,
220,
220,
503,
5420,
21737,
198,
437,
198,
198,
2,
31935,
3328,
11876,
6338,
198,
8818,
477,
445,
7234,
90,
51,
92,
7,
21280,
29325,
3712,
7378,
9865,
13712,
4906,
90,
51,
5512,
1034,
3712,
38176,
90,
18257,
11,
22203,
5512,
725,
3712,
6935,
8,
628,
220,
664,
85,
29325,
796,
2092,
7,
21280,
29325,
8,
198,
220,
1439,
445,
7234,
0,
7,
21280,
29325,
11,
664,
85,
29325,
11,
4129,
7,
8344,
85,
29325,
828,
1034,
11,
725,
8,
198,
437,
198,
198,
17256,
7203,
3149,
72,
12,
404,
13,
20362,
4943,
198,
198,
8818,
1446,
1436,
90,
51,
92,
7,
21280,
29325,
3712,
7378,
9865,
13712,
4906,
90,
51,
5512,
9127,
3712,
46541,
11,
6808,
3712,
46541,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
725,
3712,
6935,
8,
198,
220,
220,
220,
664,
85,
29325,
796,
15690,
7,
51,
11,
954,
8,
198,
220,
220,
220,
269,
13345,
7,
7378,
40,
62,
6173,
1404,
5781,
11,
18331,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
357,
46745,
90,
51,
5512,
350,
2213,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
5512,
350,
2213,
90,
51,
5512,
350,
2213,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
5512,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
350,
2213,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
92,
828,
3758,
29325,
11,
1222,
9127,
11,
1222,
3149,
414,
431,
7,
51,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
664,
85,
29325,
11,
1222,
9127,
11,
1222,
3149,
414,
431,
7,
51,
828,
1222,
15763,
11,
1222,
9503,
13,
2100,
11,
1222,
15,
8,
198,
220,
220,
220,
664,
85,
29325,
198,
437,
198,
198,
8818,
1446,
1436,
85,
90,
51,
92,
7,
21280,
29325,
3712,
7378,
9865,
13712,
4906,
90,
51,
5512,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
9853,
3712,
38469,
90,
34,
600,
5512,
6808,
3712,
46541,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
725,
3712,
6935,
8,
198,
220,
220,
220,
664,
85,
29325,
796,
15690,
7,
51,
11,
9853,
58,
6935,
62,
43027,
7,
9503,
8,
1343,
352,
12962,
198,
220,
220,
220,
664,
28435,
429,
796,
9853,
58,
6935,
62,
43027,
7,
9503,
8,
1343,
352,
60,
198,
220,
220,
220,
595,
862,
796,
269,
5700,
388,
7,
9127,
82,
8,
532,
9853,
198,
220,
220,
220,
269,
13345,
7,
7378,
40,
62,
6173,
1404,
5781,
53,
11,
18331,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
357,
46745,
90,
51,
5512,
350,
2213,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
5512,
350,
2213,
90,
51,
5512,
350,
2213,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
92,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3758,
29325,
11,
9853,
11,
595,
862,
11,
1222,
3149,
414,
431,
7,
51,
828,
664,
85,
29325,
11,
1222,
8344,
28435,
429,
11,
1222,
3149,
414,
431,
7,
51,
828,
1222,
15763,
11,
1222,
9503,
13,
2100,
11,
1222,
15,
8,
198,
220,
220,
220,
664,
85,
29325,
198,
437,
198,
198,
8818,
402,
1032,
90,
51,
92,
7,
21280,
29325,
3712,
7378,
9865,
13712,
4906,
90,
51,
5512,
954,
3712,
46541,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6808,
3712,
46541,
11,
725,
3712,
6935,
8,
198,
220,
220,
220,
318,
15763,
796,
1520,
62,
43027,
7,
9503,
8,
6624,
6808,
198,
220,
220,
220,
664,
85,
29325,
796,
15690,
7,
51,
11,
318,
15763,
5633,
1520,
62,
7857,
7,
9503,
8,
1635,
954,
1058,
657,
8,
198,
220,
220,
220,
269,
13345,
7,
7378,
40,
62,
38,
45226,
11,
18331,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
357,
46745,
90,
51,
5512,
350,
2213,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
5512,
350,
2213,
90,
51,
5512,
350,
2213,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
92,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3758,
29325,
11,
1222,
9127,
11,
1222,
3149,
414,
431,
7,
51,
828,
664,
85,
29325,
11,
1222,
9127,
11,
1222,
3149,
414,
431,
7,
51,
828,
1222,
15763,
11,
1222,
9503,
13,
2100,
11,
1222,
15,
8,
198,
220,
220,
220,
318,
15763,
5633,
664,
85,
29325,
1058,
2147,
198,
437,
198,
198,
8818,
402,
1032,
90,
51,
92,
7,
21280,
29325,
3712,
19182,
90,
51,
5512,
6808,
3712,
46541,
11,
725,
3712,
6935,
8,
198,
220,
220,
220,
402,
1032,
7,
21280,
29325,
11,
4129,
7,
21280,
29325,
828,
6808,
11,
725,
8,
198,
437,
198,
198,
8818,
402,
1032,
90,
51,
92,
7,
15252,
3712,
51,
11,
6808,
3712,
46541,
11,
725,
3712,
6935,
8,
198,
220,
220,
220,
318,
15763,
796,
1520,
62,
43027,
7,
9503,
8,
6624,
6808,
198,
220,
220,
220,
3758,
29325,
796,
309,
58,
15252,
60,
198,
220,
220,
220,
664,
85,
29325,
796,
402,
1032,
7,
21280,
29325,
11,
6808,
11,
725,
8,
198,
220,
220,
220,
318,
15763,
5633,
664,
85,
29325,
1058,
2147,
198,
437,
198,
198,
8818,
1439,
70,
1032,
90,
51,
92,
7,
21280,
29325,
3712,
7378,
9865,
13712,
4906,
90,
51,
5512,
954,
3712,
46541,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
725,
3712,
6935,
8,
198,
220,
220,
220,
664,
85,
29325,
796,
15690,
7,
51,
11,
1520,
62,
7857,
7,
9503,
8,
1635,
954,
8,
198,
220,
220,
220,
269,
13345,
7,
7378,
40,
62,
7036,
38,
45226,
11,
18331,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
357,
46745,
90,
51,
5512,
350,
2213,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
5512,
350,
2213,
90,
51,
5512,
350,
2213,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
92,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3758,
29325,
11,
1222,
9127,
11,
1222,
3149,
414,
431,
7,
51,
828,
664,
85,
29325,
11,
1222,
9127,
11,
1222,
3149,
414,
431,
7,
51,
828,
1222,
9503,
13,
2100,
11,
1222,
15,
8,
198,
220,
220,
220,
664,
85,
29325,
198,
437,
198,
198,
8818,
1439,
70,
1032,
90,
51,
92,
7,
21280,
29325,
3712,
19182,
90,
51,
5512,
725,
3712,
6935,
8,
198,
220,
220,
220,
1439,
70,
1032,
7,
21280,
29325,
11,
4129,
7,
21280,
29325,
828,
725,
8,
198,
437,
198,
198,
8818,
1439,
70,
1032,
90,
51,
92,
7,
15252,
3712,
51,
11,
725,
3712,
6935,
8,
198,
220,
220,
220,
3758,
29325,
796,
309,
58,
15252,
60,
198,
220,
220,
220,
664,
85,
29325,
796,
1439,
70,
1032,
7,
21280,
29325,
11,
725,
8,
198,
220,
220,
220,
664,
85,
29325,
198,
437,
198,
198,
8818,
402,
1032,
85,
90,
51,
92,
7,
21280,
29325,
3712,
7378,
9865,
13712,
4906,
90,
51,
5512,
9853,
3712,
38469,
90,
34,
600,
5512,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6808,
3712,
46541,
11,
725,
3712,
6935,
8,
198,
220,
220,
220,
318,
15763,
796,
1520,
62,
43027,
7,
9503,
8,
6624,
6808,
198,
220,
220,
220,
7845,
82,
796,
269,
5700,
388,
7,
9127,
82,
8,
532,
9853,
198,
220,
220,
220,
3758,
66,
429,
796,
9853,
58,
6935,
62,
43027,
7,
9503,
8,
1343,
352,
60,
198,
220,
220,
220,
664,
85,
29325,
796,
15690,
7,
51,
11,
318,
15763,
5633,
2160,
7,
9127,
82,
8,
1058,
657,
8,
198,
220,
220,
220,
269,
13345,
7,
7378,
40,
62,
38,
45226,
53,
11,
18331,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
357,
46745,
90,
51,
5512,
350,
2213,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
5512,
350,
2213,
90,
51,
5512,
350,
2213,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
92,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3758,
29325,
11,
1222,
21280,
66,
429,
11,
1222,
3149,
414,
431,
7,
51,
828,
664,
85,
29325,
11,
9853,
11,
7845,
82,
11,
1222,
3149,
414,
431,
7,
51,
828,
1222,
15763,
11,
1222,
9503,
13,
2100,
11,
1222,
15,
8,
198,
220,
220,
220,
318,
15763,
5633,
664,
85,
29325,
1058,
2147,
198,
437,
198,
198,
8818,
1439,
70,
1032,
85,
90,
51,
92,
7,
21280,
29325,
3712,
7378,
9865,
13712,
4906,
90,
51,
5512,
9853,
3712,
38469,
90,
34,
600,
5512,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
725,
3712,
6935,
8,
198,
220,
220,
220,
7845,
82,
796,
269,
5700,
388,
7,
9127,
82,
8,
532,
9853,
198,
220,
220,
220,
3758,
66,
429,
796,
9853,
58,
6935,
62,
43027,
7,
9503,
8,
1343,
352,
60,
198,
220,
220,
220,
664,
85,
29325,
796,
15690,
7,
51,
11,
2160,
7,
9127,
82,
4008,
198,
220,
220,
220,
269,
13345,
7,
7378,
40,
62,
7036,
38,
45226,
53,
11,
18331,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
357,
46745,
90,
51,
5512,
350,
2213,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
5512,
350,
2213,
90,
51,
5512,
350,
2213,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
92,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3758,
29325,
11,
1222,
21280,
66,
429,
11,
1222,
3149,
414,
431,
7,
51,
828,
664,
85,
29325,
11,
9853,
11,
7845,
82,
11,
1222,
3149,
414,
431,
7,
51,
828,
1222,
9503,
13,
2100,
11,
1222,
15,
8,
198,
220,
220,
220,
664,
85,
29325,
198,
437,
198,
198,
8818,
1439,
1462,
439,
90,
51,
92,
7,
21280,
29325,
3712,
7378,
9865,
13712,
4906,
90,
51,
5512,
954,
3712,
46541,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
725,
3712,
6935,
8,
198,
220,
220,
220,
664,
85,
29325,
796,
15690,
7,
51,
11,
1520,
62,
7857,
7,
9503,
27493,
9127,
8,
198,
220,
220,
220,
269,
13345,
7,
7378,
40,
62,
7036,
10468,
7036,
11,
18331,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
357,
46745,
90,
51,
5512,
350,
2213,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
5512,
350,
2213,
90,
51,
5512,
350,
2213,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
92,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3758,
29325,
11,
1222,
9127,
11,
1222,
3149,
414,
431,
7,
51,
828,
664,
85,
29325,
11,
1222,
9127,
11,
1222,
3149,
414,
431,
7,
51,
828,
1222,
9503,
13,
2100,
11,
1222,
15,
8,
198,
220,
220,
220,
664,
85,
29325,
198,
437,
198,
198,
8818,
1439,
1462,
439,
85,
90,
51,
92,
7,
21280,
29325,
3712,
7378,
9865,
13712,
4906,
90,
51,
5512,
629,
608,
82,
3712,
38469,
90,
34,
600,
5512,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
374,
9127,
82,
3712,
38469,
90,
34,
600,
5512,
725,
3712,
6935,
8,
198,
220,
220,
220,
664,
85,
29325,
796,
15690,
7,
51,
11,
2160,
7,
6015,
608,
82,
4008,
198,
220,
220,
220,
264,
6381,
489,
82,
796,
269,
5700,
388,
7,
1416,
608,
82,
8,
532,
629,
608,
82,
198,
220,
220,
220,
374,
6381,
489,
82,
796,
269,
5700,
388,
7,
6015,
608,
82,
8,
532,
374,
9127,
82,
198,
220,
220,
220,
269,
13345,
7,
7378,
40,
62,
7036,
10468,
7036,
53,
11,
18331,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
357,
46745,
90,
51,
5512,
350,
2213,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
5512,
350,
2213,
90,
51,
5512,
350,
2213,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
92,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3758,
29325,
11,
629,
608,
82,
11,
264,
6381,
489,
82,
11,
1222,
3149,
414,
431,
7,
51,
828,
664,
85,
29325,
11,
374,
9127,
82,
11,
374,
6381,
489,
82,
11,
1222,
3149,
414,
431,
7,
51,
828,
1222,
9503,
13,
2100,
11,
1222,
15,
8,
198,
220,
220,
220,
664,
85,
29325,
198,
437,
198,
198,
8818,
20937,
90,
51,
92,
7,
21280,
29325,
3712,
7378,
9865,
13712,
4906,
90,
51,
5512,
954,
3712,
46541,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1034,
3712,
18257,
11,
725,
3712,
6935,
8,
198,
220,
220,
220,
664,
85,
29325,
796,
15690,
7,
51,
11,
954,
8,
198,
220,
220,
220,
269,
13345,
7,
7378,
40,
62,
6173,
1565,
11,
18331,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
357,
46745,
90,
51,
5512,
350,
2213,
90,
51,
5512,
350,
2213,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
92,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3758,
29325,
11,
664,
85,
29325,
11,
1222,
9127,
11,
1222,
3149,
414,
431,
7,
51,
828,
1222,
404,
13,
2100,
11,
1222,
9503,
13,
2100,
11,
1222,
15,
8,
198,
220,
220,
220,
664,
85,
29325,
198,
437,
198,
198,
8818,
20937,
90,
51,
92,
7,
15252,
3712,
51,
11,
1034,
3712,
18257,
11,
725,
3712,
6935,
8,
198,
220,
220,
220,
3758,
29325,
796,
309,
58,
15252,
60,
198,
220,
220,
220,
20937,
7,
21280,
29325,
11,
16,
11,
404,
11,
9503,
8,
198,
437,
198,
198,
8818,
1475,
35836,
90,
51,
92,
7,
21280,
29325,
3712,
7378,
9865,
13712,
4906,
90,
51,
5512,
954,
3712,
46541,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1034,
3712,
18257,
11,
725,
3712,
6935,
8,
198,
220,
220,
220,
664,
85,
29325,
796,
15690,
7,
51,
11,
954,
8,
198,
220,
220,
220,
269,
13345,
7,
7378,
40,
62,
6369,
6173,
1565,
11,
18331,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
357,
46745,
90,
51,
5512,
350,
2213,
90,
51,
5512,
350,
2213,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
5512,
350,
2213,
90,
34,
600,
92,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3758,
29325,
11,
664,
85,
29325,
11,
1222,
9127,
11,
1222,
3149,
414,
431,
7,
51,
828,
1222,
404,
13,
2100,
11,
1222,
9503,
13,
2100,
11,
1222,
15,
8,
198,
220,
220,
220,
664,
85,
29325,
198,
437,
198,
198,
8818,
1475,
35836,
90,
51,
92,
7,
15252,
3712,
51,
11,
1034,
3712,
18257,
11,
725,
3712,
6935,
8,
198,
220,
220,
220,
3758,
29325,
796,
309,
58,
15252,
60,
198,
220,
220,
220,
1475,
35836,
7,
21280,
29325,
11,
16,
11,
404,
11,
9503,
8,
198,
437,
198,
198,
2,
44101,
1022,
327,
290,
6401,
2596,
1520,
17105,
25,
198,
361,
21515,
62,
7378,
40,
62,
9858,
44,
62,
34,
17,
37,
198,
220,
220,
220,
1303,
779,
4904,
40,
62,
6935,
62,
69,
17,
66,
290,
4904,
40,
62,
6935,
62,
66,
17,
69,
198,
220,
220,
220,
7308,
13,
1102,
1851,
7,
3712,
6030,
90,
4093,
2002,
5512,
725,
3712,
6935,
8,
796,
198,
220,
220,
220,
220,
220,
220,
220,
269,
13345,
7,
25,
7378,
40,
62,
6935,
62,
69,
17,
66,
11,
327,
6935,
11,
357,
34,
600,
11,
828,
725,
13,
2100,
8,
198,
220,
220,
220,
7308,
13,
1102,
1851,
7,
3712,
6030,
90,
6935,
5512,
269,
9503,
3712,
4093,
2002,
8,
796,
198,
220,
220,
220,
220,
220,
220,
220,
1520,
7,
535,
439,
7,
25,
7378,
40,
62,
6935,
62,
66,
17,
69,
11,
327,
600,
11,
357,
4093,
2002,
11,
828,
269,
9503,
4008,
198,
17772,
361,
39364,
7,
4093,
2002,
8,
6624,
39364,
7,
34,
600,
8,
198,
220,
220,
220,
1303,
287,
4904,
20739,
11,
1111,
327,
290,
6401,
2596,
779,
10411,
327,
600,
725,
17105,
198,
220,
220,
220,
1303,
290,
4904,
40,
62,
6935,
62,
66,
17,
69,
318,
407,
2810,
13,
198,
220,
220,
220,
7308,
13,
1102,
1851,
7,
3712,
6030,
90,
4093,
2002,
5512,
725,
3712,
6935,
8,
796,
302,
27381,
7,
4093,
2002,
11,
725,
13,
2100,
8,
198,
220,
220,
220,
7308,
13,
1102,
1851,
7,
3712,
6030,
90,
6935,
5512,
269,
9503,
3712,
4093,
2002,
8,
796,
1520,
7,
260,
27381,
7,
34,
600,
11,
269,
9503,
4008,
198,
17772,
198,
220,
220,
220,
9828,
7203,
2949,
4904,
40,
62,
6935,
62,
66,
17,
69,
1043,
532,
11315,
284,
14,
6738,
4904,
40,
13,
4093,
2002,
481,
407,
670,
4943,
198,
437,
198
] | 2.065334 | 11,403 |
using Bolt
using BenchmarkTools
par = CosmoParams()
bg = Background(par)
ih = IonizationHistory(Peebles(), par, bg)
k_grid = quadratic_k(0.1bg.H₀, 1000bg.H₀, 100)
k_i = 10
hierarchy = Hierarchy(BasicNewtonian(), par, bg, ih, k_grid[k_i])
xᵢ = log(1e-8)
u₀ = Bolt.initial_conditions(xᵢ, hierarchy)
udummy = deepcopy(u₀)
@btime Bolt.hierarchy!(udummy, u₀, hierarchy, xᵢ)
##
@time perturb = boltsolve(hierarchy);
##
@time sf = source_grid(par, bg, ih, k_grid, BasicNewtonian());
##
| [
3500,
21764,
198,
3500,
25187,
4102,
33637,
198,
198,
1845,
796,
10437,
5908,
10044,
4105,
3419,
198,
35904,
796,
25353,
7,
1845,
8,
198,
4449,
796,
36404,
1634,
18122,
7,
47,
1453,
7689,
22784,
1582,
11,
275,
70,
8,
198,
198,
74,
62,
25928,
796,
15094,
81,
1512,
62,
74,
7,
15,
13,
16,
35904,
13,
39,
158,
224,
222,
11,
8576,
35904,
13,
39,
158,
224,
222,
11,
1802,
8,
198,
74,
62,
72,
796,
838,
198,
71,
959,
9282,
796,
36496,
9282,
7,
26416,
3791,
1122,
666,
22784,
1582,
11,
275,
70,
11,
1312,
71,
11,
479,
62,
25928,
58,
74,
62,
72,
12962,
198,
198,
87,
39611,
95,
796,
2604,
7,
16,
68,
12,
23,
8,
198,
84,
158,
224,
222,
796,
21764,
13,
36733,
62,
17561,
1756,
7,
87,
39611,
95,
11,
18911,
8,
198,
463,
13513,
796,
2769,
30073,
7,
84,
158,
224,
222,
8,
198,
31,
65,
2435,
21764,
13,
71,
959,
9282,
0,
7,
463,
13513,
11,
334,
158,
224,
222,
11,
18911,
11,
2124,
39611,
95,
8,
198,
198,
2235,
198,
31,
2435,
22146,
5945,
796,
24667,
6442,
7,
71,
959,
9282,
1776,
198,
198,
2235,
198,
31,
2435,
264,
69,
796,
2723,
62,
25928,
7,
1845,
11,
275,
70,
11,
1312,
71,
11,
479,
62,
25928,
11,
14392,
3791,
1122,
666,
35430,
198,
198,
2235,
198
] | 2.155556 | 225 |
# Load Julia packages (libraries) needed
using StatisticalRethinking
# ### snippet 2.1
ways = [0, 3, 8, 9, 0];
#-
ways/sum(ways)
# ### snippet 2.2
# Create a distribution with n = 9 (e.g. tosses) and p = 0.5.
d = Binomial(9, 0.5)
# Probability density for 6 `waters` holding n = 9 and p = 0.5.
pdf(d, 6)
# End of `02/clip-01-02.jl`
| [
2,
8778,
22300,
10392,
357,
75,
11127,
8,
2622,
198,
198,
3500,
34931,
49,
2788,
8040,
198,
198,
2,
44386,
39442,
362,
13,
16,
198,
198,
1322,
220,
796,
685,
15,
11,
513,
11,
807,
11,
860,
11,
657,
11208,
198,
198,
2,
12,
198,
198,
1322,
14,
16345,
7,
1322,
8,
198,
198,
2,
44386,
39442,
362,
13,
17,
198,
198,
2,
13610,
257,
6082,
351,
299,
796,
860,
357,
68,
13,
70,
13,
12153,
274,
8,
290,
279,
796,
657,
13,
20,
13,
198,
198,
67,
796,
20828,
49070,
7,
24,
11,
657,
13,
20,
8,
198,
198,
2,
30873,
1799,
12109,
329,
718,
4600,
41555,
63,
4769,
299,
796,
860,
290,
279,
796,
657,
13,
20,
13,
198,
198,
12315,
7,
67,
11,
718,
8,
198,
198,
2,
5268,
286,
4600,
2999,
14,
15036,
12,
486,
12,
2999,
13,
20362,
63,
198
] | 2.372414 | 145 |
# Contains all helper functions for Tmatrix module
using LinearAlgebra
"""
Calculate dot product for two vectors.
# I made this function because the "dot" function in LinearAlgebra package doesn't work as expected for complex vectors.
Parameters
A, B : two vectors
# Returns
scalar dot product
"""
function vector_dot_product(A, B)
return sum(A .* B)
end
"""
Create a meshgrid, to be used with numerical integrals.
The meshgrid created is following this rule:
x_grid[dim1,dim2]
dim1 corresponds to x index
dim2 corresponds to y index
"""
function meshgrid(x, y)
x_grid = repeat(x, 1, length(y))
y_grid = repeat(y', length(x), 1)
return x_grid, y_grid
end
"""
Create meshgrid of θ and ϕ
"""
function meshgrid_θ_ϕ(
n_θ_points,
n_ϕ_points;
min_θ = 1e-16,
min_ϕ = 1e-16,
rotationally_symmetric = false,
)
#TODO can avoid min values w full algebra
θ_1D_array = LinRange(min_θ, π, n_θ_points)
ϕ_1D_array = LinRange(min_ϕ, 2π, n_ϕ_points)
if rotationally_symmetric
θ_array = collect(θ_1D_array)
ϕ_array = zeros(size(θ_array))
else
θ_array, ϕ_array = meshgrid(θ_1D_array, ϕ_1D_array)
end
return θ_array, ϕ_array
end
"""
Create a single index from m and n
We fill the index like this:
`idx = 0 for n = 1:n_max for m = -n:n global idx idx += 1 end end`
"""
function single_index_from_m_n(m::Int, n::Int)
return n * (n + 1) + m
end
"""
Get the maximum single index, given the maximum n.
"""
function get_max_single_index_from_n_max(n_max::Int)
return single_index_from_m_n(n_max, n_max)
end
"""
Multiply the integrand by the `dS` element, which equals r²sin(θ)
"""
function surface_integrand(
integrand::AbstractVecOrMat{C},
r_array::AbstractVecOrMat{R},
θ_array::AbstractVecOrMat{R},
) where {R <: Real, C <: Complex{R}}
return integrand .* r_array .^ 2 .* sin.(θ_array)
end
"""
Multiply the integrand by the `dS` element, which equals r²sin(θ)
"""
function surface_integrand(
integrand::AbstractVecOrMat{R},
r_array::AbstractVecOrMat{R},
θ_array::AbstractVecOrMat{R},
) where {R <: Real}
return integrand .* r_array .^ 2 .* sin.(θ_array)
end
"""
Multiply the integrand by the `dS` element, which equals r²sin(θ)
"""
function surface_integrand(
integrand::AbstractVecOrMat{Matrix{C}},
r_array::AbstractVecOrMat{R},
θ_array::AbstractVecOrMat{R},
) where {R <: Real, C <: Complex{R}}
return integrand .* r_array .^ 2 .* sin.(θ_array)
end
"""
Multiply the integrand by the `dS` element, which equals r²sin(θ)
"""
function surface_integrand(
integrand::AbstractVecOrMat{Matrix{R}},
r_array::AbstractVecOrMat{R},
θ_array::AbstractVecOrMat{R},
) where {R <: Real, C <: Complex{R}}
return integrand .* r_array .^ 2 .* sin.(θ_array)
end
"""
Save T-matrix to HDF5 file, with fields "Tmatrix_real_CELES_convention" and "Tmatrix_imag_CELES_convention"
"""
function save_Tmatrix_to_HDF5_file(T, HDF5_filename)
h5write(HDF5_filename, "Tmatrix_real_CELES_convention", Float64.(real(T))) # TODO: can we store BigFloat in HDF5? I converted to `Float64` because I couldn't read the file when I stored BigFloat
h5write(HDF5_filename, "Tmatrix_imag_CELES_convention", Float64.(imag(T)))
end
# getting indices of T-matrix
"""
Get 2D array, first and second columns are n and m values, respectively.
m = -n : 1 : +n
n will be the repeated value of input
"""
function get_n_m_array_given_n(n)
return hcat(repeat([n], 2 * n + 1), (-n):n)
end
"""
Get 2D array, first and second columns are n and m values, respectively.
This is looping `get_n_m_array_given_n` over all n = 1:1:n_max
"""
function get_n_m_array_given_n_max(n_max)
return vcat(get_n_m_array_given_n.(1:n_max)...)
end
"""
Get 2D array, first, second and third columns are n, m, and idx values, respectively.
The idx value is just the index of the row.
"""
function get_n_m_idx_array_given_n_max(n_max)
nm_array = get_n_m_array_given_n_max(n_max)
return hcat(nm_array, 1:size(nm_array, 1))
end
"""
Get 4 matrices for m, n, m_, n_, corresponding to rank and order of incident and scattered VSWF, represented by elements of T-matrix
## Arguments
n_max : Int, determine the size of the T-matrix
## Returns
m_matrix, n_matrix, m__matrix, n__matrix : each is a square matrix
"""
function get_m_n_m__n__matrices_for_T_matrix(n_max)
n_m_idx = get_n_m_idx_array_given_n_max(n_max)
n_array = n_m_idx[:, 1]
m_array = n_m_idx[:, 2]
idx_array = n_m_idx[:, 3]
idx_max = idx_array[end]
idx_matrix = repeat(idx_array, 1, idx_max)
idx__matrix = repeat(idx_array', idx_max, 1)
n_matrix = n_array[idx_matrix]
m_matrix = m_array[idx_matrix]
n__matrix = n_array[idx__matrix]
m__matrix = m_array[idx__matrix]
return m_matrix, n_matrix, m__matrix, n__matrix
end
"""
using for loops, Get 4 matrices for m, n, m_, n_, corresponding to rank and order of incident and scattered VSWF, represented by elements of T-matrix
"""
function get_m_n_m__n__matrices_for_T_matrix_with_forloop(n_max)
idx_max = Tmatrix.get_max_single_index_from_n_max(n_max)
n_matrix = zeros(Int, idx_max, idx_max)
m_matrix = zeros(Int, idx_max, idx_max)
n__matrix = zeros(Int, idx_max, idx_max)
m__matrix = zeros(Int, idx_max, idx_max)
idx = 0
for n in 1:n_max
for m in (-n):n
idx += 1
idx_ = 0
for n_ in 1:n_max
for m_ in (-n_):n_
idx_ += 1
m_matrix[idx, idx_] = m
n_matrix[idx, idx_] = n
m__matrix[idx, idx_] = m_
n__matrix[idx, idx_] = n_
end
end
end
end
return m_matrix, n_matrix, m__matrix, n__matrix
end
"""
Create m,n,m_,n_ matrices with for loop, and compare the result with `get_m_n_m__n__matrices_for_T_matrix`
"""
function validate_get_m_n_m__n__matrices_for_T_matrix(n_max)
m_matrix, n_matrix, m__matrix, n__matrix =
get_m_n_m__n__matrices_for_T_matrix_with_forloop(n_max)
_m_matrix, _n_matrix, _m__matrix, _n__matrix =
get_m_n_m__n__matrices_for_T_matrix(n_max)
println(_n_matrix == n_matrix)
println(_m_matrix == m_matrix)
println(_n__matrix == n__matrix)
println(_m__matrix == m__matrix)
end
#######################
# TOBE moved to a new package for trapezoidal integraion, that will be compatible with autodiff
"""
1D numerical integral using trapezoidal rule
x and y are 1D arrays
"""
#TODO rename to not elzouka lol
function trapz_ELZOUKA(
x::AbstractVector{R},
y::AbstractVector{N},
) where {R <: Real, N <: Number}
# TODO: small error if compared with Trapz.trapz
base = x[2:end] - x[1:(end - 1)]
av_height = (y[2:end] + y[1:(end - 1)]) / 2
areas = base .* av_height
total_area = sum(areas)
return total_area
end
"""
2D numerical integral using trapezoidal rule
x and y are 1D arrays, z is 2D array
"""
function trapz_ELZOUKA(
x::AbstractVector{R},
y::AbstractVector{R},
z::AbstractMatrix{N},
) where {R <: Real, N <: Number}
integrand_wrt_x = trapz_ELZOUKA.(eachcol(repeat(x, 1, size(z, 2))), eachcol(z))
return trapz_ELZOUKA(y, integrand_wrt_x)
end
#######################
# Calculate orientation-averaged sscattering, extinction and absorption cross sections.
"""
calculate orientation averaged scattering cross section given a T-matrix and a wavevector.
Input T-matrix can be a complex square matrix or a concatenation of separate real and imag parts of T-matrix
"""
function get_OrentationAv_scattering_CrossSection_from_Tmatrix(
T::AbstractMatrix,
k1::C,
) where {C <: Complex}
if size(T)[1] == size(T)[2] # if T-matrix is a square matrix, then T-matrix is complex
return real(2 * pi / k1^2 * sum(T .* conj(T)))
elseif size(T)[1] == size(T)[2] / 2 # if T-matrix has number of columns double the number of rows, then T-matrix is hcat() of real and imag parts of Tmatrix
return get_OrentationAv_scattering_CrossSection_from_Tmatrix_SeparateRealImag(
T,
real(k1),
imag(k1),
)
end
end
"""
calculate orientation averaged scattering cross section given a T-matrix, wavelength and optical properties of surrounding.
Input T-matrix can be a complex square matrix or a concatenation of separate real and imag parts of T-matrix
"""
function get_OrentationAv_scattering_CrossSection_from_Tmatrix(
T::AbstractMatrix,
wl_or_freq_input::R,
input_unit::String,
Eps_r_1::C,
Mu_r_1::C,
) where {C <: Complex, R <: Real}
return get_OrentationAv_scattering_CrossSection_from_Tmatrix(
T,
get_WaveVector(
wl_or_freq_input;
input_unit = input_unit,
Eps_r = Eps_r_1,
Mu_r = Mu_r_1,
),
)
end
"""
calculate orientation averaged scattering cross section given a T-matrix and a wavevector. This works for "_SeparateRealImag"
"""
function get_OrentationAv_scattering_CrossSection_from_Tmatrix_SeparateRealImag(
T::AbstractMatrix{R},
k1_r::R,
k1_i::R,
) where {R <: Real}
T_r, T_i = Tmatrix.separate_real_imag(T)
T_by_conjT_sum = sum(complex_multiply.(T_r, T_i, T_r, -T_i))
k1_squared = complex_multiply(k1_r, k1_i, k1_r, k1_i)
two_pi_over_k1_squared = complex_divide(2 * pi, 0, k1_squared[1], k1_squared[2])
return complex_multiply(
two_pi_over_k1_squared[1],
two_pi_over_k1_squared[2],
T_by_conjT_sum[1],
T_by_conjT_sum[2],
)[1]
end
"""
calculate orientation averaged extinction cross section given a T-matrix and a wavevector.
"""
function get_OrentationAv_extinction_CrossSection_from_Tmatrix(
T::AbstractMatrix,
k1::C,
) where {C <: Complex}
if size(T)[1] == size(T)[2] # if T-matrix is a square matrix, then T-matrix is complex
return real(-2 * pi / k1^2 * tr(real(T)))
elseif size(T)[1] == size(T)[2] / 2 # if T-matrix has number of columns double the number of rows, then T-matrix is hcat() of real and imag parts of Tmatrix
return get_OrentationAv_extinction_CrossSection_from_Tmatrix_SeparateRealImag(
T,
real(k1),
imag(k1),
)
end
end
"""
calculate orientation averaged extinction cross section given a T-matrix and a wavevector. This works for "_SeparateRealImag"
"""
function get_OrentationAv_extinction_CrossSection_from_Tmatrix_SeparateRealImag(
T::AbstractMatrix{R},
k1_r::R,
k1_i::R,
) where {R <: Real}
T_r, T_i = Tmatrix.separate_real_imag(T)
k1_squared = complex_multiply(k1_r, k1_i, k1_r, k1_i)
two_pi_over_k1_squared = complex_divide(2 * pi, 0, k1_squared[1], k1_squared[2])
return -two_pi_over_k1_squared[1] * tr(T_r)
end
"""
calculate orientation averaged absorption cross section given a T-matrix and a wavevector.
"""
function get_OrentationAv_absorption_CrossSection_from_Tmatrix(
T::AbstractMatrix,
k1::C,
) where {C <: Complex}
return get_OrentationAv_extinction_CrossSection_from_Tmatrix(T, k1) -
get_OrentationAv_scattering_CrossSection_from_Tmatrix(T, k1)
end
"""
calculate orientation averaged absorption cross section given a T-matrix and a wavevector. This works for "_SeparateRealImag"
"""
function get_OrentationAv_absorption_CrossSection_from_Tmatrix_SeparateRealImag(
T::AbstractMatrix{R},
k1_r::R,
k1_i::R,
) where {R <: Real}
return get_OrentationAv_extinction_CrossSection_from_Tmatrix_SeparateRealImag(
T,
k1_r,
k1_i,
) - get_OrentationAv_scattering_CrossSection_from_Tmatrix_SeparateRealImag(
T,
k1_r,
k1_i,
)
end
"""
calculate orientation averaged emissivity cross section given a T-matrix and a wavevector.
`particle_surface_area` has to be in units consistent with wavevector units. If waveevctor unit is per m, then the particle surface area has to be in m^2
"""
function get_OrentationAv_emissivity_from_Tmatrix(
T::AbstractMatrix,
k1::C,
particle_surface_area::R,
) where {R <: Real, C <: Complex}
return get_OrentationAv_absorption_CrossSection_from_Tmatrix(T, k1) * 4 /
particle_surface_area
end
"""
calculate orientation averaged emissivity cross section given a T-matrix and a wavevector. This works for "_SeparateRealImag"
`particle_surface_area` has to be in units consistent with wavevector units. If waveevctor unit is per m, then the particle surface area has to be in m^2
"""
function get_OrentationAv_emissivity_from_Tmatrix_SeparateRealImag(
T::AbstractMatrix{R},
k1_r::R,
k1_i::R,
particle_surface_area::R,
) where {R <: Real}
return get_OrentationAv_absorption_CrossSection_from_Tmatrix_SeparateRealImag(
T,
k1_r,
k1_i,
) * 4 / particle_surface_area
end
"""
calculate orientation averaged emissivity cross section given a T-matrix, wavelength and optical properties of surrounding. This works for "_SeparateRealImag"
`particle_surface_area` has to be in units consistent with wavevector units. If waveevctor unit is per m, then the particle surface area has to be in m^2
"""
function get_OrentationAv_emissivity_from_Tmatrix_SeparateRealImag(
T::AbstractMatrix{R},
wl_or_freq_input::R,
input_unit::String,
Eps_r_r_1::R,
Eps_r_i_1::R,
Mu_r_r_1::R,
Mu_r_i_1::R,
particle_surface_area::R,
) where {R <: Real}
k1_complex = get_WaveVector(
wl_or_freq_input;
input_unit = input_unit,
Eps_r = Complex(Eps_r_r_1, Eps_r_i_1),
Mu_r = Complex(Mu_r_r_1, Mu_r_i_1),
)
return get_OrentationAv_absorption_CrossSection_from_Tmatrix_SeparateRealImag(
T,
k1_r,
k1_i,
) * 4 / particle_surface_area
end
| [
2,
49850,
477,
31904,
5499,
329,
309,
6759,
8609,
8265,
198,
198,
3500,
44800,
2348,
29230,
198,
198,
37811,
198,
220,
220,
220,
27131,
378,
16605,
1720,
329,
734,
30104,
13,
198,
198,
2,
314,
925,
428,
2163,
780,
262,
366,
26518,
1,
2163,
287,
44800,
2348,
29230,
5301,
1595,
470,
670,
355,
2938,
329,
3716,
30104,
13,
198,
198,
48944,
198,
198,
32,
11,
347,
1058,
734,
30104,
198,
198,
2,
16409,
198,
198,
1416,
282,
283,
16605,
1720,
198,
37811,
198,
8818,
15879,
62,
26518,
62,
11167,
7,
32,
11,
347,
8,
198,
220,
220,
220,
1441,
2160,
7,
32,
764,
9,
347,
8,
198,
437,
198,
198,
37811,
198,
220,
220,
220,
13610,
257,
19609,
25928,
11,
284,
307,
973,
351,
29052,
4132,
30691,
13,
198,
198,
464,
19609,
25928,
2727,
318,
1708,
428,
3896,
25,
198,
87,
62,
25928,
58,
27740,
16,
11,
27740,
17,
60,
198,
27740,
16,
24866,
284,
2124,
6376,
198,
27740,
17,
24866,
284,
331,
6376,
198,
37811,
198,
8818,
19609,
25928,
7,
87,
11,
331,
8,
198,
220,
220,
220,
2124,
62,
25928,
796,
9585,
7,
87,
11,
352,
11,
4129,
7,
88,
4008,
198,
220,
220,
220,
331,
62,
25928,
796,
9585,
7,
88,
3256,
4129,
7,
87,
828,
352,
8,
198,
220,
220,
220,
1441,
2124,
62,
25928,
11,
331,
62,
25928,
198,
437,
198,
198,
37811,
198,
220,
220,
220,
13610,
19609,
25928,
286,
7377,
116,
290,
18074,
243,
198,
37811,
198,
8818,
19609,
25928,
62,
138,
116,
62,
139,
243,
7,
198,
220,
220,
220,
299,
62,
138,
116,
62,
13033,
11,
198,
220,
220,
220,
299,
62,
139,
243,
62,
13033,
26,
198,
220,
220,
220,
949,
62,
138,
116,
796,
352,
68,
12,
1433,
11,
198,
220,
220,
220,
949,
62,
139,
243,
796,
352,
68,
12,
1433,
11,
198,
220,
220,
220,
13179,
453,
62,
1837,
3020,
19482,
796,
3991,
11,
198,
8,
198,
220,
220,
220,
1303,
51,
3727,
46,
460,
3368,
949,
3815,
266,
1336,
37139,
198,
220,
220,
220,
7377,
116,
62,
16,
35,
62,
18747,
796,
5164,
17257,
7,
1084,
62,
138,
116,
11,
18074,
222,
11,
299,
62,
138,
116,
62,
13033,
8,
198,
220,
220,
220,
18074,
243,
62,
16,
35,
62,
18747,
796,
5164,
17257,
7,
1084,
62,
139,
243,
11,
362,
46582,
11,
299,
62,
139,
243,
62,
13033,
8,
198,
220,
220,
220,
611,
13179,
453,
62,
1837,
3020,
19482,
198,
220,
220,
220,
220,
220,
220,
220,
7377,
116,
62,
18747,
796,
2824,
7,
138,
116,
62,
16,
35,
62,
18747,
8,
198,
220,
220,
220,
220,
220,
220,
220,
18074,
243,
62,
18747,
796,
1976,
27498,
7,
7857,
7,
138,
116,
62,
18747,
4008,
198,
220,
220,
220,
2073,
198,
220,
220,
220,
220,
220,
220,
220,
7377,
116,
62,
18747,
11,
18074,
243,
62,
18747,
796,
19609,
25928,
7,
138,
116,
62,
16,
35,
62,
18747,
11,
18074,
243,
62,
16,
35,
62,
18747,
8,
198,
220,
220,
220,
886,
198,
220,
220,
220,
1441,
7377,
116,
62,
18747,
11,
18074,
243,
62,
18747,
198,
437,
198,
198,
37811,
198,
16447,
257,
2060,
6376,
422,
285,
290,
299,
198,
1135,
6070,
262,
6376,
588,
428,
25,
198,
63,
312,
87,
796,
657,
329,
299,
796,
352,
25,
77,
62,
9806,
220,
220,
220,
220,
329,
285,
796,
532,
77,
25,
77,
3298,
4686,
87,
4686,
87,
15853,
352,
886,
886,
63,
198,
37811,
198,
8818,
2060,
62,
9630,
62,
6738,
62,
76,
62,
77,
7,
76,
3712,
5317,
11,
299,
3712,
5317,
8,
198,
220,
220,
220,
1441,
299,
1635,
357,
77,
1343,
352,
8,
1343,
285,
198,
437,
198,
198,
37811,
198,
220,
220,
220,
3497,
262,
5415,
2060,
6376,
11,
1813,
262,
5415,
299,
13,
198,
37811,
198,
8818,
651,
62,
9806,
62,
29762,
62,
9630,
62,
6738,
62,
77,
62,
9806,
7,
77,
62,
9806,
3712,
5317,
8,
198,
220,
220,
220,
1441,
2060,
62,
9630,
62,
6738,
62,
76,
62,
77,
7,
77,
62,
9806,
11,
299,
62,
9806,
8,
198,
437,
198,
198,
37811,
198,
220,
220,
220,
7854,
541,
306,
262,
4132,
25192,
416,
262,
4600,
67,
50,
63,
5002,
11,
543,
21767,
374,
31185,
31369,
7,
138,
116,
8,
198,
37811,
198,
8818,
4417,
62,
18908,
25192,
7,
198,
220,
220,
220,
4132,
25192,
3712,
23839,
53,
721,
5574,
19044,
90,
34,
5512,
198,
220,
220,
220,
374,
62,
18747,
3712,
23839,
53,
721,
5574,
19044,
90,
49,
5512,
198,
220,
220,
220,
7377,
116,
62,
18747,
3712,
23839,
53,
721,
5574,
19044,
90,
49,
5512,
198,
8,
810,
1391,
49,
1279,
25,
6416,
11,
327,
1279,
25,
19157,
90,
49,
11709,
198,
220,
220,
220,
1441,
4132,
25192,
764,
9,
374,
62,
18747,
764,
61,
362,
764,
9,
7813,
12195,
138,
116,
62,
18747,
8,
198,
437,
198,
198,
37811,
198,
220,
220,
220,
7854,
541,
306,
262,
4132,
25192,
416,
262,
4600,
67,
50,
63,
5002,
11,
543,
21767,
374,
31185,
31369,
7,
138,
116,
8,
198,
37811,
198,
8818,
4417,
62,
18908,
25192,
7,
198,
220,
220,
220,
4132,
25192,
3712,
23839,
53,
721,
5574,
19044,
90,
49,
5512,
198,
220,
220,
220,
374,
62,
18747,
3712,
23839,
53,
721,
5574,
19044,
90,
49,
5512,
198,
220,
220,
220,
7377,
116,
62,
18747,
3712,
23839,
53,
721,
5574,
19044,
90,
49,
5512,
198,
8,
810,
1391,
49,
1279,
25,
6416,
92,
198,
220,
220,
220,
1441,
4132,
25192,
764,
9,
374,
62,
18747,
764,
61,
362,
764,
9,
7813,
12195,
138,
116,
62,
18747,
8,
198,
437,
198,
198,
37811,
198,
220,
220,
220,
7854,
541,
306,
262,
4132,
25192,
416,
262,
4600,
67,
50,
63,
5002,
11,
543,
21767,
374,
31185,
31369,
7,
138,
116,
8,
198,
37811,
198,
8818,
4417,
62,
18908,
25192,
7,
198,
220,
220,
220,
4132,
25192,
3712,
23839,
53,
721,
5574,
19044,
90,
46912,
90,
34,
92,
5512,
198,
220,
220,
220,
374,
62,
18747,
3712,
23839,
53,
721,
5574,
19044,
90,
49,
5512,
198,
220,
220,
220,
7377,
116,
62,
18747,
3712,
23839,
53,
721,
5574,
19044,
90,
49,
5512,
198,
8,
810,
1391,
49,
1279,
25,
6416,
11,
327,
1279,
25,
19157,
90,
49,
11709,
198,
220,
220,
220,
1441,
4132,
25192,
764,
9,
374,
62,
18747,
764,
61,
362,
764,
9,
7813,
12195,
138,
116,
62,
18747,
8,
198,
437,
198,
198,
37811,
198,
220,
220,
220,
7854,
541,
306,
262,
4132,
25192,
416,
262,
4600,
67,
50,
63,
5002,
11,
543,
21767,
374,
31185,
31369,
7,
138,
116,
8,
198,
37811,
198,
8818,
4417,
62,
18908,
25192,
7,
198,
220,
220,
220,
4132,
25192,
3712,
23839,
53,
721,
5574,
19044,
90,
46912,
90,
49,
92,
5512,
198,
220,
220,
220,
374,
62,
18747,
3712,
23839,
53,
721,
5574,
19044,
90,
49,
5512,
198,
220,
220,
220,
7377,
116,
62,
18747,
3712,
23839,
53,
721,
5574,
19044,
90,
49,
5512,
198,
8,
810,
1391,
49,
1279,
25,
6416,
11,
327,
1279,
25,
19157,
90,
49,
11709,
198,
220,
220,
220,
1441,
4132,
25192,
764,
9,
374,
62,
18747,
764,
61,
362,
764,
9,
7813,
12195,
138,
116,
62,
18747,
8,
198,
437,
198,
198,
37811,
198,
220,
220,
220,
12793,
309,
12,
6759,
8609,
284,
5572,
37,
20,
2393,
11,
351,
7032,
366,
51,
6759,
8609,
62,
5305,
62,
34,
3698,
1546,
62,
1102,
4018,
1,
290,
366,
51,
6759,
8609,
62,
48466,
62,
34,
3698,
1546,
62,
1102,
4018,
1,
198,
37811,
198,
8818,
3613,
62,
51,
6759,
8609,
62,
1462,
62,
39,
8068,
20,
62,
7753,
7,
51,
11,
5572,
37,
20,
62,
34345,
8,
198,
220,
220,
220,
289,
20,
13564,
7,
39,
8068,
20,
62,
34345,
11,
366,
51,
6759,
8609,
62,
5305,
62,
34,
3698,
1546,
62,
1102,
4018,
1600,
48436,
2414,
12195,
5305,
7,
51,
22305,
1303,
16926,
46,
25,
460,
356,
3650,
4403,
43879,
287,
5572,
37,
20,
30,
314,
11513,
284,
4600,
43879,
2414,
63,
780,
314,
3521,
470,
1100,
262,
2393,
618,
314,
8574,
4403,
43879,
198,
220,
220,
220,
289,
20,
13564,
7,
39,
8068,
20,
62,
34345,
11,
366,
51,
6759,
8609,
62,
48466,
62,
34,
3698,
1546,
62,
1102,
4018,
1600,
48436,
2414,
12195,
48466,
7,
51,
22305,
198,
437,
198,
198,
2,
1972,
36525,
286,
309,
12,
6759,
8609,
198,
37811,
198,
220,
220,
220,
3497,
362,
35,
7177,
11,
717,
290,
1218,
15180,
389,
299,
290,
285,
3815,
11,
8148,
13,
198,
198,
76,
796,
532,
77,
1058,
352,
1058,
1343,
77,
198,
77,
481,
307,
262,
5100,
1988,
286,
5128,
198,
37811,
198,
8818,
651,
62,
77,
62,
76,
62,
18747,
62,
35569,
62,
77,
7,
77,
8,
198,
220,
220,
220,
1441,
289,
9246,
7,
44754,
26933,
77,
4357,
362,
1635,
299,
1343,
352,
828,
13841,
77,
2599,
77,
8,
198,
437,
198,
198,
37811,
198,
220,
220,
220,
3497,
362,
35,
7177,
11,
717,
290,
1218,
15180,
389,
299,
290,
285,
3815,
11,
8148,
13,
198,
198,
1212,
318,
9052,
278,
4600,
1136,
62,
77,
62,
76,
62,
18747,
62,
35569,
62,
77,
63,
625,
477,
299,
796,
352,
25,
16,
25,
77,
62,
9806,
198,
37811,
198,
8818,
651,
62,
77,
62,
76,
62,
18747,
62,
35569,
62,
77,
62,
9806,
7,
77,
62,
9806,
8,
198,
220,
220,
220,
1441,
410,
9246,
7,
1136,
62,
77,
62,
76,
62,
18747,
62,
35569,
62,
77,
12195,
16,
25,
77,
62,
9806,
8,
23029,
198,
437,
198,
198,
37811,
198,
220,
220,
220,
3497,
362,
35,
7177,
11,
717,
11,
1218,
290,
2368,
15180,
389,
299,
11,
285,
11,
290,
4686,
87,
3815,
11,
8148,
13,
198,
198,
464,
4686,
87,
1988,
318,
655,
262,
6376,
286,
262,
5752,
13,
198,
37811,
198,
8818,
651,
62,
77,
62,
76,
62,
312,
87,
62,
18747,
62,
35569,
62,
77,
62,
9806,
7,
77,
62,
9806,
8,
198,
220,
220,
220,
28642,
62,
18747,
796,
651,
62,
77,
62,
76,
62,
18747,
62,
35569,
62,
77,
62,
9806,
7,
77,
62,
9806,
8,
198,
220,
220,
220,
1441,
289,
9246,
7,
21533,
62,
18747,
11,
352,
25,
7857,
7,
21533,
62,
18747,
11,
352,
4008,
198,
437,
198,
198,
37811,
198,
220,
220,
220,
3497,
604,
2603,
45977,
329,
285,
11,
299,
11,
285,
62,
11,
299,
62,
11,
11188,
284,
4279,
290,
1502,
286,
4519,
290,
16830,
569,
17887,
37,
11,
7997,
416,
4847,
286,
309,
12,
6759,
8609,
198,
198,
2235,
20559,
2886,
628,
220,
220,
220,
299,
62,
9806,
1058,
2558,
11,
5004,
262,
2546,
286,
262,
309,
12,
6759,
8609,
198,
198,
2235,
16409,
628,
220,
220,
220,
285,
62,
6759,
8609,
11,
299,
62,
6759,
8609,
11,
285,
834,
6759,
8609,
11,
299,
834,
6759,
8609,
1058,
1123,
318,
257,
6616,
17593,
198,
37811,
198,
8818,
651,
62,
76,
62,
77,
62,
76,
834,
77,
834,
6759,
45977,
62,
1640,
62,
51,
62,
6759,
8609,
7,
77,
62,
9806,
8,
198,
220,
220,
220,
299,
62,
76,
62,
312,
87,
796,
651,
62,
77,
62,
76,
62,
312,
87,
62,
18747,
62,
35569,
62,
77,
62,
9806,
7,
77,
62,
9806,
8,
198,
220,
220,
220,
299,
62,
18747,
796,
299,
62,
76,
62,
312,
87,
58,
45299,
352,
60,
198,
220,
220,
220,
285,
62,
18747,
796,
299,
62,
76,
62,
312,
87,
58,
45299,
362,
60,
198,
220,
220,
220,
4686,
87,
62,
18747,
796,
299,
62,
76,
62,
312,
87,
58,
45299,
513,
60,
628,
220,
220,
220,
4686,
87,
62,
9806,
796,
4686,
87,
62,
18747,
58,
437,
60,
198,
220,
220,
220,
4686,
87,
62,
6759,
8609,
796,
9585,
7,
312,
87,
62,
18747,
11,
352,
11,
4686,
87,
62,
9806,
8,
198,
220,
220,
220,
4686,
87,
834,
6759,
8609,
796,
9585,
7,
312,
87,
62,
18747,
3256,
4686,
87,
62,
9806,
11,
352,
8,
628,
220,
220,
220,
299,
62,
6759,
8609,
796,
299,
62,
18747,
58,
312,
87,
62,
6759,
8609,
60,
198,
220,
220,
220,
285,
62,
6759,
8609,
796,
285,
62,
18747,
58,
312,
87,
62,
6759,
8609,
60,
628,
220,
220,
220,
299,
834,
6759,
8609,
796,
299,
62,
18747,
58,
312,
87,
834,
6759,
8609,
60,
198,
220,
220,
220,
285,
834,
6759,
8609,
796,
285,
62,
18747,
58,
312,
87,
834,
6759,
8609,
60,
628,
220,
220,
220,
1441,
285,
62,
6759,
8609,
11,
299,
62,
6759,
8609,
11,
285,
834,
6759,
8609,
11,
299,
834,
6759,
8609,
198,
437,
198,
198,
37811,
198,
220,
220,
220,
1262,
329,
23607,
11,
3497,
604,
2603,
45977,
329,
285,
11,
299,
11,
285,
62,
11,
299,
62,
11,
11188,
284,
4279,
290,
1502,
286,
4519,
290,
16830,
569,
17887,
37,
11,
7997,
416,
4847,
286,
309,
12,
6759,
8609,
198,
37811,
198,
8818,
651,
62,
76,
62,
77,
62,
76,
834,
77,
834,
6759,
45977,
62,
1640,
62,
51,
62,
6759,
8609,
62,
4480,
62,
1640,
26268,
7,
77,
62,
9806,
8,
198,
220,
220,
220,
4686,
87,
62,
9806,
796,
309,
6759,
8609,
13,
1136,
62,
9806,
62,
29762,
62,
9630,
62,
6738,
62,
77,
62,
9806,
7,
77,
62,
9806,
8,
198,
220,
220,
220,
299,
62,
6759,
8609,
796,
1976,
27498,
7,
5317,
11,
4686,
87,
62,
9806,
11,
4686,
87,
62,
9806,
8,
198,
220,
220,
220,
285,
62,
6759,
8609,
796,
1976,
27498,
7,
5317,
11,
4686,
87,
62,
9806,
11,
4686,
87,
62,
9806,
8,
198,
220,
220,
220,
299,
834,
6759,
8609,
796,
1976,
27498,
7,
5317,
11,
4686,
87,
62,
9806,
11,
4686,
87,
62,
9806,
8,
198,
220,
220,
220,
285,
834,
6759,
8609,
796,
1976,
27498,
7,
5317,
11,
4686,
87,
62,
9806,
11,
4686,
87,
62,
9806,
8,
198,
220,
220,
220,
4686,
87,
796,
657,
198,
220,
220,
220,
329,
299,
287,
352,
25,
77,
62,
9806,
198,
220,
220,
220,
220,
220,
220,
220,
329,
285,
287,
13841,
77,
2599,
77,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4686,
87,
15853,
352,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4686,
87,
62,
796,
657,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
299,
62,
287,
352,
25,
77,
62,
9806,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
285,
62,
287,
13841,
77,
62,
2599,
77,
62,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4686,
87,
62,
15853,
352,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
285,
62,
6759,
8609,
58,
312,
87,
11,
4686,
87,
62,
60,
796,
285,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
299,
62,
6759,
8609,
58,
312,
87,
11,
4686,
87,
62,
60,
796,
299,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
285,
834,
6759,
8609,
58,
312,
87,
11,
4686,
87,
62,
60,
796,
285,
62,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
299,
834,
6759,
8609,
58,
312,
87,
11,
4686,
87,
62,
60,
796,
299,
62,
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,
198,
220,
220,
220,
1441,
285,
62,
6759,
8609,
11,
299,
62,
6759,
8609,
11,
285,
834,
6759,
8609,
11,
299,
834,
6759,
8609,
198,
437,
198,
198,
37811,
198,
220,
220,
220,
13610,
285,
11,
77,
11,
76,
62,
11,
77,
62,
2603,
45977,
351,
329,
9052,
11,
290,
8996,
262,
1255,
351,
4600,
1136,
62,
76,
62,
77,
62,
76,
834,
77,
834,
6759,
45977,
62,
1640,
62,
51,
62,
6759,
8609,
63,
198,
37811,
198,
8818,
26571,
62,
1136,
62,
76,
62,
77,
62,
76,
834,
77,
834,
6759,
45977,
62,
1640,
62,
51,
62,
6759,
8609,
7,
77,
62,
9806,
8,
198,
220,
220,
220,
285,
62,
6759,
8609,
11,
299,
62,
6759,
8609,
11,
285,
834,
6759,
8609,
11,
299,
834,
6759,
8609,
796,
198,
220,
220,
220,
220,
220,
220,
220,
651,
62,
76,
62,
77,
62,
76,
834,
77,
834,
6759,
45977,
62,
1640,
62,
51,
62,
6759,
8609,
62,
4480,
62,
1640,
26268,
7,
77,
62,
9806,
8,
198,
220,
220,
220,
4808,
76,
62,
6759,
8609,
11,
4808,
77,
62,
6759,
8609,
11,
4808,
76,
834,
6759,
8609,
11,
4808,
77,
834,
6759,
8609,
796,
198,
220,
220,
220,
220,
220,
220,
220,
651,
62,
76,
62,
77,
62,
76,
834,
77,
834,
6759,
45977,
62,
1640,
62,
51,
62,
6759,
8609,
7,
77,
62,
9806,
8,
628,
220,
220,
220,
44872,
28264,
77,
62,
6759,
8609,
6624,
299,
62,
6759,
8609,
8,
198,
220,
220,
220,
44872,
28264,
76,
62,
6759,
8609,
6624,
285,
62,
6759,
8609,
8,
198,
220,
220,
220,
44872,
28264,
77,
834,
6759,
8609,
6624,
299,
834,
6759,
8609,
8,
198,
220,
220,
220,
44872,
28264,
76,
834,
6759,
8609,
6624,
285,
834,
6759,
8609,
8,
198,
437,
198,
198,
14468,
4242,
21017,
198,
2,
5390,
12473,
3888,
284,
257,
649,
5301,
329,
1291,
46057,
47502,
4132,
430,
295,
11,
326,
481,
307,
11670,
351,
1960,
375,
733,
198,
37811,
198,
220,
220,
220,
352,
35,
29052,
19287,
1262,
1291,
46057,
47502,
3896,
198,
87,
290,
331,
389,
352,
35,
26515,
198,
37811,
198,
2,
51,
3727,
46,
36265,
284,
407,
1288,
89,
280,
4914,
19462,
198,
8818,
12840,
89,
62,
3698,
57,
2606,
25123,
7,
198,
220,
220,
220,
2124,
3712,
23839,
38469,
90,
49,
5512,
198,
220,
220,
220,
331,
3712,
23839,
38469,
90,
45,
5512,
198,
8,
810,
1391,
49,
1279,
25,
6416,
11,
399,
1279,
25,
7913,
92,
198,
220,
220,
220,
1303,
16926,
46,
25,
1402,
4049,
611,
3688,
351,
21914,
89,
13,
46670,
89,
198,
220,
220,
220,
2779,
796,
2124,
58,
17,
25,
437,
60,
532,
2124,
58,
16,
37498,
437,
532,
352,
15437,
198,
220,
220,
220,
1196,
62,
17015,
796,
357,
88,
58,
17,
25,
437,
60,
1343,
331,
58,
16,
37498,
437,
532,
352,
8,
12962,
1220,
362,
198,
220,
220,
220,
3006,
796,
2779,
764,
9,
1196,
62,
17015,
198,
220,
220,
220,
2472,
62,
20337,
796,
2160,
7,
533,
292,
8,
198,
220,
220,
220,
1441,
2472,
62,
20337,
198,
437,
198,
198,
37811,
198,
220,
220,
220,
362,
35,
29052,
19287,
1262,
1291,
46057,
47502,
3896,
198,
198,
87,
290,
331,
389,
352,
35,
26515,
11,
1976,
318,
362,
35,
7177,
198,
37811,
198,
8818,
12840,
89,
62,
3698,
57,
2606,
25123,
7,
198,
220,
220,
220,
2124,
3712,
23839,
38469,
90,
49,
5512,
198,
220,
220,
220,
331,
3712,
23839,
38469,
90,
49,
5512,
198,
220,
220,
220,
1976,
3712,
23839,
46912,
90,
45,
5512,
198,
8,
810,
1391,
49,
1279,
25,
6416,
11,
399,
1279,
25,
7913,
92,
198,
220,
220,
220,
4132,
25192,
62,
86,
17034,
62,
87,
796,
12840,
89,
62,
3698,
57,
2606,
25123,
12195,
27379,
4033,
7,
44754,
7,
87,
11,
352,
11,
2546,
7,
89,
11,
362,
4008,
828,
1123,
4033,
7,
89,
4008,
198,
220,
220,
220,
1441,
12840,
89,
62,
3698,
57,
2606,
25123,
7,
88,
11,
4132,
25192,
62,
86,
17034,
62,
87,
8,
198,
437,
198,
198,
14468,
4242,
21017,
198,
2,
27131,
378,
12852,
12,
8770,
1886,
264,
1416,
16475,
11,
21935,
290,
24774,
3272,
9004,
13,
198,
37811,
198,
220,
220,
220,
15284,
12852,
16449,
45765,
3272,
2665,
1813,
257,
309,
12,
6759,
8609,
290,
257,
6769,
31364,
13,
198,
198,
20560,
309,
12,
6759,
8609,
460,
307,
257,
3716,
6616,
17593,
393,
257,
1673,
36686,
341,
286,
4553,
1103,
290,
3590,
3354,
286,
309,
12,
6759,
8609,
198,
37811,
198,
8818,
651,
62,
46,
1156,
341,
7355,
62,
1416,
16475,
62,
21544,
16375,
62,
6738,
62,
51,
6759,
8609,
7,
198,
220,
220,
220,
309,
3712,
23839,
46912,
11,
198,
220,
220,
220,
479,
16,
3712,
34,
11,
198,
8,
810,
1391,
34,
1279,
25,
19157,
92,
198,
220,
220,
220,
611,
2546,
7,
51,
38381,
16,
60,
6624,
2546,
7,
51,
38381,
17,
60,
1303,
611,
309,
12,
6759,
8609,
318,
257,
6616,
17593,
11,
788,
309,
12,
6759,
8609,
318,
3716,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
1103,
7,
17,
1635,
31028,
1220,
479,
16,
61,
17,
1635,
2160,
7,
51,
764,
9,
11644,
7,
51,
22305,
198,
220,
220,
220,
2073,
361,
2546,
7,
51,
38381,
16,
60,
6624,
2546,
7,
51,
38381,
17,
60,
1220,
362,
1303,
611,
309,
12,
6759,
8609,
468,
1271,
286,
15180,
4274,
262,
1271,
286,
15274,
11,
788,
309,
12,
6759,
8609,
318,
289,
9246,
3419,
286,
1103,
290,
3590,
3354,
286,
309,
6759,
8609,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
651,
62,
46,
1156,
341,
7355,
62,
1416,
16475,
62,
21544,
16375,
62,
6738,
62,
51,
6759,
8609,
62,
19117,
30748,
15633,
3546,
363,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
309,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1103,
7,
74,
16,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3590,
7,
74,
16,
828,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
886,
198,
437,
198,
198,
37811,
198,
220,
220,
220,
15284,
12852,
16449,
45765,
3272,
2665,
1813,
257,
309,
12,
6759,
8609,
11,
28400,
290,
18480,
6608,
286,
7346,
13,
198,
198,
20560,
309,
12,
6759,
8609,
460,
307,
257,
3716,
6616,
17593,
393,
257,
1673,
36686,
341,
286,
4553,
1103,
290,
3590,
3354,
286,
309,
12,
6759,
8609,
198,
37811,
198,
8818,
651,
62,
46,
1156,
341,
7355,
62,
1416,
16475,
62,
21544,
16375,
62,
6738,
62,
51,
6759,
8609,
7,
198,
220,
220,
220,
309,
3712,
23839,
46912,
11,
198,
220,
220,
220,
266,
75,
62,
273,
62,
19503,
80,
62,
15414,
3712,
49,
11,
198,
220,
220,
220,
5128,
62,
20850,
3712,
10100,
11,
198,
220,
220,
220,
43427,
62,
81,
62,
16,
3712,
34,
11,
198,
220,
220,
220,
8252,
62,
81,
62,
16,
3712,
34,
11,
198,
8,
810,
1391,
34,
1279,
25,
19157,
11,
371,
1279,
25,
6416,
92,
198,
220,
220,
220,
1441,
651,
62,
46,
1156,
341,
7355,
62,
1416,
16475,
62,
21544,
16375,
62,
6738,
62,
51,
6759,
8609,
7,
198,
220,
220,
220,
220,
220,
220,
220,
309,
11,
198,
220,
220,
220,
220,
220,
220,
220,
651,
62,
39709,
38469,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
266,
75,
62,
273,
62,
19503,
80,
62,
15414,
26,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5128,
62,
20850,
796,
5128,
62,
20850,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
43427,
62,
81,
796,
43427,
62,
81,
62,
16,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8252,
62,
81,
796,
8252,
62,
81,
62,
16,
11,
198,
220,
220,
220,
220,
220,
220,
220,
10612,
198,
220,
220,
220,
1267,
198,
437,
198,
198,
37811,
198,
220,
220,
220,
15284,
12852,
16449,
45765,
3272,
2665,
1813,
257,
309,
12,
6759,
8609,
290,
257,
6769,
31364,
13,
770,
2499,
329,
45434,
19117,
30748,
15633,
3546,
363,
1,
198,
37811,
198,
8818,
651,
62,
46,
1156,
341,
7355,
62,
1416,
16475,
62,
21544,
16375,
62,
6738,
62,
51,
6759,
8609,
62,
19117,
30748,
15633,
3546,
363,
7,
198,
220,
220,
220,
309,
3712,
23839,
46912,
90,
49,
5512,
198,
220,
220,
220,
479,
16,
62,
81,
3712,
49,
11,
198,
220,
220,
220,
479,
16,
62,
72,
3712,
49,
11,
198,
8,
810,
1391,
49,
1279,
25,
6416,
92,
198,
220,
220,
220,
309,
62,
81,
11,
309,
62,
72,
796,
309,
6759,
8609,
13,
25512,
378,
62,
5305,
62,
48466,
7,
51,
8,
198,
220,
220,
220,
309,
62,
1525,
62,
1102,
73,
51,
62,
16345,
796,
2160,
7,
41887,
62,
16680,
541,
306,
12195,
51,
62,
81,
11,
309,
62,
72,
11,
309,
62,
81,
11,
532,
51,
62,
72,
4008,
198,
220,
220,
220,
479,
16,
62,
16485,
1144,
796,
3716,
62,
16680,
541,
306,
7,
74,
16,
62,
81,
11,
479,
16,
62,
72,
11,
479,
16,
62,
81,
11,
479,
16,
62,
72,
8,
198,
220,
220,
220,
734,
62,
14415,
62,
2502,
62,
74,
16,
62,
16485,
1144,
796,
3716,
62,
7146,
485,
7,
17,
1635,
31028,
11,
657,
11,
479,
16,
62,
16485,
1144,
58,
16,
4357,
479,
16,
62,
16485,
1144,
58,
17,
12962,
198,
220,
220,
220,
1441,
3716,
62,
16680,
541,
306,
7,
198,
220,
220,
220,
220,
220,
220,
220,
734,
62,
14415,
62,
2502,
62,
74,
16,
62,
16485,
1144,
58,
16,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
734,
62,
14415,
62,
2502,
62,
74,
16,
62,
16485,
1144,
58,
17,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
309,
62,
1525,
62,
1102,
73,
51,
62,
16345,
58,
16,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
309,
62,
1525,
62,
1102,
73,
51,
62,
16345,
58,
17,
4357,
198,
220,
220,
220,
1267,
58,
16,
60,
198,
437,
198,
198,
37811,
198,
220,
220,
220,
15284,
12852,
16449,
21935,
3272,
2665,
1813,
257,
309,
12,
6759,
8609,
290,
257,
6769,
31364,
13,
198,
37811,
198,
8818,
651,
62,
46,
1156,
341,
7355,
62,
2302,
9438,
62,
21544,
16375,
62,
6738,
62,
51,
6759,
8609,
7,
198,
220,
220,
220,
309,
3712,
23839,
46912,
11,
198,
220,
220,
220,
479,
16,
3712,
34,
11,
198,
8,
810,
1391,
34,
1279,
25,
19157,
92,
198,
220,
220,
220,
611,
2546,
7,
51,
38381,
16,
60,
6624,
2546,
7,
51,
38381,
17,
60,
1303,
611,
309,
12,
6759,
8609,
318,
257,
6616,
17593,
11,
788,
309,
12,
6759,
8609,
318,
3716,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
1103,
32590,
17,
1635,
31028,
1220,
479,
16,
61,
17,
1635,
491,
7,
5305,
7,
51,
22305,
198,
220,
220,
220,
2073,
361,
2546,
7,
51,
38381,
16,
60,
6624,
2546,
7,
51,
38381,
17,
60,
1220,
362,
1303,
611,
309,
12,
6759,
8609,
468,
1271,
286,
15180,
4274,
262,
1271,
286,
15274,
11,
788,
309,
12,
6759,
8609,
318,
289,
9246,
3419,
286,
1103,
290,
3590,
3354,
286,
309,
6759,
8609,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
651,
62,
46,
1156,
341,
7355,
62,
2302,
9438,
62,
21544,
16375,
62,
6738,
62,
51,
6759,
8609,
62,
19117,
30748,
15633,
3546,
363,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
309,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1103,
7,
74,
16,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3590,
7,
74,
16,
828,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
886,
198,
437,
198,
198,
37811,
198,
220,
220,
220,
15284,
12852,
16449,
21935,
3272,
2665,
1813,
257,
309,
12,
6759,
8609,
290,
257,
6769,
31364,
13,
770,
2499,
329,
45434,
19117,
30748,
15633,
3546,
363,
1,
198,
37811,
198,
8818,
651,
62,
46,
1156,
341,
7355,
62,
2302,
9438,
62,
21544,
16375,
62,
6738,
62,
51,
6759,
8609,
62,
19117,
30748,
15633,
3546,
363,
7,
198,
220,
220,
220,
309,
3712,
23839,
46912,
90,
49,
5512,
198,
220,
220,
220,
479,
16,
62,
81,
3712,
49,
11,
198,
220,
220,
220,
479,
16,
62,
72,
3712,
49,
11,
198,
8,
810,
1391,
49,
1279,
25,
6416,
92,
198,
220,
220,
220,
309,
62,
81,
11,
309,
62,
72,
796,
309,
6759,
8609,
13,
25512,
378,
62,
5305,
62,
48466,
7,
51,
8,
198,
220,
220,
220,
479,
16,
62,
16485,
1144,
796,
3716,
62,
16680,
541,
306,
7,
74,
16,
62,
81,
11,
479,
16,
62,
72,
11,
479,
16,
62,
81,
11,
479,
16,
62,
72,
8,
198,
220,
220,
220,
734,
62,
14415,
62,
2502,
62,
74,
16,
62,
16485,
1144,
796,
3716,
62,
7146,
485,
7,
17,
1635,
31028,
11,
657,
11,
479,
16,
62,
16485,
1144,
58,
16,
4357,
479,
16,
62,
16485,
1144,
58,
17,
12962,
198,
220,
220,
220,
1441,
532,
11545,
62,
14415,
62,
2502,
62,
74,
16,
62,
16485,
1144,
58,
16,
60,
1635,
491,
7,
51,
62,
81,
8,
198,
437,
198,
198,
37811,
198,
220,
220,
220,
15284,
12852,
16449,
24774,
3272,
2665,
1813,
257,
309,
12,
6759,
8609,
290,
257,
6769,
31364,
13,
198,
37811,
198,
8818,
651,
62,
46,
1156,
341,
7355,
62,
46303,
1159,
62,
21544,
16375,
62,
6738,
62,
51,
6759,
8609,
7,
198,
220,
220,
220,
309,
3712,
23839,
46912,
11,
198,
220,
220,
220,
479,
16,
3712,
34,
11,
198,
8,
810,
1391,
34,
1279,
25,
19157,
92,
198,
220,
220,
220,
1441,
651,
62,
46,
1156,
341,
7355,
62,
2302,
9438,
62,
21544,
16375,
62,
6738,
62,
51,
6759,
8609,
7,
51,
11,
479,
16,
8,
532,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
651,
62,
46,
1156,
341,
7355,
62,
1416,
16475,
62,
21544,
16375,
62,
6738,
62,
51,
6759,
8609,
7,
51,
11,
479,
16,
8,
198,
437,
198,
198,
37811,
198,
220,
220,
220,
15284,
12852,
16449,
24774,
3272,
2665,
1813,
257,
309,
12,
6759,
8609,
290,
257,
6769,
31364,
13,
770,
2499,
329,
45434,
19117,
30748,
15633,
3546,
363,
1,
198,
37811,
198,
8818,
651,
62,
46,
1156,
341,
7355,
62,
46303,
1159,
62,
21544,
16375,
62,
6738,
62,
51,
6759,
8609,
62,
19117,
30748,
15633,
3546,
363,
7,
198,
220,
220,
220,
309,
3712,
23839,
46912,
90,
49,
5512,
198,
220,
220,
220,
479,
16,
62,
81,
3712,
49,
11,
198,
220,
220,
220,
479,
16,
62,
72,
3712,
49,
11,
198,
8,
810,
1391,
49,
1279,
25,
6416,
92,
198,
220,
220,
220,
1441,
651,
62,
46,
1156,
341,
7355,
62,
2302,
9438,
62,
21544,
16375,
62,
6738,
62,
51,
6759,
8609,
62,
19117,
30748,
15633,
3546,
363,
7,
198,
220,
220,
220,
220,
220,
220,
220,
309,
11,
198,
220,
220,
220,
220,
220,
220,
220,
479,
16,
62,
81,
11,
198,
220,
220,
220,
220,
220,
220,
220,
479,
16,
62,
72,
11,
198,
220,
220,
220,
1267,
532,
651,
62,
46,
1156,
341,
7355,
62,
1416,
16475,
62,
21544,
16375,
62,
6738,
62,
51,
6759,
8609,
62,
19117,
30748,
15633,
3546,
363,
7,
198,
220,
220,
220,
220,
220,
220,
220,
309,
11,
198,
220,
220,
220,
220,
220,
220,
220,
479,
16,
62,
81,
11,
198,
220,
220,
220,
220,
220,
220,
220,
479,
16,
62,
72,
11,
198,
220,
220,
220,
1267,
198,
437,
198,
198,
37811,
198,
220,
220,
220,
15284,
12852,
16449,
795,
747,
3458,
3272,
2665,
1813,
257,
309,
12,
6759,
8609,
290,
257,
6769,
31364,
13,
198,
198,
63,
3911,
1548,
62,
42029,
62,
20337,
63,
468,
284,
307,
287,
4991,
6414,
351,
6769,
31364,
4991,
13,
1002,
6769,
1990,
2715,
4326,
318,
583,
285,
11,
788,
262,
18758,
4417,
1989,
468,
284,
307,
287,
285,
61,
17,
198,
37811,
198,
8818,
651,
62,
46,
1156,
341,
7355,
62,
368,
747,
3458,
62,
6738,
62,
51,
6759,
8609,
7,
198,
220,
220,
220,
309,
3712,
23839,
46912,
11,
198,
220,
220,
220,
479,
16,
3712,
34,
11,
198,
220,
220,
220,
18758,
62,
42029,
62,
20337,
3712,
49,
11,
198,
8,
810,
1391,
49,
1279,
25,
6416,
11,
327,
1279,
25,
19157,
92,
198,
220,
220,
220,
1441,
651,
62,
46,
1156,
341,
7355,
62,
46303,
1159,
62,
21544,
16375,
62,
6738,
62,
51,
6759,
8609,
7,
51,
11,
479,
16,
8,
1635,
604,
1220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
18758,
62,
42029,
62,
20337,
198,
437,
198,
198,
37811,
198,
220,
220,
220,
15284,
12852,
16449,
795,
747,
3458,
3272,
2665,
1813,
257,
309,
12,
6759,
8609,
290,
257,
6769,
31364,
13,
770,
2499,
329,
45434,
19117,
30748,
15633,
3546,
363,
1,
198,
198,
63,
3911,
1548,
62,
42029,
62,
20337,
63,
468,
284,
307,
287,
4991,
6414,
351,
6769,
31364,
4991,
13,
1002,
6769,
1990,
2715,
4326,
318,
583,
285,
11,
788,
262,
18758,
4417,
1989,
468,
284,
307,
287,
285,
61,
17,
198,
37811,
198,
8818,
651,
62,
46,
1156,
341,
7355,
62,
368,
747,
3458,
62,
6738,
62,
51,
6759,
8609,
62,
19117,
30748,
15633,
3546,
363,
7,
198,
220,
220,
220,
309,
3712,
23839,
46912,
90,
49,
5512,
198,
220,
220,
220,
479,
16,
62,
81,
3712,
49,
11,
198,
220,
220,
220,
479,
16,
62,
72,
3712,
49,
11,
198,
220,
220,
220,
18758,
62,
42029,
62,
20337,
3712,
49,
11,
198,
8,
810,
1391,
49,
1279,
25,
6416,
92,
198,
220,
220,
220,
1441,
651,
62,
46,
1156,
341,
7355,
62,
46303,
1159,
62,
21544,
16375,
62,
6738,
62,
51,
6759,
8609,
62,
19117,
30748,
15633,
3546,
363,
7,
198,
220,
220,
220,
220,
220,
220,
220,
309,
11,
198,
220,
220,
220,
220,
220,
220,
220,
479,
16,
62,
81,
11,
198,
220,
220,
220,
220,
220,
220,
220,
479,
16,
62,
72,
11,
198,
220,
220,
220,
1267,
1635,
604,
1220,
18758,
62,
42029,
62,
20337,
198,
437,
198,
198,
37811,
198,
220,
220,
220,
15284,
12852,
16449,
795,
747,
3458,
3272,
2665,
1813,
257,
309,
12,
6759,
8609,
11,
28400,
290,
18480,
6608,
286,
7346,
13,
770,
2499,
329,
45434,
19117,
30748,
15633,
3546,
363,
1,
198,
198,
63,
3911,
1548,
62,
42029,
62,
20337,
63,
468,
284,
307,
287,
4991,
6414,
351,
6769,
31364,
4991,
13,
1002,
6769,
1990,
2715,
4326,
318,
583,
285,
11,
788,
262,
18758,
4417,
1989,
468,
284,
307,
287,
285,
61,
17,
198,
37811,
198,
8818,
651,
62,
46,
1156,
341,
7355,
62,
368,
747,
3458,
62,
6738,
62,
51,
6759,
8609,
62,
19117,
30748,
15633,
3546,
363,
7,
198,
220,
220,
220,
309,
3712,
23839,
46912,
90,
49,
5512,
198,
220,
220,
220,
266,
75,
62,
273,
62,
19503,
80,
62,
15414,
3712,
49,
11,
198,
220,
220,
220,
5128,
62,
20850,
3712,
10100,
11,
198,
220,
220,
220,
43427,
62,
81,
62,
81,
62,
16,
3712,
49,
11,
198,
220,
220,
220,
43427,
62,
81,
62,
72,
62,
16,
3712,
49,
11,
198,
220,
220,
220,
8252,
62,
81,
62,
81,
62,
16,
3712,
49,
11,
198,
220,
220,
220,
8252,
62,
81,
62,
72,
62,
16,
3712,
49,
11,
198,
220,
220,
220,
18758,
62,
42029,
62,
20337,
3712,
49,
11,
198,
8,
810,
1391,
49,
1279,
25,
6416,
92,
198,
220,
220,
220,
479,
16,
62,
41887,
796,
651,
62,
39709,
38469,
7,
198,
220,
220,
220,
220,
220,
220,
220,
266,
75,
62,
273,
62,
19503,
80,
62,
15414,
26,
198,
220,
220,
220,
220,
220,
220,
220,
5128,
62,
20850,
796,
5128,
62,
20850,
11,
198,
220,
220,
220,
220,
220,
220,
220,
43427,
62,
81,
796,
19157,
7,
36,
862,
62,
81,
62,
81,
62,
16,
11,
43427,
62,
81,
62,
72,
62,
16,
828,
198,
220,
220,
220,
220,
220,
220,
220,
8252,
62,
81,
796,
19157,
7,
33239,
62,
81,
62,
81,
62,
16,
11,
8252,
62,
81,
62,
72,
62,
16,
828,
198,
220,
220,
220,
1267,
198,
220,
220,
220,
1441,
651,
62,
46,
1156,
341,
7355,
62,
46303,
1159,
62,
21544,
16375,
62,
6738,
62,
51,
6759,
8609,
62,
19117,
30748,
15633,
3546,
363,
7,
198,
220,
220,
220,
220,
220,
220,
220,
309,
11,
198,
220,
220,
220,
220,
220,
220,
220,
479,
16,
62,
81,
11,
198,
220,
220,
220,
220,
220,
220,
220,
479,
16,
62,
72,
11,
198,
220,
220,
220,
1267,
1635,
604,
1220,
18758,
62,
42029,
62,
20337,
198,
437,
198
] | 2.307667 | 6,013 |
import Effects: effects
import Effects:_reference_grid
import Effects:typify
import Effects.typify
import Effects:_symequal
import StatsModels.collect_matrix_terms
import Base.getproperty
using Effects
"""
effects(design::AbstractDict, model::UnfoldModel;typical=mean)
Calculates marginal effects for all term-combinations in `design`.
Implementation based on Effects Package; likely could repackage in UnfoldEffects; somebody wants to do it? This would make it easier to cross-maintain it to changes/bugfixes in the Effects.jl Package
`design` is a Dictionary containing those predictors (als keys) with levels (as values), that you want to evaluate. The `typical` refers to the value, that other predictors not in the Dictionary should take on.
# Example
```julia-repl
julia> f = @formula 0 ~ categoricalA + continuousA + continuousB
julia> uf = fit(UnfoldModel,(Any=>(f,times)),data,events)
julia> d = Dict(:categoricalA=>["levelA","levelB"],:continuousB=>[-2,0,2])
julia> effects(d,uf)
```
will result in 6 predicted values: A/-2, A/0, A/2, B/-2, B/0, B/2.
"""
function effects(design::AbstractDict, model::UnfoldModel;typical=mean)
reference_grid = _reference_grid(design)
form = Unfold.formula(model) # get formula
# replace non-specified fields with "constants"
m = modelmatrix(model,false) # get the modelmatrix without timeexpansion
form_typical = _typify(reference_grid,form,m,typical)
eff = yhat(model,form_typical,reference_grid)
# because coefficients are 2D/3D arry, we have to cast it correctly to one big dataframe
if isa(eff,Tuple)
# TimeContinuous Model, we also get back other things like times & fromWhereToWhere a BasisFunction goes
if typeof(form) <: FormulaTerm
form = [form]
end
# figure out the basisname
bnames = [[form[ix].rhs.basisfunction.name] for ix in 1:length(form)]
# repeat it as much as necessary
bnames = repeat.(bnames,[e.stop+e.step-1 for e in eff[1]])
result = DataFrame(cast_referenceGrid(reference_grid,eff[3],eff[2] ;basisname=vcat(bnames...)))
select!(result,Not(:latency)) # remove the latency column if it was added
else
# normal mass univariate model
result = DataFrame(cast_referenceGrid(reference_grid,eff,times(model)[1] ))
end
return result
end
Effects.typify(reference_grid,form::Matrix,X;kwargs...) = typify.(Ref(reference_grid),form,Ref(X);kwargs...)
# cast single form to a vector
_typify(reference_grid,form::FormulaTerm{<:InterceptTerm,<:Unfold.TimeExpandedTerm},m,typical) = _typify(reference_grid,[form],[m],typical)
function _typify(reference_grid, form::AbstractArray{<:FormulaTerm{<:Union{<:InterceptTerm,<:Unfold.TimeExpandedTerm}}},m,typical)
form_typical = Array{Any}(undef,1, length(form))
for f = 1:length(form)
# strip of basisfunction and put it on afterwards again
tmpf = deepcopy(form[f])
# create a Formula without Timeexpansion
tmpf = FormulaTerm(tmpf.lhs,tmpf.rhs.term)
# typify that
tmpf = typify(reference_grid, tmpf, m[f]; typical=typical)
# regenerate TimeExpansion
tmpf = Unfold.TimeExpandedTerm(tmpf,form[f].rhs.basisfunction;eventfields=form[f].rhs.eventfields)
form_typical[f] = tmpf
end
return form_typical
end
function _typify(reference_grid,form::FormulaTerm,m,typical)
return [typify(reference_grid, form, m; typical=typical)]
end
function cast_referenceGrid(r,eff,times;basisname=nothing)
nchan = size(eff, 2) # correct
neff = size(r,1) # how many effects requested
neffCol = size(r,2) # how many predictors
ncols = size(eff,1) ÷ neff # typically ntimes
# replicate
# for each predictor in r (reference grid), we need this at the bottom
if isnothing(basisname)
nbases = 1
else
nbases = length(unique(basisname))
end
coefs_rep = Array{Array}(undef,nbases,neffCol)
for k = 1:neffCol
# in case we have only a single basis (e.g. mass univariate), we can directly fill in all values
ixList = []
if isnothing(basisname)
ix = ones(ncols) .== 1.
append!(ixList,[ix])
else
#in case of multiple bases, we have to do it iteratively, because the bases can be different length
for b = unique(basisname)
ix = basisname[1:neff:end].==b
append!(ixList,[ix])
end
end
for i_ix = 1:length(ixList)
coefs_rep[i_ix,k] = linearize(permutedims(repeat(r[:,k], outer = [1, nchan, sum(ixList[i_ix])]), [2,3,1]))
end
end
# often the "times" vector
if length(times) == neff*ncols
# in case we have timeexpanded, times is already in long format and doesnt need to be repeated for each coefficient
colnames_basis_rep = permutedims(repeat(times, 1, nchan, 1), [2 1 3])
else
colnames_basis_rep = permutedims(repeat(times, 1, nchan, neff), [2 1 3])
end
# for multiple channels
chan_rep = repeat(1:nchan, 1, ncols, neff)
# for mass univariate there is no basisname
if isnothing(basisname)
basisname = fill(nothing,ncols)
basisname_rep = permutedims(repeat(basisname,1,nchan,neff),[2,1,3])
else
basisname_rep = permutedims(repeat(basisname,1,nchan,1),[2,1,3])
end
result = Dict( :yhat => linearize(eff'),
:time => linearize(colnames_basis_rep),
:channel => linearize(chan_rep),
:basisname =>linearize(basisname_rep))
for k = 1:neffCol
push!(result,Symbol(names(r)[k]) =>vcat(vcat(coefs_rep[:,k]...)...))
end
return result
end
Effects._trmequal(t1::Unfold.uf_bsplineTerm,t2::AbstractTerm) = _symequal(t1.term,t2)
Effects._trmequal(t1::Unfold.uf_bsplineTerm,t2::Unfold.uf_bsplineTerm) = _symequal(t1.term,t2.term)
Effects._trmequal(t1::AbstractTerm,t2::Unfold.uf_bsplineTerm) = _symequal(t1,t2.term)
Effects._symequal(t1::AbstractTerm,t2::Unfold.uf_bsplineTerm) = _symequal(t1,t2.term)
#Effects._symequal(t1::AbstractTerm,t2::Unfold.TimeExpandedTerm) = _symequal(t1,t2.term)
#function Effects._replace(matrix_term::MatrixTerm{<:Tuple{<:Unfold.TimeExpandedTerm}},typicals::Dict)
# replaced_term = MatrixTerm((Effects._replace.(matrix_term.terms, Ref(typicals))...,))
# basisfunctionTerm = getfield(matrix_term,:terms)[1]
# return TimeExpandedTerm(replaced_term,basisfunctionTerm.basisfunction,basisfunctionTerm.eventfields)
#end
| [
11748,
17417,
25,
3048,
198,
11748,
17417,
25,
62,
35790,
62,
25928,
198,
11748,
17417,
25,
28004,
1958,
198,
11748,
17417,
13,
28004,
1958,
198,
11748,
17417,
25,
62,
1837,
1326,
13255,
198,
11748,
20595,
5841,
1424,
13,
33327,
62,
6759,
8609,
62,
38707,
198,
11748,
7308,
13,
1136,
26745,
198,
3500,
17417,
198,
198,
37811,
198,
34435,
7,
26124,
3712,
23839,
35,
713,
11,
2746,
3712,
3118,
11379,
17633,
26,
28004,
605,
28,
32604,
8,
198,
198,
9771,
3129,
689,
14461,
3048,
329,
477,
3381,
12,
24011,
7352,
287,
4600,
26124,
44646,
628,
46333,
1912,
319,
17417,
15717,
26,
1884,
714,
1128,
441,
496,
287,
791,
11379,
47738,
26,
8276,
3382,
284,
466,
340,
30,
770,
561,
787,
340,
4577,
284,
3272,
12,
76,
32725,
340,
284,
2458,
14,
25456,
42624,
287,
262,
17417,
13,
20362,
15717,
198,
4600,
26124,
63,
318,
257,
28261,
7268,
883,
4331,
669,
357,
874,
8251,
8,
351,
2974,
357,
292,
3815,
828,
326,
345,
765,
284,
13446,
13,
383,
4600,
28004,
605,
63,
10229,
284,
262,
1988,
11,
326,
584,
4331,
669,
407,
287,
262,
28261,
815,
1011,
319,
13,
628,
1303,
17934,
198,
7559,
63,
73,
43640,
12,
35666,
198,
474,
43640,
29,
277,
796,
2488,
687,
4712,
657,
5299,
4253,
12409,
32,
1343,
12948,
32,
1343,
12948,
33,
198,
474,
43640,
29,
334,
69,
796,
4197,
7,
3118,
11379,
17633,
11,
7,
7149,
14804,
7,
69,
11,
22355,
36911,
7890,
11,
31534,
8,
198,
474,
43640,
29,
288,
796,
360,
713,
7,
25,
66,
2397,
12409,
32,
14804,
14692,
5715,
32,
2430,
5715,
33,
33116,
25,
18487,
5623,
33,
14804,
58,
12,
17,
11,
15,
11,
17,
12962,
198,
474,
43640,
29,
3048,
7,
67,
11,
3046,
8,
198,
15506,
63,
198,
481,
1255,
287,
718,
11001,
3815,
25,
317,
16327,
17,
11,
317,
14,
15,
11,
317,
14,
17,
11,
347,
16327,
17,
11,
347,
14,
15,
11,
347,
14,
17,
13,
198,
37811,
220,
628,
198,
8818,
3048,
7,
26124,
3712,
23839,
35,
713,
11,
2746,
3712,
3118,
11379,
17633,
26,
28004,
605,
28,
32604,
8,
198,
220,
220,
220,
4941,
62,
25928,
796,
4808,
35790,
62,
25928,
7,
26124,
8,
198,
220,
220,
220,
1296,
796,
791,
11379,
13,
687,
4712,
7,
19849,
8,
1303,
651,
10451,
628,
220,
220,
220,
1303,
6330,
1729,
12,
23599,
7032,
351,
366,
9979,
1187,
1,
198,
220,
220,
220,
285,
796,
2746,
6759,
8609,
7,
19849,
11,
9562,
8,
1303,
651,
262,
2746,
6759,
8609,
1231,
640,
11201,
5487,
198,
220,
220,
220,
1296,
62,
28004,
605,
796,
4808,
28004,
1958,
7,
35790,
62,
25928,
11,
687,
11,
76,
11,
28004,
605,
8,
628,
220,
220,
220,
914,
796,
331,
5183,
7,
19849,
11,
687,
62,
28004,
605,
11,
35790,
62,
25928,
8,
628,
220,
220,
220,
1303,
780,
44036,
389,
362,
35,
14,
18,
35,
610,
563,
11,
356,
423,
284,
3350,
340,
9380,
284,
530,
1263,
1366,
14535,
198,
220,
220,
220,
611,
318,
64,
7,
14822,
11,
51,
29291,
8,
220,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
3862,
17875,
5623,
9104,
11,
356,
635,
651,
736,
584,
1243,
588,
1661,
1222,
422,
8496,
2514,
8496,
257,
6455,
271,
22203,
2925,
198,
220,
220,
220,
220,
220,
220,
220,
611,
2099,
1659,
7,
687,
8,
1279,
25,
19639,
40596,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1296,
796,
685,
687,
60,
198,
220,
220,
220,
220,
220,
220,
220,
886,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
3785,
503,
262,
4308,
3672,
198,
220,
220,
220,
220,
220,
220,
220,
275,
14933,
796,
16410,
687,
58,
844,
4083,
81,
11994,
13,
12093,
4468,
4575,
13,
3672,
60,
329,
220,
844,
287,
352,
25,
13664,
7,
687,
15437,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
9585,
340,
355,
881,
355,
3306,
198,
220,
220,
220,
220,
220,
220,
220,
275,
14933,
796,
9585,
12195,
9374,
1047,
17414,
68,
13,
11338,
10,
68,
13,
9662,
12,
16,
329,
304,
287,
914,
58,
16,
11907,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1255,
796,
6060,
19778,
7,
2701,
62,
35790,
41339,
7,
35790,
62,
25928,
11,
14822,
58,
18,
4357,
14822,
58,
17,
60,
2162,
12093,
271,
3672,
28,
85,
9246,
7,
9374,
1047,
986,
22305,
198,
220,
220,
220,
220,
220,
220,
220,
2922,
0,
7,
20274,
11,
3673,
7,
25,
15460,
1387,
4008,
1303,
4781,
262,
24812,
5721,
611,
340,
373,
2087,
198,
220,
220,
220,
2073,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
3487,
2347,
555,
42524,
2746,
198,
220,
220,
220,
220,
220,
220,
220,
1255,
796,
6060,
19778,
7,
2701,
62,
35790,
41339,
7,
35790,
62,
25928,
11,
14822,
11,
22355,
7,
19849,
38381,
16,
60,
15306,
198,
220,
220,
220,
886,
198,
220,
220,
220,
220,
198,
7783,
1255,
220,
220,
220,
198,
437,
198,
220,
198,
17417,
13,
28004,
1958,
7,
35790,
62,
25928,
11,
687,
3712,
46912,
11,
55,
26,
46265,
22046,
23029,
796,
2170,
1958,
12195,
8134,
7,
35790,
62,
25928,
828,
687,
11,
8134,
7,
55,
1776,
46265,
22046,
23029,
628,
1303,
3350,
2060,
1296,
284,
257,
15879,
198,
62,
28004,
1958,
7,
35790,
62,
25928,
11,
687,
3712,
8479,
4712,
40596,
90,
27,
25,
9492,
984,
40596,
11,
27,
25,
3118,
11379,
13,
7575,
16870,
12249,
40596,
5512,
76,
11,
28004,
605,
8,
796,
4808,
28004,
1958,
7,
35790,
62,
25928,
17414,
687,
38430,
76,
4357,
28004,
605,
8,
198,
198,
8818,
4808,
28004,
1958,
7,
35790,
62,
25928,
11,
1296,
3712,
23839,
19182,
90,
27,
25,
8479,
4712,
40596,
90,
27,
25,
38176,
90,
27,
25,
9492,
984,
40596,
11,
27,
25,
3118,
11379,
13,
7575,
16870,
12249,
40596,
11709,
5512,
76,
11,
28004,
605,
8,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1296,
62,
28004,
605,
796,
15690,
90,
7149,
92,
7,
917,
891,
11,
16,
11,
4129,
7,
687,
4008,
198,
220,
220,
220,
329,
277,
796,
352,
25,
13664,
7,
687,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
10283,
286,
4308,
8818,
290,
1234,
340,
319,
12979,
757,
198,
220,
220,
220,
220,
220,
220,
220,
45218,
69,
796,
2769,
30073,
7,
687,
58,
69,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
2251,
257,
19639,
1231,
3862,
11201,
5487,
198,
220,
220,
220,
220,
220,
220,
220,
45218,
69,
796,
19639,
40596,
7,
22065,
69,
13,
75,
11994,
11,
22065,
69,
13,
81,
11994,
13,
4354,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
2170,
1958,
326,
198,
220,
220,
220,
220,
220,
220,
220,
45218,
69,
796,
2170,
1958,
7,
35790,
62,
25928,
11,
45218,
69,
11,
285,
58,
69,
11208,
7226,
28,
28004,
605,
8,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
43519,
3862,
16870,
5487,
198,
220,
220,
220,
220,
220,
220,
220,
45218,
69,
796,
791,
11379,
13,
7575,
16870,
12249,
40596,
7,
22065,
69,
11,
687,
58,
69,
4083,
81,
11994,
13,
12093,
4468,
4575,
26,
15596,
25747,
28,
687,
58,
69,
4083,
81,
11994,
13,
15596,
25747,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1296,
62,
28004,
605,
58,
69,
60,
796,
45218,
69,
198,
220,
220,
220,
886,
198,
220,
220,
220,
1441,
1296,
62,
28004,
605,
198,
886,
198,
2163,
4808,
28004,
1958,
7,
35790,
62,
25928,
11,
687,
3712,
8479,
4712,
40596,
11,
76,
11,
28004,
605,
8,
198,
220,
220,
220,
1441,
685,
28004,
1958,
7,
35790,
62,
25928,
11,
1296,
11,
285,
26,
7226,
28,
28004,
605,
15437,
628,
886,
198,
220,
198,
8818,
3350,
62,
35790,
41339,
7,
81,
11,
14822,
11,
22355,
26,
12093,
271,
3672,
28,
22366,
8,
198,
220,
220,
220,
299,
3147,
796,
2546,
7,
14822,
11,
362,
8,
1303,
3376,
198,
220,
220,
220,
497,
487,
796,
2546,
7,
81,
11,
16,
8,
1303,
703,
867,
3048,
9167,
198,
220,
220,
220,
497,
487,
5216,
796,
2546,
7,
81,
11,
17,
8,
1303,
703,
867,
4331,
669,
198,
220,
220,
220,
299,
4033,
82,
796,
2546,
7,
14822,
11,
16,
8,
6184,
115,
497,
487,
1303,
6032,
299,
22355,
628,
220,
220,
220,
220,
198,
220,
220,
220,
198,
220,
220,
220,
1303,
24340,
198,
220,
220,
220,
1303,
329,
1123,
41568,
287,
374,
357,
35790,
10706,
828,
356,
761,
428,
379,
262,
4220,
628,
220,
220,
220,
611,
318,
22366,
7,
12093,
271,
3672,
8,
198,
220,
220,
220,
220,
220,
220,
220,
299,
65,
1386,
796,
352,
198,
220,
220,
220,
2073,
198,
220,
220,
220,
220,
220,
220,
220,
299,
65,
1386,
796,
4129,
7,
34642,
7,
12093,
271,
3672,
4008,
198,
220,
220,
220,
886,
198,
220,
220,
220,
763,
891,
82,
62,
7856,
796,
15690,
90,
19182,
92,
7,
917,
891,
11,
46803,
1386,
11,
710,
487,
5216,
8,
198,
220,
220,
220,
220,
198,
220,
220,
220,
220,
198,
220,
220,
220,
329,
479,
796,
352,
25,
710,
487,
5216,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
287,
1339,
356,
423,
691,
257,
2060,
4308,
357,
68,
13,
70,
13,
2347,
555,
42524,
828,
356,
460,
3264,
6070,
287,
477,
3815,
198,
220,
220,
220,
220,
220,
220,
220,
220,
844,
8053,
796,
17635,
198,
220,
220,
220,
220,
220,
220,
220,
611,
318,
22366,
7,
12093,
271,
3672,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
844,
796,
3392,
7,
77,
4033,
82,
8,
764,
855,
352,
13,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
24443,
0,
7,
844,
8053,
17414,
844,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
259,
1339,
286,
3294,
12536,
11,
356,
423,
284,
466,
340,
11629,
9404,
11,
780,
262,
12536,
460,
307,
1180,
4129,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
275,
796,
3748,
7,
12093,
271,
3672,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
844,
796,
4308,
3672,
58,
16,
25,
710,
487,
25,
437,
4083,
855,
65,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
24443,
0,
7,
844,
8053,
17414,
844,
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,
220,
220,
220,
220,
329,
1312,
62,
844,
796,
352,
25,
13664,
7,
844,
8053,
8,
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,
763,
891,
82,
62,
7856,
58,
72,
62,
844,
11,
74,
60,
796,
14174,
1096,
7,
16321,
7241,
12078,
7,
44754,
7,
81,
58,
45299,
74,
4357,
12076,
796,
685,
16,
11,
299,
3147,
11,
2160,
7,
844,
8053,
58,
72,
62,
844,
12962,
46570,
685,
17,
11,
18,
11,
16,
60,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
886,
198,
220,
220,
220,
886,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
1690,
262,
366,
22355,
1,
15879,
198,
220,
220,
220,
611,
4129,
7,
22355,
8,
220,
6624,
497,
487,
9,
77,
4033,
82,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
287,
1339,
356,
423,
640,
11201,
12249,
11,
1661,
318,
1541,
287,
890,
5794,
290,
46701,
761,
284,
307,
5100,
329,
1123,
35381,
198,
220,
220,
220,
220,
220,
220,
220,
951,
14933,
62,
12093,
271,
62,
7856,
796,
9943,
7241,
12078,
7,
44754,
7,
22355,
11,
352,
11,
299,
3147,
11,
352,
828,
685,
17,
352,
513,
12962,
198,
220,
220,
220,
2073,
198,
220,
220,
220,
220,
220,
220,
220,
951,
14933,
62,
12093,
271,
62,
7856,
796,
9943,
7241,
12078,
7,
44754,
7,
22355,
11,
352,
11,
299,
3147,
11,
497,
487,
828,
685,
17,
352,
513,
12962,
198,
220,
220,
220,
886,
628,
220,
220,
220,
1303,
329,
3294,
9619,
198,
220,
220,
220,
442,
272,
62,
7856,
796,
9585,
7,
16,
25,
77,
3147,
11,
352,
11,
299,
4033,
82,
11,
497,
487,
8,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
329,
2347,
555,
42524,
612,
318,
645,
4308,
3672,
198,
220,
220,
220,
611,
318,
22366,
7,
12093,
271,
3672,
8,
198,
220,
220,
220,
220,
220,
220,
220,
4308,
3672,
796,
6070,
7,
22366,
11,
77,
4033,
82,
8,
198,
220,
220,
220,
220,
220,
220,
220,
4308,
3672,
62,
7856,
796,
9943,
7241,
12078,
7,
44754,
7,
12093,
271,
3672,
11,
16,
11,
77,
3147,
11,
710,
487,
828,
58,
17,
11,
16,
11,
18,
12962,
198,
220,
220,
220,
2073,
198,
220,
220,
220,
220,
220,
220,
220,
4308,
3672,
62,
7856,
796,
9943,
7241,
12078,
7,
44754,
7,
12093,
271,
3672,
11,
16,
11,
77,
3147,
11,
16,
828,
58,
17,
11,
16,
11,
18,
12962,
198,
220,
220,
220,
886,
198,
220,
220,
220,
220,
628,
220,
220,
220,
1255,
796,
360,
713,
7,
220,
220,
1058,
88,
5183,
5218,
14174,
1096,
7,
14822,
33809,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1058,
2435,
5218,
14174,
1096,
7,
4033,
14933,
62,
12093,
271,
62,
7856,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1058,
17620,
5218,
14174,
1096,
7,
3147,
62,
7856,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1058,
12093,
271,
3672,
5218,
29127,
1096,
7,
12093,
271,
3672,
62,
7856,
4008,
628,
220,
220,
220,
329,
479,
796,
352,
25,
710,
487,
5216,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4574,
0,
7,
20274,
11,
13940,
23650,
7,
14933,
7,
81,
38381,
74,
12962,
5218,
85,
9246,
7,
85,
9246,
7,
1073,
891,
82,
62,
7856,
58,
45299,
74,
60,
23029,
986,
4008,
198,
220,
220,
220,
886,
628,
220,
220,
220,
1441,
1255,
198,
437,
198,
47738,
13557,
2213,
1326,
13255,
7,
83,
16,
3712,
3118,
11379,
13,
3046,
62,
1443,
489,
500,
40596,
11,
83,
17,
3712,
23839,
40596,
8,
796,
4808,
1837,
1326,
13255,
7,
83,
16,
13,
4354,
11,
83,
17,
8,
198,
47738,
13557,
2213,
1326,
13255,
7,
83,
16,
3712,
3118,
11379,
13,
3046,
62,
1443,
489,
500,
40596,
11,
83,
17,
3712,
3118,
11379,
13,
3046,
62,
1443,
489,
500,
40596,
8,
796,
4808,
1837,
1326,
13255,
7,
83,
16,
13,
4354,
11,
83,
17,
13,
4354,
8,
198,
198,
47738,
13557,
2213,
1326,
13255,
7,
83,
16,
3712,
23839,
40596,
11,
83,
17,
3712,
3118,
11379,
13,
3046,
62,
1443,
489,
500,
40596,
8,
796,
4808,
1837,
1326,
13255,
7,
83,
16,
11,
83,
17,
13,
4354,
8,
198,
47738,
13557,
1837,
1326,
13255,
7,
83,
16,
3712,
23839,
40596,
11,
83,
17,
3712,
3118,
11379,
13,
3046,
62,
1443,
489,
500,
40596,
8,
796,
4808,
1837,
1326,
13255,
7,
83,
16,
11,
83,
17,
13,
4354,
8,
198,
2,
47738,
13557,
1837,
1326,
13255,
7,
83,
16,
3712,
23839,
40596,
11,
83,
17,
3712,
3118,
11379,
13,
7575,
16870,
12249,
40596,
8,
796,
4808,
1837,
1326,
13255,
7,
83,
16,
11,
83,
17,
13,
4354,
8,
198,
2,
8818,
17417,
13557,
33491,
7,
6759,
8609,
62,
4354,
3712,
46912,
40596,
90,
27,
25,
51,
29291,
90,
27,
25,
3118,
11379,
13,
7575,
16870,
12249,
40596,
92,
5512,
28004,
20155,
3712,
35,
713,
8,
198,
220,
220,
220,
220,
198,
2,
220,
220,
220,
6928,
62,
4354,
796,
24936,
40596,
19510,
47738,
13557,
33491,
12195,
6759,
8609,
62,
4354,
13,
38707,
11,
6524,
7,
28004,
20155,
4008,
986,
11,
4008,
198,
2,
220,
220,
220,
4308,
8818,
40596,
796,
651,
3245,
7,
6759,
8609,
62,
4354,
11,
25,
38707,
38381,
16,
60,
198,
2,
220,
220,
220,
1441,
3862,
16870,
12249,
40596,
7,
260,
21820,
62,
4354,
11,
12093,
4468,
4575,
40596,
13,
12093,
4468,
4575,
11,
12093,
4468,
4575,
40596,
13,
15596,
25747,
8,
198,
198,
2,
437,
198
] | 2.44633 | 2,711 |
module Day14
export get_inputs, get_solution1, get_solution2
using ..Advent2020.Utils
using SparseArrays
## Input getting
function get_inputs()
test_input1 = read_input(IOBuffer(
"""
mask = XXXXXXXXXXXXXXXXXXXXXXXXXXXXX1XXXX0X
mem[8] = 11
mem[7] = 101
mem[8] = 0
"""
))
test_output1 = 165
test_input2 = read_input(IOBuffer(
"""
mask = 000000000000000000000000000000X1001X
mem[42] = 100
mask = 00000000000000000000000000000000X0XX
mem[26] = 1
"""
))
test_output2 = 208
data = read_input(joinpath(@__DIR__, "input.txt"))
return (; test_input1, test_input2, test_output1, test_output2, data)
end
function read_input(io)
data = read(io, String)
chunks = split(data, "mask = ", keepempty=false)
return parse_chunk.(chunks)
end
function parse_chunk(chunk)
lines = split(chunk, r"mask = |\n|\r\n", keepempty=false)
mask = lines[1]
mem = parse_mem.(lines[2:end])
return (; mask, mem)
end
function parse_mem(mem)
address, value = parse.(Int, split(mem, r"mem\[|\] = ", keepempty=false))
return address => value
end
## Solution functions
initialize_memory(data) = spzeros(Int, typemax(Int))
mask_replace(mask, x='0') = parse(Int, replace(mask, 'X'=>x), base=2)
apply_mask(value, mask) = (value | mask_replace(mask, '0')) & mask_replace(mask, '1')
# Part 1
function get_solution1(data)
memory = initialize_memory(data)
for chunk in data, (address, value) in chunk.mem
memory[address] = apply_mask(value, chunk.mask)
end
return sum(memory)
end
# Part 2
function get_solution2(data)
memory = initialize_memory(data)
for line in data
mask = zero_based(replace(collect(line.mask), 'X'=>'C', '0'=>'X'))
C_positions = findall(==('C'), mask)
num_C = length(C_positions)
for short_mask in 0:(2^num_C-1)
short_mask = last(bitstring(short_mask), num_C)
mask[C_positions] = zero_based(collect(short_mask))
mask_string = String(mask)
for (encoded_address, value) in line.mem
address = apply_mask(encoded_address, mask_string)
memory[address] = value
end
end
end
return sum(memory)
end
end | [
21412,
3596,
1415,
198,
198,
39344,
651,
62,
15414,
82,
11,
651,
62,
82,
2122,
16,
11,
651,
62,
82,
2122,
17,
198,
198,
3500,
11485,
2782,
1151,
42334,
13,
18274,
4487,
198,
3500,
1338,
17208,
3163,
20477,
628,
198,
2235,
23412,
1972,
198,
8818,
651,
62,
15414,
82,
3419,
198,
220,
220,
220,
1332,
62,
15414,
16,
796,
1100,
62,
15414,
7,
9399,
28632,
7,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
9335,
796,
1395,
24376,
24376,
24376,
24376,
24376,
24376,
24376,
16,
24376,
15,
55,
198,
220,
220,
220,
220,
220,
220,
220,
1066,
58,
23,
60,
796,
1367,
198,
220,
220,
220,
220,
220,
220,
220,
1066,
58,
22,
60,
796,
8949,
198,
220,
220,
220,
220,
220,
220,
220,
1066,
58,
23,
60,
796,
657,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
15306,
198,
220,
220,
220,
1332,
62,
22915,
16,
796,
21409,
198,
220,
220,
220,
1332,
62,
15414,
17,
796,
1100,
62,
15414,
7,
9399,
28632,
7,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
9335,
796,
220,
25645,
8269,
10535,
55,
47705,
55,
198,
220,
220,
220,
220,
220,
220,
220,
1066,
58,
3682,
60,
796,
1802,
198,
220,
220,
220,
220,
220,
220,
220,
9335,
796,
220,
25645,
25645,
55,
15,
8051,
198,
220,
220,
220,
220,
220,
220,
220,
1066,
58,
2075,
60,
796,
352,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
15306,
198,
220,
220,
220,
1332,
62,
22915,
17,
796,
27121,
198,
220,
220,
220,
1366,
796,
1100,
62,
15414,
7,
22179,
6978,
7,
31,
834,
34720,
834,
11,
366,
15414,
13,
14116,
48774,
628,
220,
220,
220,
1441,
357,
26,
1332,
62,
15414,
16,
11,
1332,
62,
15414,
17,
11,
1332,
62,
22915,
16,
11,
1332,
62,
22915,
17,
11,
1366,
8,
198,
437,
198,
198,
8818,
1100,
62,
15414,
7,
952,
8,
198,
220,
220,
220,
1366,
796,
1100,
7,
952,
11,
10903,
8,
198,
220,
220,
220,
22716,
796,
6626,
7,
7890,
11,
366,
27932,
796,
33172,
1394,
28920,
28,
9562,
8,
198,
220,
220,
220,
1441,
21136,
62,
354,
2954,
12195,
354,
14125,
8,
198,
437,
198,
198,
8818,
21136,
62,
354,
2954,
7,
354,
2954,
8,
198,
220,
220,
220,
3951,
796,
6626,
7,
354,
2954,
11,
374,
1,
27932,
796,
930,
59,
77,
91,
59,
81,
59,
77,
1600,
1394,
28920,
28,
9562,
8,
198,
220,
220,
220,
9335,
796,
3951,
58,
16,
60,
198,
220,
220,
220,
1066,
796,
21136,
62,
11883,
12195,
6615,
58,
17,
25,
437,
12962,
198,
220,
220,
220,
1441,
357,
26,
9335,
11,
1066,
8,
198,
437,
198,
198,
8818,
21136,
62,
11883,
7,
11883,
8,
198,
220,
220,
220,
2209,
11,
1988,
796,
21136,
12195,
5317,
11,
6626,
7,
11883,
11,
374,
1,
11883,
59,
58,
91,
59,
60,
796,
33172,
1394,
28920,
28,
9562,
4008,
198,
220,
220,
220,
1441,
2209,
5218,
1988,
198,
437,
628,
198,
2235,
28186,
5499,
198,
36733,
1096,
62,
31673,
7,
7890,
8,
796,
599,
9107,
418,
7,
5317,
11,
2170,
368,
897,
7,
5317,
4008,
198,
198,
27932,
62,
33491,
7,
27932,
11,
2124,
11639,
15,
11537,
796,
21136,
7,
5317,
11,
6330,
7,
27932,
11,
705,
55,
6,
14804,
87,
828,
2779,
28,
17,
8,
198,
198,
39014,
62,
27932,
7,
8367,
11,
9335,
8,
796,
357,
8367,
930,
9335,
62,
33491,
7,
27932,
11,
705,
15,
6,
4008,
1222,
9335,
62,
33491,
7,
27932,
11,
705,
16,
11537,
628,
198,
2,
2142,
352,
198,
8818,
651,
62,
82,
2122,
16,
7,
7890,
8,
198,
220,
220,
220,
4088,
796,
41216,
62,
31673,
7,
7890,
8,
628,
220,
220,
220,
329,
16058,
287,
1366,
11,
357,
21975,
11,
1988,
8,
287,
16058,
13,
11883,
198,
220,
220,
220,
220,
220,
220,
220,
4088,
58,
21975,
60,
796,
4174,
62,
27932,
7,
8367,
11,
16058,
13,
27932,
8,
198,
220,
220,
220,
886,
628,
220,
220,
220,
1441,
2160,
7,
31673,
8,
198,
437,
628,
198,
2,
2142,
362,
198,
8818,
651,
62,
82,
2122,
17,
7,
7890,
8,
198,
220,
220,
220,
4088,
796,
41216,
62,
31673,
7,
7890,
8,
628,
220,
220,
220,
329,
1627,
287,
1366,
198,
220,
220,
220,
220,
220,
220,
220,
9335,
796,
6632,
62,
3106,
7,
33491,
7,
33327,
7,
1370,
13,
27932,
828,
705,
55,
6,
14804,
6,
34,
3256,
705,
15,
6,
14804,
6,
55,
6,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
327,
62,
1930,
1756,
796,
1064,
439,
7,
855,
10786,
34,
33809,
9335,
8,
198,
220,
220,
220,
220,
220,
220,
220,
997,
62,
34,
796,
4129,
7,
34,
62,
1930,
1756,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
329,
1790,
62,
27932,
287,
657,
37498,
17,
61,
22510,
62,
34,
12,
16,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1790,
62,
27932,
796,
938,
7,
2545,
8841,
7,
19509,
62,
27932,
828,
997,
62,
34,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
9335,
58,
34,
62,
1930,
1756,
60,
796,
6632,
62,
3106,
7,
33327,
7,
19509,
62,
27932,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
9335,
62,
8841,
796,
10903,
7,
27932,
8,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
357,
12685,
9043,
62,
21975,
11,
1988,
8,
287,
1627,
13,
11883,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2209,
796,
4174,
62,
27932,
7,
12685,
9043,
62,
21975,
11,
9335,
62,
8841,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4088,
58,
21975,
60,
796,
1988,
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,
2160,
7,
31673,
8,
198,
437,
198,
198,
437
] | 2.266278 | 1,029 |
# n! means n × (n − 1) × ... × 3 × 2 × 1
#
# For example, 10! = 10 × 9 × ... × 3 × 2 × 1 = 3628800,
# and the sum of the digits in the number 10! is 3 + 6 + 2 + 8 + 8 + 0 + 0 = 27.
#
# Find the sum of the digits in the number 100!
using ProjectEulerSolutions
# Trivial with Julia's built-in factorial and digits functions.
function p020solution(n::Integer=2)::Integer
return sum(digits(factorial(BigInt(n))))
end
p020 = Problems.Problem(p020solution)
Problems.benchmark(p020, 100) | [
2,
299,
0,
1724,
299,
13958,
357,
77,
9746,
352,
8,
13958,
2644,
13958,
513,
13958,
362,
13958,
352,
198,
2,
198,
2,
1114,
1672,
11,
838,
0,
796,
838,
13958,
860,
13958,
2644,
13958,
513,
13958,
362,
13958,
352,
796,
4570,
2078,
7410,
11,
198,
2,
290,
262,
2160,
286,
262,
19561,
287,
262,
1271,
838,
0,
318,
513,
1343,
718,
1343,
362,
1343,
807,
1343,
807,
1343,
657,
1343,
657,
796,
2681,
13,
198,
2,
198,
2,
9938,
262,
2160,
286,
262,
19561,
287,
262,
1271,
1802,
0,
198,
198,
3500,
4935,
36,
18173,
50,
14191,
198,
198,
2,
7563,
85,
498,
351,
22300,
338,
3170,
12,
259,
1109,
5132,
290,
19561,
5499,
13,
198,
8818,
279,
33618,
82,
2122,
7,
77,
3712,
46541,
28,
17,
2599,
25,
46541,
198,
220,
220,
220,
1441,
2160,
7,
12894,
896,
7,
22584,
5132,
7,
12804,
5317,
7,
77,
35514,
198,
437,
198,
198,
79,
33618,
796,
32093,
13,
40781,
7,
79,
33618,
82,
2122,
8,
198,
198,
2964,
22143,
13,
26968,
4102,
7,
79,
33618,
11,
1802,
8
] | 2.741573 | 178 |
@testset "Group properties" begin
σ1 = Permutation([1, 2, 3])
σ2 = Permutation([2, 3, 1])
σ3 = Permutation([3, 1, 2])
τ1 = Permutation([1, 3, 2])
τ2 = Permutation([3, 2, 1])
τ3 = Permutation([2, 1, 3])
cycles = [σ1, σ2, σ3]
transpositions = [τ1, τ2, τ3]
@testset "Existence of identity" begin
for π = [cycles..., transpositions...]
@test σ1 * π == π * σ1 == π
end
end
@testset "Existence of the inverse" begin
@test σ2 * σ3 == σ3 * σ2 == σ1
for τ = transpositions
@test τ * τ == σ1
end
end
@testset "Closeness under multiplication" begin
@test σ2 * σ2 == σ3
@test σ3 * σ3 == σ2
@test τ1 * τ2 == τ2 * τ3 == τ3 * τ1 == σ2
@test τ3 * τ2 == τ2 * τ1 == τ1 * τ3 == σ3
end
@testset "Associativity" begin
p_group = [cycles..., transpositions...]
for π1 = p_group, π2 = p_group, π3 = p_group
@test (π1 * π2) * π3 == π1 * (π2 * π3)
end
end
end
| [
31,
9288,
2617,
366,
13247,
6608,
1,
2221,
628,
220,
220,
220,
18074,
225,
16,
796,
2448,
76,
7094,
26933,
16,
11,
362,
11,
513,
12962,
198,
220,
220,
220,
18074,
225,
17,
796,
2448,
76,
7094,
26933,
17,
11,
513,
11,
352,
12962,
198,
220,
220,
220,
18074,
225,
18,
796,
2448,
76,
7094,
26933,
18,
11,
352,
11,
362,
12962,
198,
220,
220,
220,
46651,
16,
796,
2448,
76,
7094,
26933,
16,
11,
513,
11,
362,
12962,
198,
220,
220,
220,
46651,
17,
796,
2448,
76,
7094,
26933,
18,
11,
362,
11,
352,
12962,
198,
220,
220,
220,
46651,
18,
796,
2448,
76,
7094,
26933,
17,
11,
352,
11,
513,
12962,
198,
220,
220,
220,
16006,
796,
685,
38392,
16,
11,
18074,
225,
17,
11,
18074,
225,
18,
60,
198,
220,
220,
220,
1007,
1930,
1756,
796,
685,
32830,
16,
11,
46651,
17,
11,
46651,
18,
60,
198,
220,
220,
220,
220,
198,
220,
220,
220,
2488,
9288,
2617,
366,
3109,
13274,
286,
5369,
1,
2221,
198,
220,
220,
220,
220,
220,
220,
220,
329,
18074,
222,
796,
685,
32503,
986,
11,
1007,
1930,
1756,
22345,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2488,
9288,
18074,
225,
16,
1635,
18074,
222,
6624,
18074,
222,
1635,
18074,
225,
16,
6624,
18074,
222,
198,
220,
220,
220,
220,
220,
220,
220,
886,
198,
220,
220,
220,
886,
628,
220,
220,
220,
2488,
9288,
2617,
366,
3109,
13274,
286,
262,
34062,
1,
2221,
198,
220,
220,
220,
220,
220,
220,
220,
2488,
9288,
18074,
225,
17,
1635,
18074,
225,
18,
6624,
18074,
225,
18,
1635,
18074,
225,
17,
6624,
18074,
225,
16,
198,
220,
220,
220,
220,
220,
220,
220,
329,
46651,
796,
1007,
1930,
1756,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2488,
9288,
46651,
1635,
46651,
6624,
18074,
225,
16,
198,
220,
220,
220,
220,
220,
220,
220,
886,
198,
220,
220,
220,
886,
628,
220,
220,
220,
2488,
9288,
2617,
366,
2601,
5233,
408,
739,
48473,
1,
2221,
198,
220,
220,
220,
220,
220,
220,
220,
2488,
9288,
18074,
225,
17,
1635,
18074,
225,
17,
6624,
18074,
225,
18,
198,
220,
220,
220,
220,
220,
220,
220,
2488,
9288,
18074,
225,
18,
1635,
18074,
225,
18,
6624,
18074,
225,
17,
198,
220,
220,
220,
220,
220,
220,
220,
2488,
9288,
46651,
16,
1635,
46651,
17,
6624,
46651,
17,
1635,
46651,
18,
6624,
46651,
18,
1635,
46651,
16,
6624,
18074,
225,
17,
198,
220,
220,
220,
220,
220,
220,
220,
2488,
9288,
46651,
18,
1635,
46651,
17,
6624,
46651,
17,
1635,
46651,
16,
6624,
46651,
16,
1635,
46651,
18,
6624,
18074,
225,
18,
198,
220,
220,
220,
886,
198,
220,
220,
220,
220,
198,
220,
220,
220,
2488,
9288,
2617,
366,
8021,
1733,
22055,
1,
2221,
198,
220,
220,
220,
220,
220,
220,
220,
279,
62,
8094,
796,
685,
32503,
986,
11,
1007,
1930,
1756,
22345,
198,
220,
220,
220,
220,
220,
220,
220,
329,
18074,
222,
16,
796,
279,
62,
8094,
11,
18074,
222,
17,
796,
279,
62,
8094,
11,
18074,
222,
18,
796,
279,
62,
8094,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2488,
9288,
357,
46582,
16,
1635,
18074,
222,
17,
8,
1635,
18074,
222,
18,
6624,
18074,
222,
16,
1635,
357,
46582,
17,
1635,
18074,
222,
18,
8,
198,
220,
220,
220,
220,
220,
220,
220,
886,
198,
220,
220,
220,
886,
220,
198,
198,
437,
198
] | 1.811092 | 577 |
#Adapted from https://github.com/github/developer.github.com/blob/master/Rakefile#L21-L48
#Run this file from its current directory to build the documentation and push the result into gh-pages
last_commit=readchomp(`git --no-pager log -1 --pretty=format:"%h:%s"`)
ENV["GIT_DIR"]=abspath(chomp(read(`git rev-parse --git-dir`, String)))
old_sha = chomp(read(`git rev-parse refs/remotes/origin/gh-pages`, String))
#run(`julia make.jl`)
cd("build") do
gif="/tmp/dev.gh.i"
ENV["GIT_INDEX_FILE"]=gif
ENV["GIT_WORK_TREE"]=pwd()
run(`git add -A`)
tsha=chomp(read(`git write-tree`, String))
mesg="Deploy docs for master@$last_commit"
if length(old_sha) == 40
csha = chomp(read(`git commit-tree $tsha -p $old_sha -m $(mesg)`, String))
else
csha = chomp(read(`git commit-tree $tsha -m $(mesg)`, String))
end
print("Created commit $csha")
run(`git --no-pager show $csha --stat`)
run(`git update-ref refs/heads/gh-pages $csha `)
run(`git push origin gh-pages `)
end
| [
2,
48003,
276,
422,
3740,
1378,
12567,
13,
785,
14,
12567,
14,
16244,
263,
13,
12567,
13,
785,
14,
2436,
672,
14,
9866,
14,
49,
539,
7753,
2,
43,
2481,
12,
43,
2780,
198,
198,
2,
10987,
428,
2393,
422,
663,
1459,
8619,
284,
1382,
262,
10314,
290,
4574,
262,
1255,
656,
24997,
12,
31126,
198,
198,
12957,
62,
41509,
28,
961,
354,
3361,
7,
63,
18300,
1377,
3919,
12,
79,
3536,
2604,
532,
16,
1377,
37784,
28,
18982,
11097,
4,
71,
25,
4,
82,
1,
63,
8,
198,
198,
1677,
53,
14692,
38,
2043,
62,
34720,
8973,
28,
397,
2777,
776,
7,
354,
3361,
7,
961,
7,
63,
18300,
2710,
12,
29572,
1377,
18300,
12,
15908,
47671,
10903,
22305,
198,
198,
727,
62,
26270,
796,
442,
3361,
7,
961,
7,
63,
18300,
2710,
12,
29572,
1006,
82,
14,
2787,
6421,
14,
47103,
14,
456,
12,
31126,
47671,
10903,
4008,
198,
198,
2,
5143,
7,
63,
73,
43640,
787,
13,
20362,
63,
8,
198,
198,
10210,
7203,
11249,
4943,
466,
628,
220,
220,
220,
9381,
35922,
22065,
14,
7959,
13,
456,
13,
72,
1,
198,
220,
220,
220,
12964,
53,
14692,
38,
2043,
62,
12115,
6369,
62,
25664,
8973,
28,
27908,
198,
220,
220,
220,
12964,
53,
14692,
38,
2043,
62,
33249,
62,
51,
11587,
8973,
28,
79,
16993,
3419,
198,
220,
220,
220,
1057,
7,
63,
18300,
751,
532,
32,
63,
8,
198,
220,
220,
220,
256,
26270,
28,
354,
3361,
7,
961,
7,
63,
18300,
3551,
12,
21048,
47671,
10903,
4008,
198,
220,
220,
220,
18842,
70,
2625,
49322,
34165,
329,
4958,
31,
3,
12957,
62,
41509,
1,
220,
628,
220,
220,
220,
611,
4129,
7,
727,
62,
26270,
8,
6624,
2319,
198,
220,
220,
220,
220,
220,
220,
220,
269,
26270,
796,
442,
3361,
7,
961,
7,
63,
18300,
4589,
12,
21048,
720,
912,
3099,
532,
79,
720,
727,
62,
26270,
532,
76,
29568,
6880,
70,
8,
47671,
10903,
4008,
198,
220,
220,
220,
2073,
220,
198,
220,
220,
220,
220,
220,
220,
220,
269,
26270,
796,
442,
3361,
7,
961,
7,
63,
18300,
4589,
12,
21048,
720,
912,
3099,
532,
76,
29568,
6880,
70,
8,
47671,
10903,
4008,
198,
220,
220,
220,
886,
628,
220,
220,
220,
220,
3601,
7203,
41972,
4589,
720,
66,
26270,
4943,
628,
220,
220,
220,
220,
1057,
7,
63,
18300,
1377,
3919,
12,
79,
3536,
905,
720,
66,
26270,
1377,
14269,
63,
8,
628,
220,
220,
220,
220,
1057,
7,
63,
18300,
4296,
12,
5420,
1006,
82,
14,
16600,
14,
456,
12,
31126,
720,
66,
26270,
4600,
8,
628,
220,
220,
220,
220,
1057,
7,
63,
18300,
4574,
8159,
24997,
12,
31126,
4600,
8,
198,
198,
437,
198
] | 2.326622 | 447 |
using Optim, HTTP, GLM, LinearAlgebra, Random, Statistics, DataFrames, CSV, FreqTables,Distributions
include("lgwt.jl")
#data
function PS4()
url = "https://raw.githubusercontent.com/OU-PhD-Econometrics/fall-2020/master/ProblemSets/PS4-mixture/nlsw88t.csv"
df = CSV.read(HTTP.get(url).body)
X = [df.age df.white df.collgrad]
Z = hcat(df.elnwage1, df.elnwage2, df.elnwage3, df.elnwage4,
df.elnwage5, df.elnwage6, df.elnwage7, df.elnwage8)
y = df.occ_code;
#Question 1
#from his solution:
function mlogit_with_Z(theta, X, Z, y)
alpha = theta[1:end-1]
gamma = theta[end]
K = size(X,2)
J = length(unique(y))
N = length(y)
bigY = zeros(N,J)
for j=1:J
bigY[:,j] = y.==j
end
bigAlpha = [reshape(alpha,K,J-1) zeros(K)]
T = promote_type(eltype(X),eltype(theta))
num = zeros(T,N,J)
dem = zeros(T,N)
for j=1:J
num[:,j] = exp.(X*bigAlpha[:,j] .+ (Z[:,j] .- Z[:,J])*gamma)
dem .+= num[:,j]
end
P = num./repeat(dem,1,J)
loglike = -sum( bigY.*log.(P) )
return loglike
end
#values from PS3
startvals=[0.05570767876416688, 0.08342649976722213, -2.344887681361976, 0.04500076157943125, 0.7365771540890512, -3.153244238810631, 0.09264606406280998, -0.08417701777996893, -4.273280002738097, 0.023903455659102114, 0.7230648923377259, -3.749393470343111, 0.03608733246865346, -0.6437658344513095, -4.2796847340030375, 0.0853109465190059, -1.1714299392376775, -6.678677013966667, 0.086620198654063, -0.7978777029320784, -4.969132023685069, -0.0941942241795243];
#look at this to see why you might need this: http://julianlsolvers.github.io/Optim.jl/v0.9.3/algo/autodiff/
td = TwiceDifferentiable(theta -> mlogit_with_Z(theta, X, Z, y), startvals; autodiff = :forward);
theta_hat_optim_ad = optimize(td, startvals, LBFGS(), Optim.Options(g_tol = 1e-5, iterations=100_000, show_trace=true, show_every=50))
#Hessian from ps3
theta_hat_mle_ad = theta_hat_optim_ad.minimizer
println(theta_hat_mle_ad)
H = Optim.hessian!(td, theta_hat_mle_ad)
theta_hat_mle_ad_se = sqrt.(diag(inv(H)))
println([theta_hat_mle_ad theta_hat_mle_ad_se])
#question 2
# now it is positive which makes more sense because increase in log wage should increase utility
#question 3
#part a
#part b
#1
nodes, weights = lgwt(7,-10,10);
d=Normal(0,2)
sum(weights.*pdf.(d,nodes))
println(sum((nodes.^2).*weights.*pdf.(d,nodes)))
#2
nodes, weights = lgwt(10,-10,10);
sum(weights.*pdf.(d,nodes))
println(sum((nodes.^2).*weights.*pdf.(d,nodes)))
#3
# it is close, with more quadrature points it will converge to 4
#Part C
#1
d=Normal(0,2)
N=1000000
x=rand(Uniform(-10, 10 ),N)
println((20/N)*sum(x.^2 .*(pdf.(d,x))))
#2
println((20/N)*sum(x .*(pdf.(d,x))))
#3
println((20/N)*sum(pdf.(d,x)))
#4
#the difference is around 0.2 which is high in my opinion
#Question 4
function mxlogit_with_quadrature(theta, X, Z, y,rn)
alpha = theta[1:end-1]
gamma = theta[end]
K = size(X,2)
J = length(unique(y))
N = length(y)
bigY = zeros(N,J)
for j=1:J
bigY[:,j] = y.==j
end
bigAlpha = [reshape(alpha,K,J-1) zeros(K)]
nodes, weights = lgwt(rn,-4,4);
d=Normal(0,1)
T = promote_type(eltype(X),eltype(theta))
num = zeros(T,N,J)
dem = zeros(T,N)
for j=1:J
num[:,j] = sum(exp.(X*bigAlpha[:,j] .+ (Z[:,j] .- Z[:,J])*gamma).*weights.*pdf.(d,nodes))
dem .+= num[:,j]
end
P = num./repeat(dem,1,J)
loglike = -sum( log.(P.^bigY) )
return loglike
end
#Question 5
function mxlogit_with_simulation(theta, X, Z, y,rn)
alpha = theta[1:end-1]
gamma = theta[end]
K = size(X,2)
J = length(unique(y))
N = length(y)
bigY = zeros(N,J)
for j=1:J
bigY[:,j] = y.==j
end
bigAlpha = [reshape(alpha,K,J-1) zeros(K)]
d=Normal(0,1)
rx=rand(Uniform(0,1 ),rn)
T = promote_type(eltype(X),eltype(theta))
num = zeros(T,N,J)
dem = zeros(T,N)
for j=1:J
num[:,j] = sum(exp.(X*bigAlpha[:,j] .+ (Z[:,j] .- Z[:,J])*gamma).*(pdf.(d,x)))
dem .+= num[:,j]
end
P = num./repeat(dem,1,J)
loglike = -sum( log.(P.^bigY) )
return loglike
end
end
PS4() | [
3500,
30011,
11,
14626,
11,
10188,
44,
11,
44800,
2348,
29230,
11,
14534,
11,
14370,
11,
6060,
35439,
11,
44189,
11,
4848,
80,
51,
2977,
11,
20344,
2455,
507,
198,
17256,
7203,
75,
70,
46569,
13,
20362,
4943,
198,
2,
7890,
198,
8818,
6599,
19,
3419,
198,
6371,
796,
366,
5450,
1378,
1831,
13,
12567,
43667,
13,
785,
14,
2606,
12,
2725,
35,
12,
36,
1102,
908,
10466,
14,
7207,
12,
42334,
14,
9866,
14,
40781,
50,
1039,
14,
3705,
19,
12,
76,
9602,
14,
21283,
2032,
3459,
83,
13,
40664,
1,
198,
7568,
796,
44189,
13,
961,
7,
40717,
13,
1136,
7,
6371,
737,
2618,
8,
198,
55,
796,
685,
7568,
13,
496,
47764,
13,
11186,
47764,
13,
26000,
9744,
60,
198,
57,
796,
289,
9246,
7,
7568,
13,
45542,
21482,
16,
11,
47764,
13,
45542,
21482,
17,
11,
47764,
13,
45542,
21482,
18,
11,
47764,
13,
45542,
21482,
19,
11,
198,
7568,
13,
45542,
21482,
20,
11,
47764,
13,
45542,
21482,
21,
11,
47764,
13,
45542,
21482,
22,
11,
47764,
13,
45542,
21482,
23,
8,
198,
88,
796,
47764,
13,
13966,
62,
8189,
26,
198,
198,
2,
24361,
352,
198,
2,
6738,
465,
4610,
25,
198,
8818,
285,
6404,
270,
62,
4480,
62,
57,
7,
1169,
8326,
11,
1395,
11,
1168,
11,
331,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
17130,
796,
262,
8326,
58,
16,
25,
437,
12,
16,
60,
198,
220,
220,
220,
220,
220,
220,
220,
34236,
796,
262,
8326,
58,
437,
60,
198,
220,
220,
220,
220,
220,
220,
220,
509,
796,
2546,
7,
55,
11,
17,
8,
198,
220,
220,
220,
220,
220,
220,
220,
449,
796,
4129,
7,
34642,
7,
88,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
399,
796,
4129,
7,
88,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1263,
56,
796,
1976,
27498,
7,
45,
11,
41,
8,
198,
220,
220,
220,
220,
220,
220,
220,
329,
474,
28,
16,
25,
41,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1263,
56,
58,
45299,
73,
60,
796,
331,
13,
855,
73,
198,
220,
220,
220,
220,
220,
220,
220,
886,
198,
220,
220,
220,
220,
220,
220,
220,
1263,
38077,
796,
685,
3447,
1758,
7,
26591,
11,
42,
11,
41,
12,
16,
8,
1976,
27498,
7,
42,
15437,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
309,
796,
7719,
62,
4906,
7,
417,
4906,
7,
55,
828,
417,
4906,
7,
1169,
8326,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
997,
220,
220,
796,
1976,
27498,
7,
51,
11,
45,
11,
41,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1357,
220,
220,
796,
1976,
27498,
7,
51,
11,
45,
8,
198,
220,
220,
220,
220,
220,
220,
220,
329,
474,
28,
16,
25,
41,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
997,
58,
45299,
73,
60,
796,
1033,
12195,
55,
9,
14261,
38077,
58,
45299,
73,
60,
764,
10,
357,
57,
58,
45299,
73,
60,
764,
12,
1168,
58,
45299,
41,
12962,
9,
28483,
2611,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1357,
764,
47932,
997,
58,
45299,
73,
60,
198,
220,
220,
220,
220,
220,
220,
220,
886,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
350,
796,
997,
19571,
44754,
7,
9536,
11,
16,
11,
41,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
2604,
2339,
796,
532,
16345,
7,
1263,
56,
15885,
6404,
12195,
47,
8,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
2604,
2339,
198,
220,
220,
220,
886,
198,
198,
2,
27160,
422,
6599,
18,
198,
9688,
12786,
41888,
15,
13,
47838,
24038,
3134,
5774,
2414,
1433,
34427,
11,
657,
13,
2919,
2682,
18897,
2079,
32059,
23148,
1485,
11,
532,
17,
13,
33535,
3459,
30610,
20809,
38108,
11,
657,
13,
40350,
830,
4304,
1314,
3720,
3559,
11623,
11,
657,
13,
22,
24760,
3324,
1314,
1821,
4531,
2713,
1065,
11,
532,
18,
13,
21395,
25707,
1954,
3459,
15801,
3132,
11,
657,
13,
2931,
18897,
1899,
31102,
5237,
1795,
34808,
11,
532,
15,
13,
2919,
19,
22413,
486,
29331,
2079,
3104,
6052,
11,
532,
19,
13,
27367,
2078,
830,
1983,
23734,
5607,
11,
657,
13,
15,
23516,
3070,
30505,
36445,
15377,
16562,
11,
657,
13,
4761,
1270,
2414,
4531,
1954,
26514,
25191,
11,
532,
18,
13,
22,
2920,
2670,
2682,
2154,
32118,
16243,
11,
657,
13,
3070,
1899,
5774,
2091,
1731,
3104,
2996,
30557,
11,
532,
15,
13,
2414,
2718,
38431,
2682,
2231,
12952,
3865,
11,
532,
19,
13,
26050,
3104,
2857,
2682,
405,
1270,
22318,
11,
657,
13,
2919,
4310,
940,
5824,
2996,
48104,
3270,
11,
532,
16,
13,
1558,
1415,
22579,
2670,
24693,
3134,
2425,
11,
532,
21,
13,
30924,
40179,
486,
2670,
19060,
22,
11,
657,
13,
2919,
2791,
1264,
4089,
2996,
1821,
5066,
11,
532,
15,
13,
3720,
3695,
3324,
2154,
1959,
19504,
37688,
11,
532,
19,
13,
38819,
1485,
1238,
1954,
3104,
1120,
3388,
11,
532,
15,
13,
2931,
45068,
3682,
1731,
1558,
3865,
26660,
11208,
198,
2,
5460,
379,
428,
284,
766,
1521,
345,
1244,
761,
428,
25,
2638,
1378,
73,
377,
666,
7278,
349,
690,
13,
12567,
13,
952,
14,
27871,
320,
13,
20362,
14,
85,
15,
13,
24,
13,
18,
14,
282,
2188,
14,
2306,
375,
733,
14,
198,
8671,
796,
41217,
40341,
3379,
7,
1169,
8326,
4613,
285,
6404,
270,
62,
4480,
62,
57,
7,
1169,
8326,
11,
1395,
11,
1168,
11,
331,
828,
923,
12786,
26,
1960,
375,
733,
796,
1058,
11813,
1776,
198,
198,
1169,
8326,
62,
5183,
62,
40085,
62,
324,
796,
27183,
7,
8671,
11,
923,
12786,
11,
22199,
37,
14313,
22784,
30011,
13,
29046,
7,
70,
62,
83,
349,
796,
352,
68,
12,
20,
11,
34820,
28,
3064,
62,
830,
11,
905,
62,
40546,
28,
7942,
11,
905,
62,
16833,
28,
1120,
4008,
198,
198,
2,
39,
408,
666,
422,
26692,
18,
198,
1169,
8326,
62,
5183,
62,
76,
293,
62,
324,
796,
262,
8326,
62,
5183,
62,
40085,
62,
324,
13,
1084,
320,
7509,
198,
35235,
7,
1169,
8326,
62,
5183,
62,
76,
293,
62,
324,
8,
198,
39,
220,
796,
30011,
13,
33979,
666,
0,
7,
8671,
11,
262,
8326,
62,
5183,
62,
76,
293,
62,
324,
8,
198,
1169,
8326,
62,
5183,
62,
76,
293,
62,
324,
62,
325,
796,
19862,
17034,
12195,
10989,
363,
7,
16340,
7,
39,
22305,
198,
35235,
26933,
1169,
8326,
62,
5183,
62,
76,
293,
62,
324,
262,
8326,
62,
5183,
62,
76,
293,
62,
324,
62,
325,
12962,
198,
198,
2,
25652,
362,
198,
2,
783,
340,
318,
3967,
543,
1838,
517,
2565,
780,
2620,
287,
2604,
7699,
815,
2620,
10361,
198,
198,
2,
25652,
513,
198,
2,
3911,
257,
628,
198,
198,
2,
3911,
275,
198,
2,
16,
198,
77,
4147,
11,
19590,
796,
300,
70,
46569,
7,
22,
12095,
940,
11,
940,
1776,
198,
67,
28,
26447,
7,
15,
11,
17,
8,
198,
16345,
7,
43775,
15885,
12315,
12195,
67,
11,
77,
4147,
4008,
198,
35235,
7,
16345,
19510,
77,
4147,
13,
61,
17,
737,
9,
43775,
15885,
12315,
12195,
67,
11,
77,
4147,
22305,
198,
198,
2,
17,
198,
77,
4147,
11,
19590,
796,
300,
70,
46569,
7,
940,
12095,
940,
11,
940,
1776,
198,
16345,
7,
43775,
15885,
12315,
12195,
67,
11,
77,
4147,
4008,
198,
35235,
7,
16345,
19510,
77,
4147,
13,
61,
17,
737,
9,
43775,
15885,
12315,
12195,
67,
11,
77,
4147,
22305,
198,
198,
2,
18,
198,
2,
340,
318,
1969,
11,
351,
517,
15094,
81,
1300,
2173,
340,
481,
47873,
284,
604,
198,
198,
2,
7841,
327,
198,
2,
16,
198,
67,
28,
26447,
7,
15,
11,
17,
8,
198,
45,
28,
16,
10535,
198,
87,
28,
25192,
7,
3118,
6933,
32590,
940,
11,
838,
10612,
45,
8,
198,
198,
35235,
19510,
1238,
14,
45,
27493,
16345,
7,
87,
13,
61,
17,
764,
9,
7,
12315,
12195,
67,
11,
87,
35514,
198,
198,
2,
17,
198,
35235,
19510,
1238,
14,
45,
27493,
16345,
7,
87,
764,
9,
7,
12315,
12195,
67,
11,
87,
35514,
198,
198,
2,
18,
198,
35235,
19510,
1238,
14,
45,
27493,
16345,
7,
12315,
12195,
67,
11,
87,
22305,
628,
198,
198,
2,
19,
198,
2,
1169,
3580,
318,
1088,
657,
13,
17,
543,
318,
1029,
287,
616,
4459,
198,
198,
2,
24361,
604,
198,
8818,
285,
87,
6404,
270,
62,
4480,
62,
421,
41909,
1300,
7,
1169,
8326,
11,
1395,
11,
1168,
11,
331,
11,
35906,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
17130,
796,
262,
8326,
58,
16,
25,
437,
12,
16,
60,
198,
220,
220,
220,
220,
220,
220,
220,
34236,
796,
262,
8326,
58,
437,
60,
198,
220,
220,
220,
220,
220,
220,
220,
509,
796,
2546,
7,
55,
11,
17,
8,
198,
220,
220,
220,
220,
220,
220,
220,
449,
796,
4129,
7,
34642,
7,
88,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
399,
796,
4129,
7,
88,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1263,
56,
796,
1976,
27498,
7,
45,
11,
41,
8,
198,
220,
220,
220,
220,
220,
220,
220,
329,
474,
28,
16,
25,
41,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1263,
56,
58,
45299,
73,
60,
796,
331,
13,
855,
73,
198,
220,
220,
220,
220,
220,
220,
220,
886,
198,
220,
220,
220,
220,
220,
220,
220,
1263,
38077,
796,
685,
3447,
1758,
7,
26591,
11,
42,
11,
41,
12,
16,
8,
1976,
27498,
7,
42,
15437,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
13760,
11,
19590,
796,
300,
70,
46569,
7,
35906,
12095,
19,
11,
19,
1776,
198,
220,
220,
220,
220,
220,
220,
220,
288,
28,
26447,
7,
15,
11,
16,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
309,
796,
7719,
62,
4906,
7,
417,
4906,
7,
55,
828,
417,
4906,
7,
1169,
8326,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
997,
220,
220,
796,
1976,
27498,
7,
51,
11,
45,
11,
41,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1357,
220,
220,
796,
1976,
27498,
7,
51,
11,
45,
8,
198,
220,
220,
220,
220,
220,
220,
220,
329,
474,
28,
16,
25,
41,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
997,
58,
45299,
73,
60,
796,
2160,
7,
11201,
12195,
55,
9,
14261,
38077,
58,
45299,
73,
60,
764,
10,
357,
57,
58,
45299,
73,
60,
764,
12,
1168,
58,
45299,
41,
12962,
9,
28483,
2611,
737,
9,
43775,
15885,
12315,
12195,
67,
11,
77,
4147,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1357,
764,
47932,
997,
58,
45299,
73,
60,
198,
220,
220,
220,
220,
220,
220,
220,
886,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
350,
796,
997,
19571,
44754,
7,
9536,
11,
16,
11,
41,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
2604,
2339,
796,
532,
16345,
7,
2604,
12195,
47,
13,
61,
14261,
56,
8,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
2604,
2339,
198,
220,
220,
220,
886,
628,
198,
198,
2,
24361,
642,
198,
8818,
285,
87,
6404,
270,
62,
4480,
62,
14323,
1741,
7,
1169,
8326,
11,
1395,
11,
1168,
11,
331,
11,
35906,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
17130,
796,
262,
8326,
58,
16,
25,
437,
12,
16,
60,
198,
220,
220,
220,
220,
220,
220,
220,
34236,
796,
262,
8326,
58,
437,
60,
198,
220,
220,
220,
220,
220,
220,
220,
509,
796,
2546,
7,
55,
11,
17,
8,
198,
220,
220,
220,
220,
220,
220,
220,
449,
796,
4129,
7,
34642,
7,
88,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
399,
796,
4129,
7,
88,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1263,
56,
796,
1976,
27498,
7,
45,
11,
41,
8,
198,
220,
220,
220,
220,
220,
220,
220,
329,
474,
28,
16,
25,
41,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1263,
56,
58,
45299,
73,
60,
796,
331,
13,
855,
73,
198,
220,
220,
220,
220,
220,
220,
220,
886,
198,
220,
220,
220,
220,
220,
220,
220,
1263,
38077,
796,
685,
3447,
1758,
7,
26591,
11,
42,
11,
41,
12,
16,
8,
1976,
27498,
7,
42,
15437,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
288,
28,
26447,
7,
15,
11,
16,
8,
198,
220,
220,
220,
220,
220,
220,
220,
374,
87,
28,
25192,
7,
3118,
6933,
7,
15,
11,
16,
10612,
35906,
8,
198,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
309,
796,
7719,
62,
4906,
7,
417,
4906,
7,
55,
828,
417,
4906,
7,
1169,
8326,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
997,
220,
220,
796,
1976,
27498,
7,
51,
11,
45,
11,
41,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1357,
220,
220,
796,
1976,
27498,
7,
51,
11,
45,
8,
198,
220,
220,
220,
220,
220,
220,
220,
329,
474,
28,
16,
25,
41,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
997,
58,
45299,
73,
60,
796,
2160,
7,
11201,
12195,
55,
9,
14261,
38077,
58,
45299,
73,
60,
764,
10,
357,
57,
58,
45299,
73,
60,
764,
12,
1168,
58,
45299,
41,
12962,
9,
28483,
2611,
737,
9,
7,
12315,
12195,
67,
11,
87,
22305,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1357,
764,
47932,
997,
58,
45299,
73,
60,
198,
220,
220,
220,
220,
220,
220,
220,
886,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
350,
796,
997,
19571,
44754,
7,
9536,
11,
16,
11,
41,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
2604,
2339,
796,
532,
16345,
7,
2604,
12195,
47,
13,
61,
14261,
56,
8,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
2604,
2339,
198,
220,
220,
220,
886,
628,
198,
437,
198,
198,
3705,
19,
3419
] | 1.836996 | 2,503 |
Subsets and Splits